Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F151156205
D56249.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
D56249.diff
View Options
diff --git a/stand/efi/loader/bootinfo.c b/stand/efi/loader/bootinfo.c
--- a/stand/efi/loader/bootinfo.c
+++ b/stand/efi/loader/bootinfo.c
@@ -232,52 +232,59 @@
* the memory map are caused by splitting a range of free
* memory into two, so that one is marked as being loader
* data.
+ *
+ * Perform the allocation before the ExitBootServices retry
+ * loop so that no boot service calls (AllocatePages,
+ * FreePages) are made between GetMemoryMap and
+ * ExitBootServices. The UEFI specification (s7.4.6) requires
+ * that the memory map key passed to ExitBootServices match
+ * the current map; calling any boot service in between may
+ * invalidate the key. This matches the pre-allocation
+ * strategy used by the Linux EFI stub.
*/
-
sz = 0;
- mm = NULL;
+ status = BS->GetMemoryMap(&sz, NULL, &efi_mapkey, &dsz, &mmver);
+ if (status != EFI_BUFFER_TOO_SMALL) {
+ printf("%s: GetMemoryMap error %lu\n", __func__,
+ DECODE_ERROR(status));
+ return (EINVAL);
+ }
+ sz += (10 * dsz);
+ pages = EFI_SIZE_TO_PAGES(sz + efisz);
+ status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData,
+ pages, &addr);
+ if (EFI_ERROR(status)) {
+ printf("%s: AllocatePages error %lu\n", __func__,
+ DECODE_ERROR(status));
+ return (ENOMEM);
+ }
+
+ /*
+ * Read the memory map and stash it after bootinfo. Align the
+ * memory map on a 16-byte boundary (the bootinfo block is page
+ * aligned).
+ */
+ efihdr = (struct efi_map_header *)(uintptr_t)addr;
+ mm = (void *)((uint8_t *)efihdr + efisz);
/*
* Matthew Garrett has observed at least one system changing the
- * memory map when calling ExitBootServices, causing it to return an
- * error, probably because callbacks are allocating memory.
- * So we need to retry calling it at least once.
+ * memory map when calling ExitBootServices, causing it to return
+ * an error, probably because EBS event handlers allocate memory.
+ *
+ * The retry loop must not call any boot services between
+ * GetMemoryMap and ExitBootServices. Any boot service call
+ * (including printf/OutputString) can invalidate the memory
+ * map key, and the spec requires the key to be current.
*/
for (retry = 2; retry > 0; retry--) {
- for (;;) {
- status = BS->GetMemoryMap(&sz, mm, &efi_mapkey, &dsz, &mmver);
- if (!EFI_ERROR(status))
- break;
-
- if (status != EFI_BUFFER_TOO_SMALL) {
- printf("%s: GetMemoryMap error %lu\n", __func__,
- DECODE_ERROR(status));
- return (EINVAL);
- }
-
- if (addr != 0)
- BS->FreePages(addr, pages);
-
- /* Add 10 descriptors to the size to allow for
- * fragmentation caused by calling AllocatePages */
- sz += (10 * dsz);
- pages = EFI_SIZE_TO_PAGES(sz + efisz);
- status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData,
- pages, &addr);
- if (EFI_ERROR(status)) {
- printf("%s: AllocatePages error %lu\n", __func__,
- DECODE_ERROR(status));
- return (ENOMEM);
- }
-
- /*
- * Read the memory map and stash it after bootinfo. Align the
- * memory map on a 16-byte boundary (the bootinfo block is page
- * aligned).
- */
- efihdr = (struct efi_map_header *)(uintptr_t)addr;
- mm = (void *)((uint8_t *)efihdr + efisz);
- sz = (EFI_PAGE_SIZE * pages) - efisz;
+ sz = (EFI_PAGE_SIZE * pages) - efisz;
+ status = BS->GetMemoryMap(&sz, mm, &efi_mapkey, &dsz, &mmver);
+ if (EFI_ERROR(status)) {
+ BS->FreePages(addr, pages);
+ printf("%s: GetMemoryMap error %lu\n", __func__,
+ DECODE_ERROR(status));
+ return (EINVAL);
}
if (!exit_bs)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Apr 7, 11:52 AM (1 h, 4 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
31028148
Default Alt Text
D56249.diff (3 KB)
Attached To
Mode
D56249: loader/efi: pre-allocate memory map buffer before ExitBootServices
Attached
Detach File
Event Timeline
Log In to Comment