1 // SPDX-License-Identifier: GPL-2.0
6 #define pr_fmt(fmt) "efi: memattr: " fmt
9 #include <linux/init.h>
11 #include <linux/memblock.h>
13 #include <asm/early_ioremap.h>
15 static int __initdata tbl_size;
16 unsigned long __ro_after_init efi_mem_attr_table = EFI_INVALID_TABLE_ADDR;
19 * Reserve the memory associated with the Memory Attributes configuration
20 * table, if it exists.
22 int __init efi_memattr_init(void)
24 efi_memory_attributes_table_t *tbl;
26 if (efi_mem_attr_table == EFI_INVALID_TABLE_ADDR)
29 tbl = early_memremap(efi_mem_attr_table, sizeof(*tbl));
31 pr_err("Failed to map EFI Memory Attributes table @ 0x%lx\n",
36 if (tbl->version > 1) {
37 pr_warn("Unexpected EFI Memory Attributes table version %d\n",
42 tbl_size = sizeof(*tbl) + tbl->num_entries * tbl->desc_size;
43 memblock_reserve(efi_mem_attr_table, tbl_size);
44 set_bit(EFI_MEM_ATTR, &efi.flags);
47 early_memunmap(tbl, sizeof(*tbl));
52 * Returns a copy @out of the UEFI memory descriptor @in if it is covered
53 * entirely by a UEFI memory map entry with matching attributes. The virtual
54 * address of @out is set according to the matching entry that was found.
56 static bool entry_is_valid(const efi_memory_desc_t *in, efi_memory_desc_t *out)
58 u64 in_paddr = in->phys_addr;
59 u64 in_size = in->num_pages << EFI_PAGE_SHIFT;
60 efi_memory_desc_t *md;
64 if (in->type != EFI_RUNTIME_SERVICES_CODE &&
65 in->type != EFI_RUNTIME_SERVICES_DATA) {
66 pr_warn("Entry type should be RuntimeServiceCode/Data\n");
70 if (!(in->attribute & (EFI_MEMORY_RO | EFI_MEMORY_XP))) {
71 pr_warn("Entry attributes invalid: RO and XP bits both cleared\n");
75 if (PAGE_SIZE > EFI_PAGE_SIZE &&
76 (!PAGE_ALIGNED(in->phys_addr) ||
77 !PAGE_ALIGNED(in->num_pages << EFI_PAGE_SHIFT))) {
79 * Since arm64 may execute with page sizes of up to 64 KB, the
80 * UEFI spec mandates that RuntimeServices memory regions must
81 * be 64 KB aligned. We need to validate this here since we will
82 * not be able to tighten permissions on such regions without
83 * affecting adjacent regions.
85 pr_warn("Entry address region misaligned\n");
89 for_each_efi_memory_desc(md) {
90 u64 md_paddr = md->phys_addr;
91 u64 md_size = md->num_pages << EFI_PAGE_SHIFT;
93 if (!(md->attribute & EFI_MEMORY_RUNTIME))
95 if (md->virt_addr == 0 && md->phys_addr != 0) {
96 /* no virtual mapping has been installed by the stub */
100 if (md_paddr > in_paddr || (in_paddr - md_paddr) >= md_size)
104 * This entry covers the start of @in, check whether
105 * it covers the end as well.
107 if (md_paddr + md_size < in_paddr + in_size) {
108 pr_warn("Entry covers multiple EFI memory map regions\n");
112 if (md->type != in->type) {
113 pr_warn("Entry type deviates from EFI memory map region type\n");
117 out->virt_addr = in_paddr + (md->virt_addr - md_paddr);
122 pr_warn("No matching entry found in the EFI memory map\n");
127 * To be called after the EFI page tables have been populated. If a memory
128 * attributes table is available, its contents will be used to update the
129 * mappings with tightened permissions as described by the table.
130 * This requires the UEFI memory map to have already been populated with
133 int __init efi_memattr_apply_permissions(struct mm_struct *mm,
134 efi_memattr_perm_setter fn)
136 efi_memory_attributes_table_t *tbl;
139 if (tbl_size <= sizeof(*tbl))
143 * We need the EFI memory map to be setup so we can use it to
144 * lookup the virtual addresses of all entries in the of EFI
145 * Memory Attributes table. If it isn't available, this
146 * function should not be called.
148 if (WARN_ON(!efi_enabled(EFI_MEMMAP)))
151 tbl = memremap(efi_mem_attr_table, tbl_size, MEMREMAP_WB);
153 pr_err("Failed to map EFI Memory Attributes table @ 0x%lx\n",
158 if (efi_enabled(EFI_DBG))
159 pr_info("Processing EFI Memory Attributes table:\n");
161 for (i = ret = 0; ret == 0 && i < tbl->num_entries; i++) {
162 efi_memory_desc_t md;
167 valid = entry_is_valid((void *)tbl->entry + i * tbl->desc_size,
169 size = md.num_pages << EFI_PAGE_SHIFT;
170 if (efi_enabled(EFI_DBG) || !valid)
171 pr_info("%s 0x%012llx-0x%012llx %s\n",
172 valid ? "" : "!", md.phys_addr,
173 md.phys_addr + size - 1,
174 efi_md_typeattr_format(buf, sizeof(buf), &md));
179 pr_err("Error updating mappings, skipping subsequent md's\n");