OSDN Git Service

x86/mm/encrypt: Move page table helpers into separate translation unit
[uclinux-h8/linux.git] / arch / x86 / mm / mem_encrypt.c
1 /*
2  * AMD Memory Encryption Support
3  *
4  * Copyright (C) 2016 Advanced Micro Devices, Inc.
5  *
6  * Author: Tom Lendacky <thomas.lendacky@amd.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12
13 #define DISABLE_BRANCH_PROFILING
14
15 #include <linux/linkage.h>
16 #include <linux/init.h>
17 #include <linux/mm.h>
18 #include <linux/dma-direct.h>
19 #include <linux/swiotlb.h>
20 #include <linux/mem_encrypt.h>
21
22 #include <asm/tlbflush.h>
23 #include <asm/fixmap.h>
24 #include <asm/setup.h>
25 #include <asm/bootparam.h>
26 #include <asm/set_memory.h>
27 #include <asm/cacheflush.h>
28 #include <asm/processor-flags.h>
29 #include <asm/msr.h>
30 #include <asm/cmdline.h>
31
32 #include "mm_internal.h"
33
34 /*
35  * Since SME related variables are set early in the boot process they must
36  * reside in the .data section so as not to be zeroed out when the .bss
37  * section is later cleared.
38  */
39 u64 sme_me_mask __section(.data) = 0;
40 EXPORT_SYMBOL(sme_me_mask);
41 DEFINE_STATIC_KEY_FALSE(sev_enable_key);
42 EXPORT_SYMBOL_GPL(sev_enable_key);
43
44 bool sev_enabled __section(.data);
45
46 /* Buffer used for early in-place encryption by BSP, no locking needed */
47 static char sme_early_buffer[PAGE_SIZE] __aligned(PAGE_SIZE);
48
49 /*
50  * This routine does not change the underlying encryption setting of the
51  * page(s) that map this memory. It assumes that eventually the memory is
52  * meant to be accessed as either encrypted or decrypted but the contents
53  * are currently not in the desired state.
54  *
55  * This routine follows the steps outlined in the AMD64 Architecture
56  * Programmer's Manual Volume 2, Section 7.10.8 Encrypt-in-Place.
57  */
58 static void __init __sme_early_enc_dec(resource_size_t paddr,
59                                        unsigned long size, bool enc)
60 {
61         void *src, *dst;
62         size_t len;
63
64         if (!sme_me_mask)
65                 return;
66
67         wbinvd();
68
69         /*
70          * There are limited number of early mapping slots, so map (at most)
71          * one page at time.
72          */
73         while (size) {
74                 len = min_t(size_t, sizeof(sme_early_buffer), size);
75
76                 /*
77                  * Create mappings for the current and desired format of
78                  * the memory. Use a write-protected mapping for the source.
79                  */
80                 src = enc ? early_memremap_decrypted_wp(paddr, len) :
81                             early_memremap_encrypted_wp(paddr, len);
82
83                 dst = enc ? early_memremap_encrypted(paddr, len) :
84                             early_memremap_decrypted(paddr, len);
85
86                 /*
87                  * If a mapping can't be obtained to perform the operation,
88                  * then eventual access of that area in the desired mode
89                  * will cause a crash.
90                  */
91                 BUG_ON(!src || !dst);
92
93                 /*
94                  * Use a temporary buffer, of cache-line multiple size, to
95                  * avoid data corruption as documented in the APM.
96                  */
97                 memcpy(sme_early_buffer, src, len);
98                 memcpy(dst, sme_early_buffer, len);
99
100                 early_memunmap(dst, len);
101                 early_memunmap(src, len);
102
103                 paddr += len;
104                 size -= len;
105         }
106 }
107
108 void __init sme_early_encrypt(resource_size_t paddr, unsigned long size)
109 {
110         __sme_early_enc_dec(paddr, size, true);
111 }
112
113 void __init sme_early_decrypt(resource_size_t paddr, unsigned long size)
114 {
115         __sme_early_enc_dec(paddr, size, false);
116 }
117
118 static void __init __sme_early_map_unmap_mem(void *vaddr, unsigned long size,
119                                              bool map)
120 {
121         unsigned long paddr = (unsigned long)vaddr - __PAGE_OFFSET;
122         pmdval_t pmd_flags, pmd;
123
124         /* Use early_pmd_flags but remove the encryption mask */
125         pmd_flags = __sme_clr(early_pmd_flags);
126
127         do {
128                 pmd = map ? (paddr & PMD_MASK) + pmd_flags : 0;
129                 __early_make_pgtable((unsigned long)vaddr, pmd);
130
131                 vaddr += PMD_SIZE;
132                 paddr += PMD_SIZE;
133                 size = (size <= PMD_SIZE) ? 0 : size - PMD_SIZE;
134         } while (size);
135
136         __native_flush_tlb();
137 }
138
139 void __init sme_unmap_bootdata(char *real_mode_data)
140 {
141         struct boot_params *boot_data;
142         unsigned long cmdline_paddr;
143
144         if (!sme_active())
145                 return;
146
147         /* Get the command line address before unmapping the real_mode_data */
148         boot_data = (struct boot_params *)real_mode_data;
149         cmdline_paddr = boot_data->hdr.cmd_line_ptr | ((u64)boot_data->ext_cmd_line_ptr << 32);
150
151         __sme_early_map_unmap_mem(real_mode_data, sizeof(boot_params), false);
152
153         if (!cmdline_paddr)
154                 return;
155
156         __sme_early_map_unmap_mem(__va(cmdline_paddr), COMMAND_LINE_SIZE, false);
157 }
158
159 void __init sme_map_bootdata(char *real_mode_data)
160 {
161         struct boot_params *boot_data;
162         unsigned long cmdline_paddr;
163
164         if (!sme_active())
165                 return;
166
167         __sme_early_map_unmap_mem(real_mode_data, sizeof(boot_params), true);
168
169         /* Get the command line address after mapping the real_mode_data */
170         boot_data = (struct boot_params *)real_mode_data;
171         cmdline_paddr = boot_data->hdr.cmd_line_ptr | ((u64)boot_data->ext_cmd_line_ptr << 32);
172
173         if (!cmdline_paddr)
174                 return;
175
176         __sme_early_map_unmap_mem(__va(cmdline_paddr), COMMAND_LINE_SIZE, true);
177 }
178
179 void __init sme_early_init(void)
180 {
181         unsigned int i;
182
183         if (!sme_me_mask)
184                 return;
185
186         early_pmd_flags = __sme_set(early_pmd_flags);
187
188         __supported_pte_mask = __sme_set(__supported_pte_mask);
189
190         /* Update the protection map with memory encryption mask */
191         for (i = 0; i < ARRAY_SIZE(protection_map); i++)
192                 protection_map[i] = pgprot_encrypted(protection_map[i]);
193
194         if (sev_active())
195                 swiotlb_force = SWIOTLB_FORCE;
196 }
197
198 static void *sev_alloc(struct device *dev, size_t size, dma_addr_t *dma_handle,
199                        gfp_t gfp, unsigned long attrs)
200 {
201         unsigned long dma_mask;
202         unsigned int order;
203         struct page *page;
204         void *vaddr = NULL;
205
206         dma_mask = dma_alloc_coherent_mask(dev, gfp);
207         order = get_order(size);
208
209         /*
210          * Memory will be memset to zero after marking decrypted, so don't
211          * bother clearing it before.
212          */
213         gfp &= ~__GFP_ZERO;
214
215         page = alloc_pages_node(dev_to_node(dev), gfp, order);
216         if (page) {
217                 dma_addr_t addr;
218
219                 /*
220                  * Since we will be clearing the encryption bit, check the
221                  * mask with it already cleared.
222                  */
223                 addr = __sme_clr(phys_to_dma(dev, page_to_phys(page)));
224                 if ((addr + size) > dma_mask) {
225                         __free_pages(page, get_order(size));
226                 } else {
227                         vaddr = page_address(page);
228                         *dma_handle = addr;
229                 }
230         }
231
232         if (!vaddr)
233                 vaddr = swiotlb_alloc_coherent(dev, size, dma_handle, gfp);
234
235         if (!vaddr)
236                 return NULL;
237
238         /* Clear the SME encryption bit for DMA use if not swiotlb area */
239         if (!is_swiotlb_buffer(dma_to_phys(dev, *dma_handle))) {
240                 set_memory_decrypted((unsigned long)vaddr, 1 << order);
241                 memset(vaddr, 0, PAGE_SIZE << order);
242                 *dma_handle = __sme_clr(*dma_handle);
243         }
244
245         return vaddr;
246 }
247
248 static void sev_free(struct device *dev, size_t size, void *vaddr,
249                      dma_addr_t dma_handle, unsigned long attrs)
250 {
251         /* Set the SME encryption bit for re-use if not swiotlb area */
252         if (!is_swiotlb_buffer(dma_to_phys(dev, dma_handle)))
253                 set_memory_encrypted((unsigned long)vaddr,
254                                      1 << get_order(size));
255
256         swiotlb_free_coherent(dev, size, vaddr, dma_handle);
257 }
258
259 static void __init __set_clr_pte_enc(pte_t *kpte, int level, bool enc)
260 {
261         pgprot_t old_prot, new_prot;
262         unsigned long pfn, pa, size;
263         pte_t new_pte;
264
265         switch (level) {
266         case PG_LEVEL_4K:
267                 pfn = pte_pfn(*kpte);
268                 old_prot = pte_pgprot(*kpte);
269                 break;
270         case PG_LEVEL_2M:
271                 pfn = pmd_pfn(*(pmd_t *)kpte);
272                 old_prot = pmd_pgprot(*(pmd_t *)kpte);
273                 break;
274         case PG_LEVEL_1G:
275                 pfn = pud_pfn(*(pud_t *)kpte);
276                 old_prot = pud_pgprot(*(pud_t *)kpte);
277                 break;
278         default:
279                 return;
280         }
281
282         new_prot = old_prot;
283         if (enc)
284                 pgprot_val(new_prot) |= _PAGE_ENC;
285         else
286                 pgprot_val(new_prot) &= ~_PAGE_ENC;
287
288         /* If prot is same then do nothing. */
289         if (pgprot_val(old_prot) == pgprot_val(new_prot))
290                 return;
291
292         pa = pfn << page_level_shift(level);
293         size = page_level_size(level);
294
295         /*
296          * We are going to perform in-place en-/decryption and change the
297          * physical page attribute from C=1 to C=0 or vice versa. Flush the
298          * caches to ensure that data gets accessed with the correct C-bit.
299          */
300         clflush_cache_range(__va(pa), size);
301
302         /* Encrypt/decrypt the contents in-place */
303         if (enc)
304                 sme_early_encrypt(pa, size);
305         else
306                 sme_early_decrypt(pa, size);
307
308         /* Change the page encryption mask. */
309         new_pte = pfn_pte(pfn, new_prot);
310         set_pte_atomic(kpte, new_pte);
311 }
312
313 static int __init early_set_memory_enc_dec(unsigned long vaddr,
314                                            unsigned long size, bool enc)
315 {
316         unsigned long vaddr_end, vaddr_next;
317         unsigned long psize, pmask;
318         int split_page_size_mask;
319         int level, ret;
320         pte_t *kpte;
321
322         vaddr_next = vaddr;
323         vaddr_end = vaddr + size;
324
325         for (; vaddr < vaddr_end; vaddr = vaddr_next) {
326                 kpte = lookup_address(vaddr, &level);
327                 if (!kpte || pte_none(*kpte)) {
328                         ret = 1;
329                         goto out;
330                 }
331
332                 if (level == PG_LEVEL_4K) {
333                         __set_clr_pte_enc(kpte, level, enc);
334                         vaddr_next = (vaddr & PAGE_MASK) + PAGE_SIZE;
335                         continue;
336                 }
337
338                 psize = page_level_size(level);
339                 pmask = page_level_mask(level);
340
341                 /*
342                  * Check whether we can change the large page in one go.
343                  * We request a split when the address is not aligned and
344                  * the number of pages to set/clear encryption bit is smaller
345                  * than the number of pages in the large page.
346                  */
347                 if (vaddr == (vaddr & pmask) &&
348                     ((vaddr_end - vaddr) >= psize)) {
349                         __set_clr_pte_enc(kpte, level, enc);
350                         vaddr_next = (vaddr & pmask) + psize;
351                         continue;
352                 }
353
354                 /*
355                  * The virtual address is part of a larger page, create the next
356                  * level page table mapping (4K or 2M). If it is part of a 2M
357                  * page then we request a split of the large page into 4K
358                  * chunks. A 1GB large page is split into 2M pages, resp.
359                  */
360                 if (level == PG_LEVEL_2M)
361                         split_page_size_mask = 0;
362                 else
363                         split_page_size_mask = 1 << PG_LEVEL_2M;
364
365                 kernel_physical_mapping_init(__pa(vaddr & pmask),
366                                              __pa((vaddr_end & pmask) + psize),
367                                              split_page_size_mask);
368         }
369
370         ret = 0;
371
372 out:
373         __flush_tlb_all();
374         return ret;
375 }
376
377 int __init early_set_memory_decrypted(unsigned long vaddr, unsigned long size)
378 {
379         return early_set_memory_enc_dec(vaddr, size, false);
380 }
381
382 int __init early_set_memory_encrypted(unsigned long vaddr, unsigned long size)
383 {
384         return early_set_memory_enc_dec(vaddr, size, true);
385 }
386
387 /*
388  * SME and SEV are very similar but they are not the same, so there are
389  * times that the kernel will need to distinguish between SME and SEV. The
390  * sme_active() and sev_active() functions are used for this.  When a
391  * distinction isn't needed, the mem_encrypt_active() function can be used.
392  *
393  * The trampoline code is a good example for this requirement.  Before
394  * paging is activated, SME will access all memory as decrypted, but SEV
395  * will access all memory as encrypted.  So, when APs are being brought
396  * up under SME the trampoline area cannot be encrypted, whereas under SEV
397  * the trampoline area must be encrypted.
398  */
399 bool sme_active(void)
400 {
401         return sme_me_mask && !sev_enabled;
402 }
403 EXPORT_SYMBOL(sme_active);
404
405 bool sev_active(void)
406 {
407         return sme_me_mask && sev_enabled;
408 }
409 EXPORT_SYMBOL(sev_active);
410
411 static const struct dma_map_ops sev_dma_ops = {
412         .alloc                  = sev_alloc,
413         .free                   = sev_free,
414         .map_page               = swiotlb_map_page,
415         .unmap_page             = swiotlb_unmap_page,
416         .map_sg                 = swiotlb_map_sg_attrs,
417         .unmap_sg               = swiotlb_unmap_sg_attrs,
418         .sync_single_for_cpu    = swiotlb_sync_single_for_cpu,
419         .sync_single_for_device = swiotlb_sync_single_for_device,
420         .sync_sg_for_cpu        = swiotlb_sync_sg_for_cpu,
421         .sync_sg_for_device     = swiotlb_sync_sg_for_device,
422         .mapping_error          = swiotlb_dma_mapping_error,
423 };
424
425 /* Architecture __weak replacement functions */
426 void __init mem_encrypt_init(void)
427 {
428         if (!sme_me_mask)
429                 return;
430
431         /* Call into SWIOTLB to update the SWIOTLB DMA buffers */
432         swiotlb_update_mem_attributes();
433
434         /*
435          * With SEV, DMA operations cannot use encryption. New DMA ops
436          * are required in order to mark the DMA areas as decrypted or
437          * to use bounce buffers.
438          */
439         if (sev_active())
440                 dma_ops = &sev_dma_ops;
441
442         /*
443          * With SEV, we need to unroll the rep string I/O instructions.
444          */
445         if (sev_active())
446                 static_branch_enable(&sev_enable_key);
447
448         pr_info("AMD %s active\n",
449                 sev_active() ? "Secure Encrypted Virtualization (SEV)"
450                              : "Secure Memory Encryption (SME)");
451 }
452
453 void swiotlb_set_mem_attributes(void *vaddr, unsigned long size)
454 {
455         WARN(PAGE_ALIGN(size) != size,
456              "size is not page-aligned (%#lx)\n", size);
457
458         /* Make the SWIOTLB buffer area decrypted */
459         set_memory_decrypted((unsigned long)vaddr, size >> PAGE_SHIFT);
460 }