cregit-Linux how code gets into the kernel

Release 4.14 arch/arm64/include/asm/kasan.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_KASAN_H

#define __ASM_KASAN_H

#ifndef __ASSEMBLY__

#ifdef CONFIG_KASAN

#include <linux/linkage.h>
#include <asm/memory.h>
#include <asm/pgtable-types.h>

/*
 * KASAN_SHADOW_START: beginning of the kernel virtual addresses.
 * KASAN_SHADOW_END: KASAN_SHADOW_START + 1/8 of kernel virtual addresses.
 */

#define KASAN_SHADOW_START      (VA_START)

#define KASAN_SHADOW_END        (KASAN_SHADOW_START + KASAN_SHADOW_SIZE)

/*
 * This value is used to map an address to the corresponding shadow
 * address by the following formula:
 *     shadow_addr = (address >> 3) + KASAN_SHADOW_OFFSET;
 *
 * (1 << 61) shadow addresses - [KASAN_SHADOW_OFFSET,KASAN_SHADOW_END]
 * cover all 64-bits of virtual addresses. So KASAN_SHADOW_OFFSET
 * should satisfy the following equation:
 *      KASAN_SHADOW_OFFSET = KASAN_SHADOW_END - (1ULL << 61)
 */

#define KASAN_SHADOW_OFFSET     (KASAN_SHADOW_END - (1ULL << (64 - 3)))

void kasan_init(void);
void kasan_copy_shadow(pgd_t *pgdir);
asmlinkage void kasan_early_init(void);

#else

static inline void kasan_init(void) { }

Contributors

PersonTokensPropCommitsCommitProp
Andrey Ryabinin8100.00%1100.00%
Total8100.00%1100.00%


static inline void kasan_copy_shadow(pgd_t *pgdir) { }

Contributors

PersonTokensPropCommitsCommitProp
Mark Rutland10100.00%1100.00%
Total10100.00%1100.00%

#endif #endif #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Andrey Ryabinin5060.24%120.00%
Mark Rutland2125.30%120.00%
Will Deacon1012.05%120.00%
Greg Kroah-Hartman11.20%120.00%
Ard Biesheuvel11.20%120.00%
Total83100.00%5100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.