2 * This file contains error reporting code.
4 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
5 * Author: Andrey Ryabinin <ryabinin.a.a@gmail.com>
7 * Some code borrowed from https://github.com/xairy/kasan-prototype by
8 * Andrey Konovalov <adech.fo@gmail.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
16 #include <linux/kernel.h>
18 #include <linux/printk.h>
19 #include <linux/sched.h>
20 #include <linux/slab.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>
27 #include <asm/sections.h>
32 /* Shadow layout customization. */
33 #define SHADOW_BYTES_PER_BLOCK 1
34 #define SHADOW_BLOCKS_PER_ROW 16
35 #define SHADOW_BYTES_PER_ROW (SHADOW_BLOCKS_PER_ROW * SHADOW_BYTES_PER_BLOCK)
36 #define SHADOW_ROWS_AROUND_ADDR 2
38 static const void *find_first_bad_addr(const void *addr
, size_t size
)
40 u8 shadow_val
= *(u8
*)kasan_mem_to_shadow(addr
);
41 const void *first_bad_addr
= addr
;
43 while (!shadow_val
&& first_bad_addr
< addr
+ size
) {
44 first_bad_addr
+= KASAN_SHADOW_SCALE_SIZE
;
45 shadow_val
= *(u8
*)kasan_mem_to_shadow(first_bad_addr
);
47 return first_bad_addr
;
50 static void print_error_description(struct kasan_access_info
*info
)
52 const char *bug_type
= "unknown-crash";
55 info
->first_bad_addr
= find_first_bad_addr(info
->access_addr
,
58 shadow_addr
= (u8
*)kasan_mem_to_shadow(info
->first_bad_addr
);
61 * If shadow byte value is in [0, KASAN_SHADOW_SCALE_SIZE) we can look
62 * at the next shadow byte to determine the type of the bad access.
64 if (*shadow_addr
> 0 && *shadow_addr
<= KASAN_SHADOW_SCALE_SIZE
- 1)
67 switch (*shadow_addr
) {
68 case 0 ... KASAN_SHADOW_SCALE_SIZE
- 1:
70 * In theory it's still possible to see these shadow values
71 * due to a data race in the kernel code.
73 bug_type
= "out-of-bounds";
75 case KASAN_PAGE_REDZONE
:
76 case KASAN_KMALLOC_REDZONE
:
77 bug_type
= "slab-out-of-bounds";
79 case KASAN_GLOBAL_REDZONE
:
80 bug_type
= "global-out-of-bounds";
82 case KASAN_STACK_LEFT
:
84 case KASAN_STACK_RIGHT
:
85 case KASAN_STACK_PARTIAL
:
86 bug_type
= "stack-out-of-bounds";
89 case KASAN_KMALLOC_FREE
:
90 bug_type
= "use-after-free";
94 pr_err("BUG: KASAN: %s in %pS at addr %p\n",
95 bug_type
, (void *)info
->ip
,
97 pr_err("%s of size %zu by task %s/%d\n",
98 info
->is_write
? "Write" : "Read",
99 info
->access_size
, current
->comm
, task_pid_nr(current
));
102 static inline bool kernel_or_module_addr(const void *addr
)
104 if (addr
>= (void *)_stext
&& addr
< (void *)_end
)
106 if (is_module_address((unsigned long)addr
))
111 static inline bool init_task_stack_addr(const void *addr
)
113 return addr
>= (void *)&init_thread_union
.stack
&&
114 (addr
<= (void *)&init_thread_union
.stack
+
115 sizeof(init_thread_union
.stack
));
118 static void print_address_description(struct kasan_access_info
*info
)
120 const void *addr
= info
->access_addr
;
122 if ((addr
>= (void *)PAGE_OFFSET
) &&
123 (addr
< high_memory
)) {
124 struct page
*page
= virt_to_head_page(addr
);
126 if (PageSlab(page
)) {
128 struct kmem_cache
*cache
= page
->slab_cache
;
131 object
= virt_to_obj(cache
, page_address(page
), addr
);
132 last_object
= page_address(page
) +
133 page
->objects
* cache
->size
;
135 if (unlikely(object
> last_object
))
136 object
= last_object
; /* we hit into padding */
138 object_err(cache
, page
, object
,
139 "kasan: bad access detected");
142 dump_page(page
, "kasan: bad access detected");
145 if (kernel_or_module_addr(addr
)) {
146 if (!init_task_stack_addr(addr
))
147 pr_err("Address belongs to variable %pS\n", addr
);
153 static bool row_is_guilty(const void *row
, const void *guilty
)
155 return (row
<= guilty
) && (guilty
< row
+ SHADOW_BYTES_PER_ROW
);
158 static int shadow_pointer_offset(const void *row
, const void *shadow
)
160 /* The length of ">ff00ff00ff00ff00: " is
161 * 3 + (BITS_PER_LONG/8)*2 chars.
163 return 3 + (BITS_PER_LONG
/8)*2 + (shadow
- row
)*2 +
164 (shadow
- row
) / SHADOW_BYTES_PER_BLOCK
+ 1;
167 static void print_shadow_for_address(const void *addr
)
170 const void *shadow
= kasan_mem_to_shadow(addr
);
171 const void *shadow_row
;
173 shadow_row
= (void *)round_down((unsigned long)shadow
,
174 SHADOW_BYTES_PER_ROW
)
175 - SHADOW_ROWS_AROUND_ADDR
* SHADOW_BYTES_PER_ROW
;
177 pr_err("Memory state around the buggy address:\n");
179 for (i
= -SHADOW_ROWS_AROUND_ADDR
; i
<= SHADOW_ROWS_AROUND_ADDR
; i
++) {
180 const void *kaddr
= kasan_shadow_to_mem(shadow_row
);
181 char buffer
[4 + (BITS_PER_LONG
/8)*2];
182 char shadow_buf
[SHADOW_BYTES_PER_ROW
];
184 snprintf(buffer
, sizeof(buffer
),
185 (i
== 0) ? ">%p: " : " %p: ", kaddr
);
187 * We should not pass a shadow pointer to generic
188 * function, because generic functions may try to
189 * access kasan mapping for the passed address.
191 memcpy(shadow_buf
, shadow_row
, SHADOW_BYTES_PER_ROW
);
192 print_hex_dump(KERN_ERR
, buffer
,
193 DUMP_PREFIX_NONE
, SHADOW_BYTES_PER_ROW
, 1,
194 shadow_buf
, SHADOW_BYTES_PER_ROW
, 0);
196 if (row_is_guilty(shadow_row
, shadow
))
198 shadow_pointer_offset(shadow_row
, shadow
),
201 shadow_row
+= SHADOW_BYTES_PER_ROW
;
205 static DEFINE_SPINLOCK(report_lock
);
207 static void kasan_report_error(struct kasan_access_info
*info
)
210 const char *bug_type
;
213 * Make sure we don't end up in loop.
215 kasan_disable_current();
216 spin_lock_irqsave(&report_lock
, flags
);
217 pr_err("================================="
218 "=================================\n");
219 if (info
->access_addr
<
220 kasan_shadow_to_mem((void *)KASAN_SHADOW_START
)) {
221 if ((unsigned long)info
->access_addr
< PAGE_SIZE
)
222 bug_type
= "null-ptr-deref";
223 else if ((unsigned long)info
->access_addr
< TASK_SIZE
)
224 bug_type
= "user-memory-access";
226 bug_type
= "wild-memory-access";
227 pr_err("BUG: KASAN: %s on address %p\n",
228 bug_type
, info
->access_addr
);
229 pr_err("%s of size %zu by task %s/%d\n",
230 info
->is_write
? "Write" : "Read",
231 info
->access_size
, current
->comm
,
232 task_pid_nr(current
));
235 print_error_description(info
);
236 print_address_description(info
);
237 print_shadow_for_address(info
->first_bad_addr
);
239 pr_err("================================="
240 "=================================\n");
241 add_taint(TAINT_BAD_PAGE
, LOCKDEP_NOW_UNRELIABLE
);
242 spin_unlock_irqrestore(&report_lock
, flags
);
243 kasan_enable_current();
246 void kasan_report(unsigned long addr
, size_t size
,
247 bool is_write
, unsigned long ip
)
249 struct kasan_access_info info
;
251 if (likely(!kasan_report_enabled()))
254 info
.access_addr
= (void *)addr
;
255 info
.access_size
= size
;
256 info
.is_write
= is_write
;
259 kasan_report_error(&info
);
263 #define DEFINE_ASAN_REPORT_LOAD(size) \
264 void __asan_report_load##size##_noabort(unsigned long addr) \
266 kasan_report(addr, size, false, _RET_IP_); \
268 EXPORT_SYMBOL(__asan_report_load##size##_noabort)
270 #define DEFINE_ASAN_REPORT_STORE(size) \
271 void __asan_report_store##size##_noabort(unsigned long addr) \
273 kasan_report(addr, size, true, _RET_IP_); \
275 EXPORT_SYMBOL(__asan_report_store##size##_noabort)
277 DEFINE_ASAN_REPORT_LOAD(1);
278 DEFINE_ASAN_REPORT_LOAD(2);
279 DEFINE_ASAN_REPORT_LOAD(4);
280 DEFINE_ASAN_REPORT_LOAD(8);
281 DEFINE_ASAN_REPORT_LOAD(16);
282 DEFINE_ASAN_REPORT_STORE(1);
283 DEFINE_ASAN_REPORT_STORE(2);
284 DEFINE_ASAN_REPORT_STORE(4);
285 DEFINE_ASAN_REPORT_STORE(8);
286 DEFINE_ASAN_REPORT_STORE(16);
288 void __asan_report_load_n_noabort(unsigned long addr
, size_t size
)
290 kasan_report(addr
, size
, false, _RET_IP_
);
292 EXPORT_SYMBOL(__asan_report_load_n_noabort
);
294 void __asan_report_store_n_noabort(unsigned long addr
, size_t size
)
296 kasan_report(addr
, size
, true, _RET_IP_
);
298 EXPORT_SYMBOL(__asan_report_store_n_noabort
);