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/lockdep.h> 17 #include <linux/mm.h> 18 #include <linux/printk.h> 19 #include <linux/sched.h> 20 #include <linux/slab.h> 21 #include <linux/stackdepot.h> 22 #include <linux/stacktrace.h> 23 #include <linux/string.h> 24 #include <linux/types.h> 25 #include <linux/kasan.h> 26 #include <linux/module.h> 27 #include <linux/sched/task_stack.h> 28 #include <linux/uaccess.h> 29 #include <trace/events/error_report.h> 30 31 #include <asm/sections.h> 32 33 #include <kunit/test.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 }; 48 49 static enum kasan_arg_fault kasan_arg_fault __ro_after_init = KASAN_ARG_FAULT_DEFAULT; 50 51 /* kasan.fault=report/panic */ 52 static int __init early_kasan_fault(char *arg) 53 { 54 if (!arg) 55 return -EINVAL; 56 57 if (!strcmp(arg, "report")) 58 kasan_arg_fault = KASAN_ARG_FAULT_REPORT; 59 else if (!strcmp(arg, "panic")) 60 kasan_arg_fault = KASAN_ARG_FAULT_PANIC; 61 else 62 return -EINVAL; 63 64 return 0; 65 } 66 early_param("kasan.fault", early_kasan_fault); 67 68 static int __init kasan_set_multi_shot(char *str) 69 { 70 set_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags); 71 return 1; 72 } 73 __setup("kasan_multi_shot", kasan_set_multi_shot); 74 75 /* 76 * Used to suppress reports within kasan_disable/enable_current() critical 77 * sections, which are used for marking accesses to slab metadata. 78 */ 79 static bool report_suppressed(void) 80 { 81 #if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS) 82 if (current->kasan_depth) 83 return true; 84 #endif 85 return false; 86 } 87 88 /* 89 * Used to avoid reporting more than one KASAN bug unless kasan_multi_shot 90 * is enabled. Note that KASAN tests effectively enable kasan_multi_shot 91 * for their duration. 92 */ 93 static bool report_enabled(void) 94 { 95 if (test_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags)) 96 return true; 97 return !test_and_set_bit(KASAN_BIT_REPORTED, &kasan_flags); 98 } 99 100 #if IS_ENABLED(CONFIG_KASAN_KUNIT_TEST) || IS_ENABLED(CONFIG_KASAN_MODULE_TEST) 101 102 bool kasan_save_enable_multi_shot(void) 103 { 104 return test_and_set_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags); 105 } 106 EXPORT_SYMBOL_GPL(kasan_save_enable_multi_shot); 107 108 void kasan_restore_multi_shot(bool enabled) 109 { 110 if (!enabled) 111 clear_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags); 112 } 113 EXPORT_SYMBOL_GPL(kasan_restore_multi_shot); 114 115 #endif 116 117 #if IS_ENABLED(CONFIG_KASAN_KUNIT_TEST) 118 static void update_kunit_status(bool sync) 119 { 120 struct kunit *test; 121 struct kunit_resource *resource; 122 struct kunit_kasan_status *status; 123 124 test = current->kunit_test; 125 if (!test) 126 return; 127 128 resource = kunit_find_named_resource(test, "kasan_status"); 129 if (!resource) { 130 kunit_set_failure(test); 131 return; 132 } 133 134 status = (struct kunit_kasan_status *)resource->data; 135 WRITE_ONCE(status->report_found, true); 136 WRITE_ONCE(status->sync_fault, sync); 137 138 kunit_put_resource(resource); 139 } 140 #else 141 static void update_kunit_status(bool sync) { } 142 #endif 143 144 static DEFINE_SPINLOCK(report_lock); 145 146 static void start_report(unsigned long *flags, bool sync) 147 { 148 /* Respect the /proc/sys/kernel/traceoff_on_warning interface. */ 149 disable_trace_on_warning(); 150 /* Update status of the currently running KASAN test. */ 151 update_kunit_status(sync); 152 /* Do not allow LOCKDEP mangling KASAN reports. */ 153 lockdep_off(); 154 /* Make sure we don't end up in loop. */ 155 kasan_disable_current(); 156 spin_lock_irqsave(&report_lock, *flags); 157 pr_err("==================================================================\n"); 158 } 159 160 static void end_report(unsigned long *flags, void *addr) 161 { 162 if (addr) 163 trace_error_report_end(ERROR_DETECTOR_KASAN, 164 (unsigned long)addr); 165 pr_err("==================================================================\n"); 166 spin_unlock_irqrestore(&report_lock, *flags); 167 if (panic_on_warn && !test_bit(KASAN_BIT_MULTI_SHOT, &kasan_flags)) 168 panic("panic_on_warn set ...\n"); 169 if (kasan_arg_fault == KASAN_ARG_FAULT_PANIC) 170 panic("kasan.fault=panic set ...\n"); 171 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE); 172 lockdep_on(); 173 kasan_enable_current(); 174 } 175 176 static void print_error_description(struct kasan_report_info *info) 177 { 178 if (info->type == KASAN_REPORT_INVALID_FREE) { 179 pr_err("BUG: KASAN: invalid-free in %pS\n", (void *)info->ip); 180 return; 181 } 182 183 if (info->type == KASAN_REPORT_DOUBLE_FREE) { 184 pr_err("BUG: KASAN: double-free in %pS\n", (void *)info->ip); 185 return; 186 } 187 188 pr_err("BUG: KASAN: %s in %pS\n", info->bug_type, (void *)info->ip); 189 if (info->access_size) 190 pr_err("%s of size %zu at addr %px by task %s/%d\n", 191 info->is_write ? "Write" : "Read", info->access_size, 192 info->access_addr, current->comm, task_pid_nr(current)); 193 else 194 pr_err("%s at addr %px by task %s/%d\n", 195 info->is_write ? "Write" : "Read", 196 info->access_addr, current->comm, task_pid_nr(current)); 197 } 198 199 static void print_track(struct kasan_track *track, const char *prefix) 200 { 201 pr_err("%s by task %u:\n", prefix, track->pid); 202 if (track->stack) 203 stack_depot_print(track->stack); 204 else 205 pr_err("(stack is not available)\n"); 206 } 207 208 static inline struct page *addr_to_page(const void *addr) 209 { 210 if (virt_addr_valid(addr)) 211 return virt_to_head_page(addr); 212 return NULL; 213 } 214 215 static void describe_object_addr(const void *addr, struct kmem_cache *cache, 216 void *object) 217 { 218 unsigned long access_addr = (unsigned long)addr; 219 unsigned long object_addr = (unsigned long)object; 220 const char *rel_type; 221 int rel_bytes; 222 223 pr_err("The buggy address belongs to the object at %px\n" 224 " which belongs to the cache %s of size %d\n", 225 object, cache->name, cache->object_size); 226 227 if (access_addr < object_addr) { 228 rel_type = "to the left"; 229 rel_bytes = object_addr - access_addr; 230 } else if (access_addr >= object_addr + cache->object_size) { 231 rel_type = "to the right"; 232 rel_bytes = access_addr - (object_addr + cache->object_size); 233 } else { 234 rel_type = "inside"; 235 rel_bytes = access_addr - object_addr; 236 } 237 238 pr_err("The buggy address is located %d bytes %s of\n" 239 " %d-byte region [%px, %px)\n", 240 rel_bytes, rel_type, cache->object_size, (void *)object_addr, 241 (void *)(object_addr + cache->object_size)); 242 } 243 244 static void describe_object_stacks(struct kasan_report_info *info) 245 { 246 if (info->alloc_track.stack) { 247 print_track(&info->alloc_track, "Allocated"); 248 pr_err("\n"); 249 } 250 251 if (info->free_track.stack) { 252 print_track(&info->free_track, "Freed"); 253 pr_err("\n"); 254 } 255 256 kasan_print_aux_stacks(info->cache, info->object); 257 } 258 259 static void describe_object(const void *addr, struct kasan_report_info *info) 260 { 261 if (kasan_stack_collection_enabled()) 262 describe_object_stacks(info); 263 describe_object_addr(addr, info->cache, info->object); 264 } 265 266 static inline bool kernel_or_module_addr(const void *addr) 267 { 268 if (is_kernel((unsigned long)addr)) 269 return true; 270 if (is_module_address((unsigned long)addr)) 271 return true; 272 return false; 273 } 274 275 static inline bool init_task_stack_addr(const void *addr) 276 { 277 return addr >= (void *)&init_thread_union.stack && 278 (addr <= (void *)&init_thread_union.stack + 279 sizeof(init_thread_union.stack)); 280 } 281 282 static void print_address_description(void *addr, u8 tag, 283 struct kasan_report_info *info) 284 { 285 struct page *page = addr_to_page(addr); 286 287 dump_stack_lvl(KERN_ERR); 288 pr_err("\n"); 289 290 if (info->cache && info->object) { 291 describe_object(addr, info); 292 pr_err("\n"); 293 } 294 295 if (kernel_or_module_addr(addr) && !init_task_stack_addr(addr)) { 296 pr_err("The buggy address belongs to the variable:\n"); 297 pr_err(" %pS\n", addr); 298 pr_err("\n"); 299 } 300 301 if (object_is_on_stack(addr)) { 302 /* 303 * Currently, KASAN supports printing frame information only 304 * for accesses to the task's own stack. 305 */ 306 kasan_print_address_stack_frame(addr); 307 pr_err("\n"); 308 } 309 310 if (is_vmalloc_addr(addr)) { 311 struct vm_struct *va = find_vm_area(addr); 312 313 if (va) { 314 pr_err("The buggy address belongs to the virtual mapping at\n" 315 " [%px, %px) created by:\n" 316 " %pS\n", 317 va->addr, va->addr + va->size, va->caller); 318 pr_err("\n"); 319 320 page = vmalloc_to_page(addr); 321 } 322 } 323 324 if (page) { 325 pr_err("The buggy address belongs to the physical page:\n"); 326 dump_page(page, "kasan: bad access detected"); 327 pr_err("\n"); 328 } 329 } 330 331 static bool meta_row_is_guilty(const void *row, const void *addr) 332 { 333 return (row <= addr) && (addr < row + META_MEM_BYTES_PER_ROW); 334 } 335 336 static int meta_pointer_offset(const void *row, const void *addr) 337 { 338 /* 339 * Memory state around the buggy address: 340 * ff00ff00ff00ff00: 00 00 00 05 fe fe fe fe fe fe fe fe fe fe fe fe 341 * ... 342 * 343 * The length of ">ff00ff00ff00ff00: " is 344 * 3 + (BITS_PER_LONG / 8) * 2 chars. 345 * The length of each granule metadata is 2 bytes 346 * plus 1 byte for space. 347 */ 348 return 3 + (BITS_PER_LONG / 8) * 2 + 349 (addr - row) / KASAN_GRANULE_SIZE * 3 + 1; 350 } 351 352 static void print_memory_metadata(const void *addr) 353 { 354 int i; 355 void *row; 356 357 row = (void *)round_down((unsigned long)addr, META_MEM_BYTES_PER_ROW) 358 - META_ROWS_AROUND_ADDR * META_MEM_BYTES_PER_ROW; 359 360 pr_err("Memory state around the buggy address:\n"); 361 362 for (i = -META_ROWS_AROUND_ADDR; i <= META_ROWS_AROUND_ADDR; i++) { 363 char buffer[4 + (BITS_PER_LONG / 8) * 2]; 364 char metadata[META_BYTES_PER_ROW]; 365 366 snprintf(buffer, sizeof(buffer), 367 (i == 0) ? ">%px: " : " %px: ", row); 368 369 /* 370 * We should not pass a shadow pointer to generic 371 * function, because generic functions may try to 372 * access kasan mapping for the passed address. 373 */ 374 kasan_metadata_fetch_row(&metadata[0], row); 375 376 print_hex_dump(KERN_ERR, buffer, 377 DUMP_PREFIX_NONE, META_BYTES_PER_ROW, 1, 378 metadata, META_BYTES_PER_ROW, 0); 379 380 if (meta_row_is_guilty(row, addr)) 381 pr_err("%*c\n", meta_pointer_offset(row, addr), '^'); 382 383 row += META_MEM_BYTES_PER_ROW; 384 } 385 } 386 387 static void print_report(struct kasan_report_info *info) 388 { 389 void *addr = kasan_reset_tag(info->access_addr); 390 u8 tag = get_tag(info->access_addr); 391 392 print_error_description(info); 393 if (addr_has_metadata(addr)) 394 kasan_print_tags(tag, info->first_bad_addr); 395 pr_err("\n"); 396 397 if (addr_has_metadata(addr)) { 398 print_address_description(addr, tag, info); 399 print_memory_metadata(info->first_bad_addr); 400 } else { 401 dump_stack_lvl(KERN_ERR); 402 } 403 } 404 405 static void complete_report_info(struct kasan_report_info *info) 406 { 407 void *addr = kasan_reset_tag(info->access_addr); 408 struct slab *slab; 409 410 if (info->type == KASAN_REPORT_ACCESS) 411 info->first_bad_addr = kasan_find_first_bad_addr( 412 info->access_addr, info->access_size); 413 else 414 info->first_bad_addr = addr; 415 416 slab = kasan_addr_to_slab(addr); 417 if (slab) { 418 info->cache = slab->slab_cache; 419 info->object = nearest_obj(info->cache, slab, addr); 420 } else 421 info->cache = info->object = NULL; 422 423 /* Fill in mode-specific report info fields. */ 424 kasan_complete_mode_report_info(info); 425 } 426 427 void kasan_report_invalid_free(void *ptr, unsigned long ip, enum kasan_report_type type) 428 { 429 unsigned long flags; 430 struct kasan_report_info info; 431 432 /* 433 * Do not check report_suppressed(), as an invalid-free cannot be 434 * caused by accessing slab metadata and thus should not be 435 * suppressed by kasan_disable/enable_current() critical sections. 436 */ 437 if (unlikely(!report_enabled())) 438 return; 439 440 start_report(&flags, true); 441 442 memset(&info, 0, sizeof(info)); 443 info.type = type; 444 info.access_addr = ptr; 445 info.access_size = 0; 446 info.is_write = false; 447 info.ip = ip; 448 449 complete_report_info(&info); 450 451 print_report(&info); 452 453 end_report(&flags, ptr); 454 } 455 456 /* 457 * kasan_report() is the only reporting function that uses 458 * user_access_save/restore(): kasan_report_invalid_free() cannot be called 459 * from a UACCESS region, and kasan_report_async() is not used on x86. 460 */ 461 bool kasan_report(unsigned long addr, size_t size, bool is_write, 462 unsigned long ip) 463 { 464 bool ret = true; 465 void *ptr = (void *)addr; 466 unsigned long ua_flags = user_access_save(); 467 unsigned long irq_flags; 468 struct kasan_report_info info; 469 470 if (unlikely(report_suppressed()) || unlikely(!report_enabled())) { 471 ret = false; 472 goto out; 473 } 474 475 start_report(&irq_flags, true); 476 477 memset(&info, 0, sizeof(info)); 478 info.type = KASAN_REPORT_ACCESS; 479 info.access_addr = ptr; 480 info.access_size = size; 481 info.is_write = is_write; 482 info.ip = ip; 483 484 complete_report_info(&info); 485 486 print_report(&info); 487 488 end_report(&irq_flags, ptr); 489 490 out: 491 user_access_restore(ua_flags); 492 493 return ret; 494 } 495 496 #ifdef CONFIG_KASAN_HW_TAGS 497 void kasan_report_async(void) 498 { 499 unsigned long flags; 500 501 /* 502 * Do not check report_suppressed(), as kasan_disable/enable_current() 503 * critical sections do not affect Hardware Tag-Based KASAN. 504 */ 505 if (unlikely(!report_enabled())) 506 return; 507 508 start_report(&flags, false); 509 pr_err("BUG: KASAN: invalid-access\n"); 510 pr_err("Asynchronous fault: no details available\n"); 511 pr_err("\n"); 512 dump_stack_lvl(KERN_ERR); 513 end_report(&flags, NULL); 514 } 515 #endif /* CONFIG_KASAN_HW_TAGS */ 516 517 #ifdef CONFIG_KASAN_INLINE 518 /* 519 * With CONFIG_KASAN_INLINE, accesses to bogus pointers (outside the high 520 * canonical half of the address space) cause out-of-bounds shadow memory reads 521 * before the actual access. For addresses in the low canonical half of the 522 * address space, as well as most non-canonical addresses, that out-of-bounds 523 * shadow memory access lands in the non-canonical part of the address space. 524 * Help the user figure out what the original bogus pointer was. 525 */ 526 void kasan_non_canonical_hook(unsigned long addr) 527 { 528 unsigned long orig_addr; 529 const char *bug_type; 530 531 if (addr < KASAN_SHADOW_OFFSET) 532 return; 533 534 orig_addr = (addr - KASAN_SHADOW_OFFSET) << KASAN_SHADOW_SCALE_SHIFT; 535 /* 536 * For faults near the shadow address for NULL, we can be fairly certain 537 * that this is a KASAN shadow memory access. 538 * For faults that correspond to shadow for low canonical addresses, we 539 * can still be pretty sure - that shadow region is a fairly narrow 540 * chunk of the non-canonical address space. 541 * But faults that look like shadow for non-canonical addresses are a 542 * really large chunk of the address space. In that case, we still 543 * print the decoded address, but make it clear that this is not 544 * necessarily what's actually going on. 545 */ 546 if (orig_addr < PAGE_SIZE) 547 bug_type = "null-ptr-deref"; 548 else if (orig_addr < TASK_SIZE) 549 bug_type = "probably user-memory-access"; 550 else 551 bug_type = "maybe wild-memory-access"; 552 pr_alert("KASAN: %s in range [0x%016lx-0x%016lx]\n", bug_type, 553 orig_addr, orig_addr + KASAN_GRANULE_SIZE - 1); 554 } 555 #endif 556