Blame SOURCES/0545-nx-add-memory-attribute-get-set-API.patch

bf0270
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
bf0270
From: Peter Jones <pjones@redhat.com>
bf0270
Date: Tue, 22 Mar 2022 10:56:21 -0400
bf0270
Subject: [PATCH] nx: add memory attribute get/set API
bf0270
bf0270
For NX, we need to set the page access permission attributes for write
bf0270
and execute permissions.
bf0270
bf0270
This patch adds two new primitives, grub_set_mem_attrs() and
bf0270
grub_clear_mem_attrs(), and associated constant definitions, to be used
bf0270
for that purpose.
bf0270
bf0270
For most platforms, it adds a dummy implementation that returns
bf0270
GRUB_ERR_NONE.  On EFI platforms, it adds a common helper function,
bf0270
grub_efi_status_to_err(), which translates EFI error codes to grub error
bf0270
codes, adds headers for the EFI Memory Attribute Protocol (still pending
bf0270
standardization), and an implementation of the grub nx primitives using
bf0270
it.
bf0270
bf0270
Signed-off-by: Peter Jones <pjones@redhat.com>
bf0270
[rharwood: add pjones's none/nyi fixup]
bf0270
(cherry picked from commit 35de78a8d32b9fad5291ec96fd3cbb9cf2f4a80b)
bf0270
(cherry picked from commit 46cb4f9557bdba1db0a17d012df705d94d81a9f6)
bf0270
[rharwood: context fuzz, guids]
bf0270
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
bf0270
(cherry picked from commit 7d8eea48e82c4ef572cc0f9d3252487c1d7e5729)
bf0270
---
bf0270
 grub-core/kern/efi/efi.c |  36 +++++++++++++
bf0270
 grub-core/kern/efi/mm.c  | 131 +++++++++++++++++++++++++++++++++++++++++++++++
bf0270
 include/grub/efi/api.h   |  25 +++++++++
bf0270
 include/grub/efi/efi.h   |   2 +
bf0270
 include/grub/mm.h        |  32 ++++++++++++
bf0270
 5 files changed, 226 insertions(+)
bf0270
bf0270
diff --git a/grub-core/kern/efi/efi.c b/grub-core/kern/efi/efi.c
bf0270
index fccea20a01..09468dc5d5 100644
bf0270
--- a/grub-core/kern/efi/efi.c
bf0270
+++ b/grub-core/kern/efi/efi.c
bf0270
@@ -1093,3 +1093,39 @@ grub_efi_compare_device_paths (const grub_efi_device_path_t *dp1,
bf0270
 
bf0270
   return 0;
bf0270
 }
bf0270
+
bf0270
+grub_err_t
bf0270
+grub_efi_status_to_err (grub_efi_status_t status)
bf0270
+{
bf0270
+  grub_err_t err;
bf0270
+  switch (status)
bf0270
+    {
bf0270
+    case GRUB_EFI_SUCCESS:
bf0270
+      err = GRUB_ERR_NONE;
bf0270
+      break;
bf0270
+    case GRUB_EFI_INVALID_PARAMETER:
bf0270
+    default:
bf0270
+      err = GRUB_ERR_BAD_ARGUMENT;
bf0270
+      break;
bf0270
+    case GRUB_EFI_OUT_OF_RESOURCES:
bf0270
+      err = GRUB_ERR_OUT_OF_MEMORY;
bf0270
+      break;
bf0270
+    case GRUB_EFI_DEVICE_ERROR:
bf0270
+      err = GRUB_ERR_IO;
bf0270
+      break;
bf0270
+    case GRUB_EFI_WRITE_PROTECTED:
bf0270
+      err = GRUB_ERR_WRITE_ERROR;
bf0270
+      break;
bf0270
+    case GRUB_EFI_SECURITY_VIOLATION:
bf0270
+      err = GRUB_ERR_ACCESS_DENIED;
bf0270
+      break;
bf0270
+    case GRUB_EFI_NOT_FOUND:
bf0270
+      err = GRUB_ERR_FILE_NOT_FOUND;
bf0270
+      break;
bf0270
+    case GRUB_EFI_ABORTED:
bf0270
+      err = GRUB_ERR_WAIT;
bf0270
+      break;
bf0270
+    }
bf0270
+
bf0270
+  return err;
bf0270
+}
bf0270
diff --git a/grub-core/kern/efi/mm.c b/grub-core/kern/efi/mm.c
bf0270
index 9e76f23e5f..2cf4a4883a 100644
bf0270
--- a/grub-core/kern/efi/mm.c
bf0270
+++ b/grub-core/kern/efi/mm.c
bf0270
@@ -730,3 +730,134 @@ grub_efi_get_ram_base(grub_addr_t *base_addr)
bf0270
   return GRUB_ERR_NONE;
bf0270
 }
bf0270
 #endif
bf0270
+
bf0270
+static inline grub_uint64_t
bf0270
+grub_mem_attrs_to_uefi_mem_attrs (grub_uint64_t attrs)
bf0270
+{
bf0270
+  grub_uint64_t ret = GRUB_EFI_MEMORY_RP |
bf0270
+		      GRUB_EFI_MEMORY_RO |
bf0270
+		      GRUB_EFI_MEMORY_XP;
bf0270
+
bf0270
+  if (attrs & GRUB_MEM_ATTR_R)
bf0270
+    ret &= ~GRUB_EFI_MEMORY_RP;
bf0270
+
bf0270
+  if (attrs & GRUB_MEM_ATTR_W)
bf0270
+    ret &= ~GRUB_EFI_MEMORY_RO;
bf0270
+
bf0270
+  if (attrs & GRUB_MEM_ATTR_X)
bf0270
+    ret &= ~GRUB_EFI_MEMORY_XP;
bf0270
+
bf0270
+  return ret;
bf0270
+}
bf0270
+
bf0270
+static inline grub_uint64_t
bf0270
+uefi_mem_attrs_to_grub_mem_attrs (grub_uint64_t attrs)
bf0270
+{
bf0270
+  grub_uint64_t ret = GRUB_MEM_ATTR_R |
bf0270
+		      GRUB_MEM_ATTR_W |
bf0270
+		      GRUB_MEM_ATTR_X;
bf0270
+
bf0270
+  if (attrs & GRUB_EFI_MEMORY_RP)
bf0270
+    ret &= ~GRUB_MEM_ATTR_R;
bf0270
+
bf0270
+  if (attrs & GRUB_EFI_MEMORY_RO)
bf0270
+    ret &= ~GRUB_MEM_ATTR_W;
bf0270
+
bf0270
+  if (attrs & GRUB_EFI_MEMORY_XP)
bf0270
+    ret &= ~GRUB_MEM_ATTR_X;
bf0270
+
bf0270
+  return ret;
bf0270
+}
bf0270
+
bf0270
+grub_err_t
bf0270
+grub_get_mem_attrs (grub_addr_t addr, grub_size_t size, grub_uint64_t *attrs)
bf0270
+{
bf0270
+  grub_efi_memory_attribute_protocol_t *proto;
bf0270
+  grub_efi_physical_address_t physaddr = addr;
bf0270
+  grub_efi_guid_t protocol_guid = GRUB_EFI_MEMORY_ATTRIBUTE_PROTOCOL_GUID;
bf0270
+  grub_efi_status_t efi_status;
bf0270
+
bf0270
+  proto = grub_efi_locate_protocol (&protocol_guid, 0);
bf0270
+  if (!proto)
bf0270
+    return GRUB_ERR_NOT_IMPLEMENTED_YET;
bf0270
+
bf0270
+  if (physaddr & 0xfff || size & 0xfff || size == 0 || attrs == NULL)
bf0270
+    {
bf0270
+      grub_dprintf ("nx", "%s called on 0x%"PRIxGRUB_ADDR"-0x%"PRIxGRUB_ADDR" and attrs %p\n",
bf0270
+		    __func__, physaddr, physaddr+size-1, attrs);
bf0270
+      return 0;
bf0270
+    }
bf0270
+
bf0270
+  efi_status = efi_call_4(proto->get_memory_attributes,
bf0270
+			  proto, physaddr, size, attrs);
bf0270
+  *attrs = uefi_mem_attrs_to_grub_mem_attrs (*attrs);
bf0270
+
bf0270
+  return grub_efi_status_to_err (efi_status);
bf0270
+}
bf0270
+
bf0270
+grub_err_t
bf0270
+grub_update_mem_attrs (grub_addr_t addr, grub_size_t size,
bf0270
+		       grub_uint64_t set_attrs, grub_uint64_t clear_attrs)
bf0270
+{
bf0270
+  grub_efi_memory_attribute_protocol_t *proto;
bf0270
+  grub_efi_physical_address_t physaddr = addr;
bf0270
+  grub_efi_guid_t protocol_guid = GRUB_EFI_MEMORY_ATTRIBUTE_PROTOCOL_GUID;
bf0270
+  grub_efi_status_t efi_status = GRUB_EFI_SUCCESS;
bf0270
+  grub_uint64_t before = 0, after = 0, uefi_set_attrs, uefi_clear_attrs;
bf0270
+  grub_err_t err;
bf0270
+
bf0270
+  proto = grub_efi_locate_protocol (&protocol_guid, 0);
bf0270
+  if (!proto)
bf0270
+    return GRUB_ERR_NONE;
bf0270
+
bf0270
+  err = grub_get_mem_attrs (addr, size, &before);
bf0270
+  if (err)
bf0270
+    grub_dprintf ("nx", "grub_get_mem_attrs(0x%"PRIxGRUB_ADDR", %"PRIuGRUB_SIZE", %p) -> 0x%x\n",
bf0270
+		  addr, size, &before, err);
bf0270
+
bf0270
+  if (physaddr & 0xfff || size & 0xfff || size == 0)
bf0270
+    {
bf0270
+      grub_dprintf ("nx", "%s called on 0x%"PRIxGRUB_ADDR"-0x%"PRIxGRUB_ADDR" +%s%s%s -%s%s%s\n",
bf0270
+		    __func__, physaddr, physaddr + size - 1,
bf0270
+		    (set_attrs & GRUB_MEM_ATTR_R) ? "r" : "",
bf0270
+		    (set_attrs & GRUB_MEM_ATTR_W) ? "w" : "",
bf0270
+		    (set_attrs & GRUB_MEM_ATTR_X) ? "x" : "",
bf0270
+		    (clear_attrs & GRUB_MEM_ATTR_R) ? "r" : "",
bf0270
+		    (clear_attrs & GRUB_MEM_ATTR_W) ? "w" : "",
bf0270
+		    (clear_attrs & GRUB_MEM_ATTR_X) ? "x" : "");
bf0270
+      return 0;
bf0270
+    }
bf0270
+
bf0270
+  uefi_set_attrs = grub_mem_attrs_to_uefi_mem_attrs (set_attrs);
bf0270
+  grub_dprintf ("nx", "translating set_attrs from 0x%lx to 0x%lx\n", set_attrs, uefi_set_attrs);
bf0270
+  uefi_clear_attrs = grub_mem_attrs_to_uefi_mem_attrs (clear_attrs);
bf0270
+  grub_dprintf ("nx", "translating clear_attrs from 0x%lx to 0x%lx\n", clear_attrs, uefi_clear_attrs);
bf0270
+  if (uefi_set_attrs)
bf0270
+    efi_status = efi_call_4(proto->set_memory_attributes,
bf0270
+			    proto, physaddr, size, uefi_set_attrs);
bf0270
+  if (efi_status == GRUB_EFI_SUCCESS && uefi_clear_attrs)
bf0270
+    efi_status = efi_call_4(proto->clear_memory_attributes,
bf0270
+			    proto, physaddr, size, uefi_clear_attrs);
bf0270
+
bf0270
+  err = grub_get_mem_attrs (addr, size, &after);
bf0270
+  if (err)
bf0270
+    grub_dprintf ("nx", "grub_get_mem_attrs(0x%"PRIxGRUB_ADDR", %"PRIuGRUB_SIZE", %p) -> 0x%x\n",
bf0270
+		  addr, size, &after, err);
bf0270
+
bf0270
+  grub_dprintf ("nx", "set +%s%s%s -%s%s%s on 0x%"PRIxGRUB_ADDR"-0x%"PRIxGRUB_ADDR" before:%c%c%c after:%c%c%c\n",
bf0270
+		(set_attrs & GRUB_MEM_ATTR_R) ? "r" : "",
bf0270
+		(set_attrs & GRUB_MEM_ATTR_W) ? "w" : "",
bf0270
+		(set_attrs & GRUB_MEM_ATTR_X) ? "x" : "",
bf0270
+		(clear_attrs & GRUB_MEM_ATTR_R) ? "r" : "",
bf0270
+		(clear_attrs & GRUB_MEM_ATTR_W) ? "w" : "",
bf0270
+		(clear_attrs & GRUB_MEM_ATTR_X) ? "x" : "",
bf0270
+		addr, addr + size - 1,
bf0270
+		(before & GRUB_MEM_ATTR_R) ? 'r' : '-',
bf0270
+		(before & GRUB_MEM_ATTR_W) ? 'w' : '-',
bf0270
+		(before & GRUB_MEM_ATTR_X) ? 'x' : '-',
bf0270
+		(after & GRUB_MEM_ATTR_R) ? 'r' : '-',
bf0270
+		(after & GRUB_MEM_ATTR_W) ? 'w' : '-',
bf0270
+		(after & GRUB_MEM_ATTR_X) ? 'x' : '-');
bf0270
+
bf0270
+  return grub_efi_status_to_err (efi_status);
bf0270
+}
bf0270
diff --git a/include/grub/efi/api.h b/include/grub/efi/api.h
bf0270
index 2a243fd290..510a4030f5 100644
bf0270
--- a/include/grub/efi/api.h
bf0270
+++ b/include/grub/efi/api.h
bf0270
@@ -354,6 +354,11 @@
bf0270
     { 0xab, 0xb6, 0x3d, 0xd8, 0x10, 0xdd, 0x8b, 0x23 } \
bf0270
    }
bf0270
 
bf0270
+#define GRUB_EFI_MEMORY_ATTRIBUTE_PROTOCOL_GUID \
bf0270
+  { 0xf4560cf6, 0x40ec, 0x4b4a, \
bf0270
+    { 0xa1, 0x92, 0xbf, 0x1d, 0x57, 0xd0, 0xb1, 0x89 } \
bf0270
+  }
bf0270
+
bf0270
 struct grub_efi_sal_system_table
bf0270
 {
bf0270
   grub_uint32_t signature;
bf0270
@@ -2091,6 +2096,26 @@ struct grub_efi_rng_protocol
bf0270
 };
bf0270
 typedef struct grub_efi_rng_protocol grub_efi_rng_protocol_t;
bf0270
 
bf0270
+struct grub_efi_memory_attribute_protocol
bf0270
+{
bf0270
+  grub_efi_status_t (*get_memory_attributes) (
bf0270
+			    struct grub_efi_memory_attribute_protocol *this,
bf0270
+			    grub_efi_physical_address_t base_address,
bf0270
+			    grub_efi_uint64_t length,
bf0270
+			    grub_efi_uint64_t *attributes);
bf0270
+  grub_efi_status_t (*set_memory_attributes) (
bf0270
+			    struct grub_efi_memory_attribute_protocol *this,
bf0270
+			    grub_efi_physical_address_t base_address,
bf0270
+			    grub_efi_uint64_t length,
bf0270
+			    grub_efi_uint64_t attributes);
bf0270
+  grub_efi_status_t (*clear_memory_attributes) (
bf0270
+			    struct grub_efi_memory_attribute_protocol *this,
bf0270
+			    grub_efi_physical_address_t base_address,
bf0270
+			    grub_efi_uint64_t length,
bf0270
+			    grub_efi_uint64_t attributes);
bf0270
+};
bf0270
+typedef struct grub_efi_memory_attribute_protocol grub_efi_memory_attribute_protocol_t;
bf0270
+
bf0270
 #if (GRUB_TARGET_SIZEOF_VOID_P == 4) || defined (__ia64__) \
bf0270
   || defined (__aarch64__) || defined (__MINGW64__) || defined (__CYGWIN__)
bf0270
 
bf0270
diff --git a/include/grub/efi/efi.h b/include/grub/efi/efi.h
bf0270
index 7af979b184..a635bcb0a9 100644
bf0270
--- a/include/grub/efi/efi.h
bf0270
+++ b/include/grub/efi/efi.h
bf0270
@@ -159,4 +159,6 @@ struct grub_net_card;
bf0270
 grub_efi_handle_t
bf0270
 grub_efinet_get_device_handle (struct grub_net_card *card);
bf0270
 
bf0270
+grub_err_t EXPORT_FUNC(grub_efi_status_to_err) (grub_efi_status_t status);
bf0270
+
bf0270
 #endif /* ! GRUB_EFI_EFI_HEADER */
bf0270
diff --git a/include/grub/mm.h b/include/grub/mm.h
bf0270
index 9c38dd3ca5..d81623d226 100644
bf0270
--- a/include/grub/mm.h
bf0270
+++ b/include/grub/mm.h
bf0270
@@ -22,6 +22,7 @@
bf0270
 
bf0270
 #include <grub/types.h>
bf0270
 #include <grub/symbol.h>
bf0270
+#include <grub/err.h>
bf0270
 #include <config.h>
bf0270
 
bf0270
 #ifndef NULL
bf0270
@@ -38,6 +39,37 @@ void *EXPORT_FUNC(grub_realloc) (void *ptr, grub_size_t size);
bf0270
 void *EXPORT_FUNC(grub_memalign) (grub_size_t align, grub_size_t size);
bf0270
 #endif
bf0270
 
bf0270
+#define GRUB_MEM_ATTR_R	0x0000000000000004LLU
bf0270
+#define GRUB_MEM_ATTR_W	0x0000000000000002LLU
bf0270
+#define GRUB_MEM_ATTR_X	0x0000000000000001LLU
bf0270
+
bf0270
+#ifdef GRUB_MACHINE_EFI
bf0270
+grub_err_t EXPORT_FUNC(grub_get_mem_attrs) (grub_addr_t addr,
bf0270
+					    grub_size_t size,
bf0270
+					    grub_uint64_t *attrs);
bf0270
+grub_err_t EXPORT_FUNC(grub_update_mem_attrs) (grub_addr_t addr,
bf0270
+					       grub_size_t size,
bf0270
+					       grub_uint64_t set_attrs,
bf0270
+					       grub_uint64_t clear_attrs);
bf0270
+#else /* !GRUB_MACHINE_EFI */
bf0270
+static inline grub_err_t
bf0270
+grub_get_mem_attrs (grub_addr_t addr __attribute__((__unused__)),
bf0270
+		    grub_size_t size __attribute__((__unused__)),
bf0270
+		    grub_uint64_t *attrs __attribute__((__unused__)))
bf0270
+{
bf0270
+  return GRUB_ERR_NONE;
bf0270
+}
bf0270
+
bf0270
+static inline grub_err_t
bf0270
+grub_update_mem_attrs (grub_addr_t addr __attribute__((__unused__)),
bf0270
+		       grub_size_t size __attribute__((__unused__)),
bf0270
+		       grub_uint64_t set_attrs __attribute__((__unused__)),
bf0270
+		       grub_uint64_t clear_attrs __attribute__((__unused__)))
bf0270
+{
bf0270
+  return GRUB_ERR_NONE;
bf0270
+}
bf0270
+#endif /* GRUB_MACHINE_EFI */
bf0270
+
bf0270
 void grub_mm_check_real (const char *file, int line);
bf0270
 #define grub_mm_check() grub_mm_check_real (GRUB_FILE, __LINE__);
bf0270