common.c 13.6 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2
/*
3
 * This file contains common KASAN code.
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
 *
 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
 * Author: Andrey Ryabinin <ryabinin.a.a@gmail.com>
 *
 * Some code borrowed from https://github.com/xairy/kasan-prototype by
 *        Andrey Konovalov <andreyknvl@gmail.com>
 */

#include <linux/export.h>
#include <linux/init.h>
#include <linux/kasan.h>
#include <linux/kernel.h>
#include <linux/linkage.h>
#include <linux/memblock.h>
#include <linux/memory.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/printk.h>
#include <linux/sched.h>
#include <linux/sched/task_stack.h>
#include <linux/slab.h>
#include <linux/stacktrace.h>
#include <linux/string.h>
#include <linux/types.h>
#include <linux/bug.h>

#include "kasan.h"
#include "../slab.h"

33
depot_stack_handle_t kasan_save_stack(gfp_t flags)
34 35
{
	unsigned long entries[KASAN_STACK_DEPTH];
36
	unsigned int nr_entries;
37

38 39 40
	nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 0);
	nr_entries = filter_irq_stacks(entries, nr_entries);
	return stack_depot_save(entries, nr_entries, flags);
41 42
}

43
void kasan_set_track(struct kasan_track *track, gfp_t flags)
44 45
{
	track->pid = current->pid;
46
	track->stack = kasan_save_stack(flags);
47 48
}

49
#if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS)
50 51 52 53 54 55 56 57 58
void kasan_enable_current(void)
{
	current->kasan_depth++;
}

void kasan_disable_current(void)
{
	current->kasan_depth--;
}
59
#endif /* CONFIG_KASAN_GENERIC || CONFIG_KASAN_SW_TAGS */
60

61
void __kasan_unpoison_range(const void *address, size_t size)
62 63 64 65
{
	unpoison_range(address, size);
}

66
#if CONFIG_KASAN_STACK
67 68 69
/* Unpoison the entire stack for a task. */
void kasan_unpoison_task_stack(struct task_struct *task)
{
70 71 72
	void *base = task_stack_page(task);

	unpoison_range(base, THREAD_SIZE);
73 74 75 76 77 78 79 80 81 82 83 84
}

/* Unpoison the stack for the current task beyond a watermark sp value. */
asmlinkage void kasan_unpoison_task_stack_below(const void *watermark)
{
	/*
	 * Calculate the task stack base address.  Avoid using 'current'
	 * because this function is called by early resume code which hasn't
	 * yet set up the percpu register (%gs).
	 */
	void *base = (void *)((unsigned long)watermark & ~(THREAD_SIZE - 1));

85
	unpoison_range(base, watermark - base);
86
}
87
#endif /* CONFIG_KASAN_STACK */
88

89 90 91 92 93 94 95 96 97 98 99
/*
 * Only allow cache merging when stack collection is disabled and no metadata
 * is present.
 */
slab_flags_t __kasan_never_merge(void)
{
	if (kasan_stack_collection_enabled())
		return SLAB_KASAN;
	return 0;
}

100
void __kasan_alloc_pages(struct page *page, unsigned int order)
101
{
102 103 104
	u8 tag;
	unsigned long i;

105 106
	if (unlikely(PageHighMem(page)))
		return;
107 108 109 110

	tag = random_tag();
	for (i = 0; i < (1 << order); i++)
		page_kasan_tag_set(page + i, tag);
111
	unpoison_range(page_address(page), PAGE_SIZE << order);
112 113
}

114
void __kasan_free_pages(struct page *page, unsigned int order)
115 116
{
	if (likely(!PageHighMem(page)))
117
		poison_range(page_address(page),
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
				PAGE_SIZE << order,
				KASAN_FREE_PAGE);
}

/*
 * Adaptive redzone policy taken from the userspace AddressSanitizer runtime.
 * For larger allocations larger redzones are used.
 */
static inline unsigned int optimal_redzone(unsigned int object_size)
{
	return
		object_size <= 64        - 16   ? 16 :
		object_size <= 128       - 32   ? 32 :
		object_size <= 512       - 64   ? 64 :
		object_size <= 4096      - 128  ? 128 :
		object_size <= (1 << 14) - 256  ? 256 :
		object_size <= (1 << 15) - 512  ? 512 :
		object_size <= (1 << 16) - 1024 ? 1024 : 2048;
}

138 139
void __kasan_cache_create(struct kmem_cache *cache, unsigned int *size,
			  slab_flags_t *flags)
140
{
141 142 143 144 145 146 147 148 149 150 151
	unsigned int ok_size;
	unsigned int optimal_size;

	/*
	 * SLAB_KASAN is used to mark caches as ones that are sanitized by
	 * KASAN. Currently this flag is used in two places:
	 * 1. In slab_ksize() when calculating the size of the accessible
	 *    memory within the object.
	 * 2. In slab_common.c to prevent merging of sanitized caches.
	 */
	*flags |= SLAB_KASAN;
152

153
	if (!kasan_stack_collection_enabled())
154 155
		return;

156 157 158
	ok_size = *size;

	/* Add alloc meta into redzone. */
159 160 161
	cache->kasan_info.alloc_meta_offset = *size;
	*size += sizeof(struct kasan_alloc_meta);

162 163 164 165 166 167 168 169 170 171
	/*
	 * If alloc meta doesn't fit, don't add it.
	 * This can only happen with SLAB, as it has KMALLOC_MAX_SIZE equal
	 * to KMALLOC_MAX_CACHE_SIZE and doesn't fall back to page_alloc for
	 * larger sizes.
	 */
	if (*size > KMALLOC_MAX_SIZE) {
		cache->kasan_info.alloc_meta_offset = 0;
		*size = ok_size;
		/* Continue, since free meta might still fit. */
172 173
	}

174 175 176 177 178
	/* Only the generic mode uses free meta or flexible redzones. */
	if (!IS_ENABLED(CONFIG_KASAN_GENERIC)) {
		cache->kasan_info.free_meta_offset = KASAN_NO_FREE_META;
		return;
	}
179 180

	/*
181 182 183 184 185 186 187 188
	 * Add free meta into redzone when it's not possible to store
	 * it in the object. This is the case when:
	 * 1. Object is SLAB_TYPESAFE_BY_RCU, which means that it can
	 *    be touched after it was freed, or
	 * 2. Object has a constructor, which means it's expected to
	 *    retain its content until the next allocation, or
	 * 3. Object is too small.
	 * Otherwise cache->kasan_info.free_meta_offset = 0 is implied.
189
	 */
190 191 192 193 194 195 196 197 198 199 200 201
	if ((cache->flags & SLAB_TYPESAFE_BY_RCU) || cache->ctor ||
	    cache->object_size < sizeof(struct kasan_free_meta)) {
		ok_size = *size;

		cache->kasan_info.free_meta_offset = *size;
		*size += sizeof(struct kasan_free_meta);

		/* If free meta doesn't fit, don't add it. */
		if (*size > KMALLOC_MAX_SIZE) {
			cache->kasan_info.free_meta_offset = KASAN_NO_FREE_META;
			*size = ok_size;
		}
202 203
	}

204 205 206 207 208 209 210 211
	/* Calculate size with optimal redzone. */
	optimal_size = cache->object_size + optimal_redzone(cache->object_size);
	/* Limit it with KMALLOC_MAX_SIZE (relevant for SLAB only). */
	if (optimal_size > KMALLOC_MAX_SIZE)
		optimal_size = KMALLOC_MAX_SIZE;
	/* Use optimal size if the size with added metas is not large enough. */
	if (*size < optimal_size)
		*size = optimal_size;
212 213
}

214
size_t __kasan_metadata_size(struct kmem_cache *cache)
215
{
216 217
	if (!kasan_stack_collection_enabled())
		return 0;
218 219 220 221 222 223
	return (cache->kasan_info.alloc_meta_offset ?
		sizeof(struct kasan_alloc_meta) : 0) +
		(cache->kasan_info.free_meta_offset ?
		sizeof(struct kasan_free_meta) : 0);
}

224 225
struct kasan_alloc_meta *kasan_get_alloc_meta(struct kmem_cache *cache,
					      const void *object)
226
{
227 228
	if (!cache->kasan_info.alloc_meta_offset)
		return NULL;
229
	return kasan_reset_tag(object) + cache->kasan_info.alloc_meta_offset;
230 231
}

232
#ifdef CONFIG_KASAN_GENERIC
233 234
struct kasan_free_meta *kasan_get_free_meta(struct kmem_cache *cache,
					    const void *object)
235 236
{
	BUILD_BUG_ON(sizeof(struct kasan_free_meta) > 32);
237 238
	if (cache->kasan_info.free_meta_offset == KASAN_NO_FREE_META)
		return NULL;
239
	return kasan_reset_tag(object) + cache->kasan_info.free_meta_offset;
240
}
241
#endif
242

243
void __kasan_poison_slab(struct page *page)
244
{
245 246
	unsigned long i;

247
	for (i = 0; i < compound_nr(page); i++)
248
		page_kasan_tag_reset(page + i);
249 250
	poison_range(page_address(page), page_size(page),
		     KASAN_KMALLOC_REDZONE);
251 252
}

253
void __kasan_unpoison_object_data(struct kmem_cache *cache, void *object)
254
{
255
	unpoison_range(object, cache->object_size);
256 257
}

258
void __kasan_poison_object_data(struct kmem_cache *cache, void *object)
259
{
A
Andrey Konovalov 已提交
260
	poison_range(object, cache->object_size, KASAN_KMALLOC_REDZONE);
261 262
}

263
/*
264 265 266 267 268 269 270 271 272 273 274 275
 * This function assigns a tag to an object considering the following:
 * 1. A cache might have a constructor, which might save a pointer to a slab
 *    object somewhere (e.g. in the object itself). We preassign a tag for
 *    each object in caches with constructors during slab creation and reuse
 *    the same tag each time a particular object is allocated.
 * 2. A cache might be SLAB_TYPESAFE_BY_RCU, which means objects can be
 *    accessed after being freed. We preassign tags for objects in these
 *    caches as well.
 * 3. For SLAB allocator we can't preassign tags randomly since the freelist
 *    is stored as an array of indexes instead of a linked list. Assign tags
 *    based on objects indexes, so that objects that are next to each other
 *    get different tags.
276
 */
277
static u8 assign_tag(struct kmem_cache *cache, const void *object,
278
			bool init, bool keep_tag)
279
{
280 281 282
	if (IS_ENABLED(CONFIG_KASAN_GENERIC))
		return 0xff;

283 284 285 286 287 288 289
	/*
	 * 1. When an object is kmalloc()'ed, two hooks are called:
	 *    kasan_slab_alloc() and kasan_kmalloc(). We assign the
	 *    tag only in the first one.
	 * 2. We reuse the same tag for krealloc'ed objects.
	 */
	if (keep_tag)
290 291 292 293 294 295
		return get_tag(object);

	/*
	 * If the cache neither has a constructor nor has SLAB_TYPESAFE_BY_RCU
	 * set, assign a tag when the object is being allocated (init == false).
	 */
296
	if (!cache->ctor && !(cache->flags & SLAB_TYPESAFE_BY_RCU))
297
		return init ? KASAN_TAG_KERNEL : random_tag();
298

299
	/* For caches that either have a constructor or SLAB_TYPESAFE_BY_RCU: */
300
#ifdef CONFIG_SLAB
301
	/* For SLAB assign tags based on the object index in the freelist. */
302 303
	return (u8)obj_to_index(cache, virt_to_page(object), (void *)object);
#else
304 305 306 307 308
	/*
	 * For SLUB assign a random tag during slab creation, otherwise reuse
	 * the already assigned tag.
	 */
	return init ? random_tag() : get_tag(object);
309 310 311
#endif
}

312
void * __must_check __kasan_init_slab_obj(struct kmem_cache *cache,
313
						const void *object)
314
{
315
	struct kasan_alloc_meta *alloc_meta;
316

317 318
	if (kasan_stack_collection_enabled()) {
		alloc_meta = kasan_get_alloc_meta(cache, object);
319 320
		if (alloc_meta)
			__memset(alloc_meta, 0, sizeof(*alloc_meta));
321
	}
322

323 324
	/* Tag is ignored in set_tag() without CONFIG_KASAN_SW/HW_TAGS */
	object = set_tag(object, assign_tag(cache, object, true, false));
325

326 327 328
	return (void *)object;
}

329
static bool ____kasan_slab_free(struct kmem_cache *cache, void *object,
330 331
			      unsigned long ip, bool quarantine)
{
332 333
	u8 tag;
	void *tagged_object;
334

335 336
	tag = get_tag(object);
	tagged_object = object;
337
	object = kasan_reset_tag(object);
338

339 340
	if (unlikely(nearest_obj(cache, virt_to_head_page(object), object) !=
	    object)) {
341
		kasan_report_invalid_free(tagged_object, ip);
342 343 344 345 346 347 348
		return true;
	}

	/* RCU slabs could be legally used after free within the RCU period */
	if (unlikely(cache->flags & SLAB_TYPESAFE_BY_RCU))
		return false;

349
	if (check_invalid_free(tagged_object)) {
350
		kasan_report_invalid_free(tagged_object, ip);
351 352 353
		return true;
	}

A
Andrey Konovalov 已提交
354
	poison_range(object, cache->object_size, KASAN_KMALLOC_FREE);
355

356 357 358
	if (!kasan_stack_collection_enabled())
		return false;

359
	if ((IS_ENABLED(CONFIG_KASAN_GENERIC) && !quarantine))
360 361
		return false;

362 363
	kasan_set_free_info(cache, object, tag);

364
	return quarantine_put(cache, object);
365 366
}

367
bool __kasan_slab_free(struct kmem_cache *cache, void *object, unsigned long ip)
368
{
369
	return ____kasan_slab_free(cache, object, ip, true);
370 371
}

372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
void __kasan_slab_free_mempool(void *ptr, unsigned long ip)
{
	struct page *page;

	page = virt_to_head_page(ptr);

	/*
	 * Even though this function is only called for kmem_cache_alloc and
	 * kmalloc backed mempool allocations, those allocations can still be
	 * !PageSlab() when the size provided to kmalloc is larger than
	 * KMALLOC_MAX_SIZE, and kmalloc falls back onto page_alloc.
	 */
	if (unlikely(!PageSlab(page))) {
		if (ptr != page_address(page)) {
			kasan_report_invalid_free(ptr, ip);
			return;
		}
		poison_range(ptr, page_size(page), KASAN_FREE_PAGE);
	} else {
		____kasan_slab_free(page->slab_cache, ptr, ip, false);
	}
}

A
Andrey Konovalov 已提交
395 396
static void set_alloc_info(struct kmem_cache *cache, void *object, gfp_t flags)
{
397 398 399 400 401
	struct kasan_alloc_meta *alloc_meta;

	alloc_meta = kasan_get_alloc_meta(cache, object);
	if (alloc_meta)
		kasan_set_track(&alloc_meta->alloc_track, flags);
A
Andrey Konovalov 已提交
402 403
}

404
static void *____kasan_kmalloc(struct kmem_cache *cache, const void *object,
405
				size_t size, gfp_t flags, bool keep_tag)
406 407 408
{
	unsigned long redzone_start;
	unsigned long redzone_end;
409
	u8 tag;
410 411 412 413 414 415 416 417

	if (gfpflags_allow_blocking(flags))
		quarantine_reduce();

	if (unlikely(object == NULL))
		return NULL;

	redzone_start = round_up((unsigned long)(object + size),
418
				KASAN_GRANULE_SIZE);
419
	redzone_end = round_up((unsigned long)object + cache->object_size,
420
				KASAN_GRANULE_SIZE);
421
	tag = assign_tag(cache, object, false, keep_tag);
422

423
	/* Tag is ignored in set_tag without CONFIG_KASAN_SW/HW_TAGS */
424 425 426
	unpoison_range(set_tag(object, tag), size);
	poison_range((void *)redzone_start, redzone_end - redzone_start,
		     KASAN_KMALLOC_REDZONE);
427

428
	if (kasan_stack_collection_enabled())
A
Andrey Konovalov 已提交
429
		set_alloc_info(cache, (void *)object, flags);
430

431
	return set_tag(object, tag);
432
}
433

434 435
void * __must_check __kasan_slab_alloc(struct kmem_cache *cache,
					void *object, gfp_t flags)
436
{
437
	return ____kasan_kmalloc(cache, object, cache->object_size, flags, false);
438 439
}

440 441
void * __must_check __kasan_kmalloc(struct kmem_cache *cache, const void *object,
					size_t size, gfp_t flags)
442
{
443
	return ____kasan_kmalloc(cache, object, size, flags, true);
444
}
445
EXPORT_SYMBOL(__kasan_kmalloc);
446

447
void * __must_check __kasan_kmalloc_large(const void *ptr, size_t size,
448
						gfp_t flags)
449 450 451 452 453 454 455 456 457 458 459 460 461
{
	struct page *page;
	unsigned long redzone_start;
	unsigned long redzone_end;

	if (gfpflags_allow_blocking(flags))
		quarantine_reduce();

	if (unlikely(ptr == NULL))
		return NULL;

	page = virt_to_page(ptr);
	redzone_start = round_up((unsigned long)(ptr + size),
462
				KASAN_GRANULE_SIZE);
463
	redzone_end = (unsigned long)ptr + page_size(page);
464

465 466 467
	unpoison_range(ptr, size);
	poison_range((void *)redzone_start, redzone_end - redzone_start,
		     KASAN_PAGE_REDZONE);
468 469 470 471

	return (void *)ptr;
}

472
void * __must_check __kasan_krealloc(const void *object, size_t size, gfp_t flags)
473 474 475 476 477 478 479 480 481
{
	struct page *page;

	if (unlikely(object == ZERO_SIZE_PTR))
		return (void *)object;

	page = virt_to_head_page(object);

	if (unlikely(!PageSlab(page)))
482
		return __kasan_kmalloc_large(object, size, flags);
483
	else
484
		return ____kasan_kmalloc(page->slab_cache, object, size,
485
						flags, true);
486 487
}

488
void __kasan_kfree_large(void *ptr, unsigned long ip)
489
{
490
	if (ptr != page_address(virt_to_head_page(ptr)))
491
		kasan_report_invalid_free(ptr, ip);
492
	/* The object will be poisoned by kasan_free_pages(). */
493
}