ed9555a814df027d24f5de264ab5787deb6503f7
[platform/kernel/linux-rpi.git] / mm / kasan / report.c
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 <linux/bitops.h>
13 #include <linux/ftrace.h>
14 #include <linux/init.h>
15 #include <linux/kernel.h>
16 #include <linux/mm.h>
17 #include <linux/printk.h>
18 #include <linux/sched.h>
19 #include <linux/slab.h>
20 #include <linux/stackdepot.h>
21 #include <linux/stacktrace.h>
22 #include <linux/string.h>
23 #include <linux/types.h>
24 #include <linux/kasan.h>
25 #include <linux/module.h>
26 #include <linux/sched/task_stack.h>
27 #include <linux/uaccess.h>
28
29 #include <asm/sections.h>
30
31 #include <kunit/test.h>
32
33 #include "kasan.h"
34 #include "../slab.h"
35
36 static unsigned long kasan_flags;
37
38 #define KASAN_BIT_REPORTED      0
39 #define KASAN_BIT_MULTI_SHOT    1
40
41 bool kasan_save_enable_multi_shot(void)
42 {
43         return test_and_set_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
44 }
45 EXPORT_SYMBOL_GPL(kasan_save_enable_multi_shot);
46
47 void kasan_restore_multi_shot(bool enabled)
48 {
49         if (!enabled)
50                 clear_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
51 }
52 EXPORT_SYMBOL_GPL(kasan_restore_multi_shot);
53
54 static int __init kasan_set_multi_shot(char *str)
55 {
56         set_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags);
57         return 1;
58 }
59 __setup("kasan_multi_shot", kasan_set_multi_shot);
60
61 static void print_error_description(struct kasan_access_info *info)
62 {
63         pr_err("BUG: KASAN: %s in %pS\n",
64                 get_bug_type(info), (void *)info->ip);
65         if (info->access_size)
66                 pr_err("%s of size %zu at addr %px by task %s/%d\n",
67                         info->is_write ? "Write" : "Read", info->access_size,
68                         info->access_addr, current->comm, task_pid_nr(current));
69         else
70                 pr_err("%s at addr %px by task %s/%d\n",
71                         info->is_write ? "Write" : "Read",
72                         info->access_addr, current->comm, task_pid_nr(current));
73 }
74
75 static DEFINE_SPINLOCK(report_lock);
76
77 static void start_report(unsigned long *flags)
78 {
79         /*
80          * Make sure we don't end up in loop.
81          */
82         kasan_disable_current();
83         spin_lock_irqsave(&report_lock, *flags);
84         pr_err("==================================================================\n");
85 }
86
87 static void end_report(unsigned long *flags)
88 {
89         pr_err("==================================================================\n");
90         add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
91         spin_unlock_irqrestore(&report_lock, *flags);
92         if (panic_on_warn && !test_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags)) {
93                 /*
94                  * This thread may hit another WARN() in the panic path.
95                  * Resetting this prevents additional WARN() from panicking the
96                  * system on this thread.  Other threads are blocked by the
97                  * panic_mutex in panic().
98                  */
99                 panic_on_warn = 0;
100                 panic("panic_on_warn set ...\n");
101         }
102 #ifdef CONFIG_KASAN_HW_TAGS
103         if (kasan_flag_panic)
104                 panic("kasan.fault=panic set ...\n");
105 #endif
106         kasan_enable_current();
107 }
108
109 static 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
118 static 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
128 struct 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
136 static 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
168 static void describe_object_stacks(struct kmem_cache *cache, void *object,
169                                         const void *addr, u8 tag)
170 {
171         struct kasan_alloc_meta *alloc_meta = kasan_get_alloc_meta(cache, object);
172
173         if (cache->flags & SLAB_KASAN) {
174                 struct kasan_track *free_track;
175
176                 print_track(&alloc_meta->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_meta->aux_stack[0]) {
186                         pr_err("Last potentially related work creation:\n");
187                         print_stack(alloc_meta->aux_stack[0]);
188                         pr_err("\n");
189                 }
190                 if (alloc_meta->aux_stack[1]) {
191                         pr_err("Second to last potentially related work creation:\n");
192                         print_stack(alloc_meta->aux_stack[1]);
193                         pr_err("\n");
194                 }
195 #endif
196         }
197 }
198
199 static void describe_object(struct kmem_cache *cache, void *object,
200                                 const void *addr, u8 tag)
201 {
202         if (kasan_stack_collection_enabled())
203                 describe_object_stacks(cache, object, addr, tag);
204         describe_object_addr(cache, object, addr);
205 }
206
207 static inline bool kernel_or_module_addr(const void *addr)
208 {
209         if (addr >= (void *)_stext && addr < (void *)_end)
210                 return true;
211         if (is_module_address((unsigned long)addr))
212                 return true;
213         return false;
214 }
215
216 static inline bool init_task_stack_addr(const void *addr)
217 {
218         return addr >= (void *)&init_thread_union.stack &&
219                 (addr <= (void *)&init_thread_union.stack +
220                         sizeof(init_thread_union.stack));
221 }
222
223 static void print_address_description(void *addr, u8 tag)
224 {
225         struct page *page = kasan_addr_to_page(addr);
226
227         dump_stack();
228         pr_err("\n");
229
230         if (page && PageSlab(page)) {
231                 struct kmem_cache *cache = page->slab_cache;
232                 void *object = nearest_obj(cache, page, addr);
233
234                 describe_object(cache, object, addr, tag);
235         }
236
237         if (kernel_or_module_addr(addr) && !init_task_stack_addr(addr)) {
238                 pr_err("The buggy address belongs to the variable:\n");
239                 pr_err(" %pS\n", addr);
240         }
241
242         if (page) {
243                 pr_err("The buggy address belongs to the page:\n");
244                 dump_page(page, "kasan: bad access detected");
245         }
246
247         print_address_stack_frame(addr);
248 }
249
250 static bool meta_row_is_guilty(const void *row, const void *addr)
251 {
252         return (row <= addr) && (addr < row + META_MEM_BYTES_PER_ROW);
253 }
254
255 static int meta_pointer_offset(const void *row, const void *addr)
256 {
257         /*
258          * Memory state around the buggy address:
259          *  ff00ff00ff00ff00: 00 00 00 05 fe fe fe fe fe fe fe fe fe fe fe fe
260          *  ...
261          *
262          * The length of ">ff00ff00ff00ff00: " is
263          *    3 + (BITS_PER_LONG / 8) * 2 chars.
264          * The length of each granule metadata is 2 bytes
265          *    plus 1 byte for space.
266          */
267         return 3 + (BITS_PER_LONG / 8) * 2 +
268                 (addr - row) / KASAN_GRANULE_SIZE * 3 + 1;
269 }
270
271 static void print_memory_metadata(const void *addr)
272 {
273         int i;
274         void *row;
275
276         row = (void *)round_down((unsigned long)addr, META_MEM_BYTES_PER_ROW)
277                         - META_ROWS_AROUND_ADDR * META_MEM_BYTES_PER_ROW;
278
279         pr_err("Memory state around the buggy address:\n");
280
281         for (i = -META_ROWS_AROUND_ADDR; i <= META_ROWS_AROUND_ADDR; i++) {
282                 char buffer[4 + (BITS_PER_LONG / 8) * 2];
283                 char metadata[META_BYTES_PER_ROW];
284
285                 snprintf(buffer, sizeof(buffer),
286                                 (i == 0) ? ">%px: " : " %px: ", row);
287
288                 /*
289                  * We should not pass a shadow pointer to generic
290                  * function, because generic functions may try to
291                  * access kasan mapping for the passed address.
292                  */
293                 metadata_fetch_row(&metadata[0], row);
294
295                 print_hex_dump(KERN_ERR, buffer,
296                         DUMP_PREFIX_NONE, META_BYTES_PER_ROW, 1,
297                         metadata, META_BYTES_PER_ROW, 0);
298
299                 if (meta_row_is_guilty(row, addr))
300                         pr_err("%*c\n", meta_pointer_offset(row, addr), '^');
301
302                 row += META_MEM_BYTES_PER_ROW;
303         }
304 }
305
306 static bool report_enabled(void)
307 {
308 #if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS)
309         if (current->kasan_depth)
310                 return false;
311 #endif
312         if (test_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags))
313                 return true;
314         return !test_and_set_bit(KASAN_BIT_REPORTED, &kasan_flags);
315 }
316
317 #if IS_ENABLED(CONFIG_KUNIT)
318 static void kasan_update_kunit_status(struct kunit *cur_test)
319 {
320         struct kunit_resource *resource;
321         struct kunit_kasan_expectation *kasan_data;
322
323         resource = kunit_find_named_resource(cur_test, "kasan_data");
324
325         if (!resource) {
326                 kunit_set_failure(cur_test);
327                 return;
328         }
329
330         kasan_data = (struct kunit_kasan_expectation *)resource->data;
331         kasan_data->report_found = true;
332         kunit_put_resource(resource);
333 }
334 #endif /* IS_ENABLED(CONFIG_KUNIT) */
335
336 void kasan_report_invalid_free(void *object, unsigned long ip)
337 {
338         unsigned long flags;
339         u8 tag = get_tag(object);
340
341         object = kasan_reset_tag(object);
342
343 #if IS_ENABLED(CONFIG_KUNIT)
344         if (current->kunit_test)
345                 kasan_update_kunit_status(current->kunit_test);
346 #endif /* IS_ENABLED(CONFIG_KUNIT) */
347
348         start_report(&flags);
349         pr_err("BUG: KASAN: double-free or invalid-free in %pS\n", (void *)ip);
350         print_tags(tag, object);
351         pr_err("\n");
352         print_address_description(object, tag);
353         pr_err("\n");
354         print_memory_metadata(object);
355         end_report(&flags);
356 }
357
358 static void __kasan_report(unsigned long addr, size_t size, bool is_write,
359                                 unsigned long ip)
360 {
361         struct kasan_access_info info;
362         void *tagged_addr;
363         void *untagged_addr;
364         unsigned long flags;
365
366 #if IS_ENABLED(CONFIG_KUNIT)
367         if (current->kunit_test)
368                 kasan_update_kunit_status(current->kunit_test);
369 #endif /* IS_ENABLED(CONFIG_KUNIT) */
370
371         disable_trace_on_warning();
372
373         tagged_addr = (void *)addr;
374         untagged_addr = kasan_reset_tag(tagged_addr);
375
376         info.access_addr = tagged_addr;
377         if (addr_has_metadata(untagged_addr))
378                 info.first_bad_addr = find_first_bad_addr(tagged_addr, size);
379         else
380                 info.first_bad_addr = untagged_addr;
381         info.access_size = size;
382         info.is_write = is_write;
383         info.ip = ip;
384
385         start_report(&flags);
386
387         print_error_description(&info);
388         if (addr_has_metadata(untagged_addr))
389                 print_tags(get_tag(tagged_addr), info.first_bad_addr);
390         pr_err("\n");
391
392         if (addr_has_metadata(untagged_addr)) {
393                 print_address_description(untagged_addr, get_tag(tagged_addr));
394                 pr_err("\n");
395                 print_memory_metadata(info.first_bad_addr);
396         } else {
397                 dump_stack();
398         }
399
400         end_report(&flags);
401 }
402
403 bool kasan_report(unsigned long addr, size_t size, bool is_write,
404                         unsigned long ip)
405 {
406         unsigned long flags = user_access_save();
407         bool ret = false;
408
409         if (likely(report_enabled())) {
410                 __kasan_report(addr, size, is_write, ip);
411                 ret = true;
412         }
413
414         user_access_restore(flags);
415
416         return ret;
417 }
418
419 #ifdef CONFIG_KASAN_INLINE
420 /*
421  * With CONFIG_KASAN_INLINE, accesses to bogus pointers (outside the high
422  * canonical half of the address space) cause out-of-bounds shadow memory reads
423  * before the actual access. For addresses in the low canonical half of the
424  * address space, as well as most non-canonical addresses, that out-of-bounds
425  * shadow memory access lands in the non-canonical part of the address space.
426  * Help the user figure out what the original bogus pointer was.
427  */
428 void kasan_non_canonical_hook(unsigned long addr)
429 {
430         unsigned long orig_addr;
431         const char *bug_type;
432
433         if (addr < KASAN_SHADOW_OFFSET)
434                 return;
435
436         orig_addr = (addr - KASAN_SHADOW_OFFSET) << KASAN_SHADOW_SCALE_SHIFT;
437         /*
438          * For faults near the shadow address for NULL, we can be fairly certain
439          * that this is a KASAN shadow memory access.
440          * For faults that correspond to shadow for low canonical addresses, we
441          * can still be pretty sure - that shadow region is a fairly narrow
442          * chunk of the non-canonical address space.
443          * But faults that look like shadow for non-canonical addresses are a
444          * really large chunk of the address space. In that case, we still
445          * print the decoded address, but make it clear that this is not
446          * necessarily what's actually going on.
447          */
448         if (orig_addr < PAGE_SIZE)
449                 bug_type = "null-ptr-deref";
450         else if (orig_addr < TASK_SIZE)
451                 bug_type = "probably user-memory-access";
452         else
453                 bug_type = "maybe wild-memory-access";
454         pr_alert("KASAN: %s in range [0x%016lx-0x%016lx]\n", bug_type,
455                  orig_addr, orig_addr + KASAN_GRANULE_SIZE - 1);
456 }
457 #endif