blob: 55d1e9205543689a6883d983dc82cb8b9eb2be6a [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
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030038static void __init kasan_early_pte_populate(pmd_t *pmd, unsigned long addr,
39 unsigned long end)
40{
41 pte_t *pte;
42 unsigned long next;
43
44 if (pmd_none(*pmd))
Laura Abbott2077be62017-01-10 13:35:49 -080045 __pmd_populate(pmd, __pa_symbol(kasan_zero_pte), PMD_TYPE_TABLE);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030046
Ard Biesheuvelf9040772016-02-16 13:52:40 +010047 pte = pte_offset_kimg(pmd, addr);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030048 do {
49 next = addr + PAGE_SIZE;
Laura Abbott2077be62017-01-10 13:35:49 -080050 set_pte(pte, pfn_pte(sym_to_pfn(kasan_zero_page),
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030051 PAGE_KERNEL));
52 } while (pte++, addr = next, addr != end && pte_none(*pte));
53}
54
55static void __init kasan_early_pmd_populate(pud_t *pud,
56 unsigned long addr,
57 unsigned long end)
58{
59 pmd_t *pmd;
60 unsigned long next;
61
62 if (pud_none(*pud))
Laura Abbott2077be62017-01-10 13:35:49 -080063 __pud_populate(pud, __pa_symbol(kasan_zero_pmd), PMD_TYPE_TABLE);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030064
Ard Biesheuvelf9040772016-02-16 13:52:40 +010065 pmd = pmd_offset_kimg(pud, addr);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030066 do {
67 next = pmd_addr_end(addr, end);
68 kasan_early_pte_populate(pmd, addr, next);
69 } while (pmd++, addr = next, addr != end && pmd_none(*pmd));
70}
71
72static void __init kasan_early_pud_populate(pgd_t *pgd,
73 unsigned long addr,
74 unsigned long end)
75{
76 pud_t *pud;
77 unsigned long next;
78
79 if (pgd_none(*pgd))
Laura Abbott2077be62017-01-10 13:35:49 -080080 __pgd_populate(pgd, __pa_symbol(kasan_zero_pud), PUD_TYPE_TABLE);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030081
Ard Biesheuvelf9040772016-02-16 13:52:40 +010082 pud = pud_offset_kimg(pgd, addr);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030083 do {
84 next = pud_addr_end(addr, end);
85 kasan_early_pmd_populate(pud, addr, next);
86 } while (pud++, addr = next, addr != end && pud_none(*pud));
87}
88
89static void __init kasan_map_early_shadow(void)
90{
91 unsigned long addr = KASAN_SHADOW_START;
92 unsigned long end = KASAN_SHADOW_END;
93 unsigned long next;
94 pgd_t *pgd;
95
96 pgd = pgd_offset_k(addr);
97 do {
98 next = pgd_addr_end(addr, end);
99 kasan_early_pud_populate(pgd, addr, next);
100 } while (pgd++, addr = next, addr != end);
101}
102
Will Deacon83040122015-10-13 14:01:06 +0100103asmlinkage void __init kasan_early_init(void)
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300104{
105 BUILD_BUG_ON(KASAN_SHADOW_OFFSET != KASAN_SHADOW_END - (1UL << 61));
106 BUILD_BUG_ON(!IS_ALIGNED(KASAN_SHADOW_START, PGDIR_SIZE));
107 BUILD_BUG_ON(!IS_ALIGNED(KASAN_SHADOW_END, PGDIR_SIZE));
108 kasan_map_early_shadow();
109}
110
Mark Rutland068a17a2016-01-25 11:45:12 +0000111/*
112 * Copy the current shadow region into a new pgdir.
113 */
114void __init kasan_copy_shadow(pgd_t *pgdir)
115{
116 pgd_t *pgd, *pgd_new, *pgd_end;
117
118 pgd = pgd_offset_k(KASAN_SHADOW_START);
119 pgd_end = pgd_offset_k(KASAN_SHADOW_END);
120 pgd_new = pgd_offset_raw(pgdir, KASAN_SHADOW_START);
121 do {
122 set_pgd(pgd_new, *pgd);
123 } while (pgd++, pgd_new++, pgd != pgd_end);
124}
125
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300126static void __init clear_pgds(unsigned long start,
127 unsigned long end)
128{
129 /*
130 * Remove references to kasan page tables from
131 * swapper_pg_dir. pgd_clear() can't be used
132 * here because it's nop on 2,3-level pagetable setups
133 */
134 for (; start < end; start += PGDIR_SIZE)
135 set_pgd(pgd_offset_k(start), __pgd(0));
136}
137
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300138void __init kasan_init(void)
139{
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100140 u64 kimg_shadow_start, kimg_shadow_end;
Ard Biesheuvelf80fb3a2016-01-26 14:12:01 +0100141 u64 mod_shadow_start, mod_shadow_end;
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300142 struct memblock_region *reg;
Ard Biesheuvel7b1af972016-01-11 14:50:21 +0100143 int i;
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300144
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100145 kimg_shadow_start = (u64)kasan_mem_to_shadow(_text);
146 kimg_shadow_end = (u64)kasan_mem_to_shadow(_end);
147
Ard Biesheuvelf80fb3a2016-01-26 14:12:01 +0100148 mod_shadow_start = (u64)kasan_mem_to_shadow((void *)MODULES_VADDR);
149 mod_shadow_end = (u64)kasan_mem_to_shadow((void *)MODULES_END);
150
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300151 /*
152 * We are going to perform proper setup of shadow memory.
153 * At first we should unmap early shadow (clear_pgds() call bellow).
154 * However, instrumented code couldn't execute without shadow memory.
155 * tmp_pg_dir used to keep early shadow mapped until full shadow
156 * setup will be finished.
157 */
158 memcpy(tmp_pg_dir, swapper_pg_dir, sizeof(tmp_pg_dir));
Mark Rutlandc1a88e92016-01-25 11:45:02 +0000159 dsb(ishst);
Laura Abbott2077be62017-01-10 13:35:49 -0800160 cpu_replace_ttbr1(lm_alias(tmp_pg_dir));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300161
162 clear_pgds(KASAN_SHADOW_START, KASAN_SHADOW_END);
163
Catalin Marinas2f769692016-03-10 18:30:56 +0000164 vmemmap_populate(kimg_shadow_start, kimg_shadow_end,
165 pfn_to_nid(virt_to_pfn(_text)));
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100166
167 /*
168 * vmemmap_populate() has populated the shadow region that covers the
169 * kernel image with SWAPPER_BLOCK_SIZE mappings, so we have to round
170 * the start and end addresses to SWAPPER_BLOCK_SIZE as well, to prevent
Catalin Marinas2776e0e2016-03-10 18:41:16 +0000171 * kasan_populate_zero_shadow() from replacing the page table entries
172 * (PMD or PTE) at the edges of the shadow region for the kernel
173 * image.
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100174 */
Catalin Marinas2776e0e2016-03-10 18:41:16 +0000175 kimg_shadow_start = round_down(kimg_shadow_start, SWAPPER_BLOCK_SIZE);
176 kimg_shadow_end = round_up(kimg_shadow_end, SWAPPER_BLOCK_SIZE);
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100177
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300178 kasan_populate_zero_shadow((void *)KASAN_SHADOW_START,
Ard Biesheuvelf80fb3a2016-01-26 14:12:01 +0100179 (void *)mod_shadow_start);
Ard Biesheuvelf9040772016-02-16 13:52:40 +0100180 kasan_populate_zero_shadow((void *)kimg_shadow_end,
Ard Biesheuvelf80fb3a2016-01-26 14:12:01 +0100181 kasan_mem_to_shadow((void *)PAGE_OFFSET));
182
183 if (kimg_shadow_start > mod_shadow_end)
184 kasan_populate_zero_shadow((void *)mod_shadow_end,
185 (void *)kimg_shadow_start);
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300186
187 for_each_memblock(memory, reg) {
188 void *start = (void *)__phys_to_virt(reg->base);
189 void *end = (void *)__phys_to_virt(reg->base + reg->size);
190
191 if (start >= end)
192 break;
193
194 /*
195 * end + 1 here is intentional. We check several shadow bytes in
196 * advance to slightly speed up fastpath. In some rare cases
197 * we could cross boundary of mapped shadow, so we just map
198 * some more here.
199 */
200 vmemmap_populate((unsigned long)kasan_mem_to_shadow(start),
201 (unsigned long)kasan_mem_to_shadow(end) + 1,
202 pfn_to_nid(virt_to_pfn(start)));
203 }
204
Ard Biesheuvel7b1af972016-01-11 14:50:21 +0100205 /*
206 * KAsan may reuse the contents of kasan_zero_pte directly, so we
207 * should make sure that it maps the zero page read-only.
208 */
209 for (i = 0; i < PTRS_PER_PTE; i++)
210 set_pte(&kasan_zero_pte[i],
Laura Abbott2077be62017-01-10 13:35:49 -0800211 pfn_pte(sym_to_pfn(kasan_zero_page), PAGE_KERNEL_RO));
Ard Biesheuvel7b1af972016-01-11 14:50:21 +0100212
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300213 memset(kasan_zero_page, 0, PAGE_SIZE);
Laura Abbott2077be62017-01-10 13:35:49 -0800214 cpu_replace_ttbr1(lm_alias(swapper_pg_dir));
Andrey Ryabinin39d114d2015-10-12 18:52:58 +0300215
216 /* At this point kasan is fully initialized. Enable error messages */
217 init_task.kasan_depth = 0;
218 pr_info("KernelAddressSanitizer initialized\n");
219}