blob: 296de39ddee5966f25f0394cd617a9b84fc6a5f0 [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
14#include <linux/kasan.h>
15#include <linux/kernel.h>
Ingo Molnar9164bb42017-02-04 01:20:53 +010016#include <linux/sched/task.h>
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030017#include <linux/memblock.h>
18#include <linux/start_kernel.h>
Laura Abbott2077be62017-01-10 13:35:49 -080019#include <linux/mm.h>
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030020
Mark Rutlandc1a88e92016-01-25 11:45:02 +000021#include <asm/mmu_context.h>
Ard Biesheuvelf9040772016-02-16 13:52:40 +010022#include <asm/kernel-pgtable.h>
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030023#include <asm/page.h>
24#include <asm/pgalloc.h>
25#include <asm/pgtable.h>
Ard Biesheuvelf9040772016-02-16 13:52:40 +010026#include <asm/sections.h>
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030027#include <asm/tlbflush.h>
28
29static pgd_t tmp_pg_dir[PTRS_PER_PGD] __initdata __aligned(PGD_SIZE);
30
Laura Abbott2077be62017-01-10 13:35:49 -080031/*
32 * The p*d_populate functions call virt_to_phys implicitly so they can't be used
33 * directly on kernel symbols (bm_p*d). All the early functions are called too
34 * early to use lm_alias so __p*d_populate functions must be used to populate
35 * with the physical address from __pa_symbol.
36 */
37
Will Deacone17d8022017-11-15 17:36:40 -080038static phys_addr_t __init kasan_alloc_zeroed_page(int node)
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030039{
Mike Rapoporteb31d552018-10-30 15:08:04 -070040 void *p = memblock_alloc_try_nid(PAGE_SIZE, PAGE_SIZE,
Will Deacone17d8022017-11-15 17:36:40 -080041 __pa(MAX_DMA_ADDRESS),
Qian Caifed84c72018-12-28 00:36:29 -080042 MEMBLOCK_ALLOC_KASAN, node);
Mike Rapoport8a7f97b2019-03-11 23:30:31 -070043 if (!p)
44 panic("%s: Failed to allocate %lu bytes align=0x%lx nid=%d from=%llx\n",
45 __func__, PAGE_SIZE, PAGE_SIZE, node,
46 __pa(MAX_DMA_ADDRESS));
47
Will Deacone17d8022017-11-15 17:36:40 -080048 return __pa(p);
49}
50
Andrey Konovalov080eb832018-12-28 00:30:09 -080051static phys_addr_t __init kasan_alloc_raw_page(int node)
52{
53 void *p = memblock_alloc_try_nid_raw(PAGE_SIZE, PAGE_SIZE,
54 __pa(MAX_DMA_ADDRESS),
55 MEMBLOCK_ALLOC_KASAN, node);
Mike Rapoport8a7f97b2019-03-11 23:30:31 -070056 if (!p)
57 panic("%s: Failed to allocate %lu bytes align=0x%lx nid=%d from=%llx\n",
58 __func__, PAGE_SIZE, PAGE_SIZE, node,
59 __pa(MAX_DMA_ADDRESS));
60
Andrey Konovalov080eb832018-12-28 00:30:09 -080061 return __pa(p);
62}
63
Will Deacon20a004e2018-02-15 11:14:56 +000064static pte_t *__init kasan_pte_offset(pmd_t *pmdp, unsigned long addr, int node,
Will Deacone17d8022017-11-15 17:36:40 -080065 bool early)
66{
Will Deacon20a004e2018-02-15 11:14:56 +000067 if (pmd_none(READ_ONCE(*pmdp))) {
Andrey Konovalov9577dd72018-12-28 00:30:01 -080068 phys_addr_t pte_phys = early ?
69 __pa_symbol(kasan_early_shadow_pte)
70 : kasan_alloc_zeroed_page(node);
Will Deacon20a004e2018-02-15 11:14:56 +000071 __pmd_populate(pmdp, pte_phys, PMD_TYPE_TABLE);
Will Deacone17d8022017-11-15 17:36:40 -080072 }
73
Will Deacon20a004e2018-02-15 11:14:56 +000074 return early ? pte_offset_kimg(pmdp, addr)
75 : pte_offset_kernel(pmdp, addr);
Will Deacone17d8022017-11-15 17:36:40 -080076}
77
Will Deacon20a004e2018-02-15 11:14:56 +000078static pmd_t *__init kasan_pmd_offset(pud_t *pudp, unsigned long addr, int node,
Will Deacone17d8022017-11-15 17:36:40 -080079 bool early)
80{
Will Deacon20a004e2018-02-15 11:14:56 +000081 if (pud_none(READ_ONCE(*pudp))) {
Andrey Konovalov9577dd72018-12-28 00:30:01 -080082 phys_addr_t pmd_phys = early ?
83 __pa_symbol(kasan_early_shadow_pmd)
84 : kasan_alloc_zeroed_page(node);
Will Deacon20a004e2018-02-15 11:14:56 +000085 __pud_populate(pudp, pmd_phys, PMD_TYPE_TABLE);
Will Deacone17d8022017-11-15 17:36:40 -080086 }
87
Will Deacon20a004e2018-02-15 11:14:56 +000088 return early ? pmd_offset_kimg(pudp, addr) : pmd_offset(pudp, addr);
Will Deacone17d8022017-11-15 17:36:40 -080089}
90
Will Deacon20a004e2018-02-15 11:14:56 +000091static pud_t *__init kasan_pud_offset(pgd_t *pgdp, unsigned long addr, int node,
Will Deacone17d8022017-11-15 17:36:40 -080092 bool early)
93{
Will Deacon20a004e2018-02-15 11:14:56 +000094 if (pgd_none(READ_ONCE(*pgdp))) {
Andrey Konovalov9577dd72018-12-28 00:30:01 -080095 phys_addr_t pud_phys = early ?
96 __pa_symbol(kasan_early_shadow_pud)
97 : kasan_alloc_zeroed_page(node);
Will Deacon20a004e2018-02-15 11:14:56 +000098 __pgd_populate(pgdp, pud_phys, PMD_TYPE_TABLE);
Will Deacone17d8022017-11-15 17:36:40 -080099 }
100
Will Deacon20a004e2018-02-15 11:14:56 +0000101 return early ? pud_offset_kimg(pgdp, addr) : pud_offset(pgdp, addr);
Will Deacone17d8022017-11-15 17:36:40 -0800102}
103
Will Deacon20a004e2018-02-15 11:14:56 +0000104static void __init kasan_pte_populate(pmd_t *pmdp, unsigned long addr,
Will Deacone17d8022017-11-15 17:36:40 -0800105 unsigned long end, int node, bool early)
106{
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300107 unsigned long next;
Will Deacon20a004e2018-02-15 11:14:56 +0000108 pte_t *ptep = kasan_pte_offset(pmdp, addr, node, early);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300109
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300110 do {
Andrey Konovalov9577dd72018-12-28 00:30:01 -0800111 phys_addr_t page_phys = early ?
112 __pa_symbol(kasan_early_shadow_page)
Andrey Konovalov080eb832018-12-28 00:30:09 -0800113 : kasan_alloc_raw_page(node);
114 if (!early)
115 memset(__va(page_phys), KASAN_SHADOW_INIT, PAGE_SIZE);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300116 next = addr + PAGE_SIZE;
Will Deacon20a004e2018-02-15 11:14:56 +0000117 set_pte(ptep, pfn_pte(__phys_to_pfn(page_phys), PAGE_KERNEL));
118 } while (ptep++, addr = next, addr != end && pte_none(READ_ONCE(*ptep)));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300119}
120
Will Deacon20a004e2018-02-15 11:14:56 +0000121static void __init kasan_pmd_populate(pud_t *pudp, unsigned long addr,
Will Deacone17d8022017-11-15 17:36:40 -0800122 unsigned long end, int node, bool early)
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300123{
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300124 unsigned long next;
Will Deacon20a004e2018-02-15 11:14:56 +0000125 pmd_t *pmdp = kasan_pmd_offset(pudp, addr, node, early);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300126
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300127 do {
128 next = pmd_addr_end(addr, end);
Will Deacon20a004e2018-02-15 11:14:56 +0000129 kasan_pte_populate(pmdp, addr, next, node, early);
130 } while (pmdp++, addr = next, addr != end && pmd_none(READ_ONCE(*pmdp)));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300131}
132
Will Deacon20a004e2018-02-15 11:14:56 +0000133static void __init kasan_pud_populate(pgd_t *pgdp, unsigned long addr,
Will Deacone17d8022017-11-15 17:36:40 -0800134 unsigned long end, int node, bool early)
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300135{
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300136 unsigned long next;
Will Deacon20a004e2018-02-15 11:14:56 +0000137 pud_t *pudp = kasan_pud_offset(pgdp, addr, node, early);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300138
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300139 do {
140 next = pud_addr_end(addr, end);
Will Deacon20a004e2018-02-15 11:14:56 +0000141 kasan_pmd_populate(pudp, addr, next, node, early);
142 } while (pudp++, addr = next, addr != end && pud_none(READ_ONCE(*pudp)));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300143}
144
Will Deacone17d8022017-11-15 17:36:40 -0800145static void __init kasan_pgd_populate(unsigned long addr, unsigned long end,
146 int node, bool early)
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300147{
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300148 unsigned long next;
Will Deacon20a004e2018-02-15 11:14:56 +0000149 pgd_t *pgdp;
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300150
Will Deacon20a004e2018-02-15 11:14:56 +0000151 pgdp = pgd_offset_k(addr);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300152 do {
153 next = pgd_addr_end(addr, end);
Will Deacon20a004e2018-02-15 11:14:56 +0000154 kasan_pud_populate(pgdp, addr, next, node, early);
155 } while (pgdp++, addr = next, addr != end);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300156}
157
Will Deacone17d8022017-11-15 17:36:40 -0800158/* The early shadow maps everything to a single page of zeroes */
Will Deacon83040122015-10-13 14:01:06 +0100159asmlinkage void __init kasan_early_init(void)
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300160{
Andrey Konovalov917538e2018-02-06 15:36:44 -0800161 BUILD_BUG_ON(KASAN_SHADOW_OFFSET !=
162 KASAN_SHADOW_END - (1UL << (64 - KASAN_SHADOW_SCALE_SHIFT)));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300163 BUILD_BUG_ON(!IS_ALIGNED(KASAN_SHADOW_START, PGDIR_SIZE));
164 BUILD_BUG_ON(!IS_ALIGNED(KASAN_SHADOW_END, PGDIR_SIZE));
Will Deacone17d8022017-11-15 17:36:40 -0800165 kasan_pgd_populate(KASAN_SHADOW_START, KASAN_SHADOW_END, NUMA_NO_NODE,
166 true);
167}
168
169/* Set up full kasan mappings, ensuring that the mapped pages are zeroed */
170static void __init kasan_map_populate(unsigned long start, unsigned long end,
171 int node)
172{
173 kasan_pgd_populate(start & PAGE_MASK, PAGE_ALIGN(end), node, false);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300174}
175
Mark Rutland068a17a2016-01-25 11:45:12 +0000176/*
177 * Copy the current shadow region into a new pgdir.
178 */
179void __init kasan_copy_shadow(pgd_t *pgdir)
180{
Will Deacon20a004e2018-02-15 11:14:56 +0000181 pgd_t *pgdp, *pgdp_new, *pgdp_end;
Mark Rutland068a17a2016-01-25 11:45:12 +0000182
Will Deacon20a004e2018-02-15 11:14:56 +0000183 pgdp = pgd_offset_k(KASAN_SHADOW_START);
184 pgdp_end = pgd_offset_k(KASAN_SHADOW_END);
185 pgdp_new = pgd_offset_raw(pgdir, KASAN_SHADOW_START);
Mark Rutland068a17a2016-01-25 11:45:12 +0000186 do {
Will Deacon20a004e2018-02-15 11:14:56 +0000187 set_pgd(pgdp_new, READ_ONCE(*pgdp));
188 } while (pgdp++, pgdp_new++, pgdp != pgdp_end);
Mark Rutland068a17a2016-01-25 11:45:12 +0000189}
190
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300191static void __init clear_pgds(unsigned long start,
192 unsigned long end)
193{
194 /*
195 * Remove references to kasan page tables from
196 * swapper_pg_dir. pgd_clear() can't be used
197 * here because it's nop on 2,3-level pagetable setups
198 */
199 for (; start < end; start += PGDIR_SIZE)
200 set_pgd(pgd_offset_k(start), __pgd(0));
201}
202
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300203void __init kasan_init(void)
204{
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100205 u64 kimg_shadow_start, kimg_shadow_end;
Ard Biesheuvelf80fb3a2016-01-26 14:12:01 +0100206 u64 mod_shadow_start, mod_shadow_end;
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300207 struct memblock_region *reg;
Ard Biesheuvel7b1af972016-01-11 14:50:21 +0100208 int i;
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300209
Will Deacone17d8022017-11-15 17:36:40 -0800210 kimg_shadow_start = (u64)kasan_mem_to_shadow(_text) & PAGE_MASK;
211 kimg_shadow_end = PAGE_ALIGN((u64)kasan_mem_to_shadow(_end));
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100212
Ard Biesheuvelf80fb3a2016-01-26 14:12:01 +0100213 mod_shadow_start = (u64)kasan_mem_to_shadow((void *)MODULES_VADDR);
214 mod_shadow_end = (u64)kasan_mem_to_shadow((void *)MODULES_END);
215
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300216 /*
217 * We are going to perform proper setup of shadow memory.
Kyrylo Tkachov0293c8b2018-10-04 17:06:46 +0100218 * At first we should unmap early shadow (clear_pgds() call below).
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300219 * However, instrumented code couldn't execute without shadow memory.
220 * tmp_pg_dir used to keep early shadow mapped until full shadow
221 * setup will be finished.
222 */
223 memcpy(tmp_pg_dir, swapper_pg_dir, sizeof(tmp_pg_dir));
Mark Rutlandc1a88e92016-01-25 11:45:02 +0000224 dsb(ishst);
Laura Abbott2077be62017-01-10 13:35:49 -0800225 cpu_replace_ttbr1(lm_alias(tmp_pg_dir));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300226
227 clear_pgds(KASAN_SHADOW_START, KASAN_SHADOW_END);
228
Will Deacone17d8022017-11-15 17:36:40 -0800229 kasan_map_populate(kimg_shadow_start, kimg_shadow_end,
Mark Rutland800cb2e2018-04-16 14:44:41 +0100230 early_pfn_to_nid(virt_to_pfn(lm_alias(_text))));
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100231
Andrey Konovalov9577dd72018-12-28 00:30:01 -0800232 kasan_populate_early_shadow((void *)KASAN_SHADOW_START,
233 (void *)mod_shadow_start);
234 kasan_populate_early_shadow((void *)kimg_shadow_end,
235 kasan_mem_to_shadow((void *)PAGE_OFFSET));
Ard Biesheuvelf80fb3a2016-01-26 14:12:01 +0100236
237 if (kimg_shadow_start > mod_shadow_end)
Andrey Konovalov9577dd72018-12-28 00:30:01 -0800238 kasan_populate_early_shadow((void *)mod_shadow_end,
239 (void *)kimg_shadow_start);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300240
241 for_each_memblock(memory, reg) {
242 void *start = (void *)__phys_to_virt(reg->base);
243 void *end = (void *)__phys_to_virt(reg->base + reg->size);
244
245 if (start >= end)
246 break;
247
Will Deacone17d8022017-11-15 17:36:40 -0800248 kasan_map_populate((unsigned long)kasan_mem_to_shadow(start),
249 (unsigned long)kasan_mem_to_shadow(end),
Mark Rutland800cb2e2018-04-16 14:44:41 +0100250 early_pfn_to_nid(virt_to_pfn(start)));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300251 }
252
Ard Biesheuvel7b1af972016-01-11 14:50:21 +0100253 /*
Andrey Konovalov9577dd72018-12-28 00:30:01 -0800254 * KAsan may reuse the contents of kasan_early_shadow_pte directly,
255 * so we should make sure that it maps the zero page read-only.
Ard Biesheuvel7b1af972016-01-11 14:50:21 +0100256 */
257 for (i = 0; i < PTRS_PER_PTE; i++)
Andrey Konovalov9577dd72018-12-28 00:30:01 -0800258 set_pte(&kasan_early_shadow_pte[i],
259 pfn_pte(sym_to_pfn(kasan_early_shadow_page),
260 PAGE_KERNEL_RO));
Ard Biesheuvel7b1af972016-01-11 14:50:21 +0100261
Andrey Konovalov080eb832018-12-28 00:30:09 -0800262 memset(kasan_early_shadow_page, KASAN_SHADOW_INIT, PAGE_SIZE);
Laura Abbott2077be62017-01-10 13:35:49 -0800263 cpu_replace_ttbr1(lm_alias(swapper_pg_dir));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300264
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300265 /* At this point kasan is fully initialized. Enable error messages */
266 init_task.kasan_depth = 0;
267 pr_info("KernelAddressSanitizer initialized\n");
268}