blob: dabfc1ecda3d3a9d57a430f1641eca05c1114703 [file] [log] [blame]
Andrey Ryabinin39d114d2015-10-12 18:52:58 +03001/*
2 * This file contains kasan initialization code for ARM64.
3 *
4 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
5 * Author: Andrey Ryabinin <ryabinin.a.a@gmail.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 */
12
13#define pr_fmt(fmt) "kasan: " fmt
Will Deacone17d8022017-11-15 17:36:40 -080014#include <linux/bootmem.h>
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030015#include <linux/kasan.h>
16#include <linux/kernel.h>
Ingo Molnar9164bb42017-02-04 01:20:53 +010017#include <linux/sched/task.h>
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030018#include <linux/memblock.h>
19#include <linux/start_kernel.h>
Laura Abbott2077be62017-01-10 13:35:49 -080020#include <linux/mm.h>
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030021
Mark Rutlandc1a88e92016-01-25 11:45:02 +000022#include <asm/mmu_context.h>
Ard Biesheuvelf9040772016-02-16 13:52:40 +010023#include <asm/kernel-pgtable.h>
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030024#include <asm/page.h>
25#include <asm/pgalloc.h>
26#include <asm/pgtable.h>
Ard Biesheuvelf9040772016-02-16 13:52:40 +010027#include <asm/sections.h>
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030028#include <asm/tlbflush.h>
29
30static pgd_t tmp_pg_dir[PTRS_PER_PGD] __initdata __aligned(PGD_SIZE);
31
Laura Abbott2077be62017-01-10 13:35:49 -080032/*
33 * The p*d_populate functions call virt_to_phys implicitly so they can't be used
34 * directly on kernel symbols (bm_p*d). All the early functions are called too
35 * early to use lm_alias so __p*d_populate functions must be used to populate
36 * with the physical address from __pa_symbol.
37 */
38
Will Deacone17d8022017-11-15 17:36:40 -080039static phys_addr_t __init kasan_alloc_zeroed_page(int node)
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030040{
Will Deacone17d8022017-11-15 17:36:40 -080041 void *p = memblock_virt_alloc_try_nid(PAGE_SIZE, PAGE_SIZE,
42 __pa(MAX_DMA_ADDRESS),
43 MEMBLOCK_ALLOC_ACCESSIBLE, node);
44 return __pa(p);
45}
46
Will Deacon20a004e2018-02-15 11:14:56 +000047static pte_t *__init kasan_pte_offset(pmd_t *pmdp, unsigned long addr, int node,
Will Deacone17d8022017-11-15 17:36:40 -080048 bool early)
49{
Will Deacon20a004e2018-02-15 11:14:56 +000050 if (pmd_none(READ_ONCE(*pmdp))) {
Will Deacone17d8022017-11-15 17:36:40 -080051 phys_addr_t pte_phys = early ? __pa_symbol(kasan_zero_pte)
52 : kasan_alloc_zeroed_page(node);
Will Deacon20a004e2018-02-15 11:14:56 +000053 __pmd_populate(pmdp, pte_phys, PMD_TYPE_TABLE);
Will Deacone17d8022017-11-15 17:36:40 -080054 }
55
Will Deacon20a004e2018-02-15 11:14:56 +000056 return early ? pte_offset_kimg(pmdp, addr)
57 : pte_offset_kernel(pmdp, addr);
Will Deacone17d8022017-11-15 17:36:40 -080058}
59
Will Deacon20a004e2018-02-15 11:14:56 +000060static pmd_t *__init kasan_pmd_offset(pud_t *pudp, unsigned long addr, int node,
Will Deacone17d8022017-11-15 17:36:40 -080061 bool early)
62{
Will Deacon20a004e2018-02-15 11:14:56 +000063 if (pud_none(READ_ONCE(*pudp))) {
Will Deacone17d8022017-11-15 17:36:40 -080064 phys_addr_t pmd_phys = early ? __pa_symbol(kasan_zero_pmd)
65 : kasan_alloc_zeroed_page(node);
Will Deacon20a004e2018-02-15 11:14:56 +000066 __pud_populate(pudp, pmd_phys, PMD_TYPE_TABLE);
Will Deacone17d8022017-11-15 17:36:40 -080067 }
68
Will Deacon20a004e2018-02-15 11:14:56 +000069 return early ? pmd_offset_kimg(pudp, addr) : pmd_offset(pudp, addr);
Will Deacone17d8022017-11-15 17:36:40 -080070}
71
Will Deacon20a004e2018-02-15 11:14:56 +000072static pud_t *__init kasan_pud_offset(pgd_t *pgdp, unsigned long addr, int node,
Will Deacone17d8022017-11-15 17:36:40 -080073 bool early)
74{
Will Deacon20a004e2018-02-15 11:14:56 +000075 if (pgd_none(READ_ONCE(*pgdp))) {
Will Deacone17d8022017-11-15 17:36:40 -080076 phys_addr_t pud_phys = early ? __pa_symbol(kasan_zero_pud)
77 : kasan_alloc_zeroed_page(node);
Will Deacon20a004e2018-02-15 11:14:56 +000078 __pgd_populate(pgdp, pud_phys, PMD_TYPE_TABLE);
Will Deacone17d8022017-11-15 17:36:40 -080079 }
80
Will Deacon20a004e2018-02-15 11:14:56 +000081 return early ? pud_offset_kimg(pgdp, addr) : pud_offset(pgdp, addr);
Will Deacone17d8022017-11-15 17:36:40 -080082}
83
Will Deacon20a004e2018-02-15 11:14:56 +000084static void __init kasan_pte_populate(pmd_t *pmdp, unsigned long addr,
Will Deacone17d8022017-11-15 17:36:40 -080085 unsigned long end, int node, bool early)
86{
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030087 unsigned long next;
Will Deacon20a004e2018-02-15 11:14:56 +000088 pte_t *ptep = kasan_pte_offset(pmdp, addr, node, early);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030089
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030090 do {
Will Deacone17d8022017-11-15 17:36:40 -080091 phys_addr_t page_phys = early ? __pa_symbol(kasan_zero_page)
92 : kasan_alloc_zeroed_page(node);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030093 next = addr + PAGE_SIZE;
Will Deacon20a004e2018-02-15 11:14:56 +000094 set_pte(ptep, pfn_pte(__phys_to_pfn(page_phys), PAGE_KERNEL));
95 } while (ptep++, addr = next, addr != end && pte_none(READ_ONCE(*ptep)));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030096}
97
Will Deacon20a004e2018-02-15 11:14:56 +000098static void __init kasan_pmd_populate(pud_t *pudp, unsigned long addr,
Will Deacone17d8022017-11-15 17:36:40 -080099 unsigned long end, int node, bool early)
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300100{
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300101 unsigned long next;
Will Deacon20a004e2018-02-15 11:14:56 +0000102 pmd_t *pmdp = kasan_pmd_offset(pudp, addr, node, early);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300103
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300104 do {
105 next = pmd_addr_end(addr, end);
Will Deacon20a004e2018-02-15 11:14:56 +0000106 kasan_pte_populate(pmdp, addr, next, node, early);
107 } while (pmdp++, addr = next, addr != end && pmd_none(READ_ONCE(*pmdp)));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300108}
109
Will Deacon20a004e2018-02-15 11:14:56 +0000110static void __init kasan_pud_populate(pgd_t *pgdp, unsigned long addr,
Will Deacone17d8022017-11-15 17:36:40 -0800111 unsigned long end, int node, bool early)
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300112{
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300113 unsigned long next;
Will Deacon20a004e2018-02-15 11:14:56 +0000114 pud_t *pudp = kasan_pud_offset(pgdp, addr, node, early);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300115
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300116 do {
117 next = pud_addr_end(addr, end);
Will Deacon20a004e2018-02-15 11:14:56 +0000118 kasan_pmd_populate(pudp, addr, next, node, early);
119 } while (pudp++, addr = next, addr != end && pud_none(READ_ONCE(*pudp)));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300120}
121
Will Deacone17d8022017-11-15 17:36:40 -0800122static void __init kasan_pgd_populate(unsigned long addr, unsigned long end,
123 int node, bool early)
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300124{
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300125 unsigned long next;
Will Deacon20a004e2018-02-15 11:14:56 +0000126 pgd_t *pgdp;
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300127
Will Deacon20a004e2018-02-15 11:14:56 +0000128 pgdp = pgd_offset_k(addr);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300129 do {
130 next = pgd_addr_end(addr, end);
Will Deacon20a004e2018-02-15 11:14:56 +0000131 kasan_pud_populate(pgdp, addr, next, node, early);
132 } while (pgdp++, addr = next, addr != end);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300133}
134
Will Deacone17d8022017-11-15 17:36:40 -0800135/* The early shadow maps everything to a single page of zeroes */
Will Deacon83040122015-10-13 14:01:06 +0100136asmlinkage void __init kasan_early_init(void)
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300137{
Andrey Konovalov917538e2018-02-06 15:36:44 -0800138 BUILD_BUG_ON(KASAN_SHADOW_OFFSET !=
139 KASAN_SHADOW_END - (1UL << (64 - KASAN_SHADOW_SCALE_SHIFT)));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300140 BUILD_BUG_ON(!IS_ALIGNED(KASAN_SHADOW_START, PGDIR_SIZE));
141 BUILD_BUG_ON(!IS_ALIGNED(KASAN_SHADOW_END, PGDIR_SIZE));
Will Deacone17d8022017-11-15 17:36:40 -0800142 kasan_pgd_populate(KASAN_SHADOW_START, KASAN_SHADOW_END, NUMA_NO_NODE,
143 true);
144}
145
146/* Set up full kasan mappings, ensuring that the mapped pages are zeroed */
147static void __init kasan_map_populate(unsigned long start, unsigned long end,
148 int node)
149{
150 kasan_pgd_populate(start & PAGE_MASK, PAGE_ALIGN(end), node, false);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300151}
152
Mark Rutland068a17a2016-01-25 11:45:12 +0000153/*
154 * Copy the current shadow region into a new pgdir.
155 */
156void __init kasan_copy_shadow(pgd_t *pgdir)
157{
Will Deacon20a004e2018-02-15 11:14:56 +0000158 pgd_t *pgdp, *pgdp_new, *pgdp_end;
Mark Rutland068a17a2016-01-25 11:45:12 +0000159
Will Deacon20a004e2018-02-15 11:14:56 +0000160 pgdp = pgd_offset_k(KASAN_SHADOW_START);
161 pgdp_end = pgd_offset_k(KASAN_SHADOW_END);
162 pgdp_new = pgd_offset_raw(pgdir, KASAN_SHADOW_START);
Mark Rutland068a17a2016-01-25 11:45:12 +0000163 do {
Will Deacon20a004e2018-02-15 11:14:56 +0000164 set_pgd(pgdp_new, READ_ONCE(*pgdp));
165 } while (pgdp++, pgdp_new++, pgdp != pgdp_end);
Mark Rutland068a17a2016-01-25 11:45:12 +0000166}
167
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300168static void __init clear_pgds(unsigned long start,
169 unsigned long end)
170{
171 /*
172 * Remove references to kasan page tables from
173 * swapper_pg_dir. pgd_clear() can't be used
174 * here because it's nop on 2,3-level pagetable setups
175 */
176 for (; start < end; start += PGDIR_SIZE)
177 set_pgd(pgd_offset_k(start), __pgd(0));
178}
179
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300180void __init kasan_init(void)
181{
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100182 u64 kimg_shadow_start, kimg_shadow_end;
Ard Biesheuvelf80fb3a2016-01-26 14:12:01 +0100183 u64 mod_shadow_start, mod_shadow_end;
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300184 struct memblock_region *reg;
Ard Biesheuvel7b1af972016-01-11 14:50:21 +0100185 int i;
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300186
Will Deacone17d8022017-11-15 17:36:40 -0800187 kimg_shadow_start = (u64)kasan_mem_to_shadow(_text) & PAGE_MASK;
188 kimg_shadow_end = PAGE_ALIGN((u64)kasan_mem_to_shadow(_end));
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100189
Ard Biesheuvelf80fb3a2016-01-26 14:12:01 +0100190 mod_shadow_start = (u64)kasan_mem_to_shadow((void *)MODULES_VADDR);
191 mod_shadow_end = (u64)kasan_mem_to_shadow((void *)MODULES_END);
192
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300193 /*
194 * We are going to perform proper setup of shadow memory.
195 * At first we should unmap early shadow (clear_pgds() call bellow).
196 * However, instrumented code couldn't execute without shadow memory.
197 * tmp_pg_dir used to keep early shadow mapped until full shadow
198 * setup will be finished.
199 */
200 memcpy(tmp_pg_dir, swapper_pg_dir, sizeof(tmp_pg_dir));
Mark Rutlandc1a88e92016-01-25 11:45:02 +0000201 dsb(ishst);
Laura Abbott2077be62017-01-10 13:35:49 -0800202 cpu_replace_ttbr1(lm_alias(tmp_pg_dir));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300203
204 clear_pgds(KASAN_SHADOW_START, KASAN_SHADOW_END);
205
Will Deacone17d8022017-11-15 17:36:40 -0800206 kasan_map_populate(kimg_shadow_start, kimg_shadow_end,
207 pfn_to_nid(virt_to_pfn(lm_alias(_text))));
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100208
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300209 kasan_populate_zero_shadow((void *)KASAN_SHADOW_START,
Ard Biesheuvelf80fb3a2016-01-26 14:12:01 +0100210 (void *)mod_shadow_start);
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100211 kasan_populate_zero_shadow((void *)kimg_shadow_end,
Ard Biesheuvelf80fb3a2016-01-26 14:12:01 +0100212 kasan_mem_to_shadow((void *)PAGE_OFFSET));
213
214 if (kimg_shadow_start > mod_shadow_end)
215 kasan_populate_zero_shadow((void *)mod_shadow_end,
216 (void *)kimg_shadow_start);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300217
218 for_each_memblock(memory, reg) {
219 void *start = (void *)__phys_to_virt(reg->base);
220 void *end = (void *)__phys_to_virt(reg->base + reg->size);
221
222 if (start >= end)
223 break;
224
Will Deacone17d8022017-11-15 17:36:40 -0800225 kasan_map_populate((unsigned long)kasan_mem_to_shadow(start),
226 (unsigned long)kasan_mem_to_shadow(end),
227 pfn_to_nid(virt_to_pfn(start)));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300228 }
229
Ard Biesheuvel7b1af972016-01-11 14:50:21 +0100230 /*
231 * KAsan may reuse the contents of kasan_zero_pte directly, so we
232 * should make sure that it maps the zero page read-only.
233 */
234 for (i = 0; i < PTRS_PER_PTE; i++)
235 set_pte(&kasan_zero_pte[i],
Laura Abbott2077be62017-01-10 13:35:49 -0800236 pfn_pte(sym_to_pfn(kasan_zero_page), PAGE_KERNEL_RO));
Ard Biesheuvel7b1af972016-01-11 14:50:21 +0100237
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300238 memset(kasan_zero_page, 0, PAGE_SIZE);
Laura Abbott2077be62017-01-10 13:35:49 -0800239 cpu_replace_ttbr1(lm_alias(swapper_pg_dir));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300240
241 /* At this point kasan is fully initialized. Enable error messages */
242 init_task.kasan_depth = 0;
243 pr_info("KernelAddressSanitizer initialized\n");
244}