Tom Rini | f739fcd | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2 | /* |
Heinrich Schuchardt | 359a699 | 2019-07-03 20:27:24 +0200 | [diff] [blame] | 3 | * EFI application boot time services |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 4 | * |
Heinrich Schuchardt | 359a699 | 2019-07-03 20:27:24 +0200 | [diff] [blame] | 5 | * Copyright (c) 2016 Alexander Graf |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
Ilias Apalodimas | 19763ea | 2020-10-22 01:04:20 +0300 | [diff] [blame] | 8 | #include <bootm.h> |
Heinrich Schuchardt | 7d96332 | 2017-10-05 16:14:14 +0200 | [diff] [blame] | 9 | #include <div64.h> |
Ilias Apalodimas | 529441c | 2020-10-22 01:04:21 +0300 | [diff] [blame] | 10 | #include <dm/device.h> |
| 11 | #include <dm/root.h> |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 12 | #include <efi_loader.h> |
Simon Glass | 36bf446 | 2019-11-14 12:57:42 -0700 | [diff] [blame] | 13 | #include <irq_func.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 14 | #include <log.h> |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 15 | #include <malloc.h> |
Heinrich Schuchardt | 126a43f | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 16 | #include <pe.h> |
Ilias Apalodimas | 19763ea | 2020-10-22 01:04:20 +0300 | [diff] [blame] | 17 | #include <time.h> |
Simon Glass | 3db7110 | 2019-11-14 12:57:16 -0700 | [diff] [blame] | 18 | #include <u-boot/crc.h> |
Ilias Apalodimas | 529441c | 2020-10-22 01:04:21 +0300 | [diff] [blame] | 19 | #include <usb.h> |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 20 | #include <watchdog.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 21 | #include <asm/global_data.h> |
AKASHI Takahiro | 86a3d43 | 2021-07-20 14:57:02 +0900 | [diff] [blame] | 22 | #include <asm/setjmp.h> |
Ilias Apalodimas | 19763ea | 2020-10-22 01:04:20 +0300 | [diff] [blame] | 23 | #include <linux/libfdt_env.h> |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 24 | |
| 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
Heinrich Schuchardt | 32f4b2f | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 27 | /* Task priority level */ |
Heinrich Schuchardt | 152cade | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 28 | static efi_uintn_t efi_tpl = TPL_APPLICATION; |
Heinrich Schuchardt | 32f4b2f | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 29 | |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 30 | /* This list contains all the EFI objects our payload has access to */ |
| 31 | LIST_HEAD(efi_obj_list); |
| 32 | |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 33 | /* List of all events */ |
Heinrich Schuchardt | 14b4048 | 2019-07-11 20:15:09 +0200 | [diff] [blame] | 34 | __efi_runtime_data LIST_HEAD(efi_events); |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 35 | |
Heinrich Schuchardt | 7a69e97 | 2019-06-05 21:00:39 +0200 | [diff] [blame] | 36 | /* List of queued events */ |
Bin Meng | ee23830 | 2023-04-05 20:15:17 +0800 | [diff] [blame] | 37 | static LIST_HEAD(efi_event_queue); |
Heinrich Schuchardt | 7a69e97 | 2019-06-05 21:00:39 +0200 | [diff] [blame] | 38 | |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 39 | /* Flag to disable timer activity in ExitBootServices() */ |
| 40 | static bool timers_enabled = true; |
| 41 | |
Heinrich Schuchardt | fccd3d9 | 2020-11-12 21:26:28 +0100 | [diff] [blame] | 42 | /* Flag used by the selftest to avoid detaching devices in ExitBootServices() */ |
| 43 | bool efi_st_keep_devices; |
| 44 | |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 45 | /* List of all events registered by RegisterProtocolNotify() */ |
Bin Meng | ee23830 | 2023-04-05 20:15:17 +0800 | [diff] [blame] | 46 | static LIST_HEAD(efi_register_notify_events); |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 47 | |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 48 | /* Handle of the currently executing image */ |
| 49 | static efi_handle_t current_image; |
| 50 | |
Heinrich Schuchardt | d68d7f4 | 2020-09-10 12:22:54 +0200 | [diff] [blame] | 51 | #if defined(CONFIG_ARM) || defined(CONFIG_RISCV) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 52 | /* |
Heinrich Schuchardt | d68d7f4 | 2020-09-10 12:22:54 +0200 | [diff] [blame] | 53 | * The "gd" pointer lives in a register on ARM and RISC-V that we declare |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 54 | * fixed when compiling U-Boot. However, the payload does not know about that |
| 55 | * restriction so we need to manually swap its and our view of that register on |
| 56 | * EFI callback entry/exit. |
| 57 | */ |
Heinrich Schuchardt | 4f7dc5f | 2020-05-27 01:58:30 +0200 | [diff] [blame] | 58 | static volatile gd_t *efi_gd, *app_gd; |
Simon Glass | 65e4c0b | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 59 | #endif |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 60 | |
Ilias Apalodimas | 54edc37 | 2023-07-24 13:17:36 +0300 | [diff] [blame] | 61 | static efi_status_t efi_uninstall_protocol |
| 62 | (efi_handle_t handle, const efi_guid_t *protocol, |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 63 | void *protocol_interface, bool preserve); |
Ilias Apalodimas | 54edc37 | 2023-07-24 13:17:36 +0300 | [diff] [blame] | 64 | |
Heinrich Schuchardt | 914df75 | 2019-02-09 14:10:39 +0100 | [diff] [blame] | 65 | /* 1 if inside U-Boot code, 0 if inside EFI payload code */ |
| 66 | static int entry_count = 1; |
Rob Clark | af65db8 | 2017-07-27 08:04:19 -0400 | [diff] [blame] | 67 | static int nesting_level; |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 68 | /* GUID of the device tree table */ |
| 69 | const efi_guid_t efi_guid_fdt = EFI_FDT_GUID; |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 70 | /* GUID of the EFI_DRIVER_BINDING_PROTOCOL */ |
| 71 | const efi_guid_t efi_guid_driver_binding_protocol = |
| 72 | EFI_DRIVER_BINDING_PROTOCOL_GUID; |
Rob Clark | c160d2f | 2017-07-27 08:04:18 -0400 | [diff] [blame] | 73 | |
Heinrich Schuchardt | a3a28f5 | 2018-02-18 15:17:51 +0100 | [diff] [blame] | 74 | /* event group ExitBootServices() invoked */ |
| 75 | const efi_guid_t efi_guid_event_group_exit_boot_services = |
| 76 | EFI_EVENT_GROUP_EXIT_BOOT_SERVICES; |
Heinrich Schuchardt | 43eaf5b | 2021-11-16 18:46:27 +0100 | [diff] [blame] | 77 | /* event group before ExitBootServices() invoked */ |
| 78 | const efi_guid_t efi_guid_event_group_before_exit_boot_services = |
| 79 | EFI_EVENT_GROUP_BEFORE_EXIT_BOOT_SERVICES; |
Heinrich Schuchardt | a3a28f5 | 2018-02-18 15:17:51 +0100 | [diff] [blame] | 80 | /* event group SetVirtualAddressMap() invoked */ |
| 81 | const efi_guid_t efi_guid_event_group_virtual_address_change = |
| 82 | EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE; |
| 83 | /* event group memory map changed */ |
| 84 | const efi_guid_t efi_guid_event_group_memory_map_change = |
| 85 | EFI_EVENT_GROUP_MEMORY_MAP_CHANGE; |
| 86 | /* event group boot manager about to boot */ |
| 87 | const efi_guid_t efi_guid_event_group_ready_to_boot = |
| 88 | EFI_EVENT_GROUP_READY_TO_BOOT; |
| 89 | /* event group ResetSystem() invoked (before ExitBootServices) */ |
| 90 | const efi_guid_t efi_guid_event_group_reset_system = |
| 91 | EFI_EVENT_GROUP_RESET_SYSTEM; |
Masahisa Kojima | e0d1a1e | 2023-11-10 13:25:39 +0900 | [diff] [blame] | 92 | /* event group return to efibootmgr */ |
| 93 | const efi_guid_t efi_guid_event_group_return_to_efibootmgr = |
| 94 | EFI_EVENT_GROUP_RETURN_TO_EFIBOOTMGR; |
Heinrich Schuchardt | b6f1109 | 2020-12-04 03:33:41 +0100 | [diff] [blame] | 95 | /* GUIDs of the Load File and Load File2 protocols */ |
| 96 | const efi_guid_t efi_guid_load_file_protocol = EFI_LOAD_FILE_PROTOCOL_GUID; |
| 97 | const efi_guid_t efi_guid_load_file2_protocol = EFI_LOAD_FILE2_PROTOCOL_GUID; |
Masahisa Kojima | 3d49ee8 | 2021-10-26 17:27:24 +0900 | [diff] [blame] | 98 | /* GUID of the SMBIOS table */ |
| 99 | const efi_guid_t smbios_guid = SMBIOS_TABLE_GUID; |
Heinrich Schuchardt | a3a28f5 | 2018-02-18 15:17:51 +0100 | [diff] [blame] | 100 | |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 101 | static efi_status_t EFIAPI efi_disconnect_controller( |
| 102 | efi_handle_t controller_handle, |
| 103 | efi_handle_t driver_image_handle, |
| 104 | efi_handle_t child_handle); |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 105 | |
Ilias Apalodimas | 239d59a | 2023-06-20 09:19:28 +0300 | [diff] [blame] | 106 | static |
| 107 | efi_status_t EFIAPI efi_connect_controller(efi_handle_t controller_handle, |
| 108 | efi_handle_t *driver_image_handle, |
| 109 | struct efi_device_path *remain_device_path, |
| 110 | bool recursive); |
| 111 | |
Rob Clark | c160d2f | 2017-07-27 08:04:18 -0400 | [diff] [blame] | 112 | /* Called on every callback entry */ |
| 113 | int __efi_entry_check(void) |
| 114 | { |
| 115 | int ret = entry_count++ == 0; |
Heinrich Schuchardt | d68d7f4 | 2020-09-10 12:22:54 +0200 | [diff] [blame] | 116 | #if defined(CONFIG_ARM) || defined(CONFIG_RISCV) |
Rob Clark | c160d2f | 2017-07-27 08:04:18 -0400 | [diff] [blame] | 117 | assert(efi_gd); |
| 118 | app_gd = gd; |
Heinrich Schuchardt | 4f7dc5f | 2020-05-27 01:58:30 +0200 | [diff] [blame] | 119 | set_gd(efi_gd); |
Rob Clark | c160d2f | 2017-07-27 08:04:18 -0400 | [diff] [blame] | 120 | #endif |
| 121 | return ret; |
| 122 | } |
| 123 | |
| 124 | /* Called on every callback exit */ |
| 125 | int __efi_exit_check(void) |
| 126 | { |
| 127 | int ret = --entry_count == 0; |
Heinrich Schuchardt | d68d7f4 | 2020-09-10 12:22:54 +0200 | [diff] [blame] | 128 | #if defined(CONFIG_ARM) || defined(CONFIG_RISCV) |
Heinrich Schuchardt | 4f7dc5f | 2020-05-27 01:58:30 +0200 | [diff] [blame] | 129 | set_gd(app_gd); |
Rob Clark | c160d2f | 2017-07-27 08:04:18 -0400 | [diff] [blame] | 130 | #endif |
| 131 | return ret; |
| 132 | } |
| 133 | |
Heinrich Schuchardt | e7d6406 | 2020-07-18 09:53:01 +0200 | [diff] [blame] | 134 | /** |
| 135 | * efi_save_gd() - save global data register |
| 136 | * |
Heinrich Schuchardt | d68d7f4 | 2020-09-10 12:22:54 +0200 | [diff] [blame] | 137 | * On the ARM and RISC-V architectures gd is mapped to a fixed register. |
Heinrich Schuchardt | e7d6406 | 2020-07-18 09:53:01 +0200 | [diff] [blame] | 138 | * As this register may be overwritten by an EFI payload we save it here |
| 139 | * and restore it on every callback entered. |
| 140 | * |
| 141 | * This function is called after relocation from initr_reloc_global_data(). |
| 142 | */ |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 143 | void efi_save_gd(void) |
| 144 | { |
Heinrich Schuchardt | d68d7f4 | 2020-09-10 12:22:54 +0200 | [diff] [blame] | 145 | #if defined(CONFIG_ARM) || defined(CONFIG_RISCV) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 146 | efi_gd = gd; |
Simon Glass | 65e4c0b | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 147 | #endif |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 148 | } |
| 149 | |
Heinrich Schuchardt | e7d6406 | 2020-07-18 09:53:01 +0200 | [diff] [blame] | 150 | /** |
| 151 | * efi_restore_gd() - restore global data register |
| 152 | * |
Heinrich Schuchardt | d68d7f4 | 2020-09-10 12:22:54 +0200 | [diff] [blame] | 153 | * On the ARM and RISC-V architectures gd is mapped to a fixed register. |
Heinrich Schuchardt | e7d6406 | 2020-07-18 09:53:01 +0200 | [diff] [blame] | 154 | * Restore it after returning from the UEFI world to the value saved via |
| 155 | * efi_save_gd(). |
Rob Clark | c160d2f | 2017-07-27 08:04:18 -0400 | [diff] [blame] | 156 | */ |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 157 | void efi_restore_gd(void) |
| 158 | { |
Heinrich Schuchardt | d68d7f4 | 2020-09-10 12:22:54 +0200 | [diff] [blame] | 159 | #if defined(CONFIG_ARM) || defined(CONFIG_RISCV) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 160 | /* Only restore if we're already in EFI context */ |
| 161 | if (!efi_gd) |
| 162 | return; |
Heinrich Schuchardt | 4f7dc5f | 2020-05-27 01:58:30 +0200 | [diff] [blame] | 163 | set_gd(efi_gd); |
Simon Glass | 65e4c0b | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 164 | #endif |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 165 | } |
| 166 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 167 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 168 | * indent_string() - returns a string for indenting with two spaces per level |
| 169 | * @level: indent level |
Heinrich Schuchardt | c8df80c | 2018-01-24 19:21:36 +0100 | [diff] [blame] | 170 | * |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 171 | * A maximum of ten indent levels is supported. Higher indent levels will be |
| 172 | * truncated. |
| 173 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 174 | * Return: A string for indenting with two spaces per level is |
| 175 | * returned. |
Rob Clark | af65db8 | 2017-07-27 08:04:19 -0400 | [diff] [blame] | 176 | */ |
| 177 | static const char *indent_string(int level) |
| 178 | { |
| 179 | const char *indent = " "; |
| 180 | const int max = strlen(indent); |
Heinrich Schuchardt | ab9efa9 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 181 | |
Rob Clark | af65db8 | 2017-07-27 08:04:19 -0400 | [diff] [blame] | 182 | level = min(max, level * 2); |
| 183 | return &indent[max - level]; |
| 184 | } |
| 185 | |
Heinrich Schuchardt | ae0bd3a | 2017-08-18 17:45:16 +0200 | [diff] [blame] | 186 | const char *__efi_nesting(void) |
| 187 | { |
| 188 | return indent_string(nesting_level); |
| 189 | } |
| 190 | |
Rob Clark | af65db8 | 2017-07-27 08:04:19 -0400 | [diff] [blame] | 191 | const char *__efi_nesting_inc(void) |
| 192 | { |
| 193 | return indent_string(nesting_level++); |
| 194 | } |
| 195 | |
| 196 | const char *__efi_nesting_dec(void) |
| 197 | { |
| 198 | return indent_string(--nesting_level); |
| 199 | } |
| 200 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 201 | /** |
Heinrich Schuchardt | 7a69e97 | 2019-06-05 21:00:39 +0200 | [diff] [blame] | 202 | * efi_event_is_queued() - check if an event is queued |
| 203 | * |
| 204 | * @event: event |
| 205 | * Return: true if event is queued |
| 206 | */ |
| 207 | static bool efi_event_is_queued(struct efi_event *event) |
| 208 | { |
| 209 | return !!event->queue_link.next; |
| 210 | } |
| 211 | |
| 212 | /** |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 213 | * efi_purge_handle() - Clean the deleted handle from the various lists |
| 214 | * @handle: handle to remove |
| 215 | * |
| 216 | * Return: status code |
| 217 | */ |
| 218 | static efi_status_t efi_purge_handle(efi_handle_t handle) |
| 219 | { |
| 220 | struct efi_register_notify_event *item; |
| 221 | |
| 222 | if (!list_empty(&handle->protocols)) |
| 223 | return EFI_ACCESS_DENIED; |
| 224 | /* The handle is about to be freed. Remove it from events */ |
| 225 | list_for_each_entry(item, &efi_register_notify_events, link) { |
| 226 | struct efi_protocol_notification *hitem, *hnext; |
| 227 | |
| 228 | list_for_each_entry_safe(hitem, hnext, &item->handles, link) { |
| 229 | if (handle == hitem->handle) { |
| 230 | list_del(&hitem->link); |
| 231 | free(hitem); |
| 232 | } |
| 233 | } |
| 234 | } |
| 235 | /* The last protocol has been removed, delete the handle. */ |
| 236 | list_del(&handle->link); |
| 237 | free(handle); |
| 238 | |
| 239 | return EFI_SUCCESS; |
| 240 | } |
| 241 | |
| 242 | /** |
Heinrich Schuchardt | 7a69e97 | 2019-06-05 21:00:39 +0200 | [diff] [blame] | 243 | * efi_process_event_queue() - process event queue |
| 244 | */ |
| 245 | static void efi_process_event_queue(void) |
| 246 | { |
| 247 | while (!list_empty(&efi_event_queue)) { |
| 248 | struct efi_event *event; |
| 249 | efi_uintn_t old_tpl; |
| 250 | |
| 251 | event = list_first_entry(&efi_event_queue, struct efi_event, |
| 252 | queue_link); |
| 253 | if (efi_tpl >= event->notify_tpl) |
| 254 | return; |
| 255 | list_del(&event->queue_link); |
| 256 | event->queue_link.next = NULL; |
| 257 | event->queue_link.prev = NULL; |
| 258 | /* Events must be executed at the event's TPL */ |
| 259 | old_tpl = efi_tpl; |
| 260 | efi_tpl = event->notify_tpl; |
| 261 | EFI_CALL_VOID(event->notify_function(event, |
| 262 | event->notify_context)); |
| 263 | efi_tpl = old_tpl; |
| 264 | if (event->type == EVT_NOTIFY_SIGNAL) |
| 265 | event->is_signaled = 0; |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 270 | * efi_queue_event() - queue an EFI event |
| 271 | * @event: event to signal |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 272 | * |
| 273 | * This function queues the notification function of the event for future |
| 274 | * execution. |
| 275 | * |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 276 | */ |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 277 | static void efi_queue_event(struct efi_event *event) |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 278 | { |
Heinrich Schuchardt | 2b8568f | 2020-03-06 21:56:10 +0100 | [diff] [blame] | 279 | struct efi_event *item; |
Heinrich Schuchardt | 7a69e97 | 2019-06-05 21:00:39 +0200 | [diff] [blame] | 280 | |
| 281 | if (!event->notify_function) |
| 282 | return; |
| 283 | |
| 284 | if (!efi_event_is_queued(event)) { |
| 285 | /* |
| 286 | * Events must be notified in order of decreasing task priority |
| 287 | * level. Insert the new event accordingly. |
| 288 | */ |
| 289 | list_for_each_entry(item, &efi_event_queue, queue_link) { |
| 290 | if (item->notify_tpl < event->notify_tpl) { |
| 291 | list_add_tail(&event->queue_link, |
| 292 | &item->queue_link); |
| 293 | event = NULL; |
| 294 | break; |
| 295 | } |
| 296 | } |
| 297 | if (event) |
| 298 | list_add_tail(&event->queue_link, &efi_event_queue); |
Heinrich Schuchardt | b7d186f | 2020-12-28 00:25:34 +0100 | [diff] [blame] | 299 | efi_process_event_queue(); |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 300 | } |
| 301 | } |
| 302 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 303 | /** |
Heinrich Schuchardt | 21b3edf | 2018-07-02 12:53:52 +0200 | [diff] [blame] | 304 | * is_valid_tpl() - check if the task priority level is valid |
| 305 | * |
| 306 | * @tpl: TPL level to check |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 307 | * Return: status code |
Heinrich Schuchardt | 21b3edf | 2018-07-02 12:53:52 +0200 | [diff] [blame] | 308 | */ |
Heinrich Schuchardt | be67847 | 2023-02-10 08:50:06 +0100 | [diff] [blame] | 309 | static efi_status_t is_valid_tpl(efi_uintn_t tpl) |
Heinrich Schuchardt | 21b3edf | 2018-07-02 12:53:52 +0200 | [diff] [blame] | 310 | { |
| 311 | switch (tpl) { |
| 312 | case TPL_APPLICATION: |
| 313 | case TPL_CALLBACK: |
| 314 | case TPL_NOTIFY: |
Heinrich Schuchardt | 21b3edf | 2018-07-02 12:53:52 +0200 | [diff] [blame] | 315 | return EFI_SUCCESS; |
| 316 | default: |
| 317 | return EFI_INVALID_PARAMETER; |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 322 | * efi_signal_event() - signal an EFI event |
| 323 | * @event: event to signal |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 324 | * |
Heinrich Schuchardt | 2a0f80f | 2020-12-28 00:59:09 +0100 | [diff] [blame] | 325 | * This function signals an event. If the event belongs to an event group, all |
| 326 | * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL, |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 327 | * their notification function is queued. |
| 328 | * |
| 329 | * For the SignalEvent service see efi_signal_event_ext. |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 330 | */ |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 331 | void efi_signal_event(struct efi_event *event) |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 332 | { |
Heinrich Schuchardt | dfa306e | 2019-06-06 01:51:50 +0200 | [diff] [blame] | 333 | if (event->is_signaled) |
| 334 | return; |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 335 | if (event->group) { |
| 336 | struct efi_event *evt; |
| 337 | |
| 338 | /* |
| 339 | * The signaled state has to set before executing any |
| 340 | * notification function |
| 341 | */ |
| 342 | list_for_each_entry(evt, &efi_events, link) { |
| 343 | if (!evt->group || guidcmp(evt->group, event->group)) |
| 344 | continue; |
| 345 | if (evt->is_signaled) |
| 346 | continue; |
| 347 | evt->is_signaled = true; |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 348 | } |
| 349 | list_for_each_entry(evt, &efi_events, link) { |
| 350 | if (!evt->group || guidcmp(evt->group, event->group)) |
| 351 | continue; |
Heinrich Schuchardt | 7a69e97 | 2019-06-05 21:00:39 +0200 | [diff] [blame] | 352 | efi_queue_event(evt); |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 353 | } |
Heinrich Schuchardt | 3626e53 | 2019-05-05 00:07:34 +0200 | [diff] [blame] | 354 | } else { |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 355 | event->is_signaled = true; |
Heinrich Schuchardt | 7a69e97 | 2019-06-05 21:00:39 +0200 | [diff] [blame] | 356 | efi_queue_event(event); |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 357 | } |
| 358 | } |
| 359 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 360 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 361 | * efi_raise_tpl() - raise the task priority level |
| 362 | * @new_tpl: new value of the task priority level |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 363 | * |
| 364 | * This function implements the RaiseTpl service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 365 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 366 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 367 | * details. |
| 368 | * |
| 369 | * Return: old value of the task priority level |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 370 | */ |
Heinrich Schuchardt | 152cade | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 371 | static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 372 | { |
Heinrich Schuchardt | 152cade | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 373 | efi_uintn_t old_tpl = efi_tpl; |
Heinrich Schuchardt | 32f4b2f | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 374 | |
xypron.glpk@gmx.de | 503f269 | 2017-07-18 20:17:19 +0200 | [diff] [blame] | 375 | EFI_ENTRY("0x%zx", new_tpl); |
Heinrich Schuchardt | 32f4b2f | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 376 | |
| 377 | if (new_tpl < efi_tpl) |
Heinrich Schuchardt | 529886a | 2019-05-05 11:56:23 +0200 | [diff] [blame] | 378 | EFI_PRINT("WARNING: new_tpl < current_tpl in %s\n", __func__); |
Heinrich Schuchardt | 32f4b2f | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 379 | efi_tpl = new_tpl; |
| 380 | if (efi_tpl > TPL_HIGH_LEVEL) |
| 381 | efi_tpl = TPL_HIGH_LEVEL; |
| 382 | |
| 383 | EFI_EXIT(EFI_SUCCESS); |
| 384 | return old_tpl; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 385 | } |
| 386 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 387 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 388 | * efi_restore_tpl() - lower the task priority level |
| 389 | * @old_tpl: value of the task priority level to be restored |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 390 | * |
| 391 | * This function implements the RestoreTpl service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 392 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 393 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 394 | * details. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 395 | */ |
Heinrich Schuchardt | 152cade | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 396 | static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 397 | { |
xypron.glpk@gmx.de | 503f269 | 2017-07-18 20:17:19 +0200 | [diff] [blame] | 398 | EFI_ENTRY("0x%zx", old_tpl); |
Heinrich Schuchardt | 32f4b2f | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 399 | |
| 400 | if (old_tpl > efi_tpl) |
Heinrich Schuchardt | 529886a | 2019-05-05 11:56:23 +0200 | [diff] [blame] | 401 | EFI_PRINT("WARNING: old_tpl > current_tpl in %s\n", __func__); |
Heinrich Schuchardt | 32f4b2f | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 402 | efi_tpl = old_tpl; |
| 403 | if (efi_tpl > TPL_HIGH_LEVEL) |
| 404 | efi_tpl = TPL_HIGH_LEVEL; |
| 405 | |
Heinrich Schuchardt | 0f7fcc7 | 2018-03-24 18:40:21 +0100 | [diff] [blame] | 406 | /* |
| 407 | * Lowering the TPL may have made queued events eligible for execution. |
| 408 | */ |
| 409 | efi_timer_check(); |
| 410 | |
Heinrich Schuchardt | 32f4b2f | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 411 | EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 412 | } |
| 413 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 414 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 415 | * efi_allocate_pages_ext() - allocate memory pages |
| 416 | * @type: type of allocation to be performed |
| 417 | * @memory_type: usage type of the allocated memory |
| 418 | * @pages: number of pages to be allocated |
| 419 | * @memory: allocated memory |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 420 | * |
| 421 | * This function implements the AllocatePages service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 422 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 423 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 424 | * details. |
| 425 | * |
| 426 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 427 | */ |
Masahiro Yamada | 6e0bf8d | 2017-06-22 17:49:03 +0900 | [diff] [blame] | 428 | static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 429 | efi_uintn_t pages, |
Masahiro Yamada | 6e0bf8d | 2017-06-22 17:49:03 +0900 | [diff] [blame] | 430 | uint64_t *memory) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 431 | { |
| 432 | efi_status_t r; |
| 433 | |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 434 | EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 435 | r = efi_allocate_pages(type, memory_type, pages, memory); |
| 436 | return EFI_EXIT(r); |
| 437 | } |
| 438 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 439 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 440 | * efi_free_pages_ext() - Free memory pages. |
| 441 | * @memory: start of the memory area to be freed |
| 442 | * @pages: number of pages to be freed |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 443 | * |
| 444 | * This function implements the FreePages service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 445 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 446 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 447 | * details. |
| 448 | * |
| 449 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 450 | */ |
Masahiro Yamada | 6e0bf8d | 2017-06-22 17:49:03 +0900 | [diff] [blame] | 451 | static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 452 | efi_uintn_t pages) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 453 | { |
| 454 | efi_status_t r; |
| 455 | |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 456 | EFI_ENTRY("%llx, 0x%zx", memory, pages); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 457 | r = efi_free_pages(memory, pages); |
| 458 | return EFI_EXIT(r); |
| 459 | } |
| 460 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 461 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 462 | * efi_get_memory_map_ext() - get map describing memory usage |
| 463 | * @memory_map_size: on entry the size, in bytes, of the memory map buffer, |
| 464 | * on exit the size of the copied memory map |
| 465 | * @memory_map: buffer to which the memory map is written |
| 466 | * @map_key: key for the memory map |
| 467 | * @descriptor_size: size of an individual memory descriptor |
| 468 | * @descriptor_version: version number of the memory descriptor structure |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 469 | * |
| 470 | * This function implements the GetMemoryMap service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 471 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 472 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 473 | * details. |
| 474 | * |
| 475 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 476 | */ |
Masahiro Yamada | 6e0bf8d | 2017-06-22 17:49:03 +0900 | [diff] [blame] | 477 | static efi_status_t EFIAPI efi_get_memory_map_ext( |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 478 | efi_uintn_t *memory_map_size, |
Masahiro Yamada | 6e0bf8d | 2017-06-22 17:49:03 +0900 | [diff] [blame] | 479 | struct efi_mem_desc *memory_map, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 480 | efi_uintn_t *map_key, |
| 481 | efi_uintn_t *descriptor_size, |
Masahiro Yamada | 6e0bf8d | 2017-06-22 17:49:03 +0900 | [diff] [blame] | 482 | uint32_t *descriptor_version) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 483 | { |
| 484 | efi_status_t r; |
| 485 | |
| 486 | EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map, |
| 487 | map_key, descriptor_size, descriptor_version); |
| 488 | r = efi_get_memory_map(memory_map_size, memory_map, map_key, |
| 489 | descriptor_size, descriptor_version); |
| 490 | return EFI_EXIT(r); |
| 491 | } |
| 492 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 493 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 494 | * efi_allocate_pool_ext() - allocate memory from pool |
| 495 | * @pool_type: type of the pool from which memory is to be allocated |
| 496 | * @size: number of bytes to be allocated |
| 497 | * @buffer: allocated memory |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 498 | * |
| 499 | * This function implements the AllocatePool service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 500 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 501 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 502 | * details. |
| 503 | * |
| 504 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 505 | */ |
Stefan Brüns | ead1274 | 2016-10-09 22:17:18 +0200 | [diff] [blame] | 506 | static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 507 | efi_uintn_t size, |
Stefan Brüns | ead1274 | 2016-10-09 22:17:18 +0200 | [diff] [blame] | 508 | void **buffer) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 509 | { |
Alexander Graf | 1cd29f0 | 2016-03-24 01:37:37 +0100 | [diff] [blame] | 510 | efi_status_t r; |
| 511 | |
Heinrich Schuchardt | e9df549 | 2022-02-03 22:21:51 +0100 | [diff] [blame] | 512 | EFI_ENTRY("%d, %zu, %p", pool_type, size, buffer); |
Stefan Brüns | ead1274 | 2016-10-09 22:17:18 +0200 | [diff] [blame] | 513 | r = efi_allocate_pool(pool_type, size, buffer); |
Alexander Graf | 1cd29f0 | 2016-03-24 01:37:37 +0100 | [diff] [blame] | 514 | return EFI_EXIT(r); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 515 | } |
| 516 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 517 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 518 | * efi_free_pool_ext() - free memory from pool |
| 519 | * @buffer: start of memory to be freed |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 520 | * |
| 521 | * This function implements the FreePool service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 522 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 523 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 524 | * details. |
| 525 | * |
| 526 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 527 | */ |
Stefan Brüns | 42417bc | 2016-10-09 22:17:26 +0200 | [diff] [blame] | 528 | static efi_status_t EFIAPI efi_free_pool_ext(void *buffer) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 529 | { |
Alexander Graf | 1cd29f0 | 2016-03-24 01:37:37 +0100 | [diff] [blame] | 530 | efi_status_t r; |
| 531 | |
| 532 | EFI_ENTRY("%p", buffer); |
Stefan Brüns | 42417bc | 2016-10-09 22:17:26 +0200 | [diff] [blame] | 533 | r = efi_free_pool(buffer); |
Alexander Graf | 1cd29f0 | 2016-03-24 01:37:37 +0100 | [diff] [blame] | 534 | return EFI_EXIT(r); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 535 | } |
| 536 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 537 | /** |
Heinrich Schuchardt | e6023be | 2019-05-01 09:42:39 +0200 | [diff] [blame] | 538 | * efi_add_handle() - add a new handle to the object list |
Heinrich Schuchardt | 44549d6 | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 539 | * |
Heinrich Schuchardt | e6023be | 2019-05-01 09:42:39 +0200 | [diff] [blame] | 540 | * @handle: handle to be added |
| 541 | * |
| 542 | * The protocols list is initialized. The handle is added to the list of known |
| 543 | * UEFI objects. |
Heinrich Schuchardt | 44549d6 | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 544 | */ |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 545 | void efi_add_handle(efi_handle_t handle) |
Heinrich Schuchardt | 44549d6 | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 546 | { |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 547 | if (!handle) |
Heinrich Schuchardt | 44549d6 | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 548 | return; |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 549 | INIT_LIST_HEAD(&handle->protocols); |
| 550 | list_add_tail(&handle->link, &efi_obj_list); |
Heinrich Schuchardt | 44549d6 | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 551 | } |
| 552 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 553 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 554 | * efi_create_handle() - create handle |
| 555 | * @handle: new handle |
Heinrich Schuchardt | 2edab5e | 2017-10-26 19:25:49 +0200 | [diff] [blame] | 556 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 557 | * Return: status code |
Heinrich Schuchardt | 2edab5e | 2017-10-26 19:25:49 +0200 | [diff] [blame] | 558 | */ |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 559 | efi_status_t efi_create_handle(efi_handle_t *handle) |
Heinrich Schuchardt | 3cc6e3f | 2017-08-27 00:51:09 +0200 | [diff] [blame] | 560 | { |
| 561 | struct efi_object *obj; |
Heinrich Schuchardt | 3cc6e3f | 2017-08-27 00:51:09 +0200 | [diff] [blame] | 562 | |
Heinrich Schuchardt | d29e782 | 2018-05-27 16:47:21 +0200 | [diff] [blame] | 563 | obj = calloc(1, sizeof(struct efi_object)); |
| 564 | if (!obj) |
| 565 | return EFI_OUT_OF_RESOURCES; |
| 566 | |
Heinrich Schuchardt | 44549d6 | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 567 | efi_add_handle(obj); |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 568 | *handle = obj; |
Heinrich Schuchardt | d29e782 | 2018-05-27 16:47:21 +0200 | [diff] [blame] | 569 | |
| 570 | return EFI_SUCCESS; |
Heinrich Schuchardt | 3cc6e3f | 2017-08-27 00:51:09 +0200 | [diff] [blame] | 571 | } |
| 572 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 573 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 574 | * efi_search_protocol() - find a protocol on a handle. |
| 575 | * @handle: handle |
| 576 | * @protocol_guid: GUID of the protocol |
| 577 | * @handler: reference to the protocol |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 578 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 579 | * Return: status code |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 580 | */ |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 581 | efi_status_t efi_search_protocol(const efi_handle_t handle, |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 582 | const efi_guid_t *protocol_guid, |
| 583 | struct efi_handler **handler) |
| 584 | { |
| 585 | struct efi_object *efiobj; |
| 586 | struct list_head *lhandle; |
| 587 | |
| 588 | if (!handle || !protocol_guid) |
| 589 | return EFI_INVALID_PARAMETER; |
| 590 | efiobj = efi_search_obj(handle); |
| 591 | if (!efiobj) |
| 592 | return EFI_INVALID_PARAMETER; |
| 593 | list_for_each(lhandle, &efiobj->protocols) { |
| 594 | struct efi_handler *protocol; |
| 595 | |
| 596 | protocol = list_entry(lhandle, struct efi_handler, link); |
Heinrich Schuchardt | 6602893 | 2022-03-09 19:56:23 +0100 | [diff] [blame] | 597 | if (!guidcmp(&protocol->guid, protocol_guid)) { |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 598 | if (handler) |
| 599 | *handler = protocol; |
| 600 | return EFI_SUCCESS; |
| 601 | } |
| 602 | } |
| 603 | return EFI_NOT_FOUND; |
| 604 | } |
| 605 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 606 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 607 | * efi_remove_protocol() - delete protocol from a handle |
| 608 | * @handle: handle from which the protocol shall be deleted |
| 609 | * @protocol: GUID of the protocol to be deleted |
| 610 | * @protocol_interface: interface of the protocol implementation |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 611 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 612 | * Return: status code |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 613 | */ |
Ilias Apalodimas | 21eb7c1 | 2023-06-19 14:14:03 +0300 | [diff] [blame] | 614 | static efi_status_t efi_remove_protocol(const efi_handle_t handle, |
| 615 | const efi_guid_t *protocol, |
| 616 | void *protocol_interface) |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 617 | { |
| 618 | struct efi_handler *handler; |
| 619 | efi_status_t ret; |
| 620 | |
| 621 | ret = efi_search_protocol(handle, protocol, &handler); |
| 622 | if (ret != EFI_SUCCESS) |
| 623 | return ret; |
Heinrich Schuchardt | 1f470e1 | 2018-05-11 12:09:21 +0200 | [diff] [blame] | 624 | if (handler->protocol_interface != protocol_interface) |
Heinrich Schuchardt | 96aa99c | 2019-05-10 20:06:48 +0200 | [diff] [blame] | 625 | return EFI_NOT_FOUND; |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 626 | list_del(&handler->link); |
| 627 | free(handler); |
| 628 | return EFI_SUCCESS; |
| 629 | } |
| 630 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 631 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 632 | * efi_remove_all_protocols() - delete all protocols from a handle |
| 633 | * @handle: handle from which the protocols shall be deleted |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 634 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 635 | * Return: status code |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 636 | */ |
Heinrich Schuchardt | be67847 | 2023-02-10 08:50:06 +0100 | [diff] [blame] | 637 | static efi_status_t efi_remove_all_protocols(const efi_handle_t handle) |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 638 | { |
| 639 | struct efi_object *efiobj; |
Heinrich Schuchardt | 32e6fed | 2018-01-11 08:15:55 +0100 | [diff] [blame] | 640 | struct efi_handler *protocol; |
| 641 | struct efi_handler *pos; |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 642 | |
| 643 | efiobj = efi_search_obj(handle); |
| 644 | if (!efiobj) |
| 645 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 32e6fed | 2018-01-11 08:15:55 +0100 | [diff] [blame] | 646 | list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) { |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 647 | efi_status_t ret; |
| 648 | |
Ilias Apalodimas | 54edc37 | 2023-07-24 13:17:36 +0300 | [diff] [blame] | 649 | ret = efi_uninstall_protocol(handle, &protocol->guid, |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 650 | protocol->protocol_interface, true); |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 651 | if (ret != EFI_SUCCESS) |
| 652 | return ret; |
| 653 | } |
| 654 | return EFI_SUCCESS; |
| 655 | } |
| 656 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 657 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 658 | * efi_delete_handle() - delete handle |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 659 | * |
Heinrich Schuchardt | 6631ca5 | 2019-07-14 11:05:34 +0200 | [diff] [blame] | 660 | * @handle: handle to delete |
Ilias Apalodimas | 54edc37 | 2023-07-24 13:17:36 +0300 | [diff] [blame] | 661 | * |
| 662 | * Return: status code |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 663 | */ |
Ilias Apalodimas | 54edc37 | 2023-07-24 13:17:36 +0300 | [diff] [blame] | 664 | efi_status_t efi_delete_handle(efi_handle_t handle) |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 665 | { |
Etienne Carriere | 7932548 | 2022-09-07 10:20:13 +0200 | [diff] [blame] | 666 | efi_status_t ret; |
| 667 | |
| 668 | ret = efi_remove_all_protocols(handle); |
Ilias Apalodimas | 54edc37 | 2023-07-24 13:17:36 +0300 | [diff] [blame] | 669 | if (ret != EFI_SUCCESS) { |
| 670 | log_err("Handle %p has protocols installed. Unable to delete\n", handle); |
| 671 | return ret; |
Etienne Carriere | 7932548 | 2022-09-07 10:20:13 +0200 | [diff] [blame] | 672 | } |
| 673 | |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 674 | return efi_purge_handle(handle); |
Heinrich Schuchardt | 678e03a | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 675 | } |
| 676 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 677 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 678 | * efi_is_event() - check if a pointer is a valid event |
| 679 | * @event: pointer to check |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 680 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 681 | * Return: status code |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 682 | */ |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 683 | static efi_status_t efi_is_event(const struct efi_event *event) |
| 684 | { |
| 685 | const struct efi_event *evt; |
| 686 | |
| 687 | if (!event) |
| 688 | return EFI_INVALID_PARAMETER; |
| 689 | list_for_each_entry(evt, &efi_events, link) { |
| 690 | if (evt == event) |
| 691 | return EFI_SUCCESS; |
| 692 | } |
| 693 | return EFI_INVALID_PARAMETER; |
| 694 | } |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 695 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 696 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 697 | * efi_create_event() - create an event |
Heinrich Schuchardt | 6631ca5 | 2019-07-14 11:05:34 +0200 | [diff] [blame] | 698 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 699 | * @type: type of the event to create |
| 700 | * @notify_tpl: task priority level of the event |
| 701 | * @notify_function: notification function of the event |
| 702 | * @notify_context: pointer passed to the notification function |
| 703 | * @group: event group |
| 704 | * @event: created event |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 705 | * |
| 706 | * This function is used inside U-Boot code to create an event. |
| 707 | * |
| 708 | * For the API function implementing the CreateEvent service see |
| 709 | * efi_create_event_ext. |
| 710 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 711 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 712 | */ |
Heinrich Schuchardt | 152cade | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 713 | efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl, |
xypron.glpk@gmx.de | 49deb45 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 714 | void (EFIAPI *notify_function) ( |
xypron.glpk@gmx.de | 2fd945f | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 715 | struct efi_event *event, |
| 716 | void *context), |
Masahisa Kojima | e23c8e8 | 2023-11-10 13:25:38 +0900 | [diff] [blame] | 717 | void *notify_context, const efi_guid_t *group, |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 718 | struct efi_event **event) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 719 | { |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 720 | struct efi_event *evt; |
Heinrich Schuchardt | 14b4048 | 2019-07-11 20:15:09 +0200 | [diff] [blame] | 721 | efi_status_t ret; |
| 722 | int pool_type; |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 723 | |
Jonathan Gray | a95343b | 2017-03-12 19:26:07 +1100 | [diff] [blame] | 724 | if (event == NULL) |
xypron.glpk@gmx.de | 49deb45 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 725 | return EFI_INVALID_PARAMETER; |
Jonathan Gray | a95343b | 2017-03-12 19:26:07 +1100 | [diff] [blame] | 726 | |
Heinrich Schuchardt | 21b3edf | 2018-07-02 12:53:52 +0200 | [diff] [blame] | 727 | switch (type) { |
| 728 | case 0: |
| 729 | case EVT_TIMER: |
| 730 | case EVT_NOTIFY_SIGNAL: |
| 731 | case EVT_TIMER | EVT_NOTIFY_SIGNAL: |
| 732 | case EVT_NOTIFY_WAIT: |
| 733 | case EVT_TIMER | EVT_NOTIFY_WAIT: |
| 734 | case EVT_SIGNAL_EXIT_BOOT_SERVICES: |
Heinrich Schuchardt | 14b4048 | 2019-07-11 20:15:09 +0200 | [diff] [blame] | 735 | pool_type = EFI_BOOT_SERVICES_DATA; |
| 736 | break; |
Heinrich Schuchardt | 21b3edf | 2018-07-02 12:53:52 +0200 | [diff] [blame] | 737 | case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE: |
Heinrich Schuchardt | 14b4048 | 2019-07-11 20:15:09 +0200 | [diff] [blame] | 738 | pool_type = EFI_RUNTIME_SERVICES_DATA; |
Heinrich Schuchardt | 21b3edf | 2018-07-02 12:53:52 +0200 | [diff] [blame] | 739 | break; |
| 740 | default: |
xypron.glpk@gmx.de | 49deb45 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 741 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 21b3edf | 2018-07-02 12:53:52 +0200 | [diff] [blame] | 742 | } |
Jonathan Gray | a95343b | 2017-03-12 19:26:07 +1100 | [diff] [blame] | 743 | |
Heinrich Schuchardt | 2cfb68f | 2021-01-06 12:55:22 +0100 | [diff] [blame] | 744 | /* |
| 745 | * The UEFI specification requires event notification levels to be |
| 746 | * > TPL_APPLICATION and <= TPL_HIGH_LEVEL. |
| 747 | * |
| 748 | * Parameter NotifyTpl should not be checked if it is not used. |
| 749 | */ |
AKASHI Takahiro | 3748ed9 | 2018-08-10 15:36:32 +0900 | [diff] [blame] | 750 | if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) && |
Heinrich Schuchardt | 2cfb68f | 2021-01-06 12:55:22 +0100 | [diff] [blame] | 751 | (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS || |
| 752 | notify_tpl == TPL_APPLICATION)) |
xypron.glpk@gmx.de | 49deb45 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 753 | return EFI_INVALID_PARAMETER; |
Jonathan Gray | a95343b | 2017-03-12 19:26:07 +1100 | [diff] [blame] | 754 | |
Heinrich Schuchardt | 14b4048 | 2019-07-11 20:15:09 +0200 | [diff] [blame] | 755 | ret = efi_allocate_pool(pool_type, sizeof(struct efi_event), |
| 756 | (void **)&evt); |
| 757 | if (ret != EFI_SUCCESS) |
| 758 | return ret; |
| 759 | memset(evt, 0, sizeof(struct efi_event)); |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 760 | evt->type = type; |
| 761 | evt->notify_tpl = notify_tpl; |
| 762 | evt->notify_function = notify_function; |
| 763 | evt->notify_context = notify_context; |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 764 | evt->group = group; |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 765 | /* Disable timers on boot up */ |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 766 | evt->trigger_next = -1ULL; |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 767 | list_add_tail(&evt->link, &efi_events); |
| 768 | *event = evt; |
| 769 | return EFI_SUCCESS; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 770 | } |
| 771 | |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 772 | /* |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 773 | * efi_create_event_ex() - create an event in a group |
Heinrich Schuchardt | be67847 | 2023-02-10 08:50:06 +0100 | [diff] [blame] | 774 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 775 | * @type: type of the event to create |
| 776 | * @notify_tpl: task priority level of the event |
| 777 | * @notify_function: notification function of the event |
| 778 | * @notify_context: pointer passed to the notification function |
| 779 | * @event: created event |
| 780 | * @event_group: event group |
Heinrich Schuchardt | 9f0930e | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 781 | * |
| 782 | * This function implements the CreateEventEx service. |
Heinrich Schuchardt | 9f0930e | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 783 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 784 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 785 | * details. |
| 786 | * |
| 787 | * Return: status code |
Heinrich Schuchardt | 9f0930e | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 788 | */ |
Heinrich Schuchardt | be67847 | 2023-02-10 08:50:06 +0100 | [diff] [blame] | 789 | static |
Heinrich Schuchardt | 9f0930e | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 790 | efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl, |
| 791 | void (EFIAPI *notify_function) ( |
| 792 | struct efi_event *event, |
| 793 | void *context), |
| 794 | void *notify_context, |
Masahisa Kojima | e23c8e8 | 2023-11-10 13:25:38 +0900 | [diff] [blame] | 795 | const efi_guid_t *event_group, |
Heinrich Schuchardt | 9f0930e | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 796 | struct efi_event **event) |
| 797 | { |
Heinrich Schuchardt | 1884512 | 2019-05-04 10:12:50 +0200 | [diff] [blame] | 798 | efi_status_t ret; |
| 799 | |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 800 | EFI_ENTRY("%d, 0x%zx, %p, %p, %pUs", type, notify_tpl, notify_function, |
Heinrich Schuchardt | 9f0930e | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 801 | notify_context, event_group); |
Heinrich Schuchardt | 1884512 | 2019-05-04 10:12:50 +0200 | [diff] [blame] | 802 | |
| 803 | /* |
| 804 | * The allowable input parameters are the same as in CreateEvent() |
| 805 | * except for the following two disallowed event types. |
| 806 | */ |
| 807 | switch (type) { |
| 808 | case EVT_SIGNAL_EXIT_BOOT_SERVICES: |
| 809 | case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE: |
| 810 | ret = EFI_INVALID_PARAMETER; |
| 811 | goto out; |
| 812 | } |
| 813 | |
| 814 | ret = efi_create_event(type, notify_tpl, notify_function, |
| 815 | notify_context, event_group, event); |
| 816 | out: |
| 817 | return EFI_EXIT(ret); |
Heinrich Schuchardt | 9f0930e | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 818 | } |
| 819 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 820 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 821 | * efi_create_event_ext() - create an event |
| 822 | * @type: type of the event to create |
| 823 | * @notify_tpl: task priority level of the event |
| 824 | * @notify_function: notification function of the event |
| 825 | * @notify_context: pointer passed to the notification function |
| 826 | * @event: created event |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 827 | * |
| 828 | * This function implements the CreateEvent service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 829 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 830 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 831 | * details. |
| 832 | * |
| 833 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 834 | */ |
xypron.glpk@gmx.de | 49deb45 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 835 | static efi_status_t EFIAPI efi_create_event_ext( |
Heinrich Schuchardt | 152cade | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 836 | uint32_t type, efi_uintn_t notify_tpl, |
xypron.glpk@gmx.de | 49deb45 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 837 | void (EFIAPI *notify_function) ( |
| 838 | struct efi_event *event, |
| 839 | void *context), |
| 840 | void *notify_context, struct efi_event **event) |
| 841 | { |
| 842 | EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function, |
| 843 | notify_context); |
| 844 | return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function, |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 845 | notify_context, NULL, event)); |
xypron.glpk@gmx.de | 49deb45 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 846 | } |
| 847 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 848 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 849 | * efi_timer_check() - check if a timer event has occurred |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 850 | * |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 851 | * Check if a timer event has occurred or a queued notification function should |
| 852 | * be called. |
| 853 | * |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 854 | * Our timers have to work without interrupts, so we check whenever keyboard |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 855 | * input or disk accesses happen if enough time elapsed for them to fire. |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 856 | */ |
| 857 | void efi_timer_check(void) |
| 858 | { |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 859 | struct efi_event *evt; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 860 | u64 now = timer_get_us(); |
| 861 | |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 862 | list_for_each_entry(evt, &efi_events, link) { |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 863 | if (!timers_enabled) |
| 864 | continue; |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 865 | if (!(evt->type & EVT_TIMER) || now < evt->trigger_next) |
Heinrich Schuchardt | ca62a4f | 2017-09-15 10:06:13 +0200 | [diff] [blame] | 866 | continue; |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 867 | switch (evt->trigger_type) { |
Heinrich Schuchardt | ca62a4f | 2017-09-15 10:06:13 +0200 | [diff] [blame] | 868 | case EFI_TIMER_RELATIVE: |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 869 | evt->trigger_type = EFI_TIMER_STOP; |
Heinrich Schuchardt | ca62a4f | 2017-09-15 10:06:13 +0200 | [diff] [blame] | 870 | break; |
| 871 | case EFI_TIMER_PERIODIC: |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 872 | evt->trigger_next += evt->trigger_time; |
Heinrich Schuchardt | ca62a4f | 2017-09-15 10:06:13 +0200 | [diff] [blame] | 873 | break; |
| 874 | default: |
| 875 | continue; |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 876 | } |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 877 | evt->is_signaled = false; |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 878 | efi_signal_event(evt); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 879 | } |
Heinrich Schuchardt | 7a69e97 | 2019-06-05 21:00:39 +0200 | [diff] [blame] | 880 | efi_process_event_queue(); |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 881 | schedule(); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 882 | } |
| 883 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 884 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 885 | * efi_set_timer() - set the trigger time for a timer event or stop the event |
| 886 | * @event: event for which the timer is set |
| 887 | * @type: type of the timer |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 888 | * @trigger_time: trigger period in multiples of 100 ns |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 889 | * |
| 890 | * This is the function for internal usage in U-Boot. For the API function |
| 891 | * implementing the SetTimer service see efi_set_timer_ext. |
| 892 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 893 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 894 | */ |
xypron.glpk@gmx.de | b521d29 | 2017-07-19 19:22:34 +0200 | [diff] [blame] | 895 | efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type, |
xypron.glpk@gmx.de | bfc7246 | 2017-07-18 20:17:21 +0200 | [diff] [blame] | 896 | uint64_t trigger_time) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 897 | { |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 898 | /* Check that the event is valid */ |
| 899 | if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER)) |
| 900 | return EFI_INVALID_PARAMETER; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 901 | |
xypron.glpk@gmx.de | 8787b02 | 2017-07-18 20:17:23 +0200 | [diff] [blame] | 902 | /* |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 903 | * The parameter defines a multiple of 100 ns. |
| 904 | * We use multiples of 1000 ns. So divide by 10. |
xypron.glpk@gmx.de | 8787b02 | 2017-07-18 20:17:23 +0200 | [diff] [blame] | 905 | */ |
Heinrich Schuchardt | 7d96332 | 2017-10-05 16:14:14 +0200 | [diff] [blame] | 906 | do_div(trigger_time, 10); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 907 | |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 908 | switch (type) { |
| 909 | case EFI_TIMER_STOP: |
| 910 | event->trigger_next = -1ULL; |
| 911 | break; |
| 912 | case EFI_TIMER_PERIODIC: |
| 913 | case EFI_TIMER_RELATIVE: |
| 914 | event->trigger_next = timer_get_us() + trigger_time; |
| 915 | break; |
| 916 | default: |
| 917 | return EFI_INVALID_PARAMETER; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 918 | } |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 919 | event->trigger_type = type; |
| 920 | event->trigger_time = trigger_time; |
| 921 | event->is_signaled = false; |
| 922 | return EFI_SUCCESS; |
xypron.glpk@gmx.de | bfc7246 | 2017-07-18 20:17:21 +0200 | [diff] [blame] | 923 | } |
| 924 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 925 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 926 | * efi_set_timer_ext() - Set the trigger time for a timer event or stop the |
| 927 | * event |
| 928 | * @event: event for which the timer is set |
| 929 | * @type: type of the timer |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 930 | * @trigger_time: trigger period in multiples of 100 ns |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 931 | * |
| 932 | * This function implements the SetTimer service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 933 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 934 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 935 | * details. |
| 936 | * |
| 937 | * |
| 938 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 939 | */ |
xypron.glpk@gmx.de | b521d29 | 2017-07-19 19:22:34 +0200 | [diff] [blame] | 940 | static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event, |
| 941 | enum efi_timer_delay type, |
| 942 | uint64_t trigger_time) |
xypron.glpk@gmx.de | bfc7246 | 2017-07-18 20:17:21 +0200 | [diff] [blame] | 943 | { |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 944 | EFI_ENTRY("%p, %d, %llx", event, type, trigger_time); |
xypron.glpk@gmx.de | bfc7246 | 2017-07-18 20:17:21 +0200 | [diff] [blame] | 945 | return EFI_EXIT(efi_set_timer(event, type, trigger_time)); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 946 | } |
| 947 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 948 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 949 | * efi_wait_for_event() - wait for events to be signaled |
| 950 | * @num_events: number of events to be waited for |
| 951 | * @event: events to be waited for |
| 952 | * @index: index of the event that was signaled |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 953 | * |
| 954 | * This function implements the WaitForEvent service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 955 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 956 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 957 | * details. |
| 958 | * |
| 959 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 960 | */ |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 961 | static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events, |
xypron.glpk@gmx.de | 2fd945f | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 962 | struct efi_event **event, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 963 | efi_uintn_t *index) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 964 | { |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 965 | int i; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 966 | |
Heinrich Schuchardt | e9df549 | 2022-02-03 22:21:51 +0100 | [diff] [blame] | 967 | EFI_ENTRY("%zu, %p, %p", num_events, event, index); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 968 | |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 969 | /* Check parameters */ |
| 970 | if (!num_events || !event) |
| 971 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
Heinrich Schuchardt | 32f4b2f | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 972 | /* Check TPL */ |
| 973 | if (efi_tpl != TPL_APPLICATION) |
| 974 | return EFI_EXIT(EFI_UNSUPPORTED); |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 975 | for (i = 0; i < num_events; ++i) { |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 976 | if (efi_is_event(event[i]) != EFI_SUCCESS) |
| 977 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 978 | if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL) |
| 979 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
Heinrich Schuchardt | e190e89 | 2017-10-04 15:03:24 +0200 | [diff] [blame] | 980 | if (!event[i]->is_signaled) |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 981 | efi_queue_event(event[i]); |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | /* Wait for signal */ |
| 985 | for (;;) { |
| 986 | for (i = 0; i < num_events; ++i) { |
Heinrich Schuchardt | e190e89 | 2017-10-04 15:03:24 +0200 | [diff] [blame] | 987 | if (event[i]->is_signaled) |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 988 | goto out; |
| 989 | } |
| 990 | /* Allow events to occur. */ |
| 991 | efi_timer_check(); |
| 992 | } |
| 993 | |
| 994 | out: |
| 995 | /* |
| 996 | * Reset the signal which is passed to the caller to allow periodic |
| 997 | * events to occur. |
| 998 | */ |
Heinrich Schuchardt | e190e89 | 2017-10-04 15:03:24 +0200 | [diff] [blame] | 999 | event[i]->is_signaled = false; |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 1000 | if (index) |
| 1001 | *index = i; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1002 | |
| 1003 | return EFI_EXIT(EFI_SUCCESS); |
| 1004 | } |
| 1005 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1006 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1007 | * efi_signal_event_ext() - signal an EFI event |
| 1008 | * @event: event to signal |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1009 | * |
| 1010 | * This function implements the SignalEvent service. |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1011 | * |
| 1012 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1013 | * details. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1014 | * |
| 1015 | * This functions sets the signaled state of the event and queues the |
| 1016 | * notification function for execution. |
| 1017 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1018 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1019 | */ |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 1020 | static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1021 | { |
| 1022 | EFI_ENTRY("%p", event); |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 1023 | if (efi_is_event(event) != EFI_SUCCESS) |
| 1024 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 1025 | efi_signal_event(event); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1026 | return EFI_EXIT(EFI_SUCCESS); |
| 1027 | } |
| 1028 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1029 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1030 | * efi_close_event() - close an EFI event |
| 1031 | * @event: event to close |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1032 | * |
| 1033 | * This function implements the CloseEvent service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1034 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1035 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1036 | * details. |
| 1037 | * |
| 1038 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1039 | */ |
xypron.glpk@gmx.de | 2fd945f | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 1040 | static efi_status_t EFIAPI efi_close_event(struct efi_event *event) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1041 | { |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1042 | struct efi_register_notify_event *item, *next; |
| 1043 | |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1044 | EFI_ENTRY("%p", event); |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 1045 | if (efi_is_event(event) != EFI_SUCCESS) |
| 1046 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1047 | |
| 1048 | /* Remove protocol notify registrations for the event */ |
| 1049 | list_for_each_entry_safe(item, next, &efi_register_notify_events, |
| 1050 | link) { |
| 1051 | if (event == item->event) { |
Heinrich Schuchardt | f09cea3 | 2019-05-21 18:19:01 +0200 | [diff] [blame] | 1052 | struct efi_protocol_notification *hitem, *hnext; |
| 1053 | |
| 1054 | /* Remove signaled handles */ |
| 1055 | list_for_each_entry_safe(hitem, hnext, &item->handles, |
| 1056 | link) { |
| 1057 | list_del(&hitem->link); |
| 1058 | free(hitem); |
| 1059 | } |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1060 | list_del(&item->link); |
| 1061 | free(item); |
| 1062 | } |
| 1063 | } |
Heinrich Schuchardt | 7a69e97 | 2019-06-05 21:00:39 +0200 | [diff] [blame] | 1064 | /* Remove event from queue */ |
| 1065 | if (efi_event_is_queued(event)) |
| 1066 | list_del(&event->queue_link); |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1067 | |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 1068 | list_del(&event->link); |
Heinrich Schuchardt | 14b4048 | 2019-07-11 20:15:09 +0200 | [diff] [blame] | 1069 | efi_free_pool(event); |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 1070 | return EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1071 | } |
| 1072 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1073 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1074 | * efi_check_event() - check if an event is signaled |
| 1075 | * @event: event to check |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1076 | * |
| 1077 | * This function implements the CheckEvent service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1078 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1079 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1080 | * details. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1081 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1082 | * If an event is not signaled yet, the notification function is queued. The |
| 1083 | * signaled state is cleared. |
| 1084 | * |
| 1085 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1086 | */ |
xypron.glpk@gmx.de | 2fd945f | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 1087 | static efi_status_t EFIAPI efi_check_event(struct efi_event *event) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1088 | { |
| 1089 | EFI_ENTRY("%p", event); |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 1090 | efi_timer_check(); |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 1091 | if (efi_is_event(event) != EFI_SUCCESS || |
| 1092 | event->type & EVT_NOTIFY_SIGNAL) |
| 1093 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
| 1094 | if (!event->is_signaled) |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 1095 | efi_queue_event(event); |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 1096 | if (event->is_signaled) { |
| 1097 | event->is_signaled = false; |
| 1098 | return EFI_EXIT(EFI_SUCCESS); |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 1099 | } |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 1100 | return EFI_EXIT(EFI_NOT_READY); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1101 | } |
| 1102 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1103 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1104 | * efi_search_obj() - find the internal EFI object for a handle |
| 1105 | * @handle: handle to find |
Heinrich Schuchardt | 7b9f8ad | 2017-10-18 18:13:03 +0200 | [diff] [blame] | 1106 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1107 | * Return: EFI object |
Heinrich Schuchardt | 7b9f8ad | 2017-10-18 18:13:03 +0200 | [diff] [blame] | 1108 | */ |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 1109 | struct efi_object *efi_search_obj(const efi_handle_t handle) |
Heinrich Schuchardt | 7b9f8ad | 2017-10-18 18:13:03 +0200 | [diff] [blame] | 1110 | { |
Heinrich Schuchardt | 1b68153 | 2017-11-06 21:17:50 +0100 | [diff] [blame] | 1111 | struct efi_object *efiobj; |
Heinrich Schuchardt | 7b9f8ad | 2017-10-18 18:13:03 +0200 | [diff] [blame] | 1112 | |
Heinrich Schuchardt | ec163fa | 2019-05-05 10:37:51 +0200 | [diff] [blame] | 1113 | if (!handle) |
| 1114 | return NULL; |
| 1115 | |
Heinrich Schuchardt | 1b68153 | 2017-11-06 21:17:50 +0100 | [diff] [blame] | 1116 | list_for_each_entry(efiobj, &efi_obj_list, link) { |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1117 | if (efiobj == handle) |
Heinrich Schuchardt | 7b9f8ad | 2017-10-18 18:13:03 +0200 | [diff] [blame] | 1118 | return efiobj; |
| 1119 | } |
Heinrich Schuchardt | 7b9f8ad | 2017-10-18 18:13:03 +0200 | [diff] [blame] | 1120 | return NULL; |
| 1121 | } |
| 1122 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1123 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1124 | * efi_open_protocol_info_entry() - create open protocol info entry and add it |
| 1125 | * to a protocol |
| 1126 | * @handler: handler of a protocol |
Heinrich Schuchardt | fe1599d | 2018-01-11 08:15:57 +0100 | [diff] [blame] | 1127 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1128 | * Return: open protocol info entry |
Heinrich Schuchardt | fe1599d | 2018-01-11 08:15:57 +0100 | [diff] [blame] | 1129 | */ |
| 1130 | static struct efi_open_protocol_info_entry *efi_create_open_info( |
| 1131 | struct efi_handler *handler) |
| 1132 | { |
| 1133 | struct efi_open_protocol_info_item *item; |
| 1134 | |
| 1135 | item = calloc(1, sizeof(struct efi_open_protocol_info_item)); |
| 1136 | if (!item) |
| 1137 | return NULL; |
| 1138 | /* Append the item to the open protocol info list. */ |
| 1139 | list_add_tail(&item->link, &handler->open_infos); |
| 1140 | |
| 1141 | return &item->info; |
| 1142 | } |
| 1143 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1144 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1145 | * efi_delete_open_info() - remove an open protocol info entry from a protocol |
| 1146 | * @item: open protocol info entry to delete |
Heinrich Schuchardt | fe1599d | 2018-01-11 08:15:57 +0100 | [diff] [blame] | 1147 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1148 | * Return: status code |
Heinrich Schuchardt | fe1599d | 2018-01-11 08:15:57 +0100 | [diff] [blame] | 1149 | */ |
| 1150 | static efi_status_t efi_delete_open_info( |
| 1151 | struct efi_open_protocol_info_item *item) |
| 1152 | { |
| 1153 | list_del(&item->link); |
| 1154 | free(item); |
| 1155 | return EFI_SUCCESS; |
| 1156 | } |
| 1157 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1158 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1159 | * efi_add_protocol() - install new protocol on a handle |
| 1160 | * @handle: handle on which the protocol shall be installed |
| 1161 | * @protocol: GUID of the protocol to be installed |
| 1162 | * @protocol_interface: interface of the protocol implementation |
Heinrich Schuchardt | 3f79a2b | 2017-10-26 19:25:53 +0200 | [diff] [blame] | 1163 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1164 | * Return: status code |
Heinrich Schuchardt | 3f79a2b | 2017-10-26 19:25:53 +0200 | [diff] [blame] | 1165 | */ |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 1166 | efi_status_t efi_add_protocol(const efi_handle_t handle, |
| 1167 | const efi_guid_t *protocol, |
Heinrich Schuchardt | 3f79a2b | 2017-10-26 19:25:53 +0200 | [diff] [blame] | 1168 | void *protocol_interface) |
| 1169 | { |
| 1170 | struct efi_object *efiobj; |
| 1171 | struct efi_handler *handler; |
| 1172 | efi_status_t ret; |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1173 | struct efi_register_notify_event *event; |
Heinrich Schuchardt | 3f79a2b | 2017-10-26 19:25:53 +0200 | [diff] [blame] | 1174 | |
| 1175 | efiobj = efi_search_obj(handle); |
| 1176 | if (!efiobj) |
| 1177 | return EFI_INVALID_PARAMETER; |
| 1178 | ret = efi_search_protocol(handle, protocol, NULL); |
| 1179 | if (ret != EFI_NOT_FOUND) |
| 1180 | return EFI_INVALID_PARAMETER; |
| 1181 | handler = calloc(1, sizeof(struct efi_handler)); |
| 1182 | if (!handler) |
| 1183 | return EFI_OUT_OF_RESOURCES; |
Heinrich Schuchardt | 6602893 | 2022-03-09 19:56:23 +0100 | [diff] [blame] | 1184 | memcpy((void *)&handler->guid, protocol, sizeof(efi_guid_t)); |
Heinrich Schuchardt | 69fb6b1 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 1185 | handler->protocol_interface = protocol_interface; |
Heinrich Schuchardt | fe1599d | 2018-01-11 08:15:57 +0100 | [diff] [blame] | 1186 | INIT_LIST_HEAD(&handler->open_infos); |
Heinrich Schuchardt | 69fb6b1 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 1187 | list_add_tail(&handler->link, &efiobj->protocols); |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1188 | |
| 1189 | /* Notify registered events */ |
| 1190 | list_for_each_entry(event, &efi_register_notify_events, link) { |
Heinrich Schuchardt | f09cea3 | 2019-05-21 18:19:01 +0200 | [diff] [blame] | 1191 | if (!guidcmp(protocol, &event->protocol)) { |
| 1192 | struct efi_protocol_notification *notif; |
| 1193 | |
| 1194 | notif = calloc(1, sizeof(*notif)); |
| 1195 | if (!notif) { |
| 1196 | list_del(&handler->link); |
| 1197 | free(handler); |
| 1198 | return EFI_OUT_OF_RESOURCES; |
| 1199 | } |
| 1200 | notif->handle = handle; |
| 1201 | list_add_tail(¬if->link, &event->handles); |
Heinrich Schuchardt | daa3f84 | 2019-06-07 07:43:24 +0200 | [diff] [blame] | 1202 | event->event->is_signaled = false; |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 1203 | efi_signal_event(event->event); |
Heinrich Schuchardt | f09cea3 | 2019-05-21 18:19:01 +0200 | [diff] [blame] | 1204 | } |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1205 | } |
| 1206 | |
Heinrich Schuchardt | d550414 | 2018-01-11 08:16:01 +0100 | [diff] [blame] | 1207 | if (!guidcmp(&efi_guid_device_path, protocol)) |
| 1208 | EFI_PRINT("installed device path '%pD'\n", protocol_interface); |
Heinrich Schuchardt | 69fb6b1 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 1209 | return EFI_SUCCESS; |
Heinrich Schuchardt | 3f79a2b | 2017-10-26 19:25:53 +0200 | [diff] [blame] | 1210 | } |
| 1211 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1212 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1213 | * efi_install_protocol_interface() - install protocol interface |
| 1214 | * @handle: handle on which the protocol shall be installed |
| 1215 | * @protocol: GUID of the protocol to be installed |
| 1216 | * @protocol_interface_type: type of the interface to be installed, |
| 1217 | * always EFI_NATIVE_INTERFACE |
| 1218 | * @protocol_interface: interface of the protocol implementation |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1219 | * |
Heinrich Schuchardt | 1760ef5 | 2017-11-06 21:17:44 +0100 | [diff] [blame] | 1220 | * This function implements the InstallProtocolInterface service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1221 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1222 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1223 | * details. |
| 1224 | * |
| 1225 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1226 | */ |
Heinrich Schuchardt | 1760ef5 | 2017-11-06 21:17:44 +0100 | [diff] [blame] | 1227 | static efi_status_t EFIAPI efi_install_protocol_interface( |
Heinrich Schuchardt | faea104 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 1228 | efi_handle_t *handle, const efi_guid_t *protocol, |
Heinrich Schuchardt | 1760ef5 | 2017-11-06 21:17:44 +0100 | [diff] [blame] | 1229 | int protocol_interface_type, void *protocol_interface) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1230 | { |
xypron.glpk@gmx.de | e0549f8 | 2017-07-11 22:06:16 +0200 | [diff] [blame] | 1231 | efi_status_t r; |
| 1232 | |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 1233 | EFI_ENTRY("%p, %pUs, %d, %p", handle, protocol, protocol_interface_type, |
Heinrich Schuchardt | 1760ef5 | 2017-11-06 21:17:44 +0100 | [diff] [blame] | 1234 | protocol_interface); |
| 1235 | |
xypron.glpk@gmx.de | e0549f8 | 2017-07-11 22:06:16 +0200 | [diff] [blame] | 1236 | if (!handle || !protocol || |
| 1237 | protocol_interface_type != EFI_NATIVE_INTERFACE) { |
| 1238 | r = EFI_INVALID_PARAMETER; |
| 1239 | goto out; |
| 1240 | } |
| 1241 | |
| 1242 | /* Create new handle if requested. */ |
| 1243 | if (!*handle) { |
Heinrich Schuchardt | 3cc6e3f | 2017-08-27 00:51:09 +0200 | [diff] [blame] | 1244 | r = efi_create_handle(handle); |
| 1245 | if (r != EFI_SUCCESS) |
| 1246 | goto out; |
Heinrich Schuchardt | 529886a | 2019-05-05 11:56:23 +0200 | [diff] [blame] | 1247 | EFI_PRINT("new handle %p\n", *handle); |
Heinrich Schuchardt | af1408e | 2017-10-26 19:25:43 +0200 | [diff] [blame] | 1248 | } else { |
Heinrich Schuchardt | 529886a | 2019-05-05 11:56:23 +0200 | [diff] [blame] | 1249 | EFI_PRINT("handle %p\n", *handle); |
xypron.glpk@gmx.de | e0549f8 | 2017-07-11 22:06:16 +0200 | [diff] [blame] | 1250 | } |
Heinrich Schuchardt | 1202530 | 2017-10-26 19:25:54 +0200 | [diff] [blame] | 1251 | /* Add new protocol */ |
| 1252 | r = efi_add_protocol(*handle, protocol, protocol_interface); |
xypron.glpk@gmx.de | e0549f8 | 2017-07-11 22:06:16 +0200 | [diff] [blame] | 1253 | out: |
Heinrich Schuchardt | 1760ef5 | 2017-11-06 21:17:44 +0100 | [diff] [blame] | 1254 | return EFI_EXIT(r); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1255 | } |
xypron.glpk@gmx.de | e0549f8 | 2017-07-11 22:06:16 +0200 | [diff] [blame] | 1256 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1257 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1258 | * efi_get_drivers() - get all drivers associated to a controller |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1259 | * @handle: handle of the controller |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 1260 | * @protocol: protocol GUID (optional) |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1261 | * @number_of_drivers: number of child controllers |
| 1262 | * @driver_handle_buffer: handles of the the drivers |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1263 | * |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1264 | * The allocated buffer has to be freed with free(). |
| 1265 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1266 | * Return: status code |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1267 | */ |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1268 | static efi_status_t efi_get_drivers(efi_handle_t handle, |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1269 | const efi_guid_t *protocol, |
| 1270 | efi_uintn_t *number_of_drivers, |
| 1271 | efi_handle_t **driver_handle_buffer) |
| 1272 | { |
| 1273 | struct efi_handler *handler; |
| 1274 | struct efi_open_protocol_info_item *item; |
| 1275 | efi_uintn_t count = 0, i; |
| 1276 | bool duplicate; |
| 1277 | |
| 1278 | /* Count all driver associations */ |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1279 | list_for_each_entry(handler, &handle->protocols, link) { |
Heinrich Schuchardt | 6602893 | 2022-03-09 19:56:23 +0100 | [diff] [blame] | 1280 | if (protocol && guidcmp(&handler->guid, protocol)) |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1281 | continue; |
| 1282 | list_for_each_entry(item, &handler->open_infos, link) { |
| 1283 | if (item->info.attributes & |
| 1284 | EFI_OPEN_PROTOCOL_BY_DRIVER) |
| 1285 | ++count; |
| 1286 | } |
| 1287 | } |
Heinrich Schuchardt | 66ca24a | 2019-06-02 01:43:33 +0200 | [diff] [blame] | 1288 | *number_of_drivers = 0; |
| 1289 | if (!count) { |
| 1290 | *driver_handle_buffer = NULL; |
| 1291 | return EFI_SUCCESS; |
| 1292 | } |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1293 | /* |
| 1294 | * Create buffer. In case of duplicate driver assignments the buffer |
| 1295 | * will be too large. But that does not harm. |
| 1296 | */ |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1297 | *driver_handle_buffer = calloc(count, sizeof(efi_handle_t)); |
| 1298 | if (!*driver_handle_buffer) |
| 1299 | return EFI_OUT_OF_RESOURCES; |
| 1300 | /* Collect unique driver handles */ |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1301 | list_for_each_entry(handler, &handle->protocols, link) { |
Heinrich Schuchardt | 6602893 | 2022-03-09 19:56:23 +0100 | [diff] [blame] | 1302 | if (protocol && guidcmp(&handler->guid, protocol)) |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1303 | continue; |
| 1304 | list_for_each_entry(item, &handler->open_infos, link) { |
| 1305 | if (item->info.attributes & |
| 1306 | EFI_OPEN_PROTOCOL_BY_DRIVER) { |
| 1307 | /* Check this is a new driver */ |
| 1308 | duplicate = false; |
| 1309 | for (i = 0; i < *number_of_drivers; ++i) { |
| 1310 | if ((*driver_handle_buffer)[i] == |
| 1311 | item->info.agent_handle) |
| 1312 | duplicate = true; |
| 1313 | } |
| 1314 | /* Copy handle to buffer */ |
| 1315 | if (!duplicate) { |
| 1316 | i = (*number_of_drivers)++; |
| 1317 | (*driver_handle_buffer)[i] = |
| 1318 | item->info.agent_handle; |
| 1319 | } |
| 1320 | } |
| 1321 | } |
| 1322 | } |
| 1323 | return EFI_SUCCESS; |
| 1324 | } |
| 1325 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1326 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1327 | * efi_disconnect_all_drivers() - disconnect all drivers from a controller |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1328 | * @handle: handle of the controller |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 1329 | * @protocol: protocol GUID (optional) |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1330 | * @child_handle: handle of the child to destroy |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1331 | * |
| 1332 | * This function implements the DisconnectController service. |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1333 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1334 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1335 | * details. |
| 1336 | * |
| 1337 | * Return: status code |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1338 | */ |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1339 | static efi_status_t efi_disconnect_all_drivers |
| 1340 | (efi_handle_t handle, |
| 1341 | const efi_guid_t *protocol, |
| 1342 | efi_handle_t child_handle) |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1343 | { |
Ilias Apalodimas | 6805b4d | 2023-11-28 21:10:31 +0200 | [diff] [blame] | 1344 | efi_uintn_t number_of_drivers; |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1345 | efi_handle_t *driver_handle_buffer; |
| 1346 | efi_status_t r, ret; |
| 1347 | |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1348 | ret = efi_get_drivers(handle, protocol, &number_of_drivers, |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1349 | &driver_handle_buffer); |
| 1350 | if (ret != EFI_SUCCESS) |
| 1351 | return ret; |
Heinrich Schuchardt | 66ca24a | 2019-06-02 01:43:33 +0200 | [diff] [blame] | 1352 | if (!number_of_drivers) |
| 1353 | return EFI_SUCCESS; |
Ilias Apalodimas | 239d59a | 2023-06-20 09:19:28 +0300 | [diff] [blame] | 1354 | |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1355 | while (number_of_drivers) { |
Ilias Apalodimas | 6805b4d | 2023-11-28 21:10:31 +0200 | [diff] [blame] | 1356 | r = EFI_CALL(efi_disconnect_controller( |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1357 | handle, |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1358 | driver_handle_buffer[--number_of_drivers], |
| 1359 | child_handle)); |
Ilias Apalodimas | 239d59a | 2023-06-20 09:19:28 +0300 | [diff] [blame] | 1360 | if (r != EFI_SUCCESS) |
Ilias Apalodimas | 6805b4d | 2023-11-28 21:10:31 +0200 | [diff] [blame] | 1361 | ret = r; |
Ilias Apalodimas | 239d59a | 2023-06-20 09:19:28 +0300 | [diff] [blame] | 1362 | } |
| 1363 | |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1364 | free(driver_handle_buffer); |
| 1365 | return ret; |
| 1366 | } |
| 1367 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1368 | /** |
Heinrich Schuchardt | 9b47f13 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 1369 | * efi_uninstall_protocol() - uninstall protocol interface |
| 1370 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1371 | * @handle: handle from which the protocol shall be removed |
| 1372 | * @protocol: GUID of the protocol to be removed |
| 1373 | * @protocol_interface: interface to be removed |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 1374 | * @preserve: preserve or delete the handle and remove it from any |
| 1375 | * list it participates if no protocols remain |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1376 | * |
Heinrich Schuchardt | 9b47f13 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 1377 | * This function DOES NOT delete a handle without installed protocol. |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1378 | * |
| 1379 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1380 | */ |
Heinrich Schuchardt | 9b47f13 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 1381 | static efi_status_t efi_uninstall_protocol |
| 1382 | (efi_handle_t handle, const efi_guid_t *protocol, |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 1383 | void *protocol_interface, bool preserve) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1384 | { |
Heinrich Schuchardt | 5810511 | 2017-10-26 19:25:56 +0200 | [diff] [blame] | 1385 | struct efi_handler *handler; |
Heinrich Schuchardt | ad97373 | 2018-01-11 08:16:05 +0100 | [diff] [blame] | 1386 | struct efi_open_protocol_info_item *item; |
| 1387 | struct efi_open_protocol_info_item *pos; |
Heinrich Schuchardt | 5810511 | 2017-10-26 19:25:56 +0200 | [diff] [blame] | 1388 | efi_status_t r; |
xypron.glpk@gmx.de | 4b6ed0d | 2017-07-11 22:06:17 +0200 | [diff] [blame] | 1389 | |
Heinrich Schuchardt | 5810511 | 2017-10-26 19:25:56 +0200 | [diff] [blame] | 1390 | /* Find the protocol on the handle */ |
| 1391 | r = efi_search_protocol(handle, protocol, &handler); |
| 1392 | if (r != EFI_SUCCESS) |
| 1393 | goto out; |
Ilias Apalodimas | 748cb55 | 2023-06-20 09:19:30 +0300 | [diff] [blame] | 1394 | if (handler->protocol_interface != protocol_interface) |
| 1395 | return EFI_NOT_FOUND; |
Heinrich Schuchardt | ad97373 | 2018-01-11 08:16:05 +0100 | [diff] [blame] | 1396 | /* Disconnect controllers */ |
Heinrich Schuchardt | 6287021 | 2023-06-18 09:00:45 +0200 | [diff] [blame] | 1397 | r = efi_disconnect_all_drivers(handle, protocol, NULL); |
Ilias Apalodimas | 747d16d | 2023-06-20 09:19:29 +0300 | [diff] [blame] | 1398 | if (r != EFI_SUCCESS) { |
| 1399 | r = EFI_ACCESS_DENIED; |
Ilias Apalodimas | 6805b4d | 2023-11-28 21:10:31 +0200 | [diff] [blame] | 1400 | /* |
| 1401 | * This will reconnect all controllers of the handle, even ones |
| 1402 | * that were not connected before. This can be done better |
| 1403 | * but we are following the EDKII implementation on this for |
| 1404 | * now |
| 1405 | */ |
| 1406 | EFI_CALL(efi_connect_controller(handle, NULL, NULL, true)); |
Ilias Apalodimas | 747d16d | 2023-06-20 09:19:29 +0300 | [diff] [blame] | 1407 | goto out; |
| 1408 | } |
Heinrich Schuchardt | ad97373 | 2018-01-11 08:16:05 +0100 | [diff] [blame] | 1409 | /* Close protocol */ |
| 1410 | list_for_each_entry_safe(item, pos, &handler->open_infos, link) { |
| 1411 | if (item->info.attributes == |
| 1412 | EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL || |
| 1413 | item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL || |
| 1414 | item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL) |
Ilias Apalodimas | 747d16d | 2023-06-20 09:19:29 +0300 | [diff] [blame] | 1415 | efi_delete_open_info(item); |
Heinrich Schuchardt | ad97373 | 2018-01-11 08:16:05 +0100 | [diff] [blame] | 1416 | } |
Ilias Apalodimas | 747d16d | 2023-06-20 09:19:29 +0300 | [diff] [blame] | 1417 | /* if agents didn't close the protocols properly */ |
Heinrich Schuchardt | ad97373 | 2018-01-11 08:16:05 +0100 | [diff] [blame] | 1418 | if (!list_empty(&handler->open_infos)) { |
| 1419 | r = EFI_ACCESS_DENIED; |
Ilias Apalodimas | 747d16d | 2023-06-20 09:19:29 +0300 | [diff] [blame] | 1420 | EFI_CALL(efi_connect_controller(handle, NULL, NULL, true)); |
Heinrich Schuchardt | ad97373 | 2018-01-11 08:16:05 +0100 | [diff] [blame] | 1421 | goto out; |
| 1422 | } |
| 1423 | r = efi_remove_protocol(handle, protocol, protocol_interface); |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 1424 | if (r != EFI_SUCCESS) |
| 1425 | return r; |
| 1426 | /* |
| 1427 | * We don't care about the return value here since the |
| 1428 | * handle might have more protocols installed |
| 1429 | */ |
| 1430 | if (!preserve) |
| 1431 | efi_purge_handle(handle); |
xypron.glpk@gmx.de | 4b6ed0d | 2017-07-11 22:06:17 +0200 | [diff] [blame] | 1432 | out: |
Heinrich Schuchardt | 9b47f13 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 1433 | return r; |
| 1434 | } |
| 1435 | |
| 1436 | /** |
| 1437 | * efi_uninstall_protocol_interface() - uninstall protocol interface |
| 1438 | * @handle: handle from which the protocol shall be removed |
| 1439 | * @protocol: GUID of the protocol to be removed |
| 1440 | * @protocol_interface: interface to be removed |
| 1441 | * |
| 1442 | * This function implements the UninstallProtocolInterface service. |
| 1443 | * |
| 1444 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1445 | * details. |
| 1446 | * |
| 1447 | * Return: status code |
| 1448 | */ |
| 1449 | static efi_status_t EFIAPI efi_uninstall_protocol_interface |
| 1450 | (efi_handle_t handle, const efi_guid_t *protocol, |
| 1451 | void *protocol_interface) |
| 1452 | { |
| 1453 | efi_status_t ret; |
| 1454 | |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 1455 | EFI_ENTRY("%p, %pUs, %p", handle, protocol, protocol_interface); |
Heinrich Schuchardt | 9b47f13 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 1456 | |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 1457 | ret = efi_uninstall_protocol(handle, protocol, protocol_interface, false); |
Heinrich Schuchardt | 9b47f13 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 1458 | if (ret != EFI_SUCCESS) |
| 1459 | goto out; |
| 1460 | |
Heinrich Schuchardt | 9b47f13 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 1461 | out: |
| 1462 | return EFI_EXIT(ret); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1463 | } |
| 1464 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1465 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1466 | * efi_register_protocol_notify() - register an event for notification when a |
| 1467 | * protocol is installed. |
| 1468 | * @protocol: GUID of the protocol whose installation shall be notified |
| 1469 | * @event: event to be signaled upon installation of the protocol |
| 1470 | * @registration: key for retrieving the registration information |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1471 | * |
| 1472 | * This function implements the RegisterProtocolNotify service. |
| 1473 | * See the Unified Extensible Firmware Interface (UEFI) specification |
| 1474 | * for details. |
| 1475 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1476 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1477 | */ |
Jose Marinho | 64a8aae | 2021-03-02 17:26:38 +0000 | [diff] [blame] | 1478 | efi_status_t EFIAPI efi_register_protocol_notify(const efi_guid_t *protocol, |
| 1479 | struct efi_event *event, |
| 1480 | void **registration) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1481 | { |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1482 | struct efi_register_notify_event *item; |
| 1483 | efi_status_t ret = EFI_SUCCESS; |
| 1484 | |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 1485 | EFI_ENTRY("%pUs, %p, %p", protocol, event, registration); |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1486 | |
| 1487 | if (!protocol || !event || !registration) { |
| 1488 | ret = EFI_INVALID_PARAMETER; |
| 1489 | goto out; |
| 1490 | } |
| 1491 | |
| 1492 | item = calloc(1, sizeof(struct efi_register_notify_event)); |
| 1493 | if (!item) { |
| 1494 | ret = EFI_OUT_OF_RESOURCES; |
| 1495 | goto out; |
| 1496 | } |
| 1497 | |
| 1498 | item->event = event; |
Sughosh Ganu | 61e42d9 | 2019-12-29 00:01:04 +0530 | [diff] [blame] | 1499 | guidcpy(&item->protocol, protocol); |
Heinrich Schuchardt | f09cea3 | 2019-05-21 18:19:01 +0200 | [diff] [blame] | 1500 | INIT_LIST_HEAD(&item->handles); |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1501 | |
| 1502 | list_add_tail(&item->link, &efi_register_notify_events); |
| 1503 | |
| 1504 | *registration = item; |
| 1505 | out: |
| 1506 | return EFI_EXIT(ret); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1507 | } |
| 1508 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1509 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1510 | * efi_search() - determine if an EFI handle implements a protocol |
Heinrich Schuchardt | 6631ca5 | 2019-07-14 11:05:34 +0200 | [diff] [blame] | 1511 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1512 | * @search_type: selection criterion |
| 1513 | * @protocol: GUID of the protocol |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1514 | * @handle: handle |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1515 | * |
| 1516 | * See the documentation of the LocateHandle service in the UEFI specification. |
| 1517 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1518 | * Return: 0 if the handle implements the protocol |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1519 | */ |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1520 | static int efi_search(enum efi_locate_search_type search_type, |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1521 | const efi_guid_t *protocol, efi_handle_t handle) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1522 | { |
Heinrich Schuchardt | 42cf124 | 2017-10-26 19:25:55 +0200 | [diff] [blame] | 1523 | efi_status_t ret; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1524 | |
| 1525 | switch (search_type) { |
Heinrich Schuchardt | 9f0770f | 2017-11-06 21:17:42 +0100 | [diff] [blame] | 1526 | case ALL_HANDLES: |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1527 | return 0; |
Heinrich Schuchardt | 9f0770f | 2017-11-06 21:17:42 +0100 | [diff] [blame] | 1528 | case BY_PROTOCOL: |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1529 | ret = efi_search_protocol(handle, protocol, NULL); |
Heinrich Schuchardt | 42cf124 | 2017-10-26 19:25:55 +0200 | [diff] [blame] | 1530 | return (ret != EFI_SUCCESS); |
| 1531 | default: |
| 1532 | /* Invalid search type */ |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1533 | return -1; |
| 1534 | } |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1535 | } |
| 1536 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1537 | /** |
Heinrich Schuchardt | b8abd74 | 2019-05-29 07:46:33 +0200 | [diff] [blame] | 1538 | * efi_check_register_notify_event() - check if registration key is valid |
| 1539 | * |
| 1540 | * Check that a pointer is a valid registration key as returned by |
| 1541 | * RegisterProtocolNotify(). |
| 1542 | * |
| 1543 | * @key: registration key |
| 1544 | * Return: valid registration key or NULL |
| 1545 | */ |
| 1546 | static struct efi_register_notify_event *efi_check_register_notify_event |
| 1547 | (void *key) |
| 1548 | { |
| 1549 | struct efi_register_notify_event *event; |
| 1550 | |
| 1551 | list_for_each_entry(event, &efi_register_notify_events, link) { |
| 1552 | if (event == (struct efi_register_notify_event *)key) |
| 1553 | return event; |
| 1554 | } |
| 1555 | return NULL; |
| 1556 | } |
| 1557 | |
| 1558 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1559 | * efi_locate_handle() - locate handles implementing a protocol |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1560 | * |
| 1561 | * @search_type: selection criterion |
| 1562 | * @protocol: GUID of the protocol |
| 1563 | * @search_key: registration key |
| 1564 | * @buffer_size: size of the buffer to receive the handles in bytes |
| 1565 | * @buffer: buffer to receive the relevant handles |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1566 | * |
| 1567 | * This function is meant for U-Boot internal calls. For the API implementation |
| 1568 | * of the LocateHandle service see efi_locate_handle_ext. |
| 1569 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1570 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1571 | */ |
xypron.glpk@gmx.de | ebf199b | 2017-08-09 20:55:00 +0200 | [diff] [blame] | 1572 | static efi_status_t efi_locate_handle( |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1573 | enum efi_locate_search_type search_type, |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 1574 | const efi_guid_t *protocol, void *search_key, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 1575 | efi_uintn_t *buffer_size, efi_handle_t *buffer) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1576 | { |
Heinrich Schuchardt | caf864e | 2017-11-06 21:17:49 +0100 | [diff] [blame] | 1577 | struct efi_object *efiobj; |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 1578 | efi_uintn_t size = 0; |
Heinrich Schuchardt | b8abd74 | 2019-05-29 07:46:33 +0200 | [diff] [blame] | 1579 | struct efi_register_notify_event *event; |
Heinrich Schuchardt | f09cea3 | 2019-05-21 18:19:01 +0200 | [diff] [blame] | 1580 | struct efi_protocol_notification *handle = NULL; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1581 | |
Heinrich Schuchardt | caf864e | 2017-11-06 21:17:49 +0100 | [diff] [blame] | 1582 | /* Check parameters */ |
| 1583 | switch (search_type) { |
| 1584 | case ALL_HANDLES: |
| 1585 | break; |
| 1586 | case BY_REGISTER_NOTIFY: |
| 1587 | if (!search_key) |
| 1588 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1589 | /* Check that the registration key is valid */ |
Heinrich Schuchardt | b8abd74 | 2019-05-29 07:46:33 +0200 | [diff] [blame] | 1590 | event = efi_check_register_notify_event(search_key); |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1591 | if (!event) |
| 1592 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | ab15d41 | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1593 | break; |
Heinrich Schuchardt | caf864e | 2017-11-06 21:17:49 +0100 | [diff] [blame] | 1594 | case BY_PROTOCOL: |
| 1595 | if (!protocol) |
| 1596 | return EFI_INVALID_PARAMETER; |
| 1597 | break; |
| 1598 | default: |
| 1599 | return EFI_INVALID_PARAMETER; |
| 1600 | } |
| 1601 | |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1602 | /* Count how much space we need */ |
Heinrich Schuchardt | f09cea3 | 2019-05-21 18:19:01 +0200 | [diff] [blame] | 1603 | if (search_type == BY_REGISTER_NOTIFY) { |
| 1604 | if (list_empty(&event->handles)) |
| 1605 | return EFI_NOT_FOUND; |
| 1606 | handle = list_first_entry(&event->handles, |
| 1607 | struct efi_protocol_notification, |
| 1608 | link); |
| 1609 | efiobj = handle->handle; |
| 1610 | size += sizeof(void *); |
| 1611 | } else { |
| 1612 | list_for_each_entry(efiobj, &efi_obj_list, link) { |
| 1613 | if (!efi_search(search_type, protocol, efiobj)) |
| 1614 | size += sizeof(void *); |
| 1615 | } |
| 1616 | if (size == 0) |
| 1617 | return EFI_NOT_FOUND; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1618 | } |
| 1619 | |
Heinrich Schuchardt | 8dfb5e6 | 2019-05-04 17:37:32 +0200 | [diff] [blame] | 1620 | if (!buffer_size) |
| 1621 | return EFI_INVALID_PARAMETER; |
| 1622 | |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1623 | if (*buffer_size < size) { |
| 1624 | *buffer_size = size; |
xypron.glpk@gmx.de | 2632958 | 2017-07-11 22:06:21 +0200 | [diff] [blame] | 1625 | return EFI_BUFFER_TOO_SMALL; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1626 | } |
| 1627 | |
Rob Clark | 796a78c | 2017-08-06 14:10:07 -0400 | [diff] [blame] | 1628 | *buffer_size = size; |
Heinrich Schuchardt | 8dfb5e6 | 2019-05-04 17:37:32 +0200 | [diff] [blame] | 1629 | |
Heinrich Schuchardt | 0a84319 | 2019-05-10 19:03:49 +0200 | [diff] [blame] | 1630 | /* The buffer size is sufficient but there is no buffer */ |
Heinrich Schuchardt | 8dfb5e6 | 2019-05-04 17:37:32 +0200 | [diff] [blame] | 1631 | if (!buffer) |
| 1632 | return EFI_INVALID_PARAMETER; |
Rob Clark | 796a78c | 2017-08-06 14:10:07 -0400 | [diff] [blame] | 1633 | |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1634 | /* Then fill the array */ |
Heinrich Schuchardt | f09cea3 | 2019-05-21 18:19:01 +0200 | [diff] [blame] | 1635 | if (search_type == BY_REGISTER_NOTIFY) { |
| 1636 | *buffer = efiobj; |
| 1637 | list_del(&handle->link); |
| 1638 | } else { |
| 1639 | list_for_each_entry(efiobj, &efi_obj_list, link) { |
| 1640 | if (!efi_search(search_type, protocol, efiobj)) |
| 1641 | *buffer++ = efiobj; |
| 1642 | } |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1643 | } |
| 1644 | |
xypron.glpk@gmx.de | 2632958 | 2017-07-11 22:06:21 +0200 | [diff] [blame] | 1645 | return EFI_SUCCESS; |
| 1646 | } |
| 1647 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1648 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1649 | * efi_locate_handle_ext() - locate handles implementing a protocol. |
| 1650 | * @search_type: selection criterion |
| 1651 | * @protocol: GUID of the protocol |
| 1652 | * @search_key: registration key |
| 1653 | * @buffer_size: size of the buffer to receive the handles in bytes |
| 1654 | * @buffer: buffer to receive the relevant handles |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1655 | * |
| 1656 | * This function implements the LocateHandle service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1657 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1658 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1659 | * details. |
| 1660 | * |
| 1661 | * Return: 0 if the handle implements the protocol |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1662 | */ |
xypron.glpk@gmx.de | 2632958 | 2017-07-11 22:06:21 +0200 | [diff] [blame] | 1663 | static efi_status_t EFIAPI efi_locate_handle_ext( |
| 1664 | enum efi_locate_search_type search_type, |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 1665 | const efi_guid_t *protocol, void *search_key, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 1666 | efi_uintn_t *buffer_size, efi_handle_t *buffer) |
xypron.glpk@gmx.de | 2632958 | 2017-07-11 22:06:21 +0200 | [diff] [blame] | 1667 | { |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 1668 | EFI_ENTRY("%d, %pUs, %p, %p, %p", search_type, protocol, search_key, |
xypron.glpk@gmx.de | 2632958 | 2017-07-11 22:06:21 +0200 | [diff] [blame] | 1669 | buffer_size, buffer); |
| 1670 | |
| 1671 | return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key, |
| 1672 | buffer_size, buffer)); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1673 | } |
| 1674 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1675 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1676 | * efi_remove_configuration_table() - collapses configuration table entries, |
| 1677 | * removing index i |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1678 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1679 | * @i: index of the table entry to be removed |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1680 | */ |
Alexander Graf | d98cdf6 | 2017-07-26 13:41:04 +0200 | [diff] [blame] | 1681 | static void efi_remove_configuration_table(int i) |
| 1682 | { |
Heinrich Schuchardt | 4182a12 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 1683 | struct efi_configuration_table *this = &systab.tables[i]; |
| 1684 | struct efi_configuration_table *next = &systab.tables[i + 1]; |
| 1685 | struct efi_configuration_table *end = &systab.tables[systab.nr_tables]; |
Alexander Graf | d98cdf6 | 2017-07-26 13:41:04 +0200 | [diff] [blame] | 1686 | |
| 1687 | memmove(this, next, (ulong)end - (ulong)next); |
| 1688 | systab.nr_tables--; |
| 1689 | } |
| 1690 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1691 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1692 | * efi_install_configuration_table() - adds, updates, or removes a |
| 1693 | * configuration table |
| 1694 | * @guid: GUID of the installed table |
| 1695 | * @table: table to be installed |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1696 | * |
| 1697 | * This function is used for internal calls. For the API implementation of the |
| 1698 | * InstallConfigurationTable service see efi_install_configuration_table_ext. |
| 1699 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1700 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1701 | */ |
Heinrich Schuchardt | ab9efa9 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 1702 | efi_status_t efi_install_configuration_table(const efi_guid_t *guid, |
| 1703 | void *table) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1704 | { |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 1705 | struct efi_event *evt; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1706 | int i; |
| 1707 | |
Heinrich Schuchardt | eb68b4e | 2018-02-18 00:08:00 +0100 | [diff] [blame] | 1708 | if (!guid) |
| 1709 | return EFI_INVALID_PARAMETER; |
| 1710 | |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 1711 | /* Check for GUID override */ |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1712 | for (i = 0; i < systab.nr_tables; i++) { |
Heinrich Schuchardt | 4182a12 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 1713 | if (!guidcmp(guid, &systab.tables[i].guid)) { |
Alexander Graf | d98cdf6 | 2017-07-26 13:41:04 +0200 | [diff] [blame] | 1714 | if (table) |
Heinrich Schuchardt | 4182a12 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 1715 | systab.tables[i].table = table; |
Alexander Graf | d98cdf6 | 2017-07-26 13:41:04 +0200 | [diff] [blame] | 1716 | else |
| 1717 | efi_remove_configuration_table(i); |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 1718 | goto out; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1719 | } |
| 1720 | } |
| 1721 | |
Alexander Graf | d98cdf6 | 2017-07-26 13:41:04 +0200 | [diff] [blame] | 1722 | if (!table) |
| 1723 | return EFI_NOT_FOUND; |
| 1724 | |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1725 | /* No override, check for overflow */ |
Heinrich Schuchardt | 4182a12 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 1726 | if (i >= EFI_MAX_CONFIGURATION_TABLES) |
Alexander Graf | 488bf12 | 2016-08-19 01:23:24 +0200 | [diff] [blame] | 1727 | return EFI_OUT_OF_RESOURCES; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1728 | |
| 1729 | /* Add a new entry */ |
Sughosh Ganu | 61e42d9 | 2019-12-29 00:01:04 +0530 | [diff] [blame] | 1730 | guidcpy(&systab.tables[i].guid, guid); |
Heinrich Schuchardt | 4182a12 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 1731 | systab.tables[i].table = table; |
Alexander Graf | aba5e91 | 2016-08-19 01:23:30 +0200 | [diff] [blame] | 1732 | systab.nr_tables = i + 1; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1733 | |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 1734 | out: |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 1735 | /* systab.nr_tables may have changed. So we need to update the CRC32 */ |
Heinrich Schuchardt | 55d8ee3 | 2018-07-07 15:36:05 +0200 | [diff] [blame] | 1736 | efi_update_table_header_crc32(&systab.hdr); |
| 1737 | |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 1738 | /* Notify that the configuration table was changed */ |
| 1739 | list_for_each_entry(evt, &efi_events, link) { |
| 1740 | if (evt->group && !guidcmp(evt->group, guid)) { |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 1741 | efi_signal_event(evt); |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 1742 | break; |
| 1743 | } |
| 1744 | } |
| 1745 | |
Alexander Graf | 488bf12 | 2016-08-19 01:23:24 +0200 | [diff] [blame] | 1746 | return EFI_SUCCESS; |
| 1747 | } |
| 1748 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1749 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1750 | * efi_install_configuration_table_ex() - Adds, updates, or removes a |
| 1751 | * configuration table. |
| 1752 | * @guid: GUID of the installed table |
| 1753 | * @table: table to be installed |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1754 | * |
| 1755 | * This function implements the InstallConfigurationTable service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1756 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1757 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1758 | * details. |
| 1759 | * |
| 1760 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1761 | */ |
Masahisa Kojima | f86352e | 2021-10-22 20:24:24 +0900 | [diff] [blame] | 1762 | static efi_status_t |
| 1763 | EFIAPI efi_install_configuration_table_ext(const efi_guid_t *guid, |
| 1764 | void *table) |
Alexander Graf | 488bf12 | 2016-08-19 01:23:24 +0200 | [diff] [blame] | 1765 | { |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 1766 | EFI_ENTRY("%pUs, %p", guid, table); |
Alexander Graf | 488bf12 | 2016-08-19 01:23:24 +0200 | [diff] [blame] | 1767 | return EFI_EXIT(efi_install_configuration_table(guid, table)); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1768 | } |
| 1769 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1770 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1771 | * efi_setup_loaded_image() - initialize a loaded image |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1772 | * |
| 1773 | * Initialize a loaded_image_info and loaded_image_info object with correct |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 1774 | * protocols, boot-device, etc. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1775 | * |
Heinrich Schuchardt | 6631ca5 | 2019-07-14 11:05:34 +0200 | [diff] [blame] | 1776 | * In case of an error \*handle_ptr and \*info_ptr are set to NULL and an error |
Heinrich Schuchardt | 16112f9 | 2019-02-06 19:41:29 +0100 | [diff] [blame] | 1777 | * code is returned. |
| 1778 | * |
| 1779 | * @device_path: device path of the loaded image |
| 1780 | * @file_path: file path of the loaded image |
| 1781 | * @handle_ptr: handle of the loaded image |
| 1782 | * @info_ptr: loaded image protocol |
| 1783 | * Return: status code |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 1784 | */ |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 1785 | efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path, |
| 1786 | struct efi_device_path *file_path, |
| 1787 | struct efi_loaded_image_obj **handle_ptr, |
| 1788 | struct efi_loaded_image **info_ptr) |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 1789 | { |
Heinrich Schuchardt | 48b6623 | 2017-10-26 19:25:58 +0200 | [diff] [blame] | 1790 | efi_status_t ret; |
Heinrich Schuchardt | 16112f9 | 2019-02-06 19:41:29 +0100 | [diff] [blame] | 1791 | struct efi_loaded_image *info = NULL; |
| 1792 | struct efi_loaded_image_obj *obj = NULL; |
AKASHI Takahiro | bc8fc32 | 2019-03-27 13:40:32 +0900 | [diff] [blame] | 1793 | struct efi_device_path *dp; |
Heinrich Schuchardt | 16112f9 | 2019-02-06 19:41:29 +0100 | [diff] [blame] | 1794 | |
| 1795 | /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */ |
| 1796 | *handle_ptr = NULL; |
| 1797 | *info_ptr = NULL; |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 1798 | |
| 1799 | info = calloc(1, sizeof(*info)); |
| 1800 | if (!info) |
| 1801 | return EFI_OUT_OF_RESOURCES; |
| 1802 | obj = calloc(1, sizeof(*obj)); |
| 1803 | if (!obj) { |
| 1804 | free(info); |
| 1805 | return EFI_OUT_OF_RESOURCES; |
| 1806 | } |
Heinrich Schuchardt | cd73aba | 2019-05-01 14:20:18 +0200 | [diff] [blame] | 1807 | obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE; |
Heinrich Schuchardt | 48b6623 | 2017-10-26 19:25:58 +0200 | [diff] [blame] | 1808 | |
Heinrich Schuchardt | 44549d6 | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 1809 | /* Add internal object to object list */ |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 1810 | efi_add_handle(&obj->header); |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 1811 | |
Heinrich Schuchardt | 9514731 | 2018-07-05 08:17:58 +0200 | [diff] [blame] | 1812 | info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION; |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 1813 | info->file_path = file_path; |
Heinrich Schuchardt | 7e1effc | 2018-08-26 15:31:52 +0200 | [diff] [blame] | 1814 | info->system_table = &systab; |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 1815 | |
Heinrich Schuchardt | 7df5af6 | 2018-01-26 06:50:54 +0100 | [diff] [blame] | 1816 | if (device_path) { |
Heinrich Schuchardt | e46ef1d | 2022-03-19 06:35:43 +0100 | [diff] [blame] | 1817 | info->device_handle = efi_dp_find_obj(device_path, NULL, NULL); |
AKASHI Takahiro | bc8fc32 | 2019-03-27 13:40:32 +0900 | [diff] [blame] | 1818 | |
Ilias Apalodimas | f19171c | 2024-01-08 10:55:33 +0200 | [diff] [blame] | 1819 | dp = efi_dp_concat(device_path, file_path, false); |
AKASHI Takahiro | bc8fc32 | 2019-03-27 13:40:32 +0900 | [diff] [blame] | 1820 | if (!dp) { |
| 1821 | ret = EFI_OUT_OF_RESOURCES; |
Heinrich Schuchardt | 7df5af6 | 2018-01-26 06:50:54 +0100 | [diff] [blame] | 1822 | goto failure; |
AKASHI Takahiro | bc8fc32 | 2019-03-27 13:40:32 +0900 | [diff] [blame] | 1823 | } |
| 1824 | } else { |
| 1825 | dp = NULL; |
Heinrich Schuchardt | 7df5af6 | 2018-01-26 06:50:54 +0100 | [diff] [blame] | 1826 | } |
AKASHI Takahiro | bc8fc32 | 2019-03-27 13:40:32 +0900 | [diff] [blame] | 1827 | ret = efi_add_protocol(&obj->header, |
| 1828 | &efi_guid_loaded_image_device_path, dp); |
| 1829 | if (ret != EFI_SUCCESS) |
| 1830 | goto failure; |
Heinrich Schuchardt | 48b6623 | 2017-10-26 19:25:58 +0200 | [diff] [blame] | 1831 | |
| 1832 | /* |
| 1833 | * When asking for the loaded_image interface, just |
| 1834 | * return handle which points to loaded_image_info |
| 1835 | */ |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 1836 | ret = efi_add_protocol(&obj->header, |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 1837 | &efi_guid_loaded_image, info); |
Heinrich Schuchardt | 48b6623 | 2017-10-26 19:25:58 +0200 | [diff] [blame] | 1838 | if (ret != EFI_SUCCESS) |
| 1839 | goto failure; |
| 1840 | |
Heinrich Schuchardt | d5974af | 2019-03-19 18:58:58 +0100 | [diff] [blame] | 1841 | *info_ptr = info; |
| 1842 | *handle_ptr = obj; |
Heinrich Schuchardt | 16112f9 | 2019-02-06 19:41:29 +0100 | [diff] [blame] | 1843 | |
Heinrich Schuchardt | 56d9288 | 2017-12-04 18:03:01 +0100 | [diff] [blame] | 1844 | return ret; |
Heinrich Schuchardt | 48b6623 | 2017-10-26 19:25:58 +0200 | [diff] [blame] | 1845 | failure: |
| 1846 | printf("ERROR: Failure to install protocols for loaded image\n"); |
Heinrich Schuchardt | 16112f9 | 2019-02-06 19:41:29 +0100 | [diff] [blame] | 1847 | efi_delete_handle(&obj->header); |
| 1848 | free(info); |
Heinrich Schuchardt | 56d9288 | 2017-12-04 18:03:01 +0100 | [diff] [blame] | 1849 | return ret; |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 1850 | } |
| 1851 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1852 | /** |
Heinrich Schuchardt | 0e9d2d7 | 2020-12-04 03:02:03 +0100 | [diff] [blame] | 1853 | * efi_locate_device_path() - Get the device path and handle of an device |
| 1854 | * implementing a protocol |
| 1855 | * @protocol: GUID of the protocol |
| 1856 | * @device_path: device path |
| 1857 | * @device: handle of the device |
| 1858 | * |
| 1859 | * This function implements the LocateDevicePath service. |
| 1860 | * |
| 1861 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1862 | * details. |
| 1863 | * |
| 1864 | * Return: status code |
| 1865 | */ |
AKASHI Takahiro | d8465ff | 2022-04-28 17:09:38 +0900 | [diff] [blame] | 1866 | efi_status_t EFIAPI efi_locate_device_path(const efi_guid_t *protocol, |
| 1867 | struct efi_device_path **device_path, |
| 1868 | efi_handle_t *device) |
Heinrich Schuchardt | 0e9d2d7 | 2020-12-04 03:02:03 +0100 | [diff] [blame] | 1869 | { |
| 1870 | struct efi_device_path *dp; |
| 1871 | size_t i; |
| 1872 | struct efi_handler *handler; |
| 1873 | efi_handle_t *handles; |
| 1874 | size_t len, len_dp; |
| 1875 | size_t len_best = 0; |
| 1876 | efi_uintn_t no_handles; |
| 1877 | u8 *remainder; |
| 1878 | efi_status_t ret; |
| 1879 | |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 1880 | EFI_ENTRY("%pUs, %p, %p", protocol, device_path, device); |
Heinrich Schuchardt | 0e9d2d7 | 2020-12-04 03:02:03 +0100 | [diff] [blame] | 1881 | |
| 1882 | if (!protocol || !device_path || !*device_path) { |
| 1883 | ret = EFI_INVALID_PARAMETER; |
| 1884 | goto out; |
| 1885 | } |
| 1886 | |
| 1887 | /* Find end of device path */ |
| 1888 | len = efi_dp_instance_size(*device_path); |
| 1889 | |
| 1890 | /* Get all handles implementing the protocol */ |
| 1891 | ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL, |
| 1892 | &no_handles, &handles)); |
| 1893 | if (ret != EFI_SUCCESS) |
| 1894 | goto out; |
| 1895 | |
| 1896 | for (i = 0; i < no_handles; ++i) { |
| 1897 | /* Find the device path protocol */ |
| 1898 | ret = efi_search_protocol(handles[i], &efi_guid_device_path, |
| 1899 | &handler); |
| 1900 | if (ret != EFI_SUCCESS) |
| 1901 | continue; |
| 1902 | dp = (struct efi_device_path *)handler->protocol_interface; |
| 1903 | len_dp = efi_dp_instance_size(dp); |
| 1904 | /* |
| 1905 | * This handle can only be a better fit |
| 1906 | * if its device path length is longer than the best fit and |
| 1907 | * if its device path length is shorter of equal the searched |
| 1908 | * device path. |
| 1909 | */ |
| 1910 | if (len_dp <= len_best || len_dp > len) |
| 1911 | continue; |
| 1912 | /* Check if dp is a subpath of device_path */ |
| 1913 | if (memcmp(*device_path, dp, len_dp)) |
| 1914 | continue; |
| 1915 | if (!device) { |
| 1916 | ret = EFI_INVALID_PARAMETER; |
| 1917 | goto out; |
| 1918 | } |
| 1919 | *device = handles[i]; |
| 1920 | len_best = len_dp; |
| 1921 | } |
| 1922 | if (len_best) { |
| 1923 | remainder = (u8 *)*device_path + len_best; |
| 1924 | *device_path = (struct efi_device_path *)remainder; |
| 1925 | ret = EFI_SUCCESS; |
| 1926 | } else { |
| 1927 | ret = EFI_NOT_FOUND; |
| 1928 | } |
| 1929 | out: |
| 1930 | return EFI_EXIT(ret); |
| 1931 | } |
| 1932 | |
| 1933 | /** |
Heinrich Schuchardt | 0e074d1 | 2020-12-06 10:47:57 +0100 | [diff] [blame] | 1934 | * efi_load_image_from_file() - load an image from file system |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1935 | * |
Heinrich Schuchardt | 0e18f58 | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1936 | * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the |
| 1937 | * callers obligation to update the memory type as needed. |
| 1938 | * |
Heinrich Schuchardt | c06c55b | 2020-12-04 09:27:41 +0100 | [diff] [blame] | 1939 | * @file_path: the path of the image to load |
| 1940 | * @buffer: buffer containing the loaded image |
| 1941 | * @size: size of the loaded image |
| 1942 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1943 | */ |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 1944 | static |
Heinrich Schuchardt | 0e074d1 | 2020-12-06 10:47:57 +0100 | [diff] [blame] | 1945 | efi_status_t efi_load_image_from_file(struct efi_device_path *file_path, |
Heinrich Schuchardt | 0e18f58 | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1946 | void **buffer, efi_uintn_t *size) |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1947 | { |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1948 | struct efi_file_handle *f; |
Heinrich Schuchardt | 0e074d1 | 2020-12-06 10:47:57 +0100 | [diff] [blame] | 1949 | efi_status_t ret; |
Heinrich Schuchardt | 0e18f58 | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1950 | u64 addr; |
Heinrich Schuchardt | b6dd577 | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 1951 | efi_uintn_t bs; |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1952 | |
Heinrich Schuchardt | 0e18f58 | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1953 | /* Open file */ |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1954 | f = efi_file_from_path(file_path); |
| 1955 | if (!f) |
Heinrich Schuchardt | 2000003 | 2019-06-11 19:00:56 +0200 | [diff] [blame] | 1956 | return EFI_NOT_FOUND; |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1957 | |
Ilias Apalodimas | ac30aad | 2021-03-25 21:55:16 +0200 | [diff] [blame] | 1958 | ret = efi_file_size(f, &bs); |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1959 | if (ret != EFI_SUCCESS) |
| 1960 | goto error; |
| 1961 | |
Heinrich Schuchardt | 0e18f58 | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1962 | /* |
| 1963 | * When reading the file we do not yet know if it contains an |
| 1964 | * application, a boottime driver, or a runtime driver. So here we |
| 1965 | * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to |
| 1966 | * update the reservation according to the image type. |
| 1967 | */ |
Heinrich Schuchardt | 0e18f58 | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1968 | ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, |
| 1969 | EFI_BOOT_SERVICES_DATA, |
| 1970 | efi_size_in_pages(bs), &addr); |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1971 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | 0e18f58 | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1972 | ret = EFI_OUT_OF_RESOURCES; |
| 1973 | goto error; |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1974 | } |
| 1975 | |
Heinrich Schuchardt | 0e18f58 | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1976 | /* Read file */ |
| 1977 | EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr)); |
| 1978 | if (ret != EFI_SUCCESS) |
| 1979 | efi_free_pages(addr, efi_size_in_pages(bs)); |
| 1980 | *buffer = (void *)(uintptr_t)addr; |
| 1981 | *size = bs; |
| 1982 | error: |
| 1983 | EFI_CALL(f->close(f)); |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1984 | return ret; |
| 1985 | } |
| 1986 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1987 | /** |
Heinrich Schuchardt | 0e074d1 | 2020-12-06 10:47:57 +0100 | [diff] [blame] | 1988 | * efi_load_image_from_path() - load an image using a file path |
| 1989 | * |
| 1990 | * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the |
| 1991 | * callers obligation to update the memory type as needed. |
| 1992 | * |
| 1993 | * @boot_policy: true for request originating from the boot manager |
| 1994 | * @file_path: the path of the image to load |
| 1995 | * @buffer: buffer containing the loaded image |
| 1996 | * @size: size of the loaded image |
| 1997 | * Return: status code |
| 1998 | */ |
| 1999 | static |
| 2000 | efi_status_t efi_load_image_from_path(bool boot_policy, |
| 2001 | struct efi_device_path *file_path, |
| 2002 | void **buffer, efi_uintn_t *size) |
| 2003 | { |
| 2004 | efi_handle_t device; |
| 2005 | efi_status_t ret; |
Heinrich Schuchardt | 9cdf470 | 2022-02-26 12:05:30 +0100 | [diff] [blame] | 2006 | struct efi_device_path *dp, *rem; |
Heinrich Schuchardt | 3da0b28 | 2020-12-06 13:00:15 +0100 | [diff] [blame] | 2007 | struct efi_load_file_protocol *load_file_protocol = NULL; |
| 2008 | efi_uintn_t buffer_size; |
| 2009 | uint64_t addr, pages; |
| 2010 | const efi_guid_t *guid; |
Heinrich Schuchardt | 15436fa | 2023-01-24 20:36:45 +0100 | [diff] [blame] | 2011 | struct efi_handler *handler; |
Heinrich Schuchardt | 0e074d1 | 2020-12-06 10:47:57 +0100 | [diff] [blame] | 2012 | |
| 2013 | /* In case of failure nothing is returned */ |
| 2014 | *buffer = NULL; |
| 2015 | *size = 0; |
| 2016 | |
| 2017 | dp = file_path; |
Heinrich Schuchardt | 9cdf470 | 2022-02-26 12:05:30 +0100 | [diff] [blame] | 2018 | device = efi_dp_find_obj(dp, NULL, &rem); |
| 2019 | ret = efi_search_protocol(device, &efi_simple_file_system_protocol_guid, |
| 2020 | NULL); |
Heinrich Schuchardt | 0e074d1 | 2020-12-06 10:47:57 +0100 | [diff] [blame] | 2021 | if (ret == EFI_SUCCESS) |
| 2022 | return efi_load_image_from_file(file_path, buffer, size); |
Heinrich Schuchardt | 3da0b28 | 2020-12-06 13:00:15 +0100 | [diff] [blame] | 2023 | |
Heinrich Schuchardt | 9cdf470 | 2022-02-26 12:05:30 +0100 | [diff] [blame] | 2024 | ret = efi_search_protocol(device, &efi_guid_load_file_protocol, NULL); |
Heinrich Schuchardt | 3da0b28 | 2020-12-06 13:00:15 +0100 | [diff] [blame] | 2025 | if (ret == EFI_SUCCESS) { |
| 2026 | guid = &efi_guid_load_file_protocol; |
| 2027 | } else if (!boot_policy) { |
| 2028 | guid = &efi_guid_load_file2_protocol; |
Heinrich Schuchardt | 9cdf470 | 2022-02-26 12:05:30 +0100 | [diff] [blame] | 2029 | ret = efi_search_protocol(device, guid, NULL); |
Heinrich Schuchardt | 3da0b28 | 2020-12-06 13:00:15 +0100 | [diff] [blame] | 2030 | } |
| 2031 | if (ret != EFI_SUCCESS) |
| 2032 | return EFI_NOT_FOUND; |
Heinrich Schuchardt | 15436fa | 2023-01-24 20:36:45 +0100 | [diff] [blame] | 2033 | ret = efi_search_protocol(device, guid, &handler); |
Heinrich Schuchardt | 3da0b28 | 2020-12-06 13:00:15 +0100 | [diff] [blame] | 2034 | if (ret != EFI_SUCCESS) |
| 2035 | return EFI_NOT_FOUND; |
| 2036 | buffer_size = 0; |
Heinrich Schuchardt | 15436fa | 2023-01-24 20:36:45 +0100 | [diff] [blame] | 2037 | load_file_protocol = handler->protocol_interface; |
Heinrich Schuchardt | 9cdf470 | 2022-02-26 12:05:30 +0100 | [diff] [blame] | 2038 | ret = EFI_CALL(load_file_protocol->load_file( |
| 2039 | load_file_protocol, rem, boot_policy, |
| 2040 | &buffer_size, NULL)); |
Heinrich Schuchardt | 3da0b28 | 2020-12-06 13:00:15 +0100 | [diff] [blame] | 2041 | if (ret != EFI_BUFFER_TOO_SMALL) |
| 2042 | goto out; |
| 2043 | pages = efi_size_in_pages(buffer_size); |
| 2044 | ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, EFI_BOOT_SERVICES_DATA, |
| 2045 | pages, &addr); |
| 2046 | if (ret != EFI_SUCCESS) { |
| 2047 | ret = EFI_OUT_OF_RESOURCES; |
| 2048 | goto out; |
| 2049 | } |
| 2050 | ret = EFI_CALL(load_file_protocol->load_file( |
Heinrich Schuchardt | 9cdf470 | 2022-02-26 12:05:30 +0100 | [diff] [blame] | 2051 | load_file_protocol, rem, boot_policy, |
Heinrich Schuchardt | 3da0b28 | 2020-12-06 13:00:15 +0100 | [diff] [blame] | 2052 | &buffer_size, (void *)(uintptr_t)addr)); |
| 2053 | if (ret != EFI_SUCCESS) |
| 2054 | efi_free_pages(addr, pages); |
| 2055 | out: |
Heinrich Schuchardt | ef18576 | 2022-10-07 15:18:15 +0200 | [diff] [blame] | 2056 | efi_close_protocol(device, guid, efi_root, NULL); |
Heinrich Schuchardt | 3da0b28 | 2020-12-06 13:00:15 +0100 | [diff] [blame] | 2057 | if (ret == EFI_SUCCESS) { |
| 2058 | *buffer = (void *)(uintptr_t)addr; |
| 2059 | *size = buffer_size; |
| 2060 | } |
| 2061 | |
| 2062 | return ret; |
Heinrich Schuchardt | 0e074d1 | 2020-12-06 10:47:57 +0100 | [diff] [blame] | 2063 | } |
| 2064 | |
| 2065 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2066 | * efi_load_image() - load an EFI image into memory |
| 2067 | * @boot_policy: true for request originating from the boot manager |
| 2068 | * @parent_image: the caller's image handle |
| 2069 | * @file_path: the path of the image to load |
| 2070 | * @source_buffer: memory location from which the image is installed |
| 2071 | * @source_size: size of the memory area from which the image is installed |
| 2072 | * @image_handle: handle for the newly installed image |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2073 | * |
| 2074 | * This function implements the LoadImage service. |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2075 | * |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2076 | * See the Unified Extensible Firmware Interface (UEFI) specification |
| 2077 | * for details. |
| 2078 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2079 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2080 | */ |
AKASHI Takahiro | d7e0b01 | 2019-03-05 14:53:31 +0900 | [diff] [blame] | 2081 | efi_status_t EFIAPI efi_load_image(bool boot_policy, |
| 2082 | efi_handle_t parent_image, |
| 2083 | struct efi_device_path *file_path, |
| 2084 | void *source_buffer, |
| 2085 | efi_uintn_t source_size, |
| 2086 | efi_handle_t *image_handle) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2087 | { |
Heinrich Schuchardt | 0e18f58 | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 2088 | struct efi_device_path *dp, *fp; |
Tom Rini | 1c3b2f4 | 2018-09-30 10:38:15 -0400 | [diff] [blame] | 2089 | struct efi_loaded_image *info = NULL; |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 2090 | struct efi_loaded_image_obj **image_obj = |
| 2091 | (struct efi_loaded_image_obj **)image_handle; |
Heinrich Schuchardt | b9b1759 | 2017-12-04 18:03:03 +0100 | [diff] [blame] | 2092 | efi_status_t ret; |
Heinrich Schuchardt | b0c3c34 | 2019-03-04 17:50:05 +0100 | [diff] [blame] | 2093 | void *dest_buffer; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2094 | |
Heinrich Schuchardt | e9df549 | 2022-02-03 22:21:51 +0100 | [diff] [blame] | 2095 | EFI_ENTRY("%d, %p, %pD, %p, %zu, %p", boot_policy, parent_image, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2096 | file_path, source_buffer, source_size, image_handle); |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 2097 | |
Heinrich Schuchardt | e4afcb2 | 2019-06-11 18:52:33 +0200 | [diff] [blame] | 2098 | if (!image_handle || (!source_buffer && !file_path) || |
| 2099 | !efi_search_obj(parent_image) || |
| 2100 | /* The parent image handle must refer to a loaded image */ |
| 2101 | !parent_image->type) { |
Heinrich Schuchardt | 84a918e | 2019-05-05 16:55:06 +0200 | [diff] [blame] | 2102 | ret = EFI_INVALID_PARAMETER; |
| 2103 | goto error; |
| 2104 | } |
Heinrich Schuchardt | 28a4fd4 | 2018-03-07 02:40:51 +0100 | [diff] [blame] | 2105 | |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 2106 | if (!source_buffer) { |
Heinrich Schuchardt | c06c55b | 2020-12-04 09:27:41 +0100 | [diff] [blame] | 2107 | ret = efi_load_image_from_path(boot_policy, file_path, |
| 2108 | &dest_buffer, &source_size); |
Heinrich Schuchardt | b9b1759 | 2017-12-04 18:03:03 +0100 | [diff] [blame] | 2109 | if (ret != EFI_SUCCESS) |
Heinrich Schuchardt | 0e18f58 | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 2110 | goto error; |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 2111 | } else { |
Heinrich Schuchardt | b0c3c34 | 2019-03-04 17:50:05 +0100 | [diff] [blame] | 2112 | dest_buffer = source_buffer; |
Rob Clark | 838ee4b | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 2113 | } |
Heinrich Schuchardt | 1e15a9c | 2019-04-20 19:24:43 +0000 | [diff] [blame] | 2114 | /* split file_path which contains both the device and file parts */ |
| 2115 | efi_dp_split_file_path(file_path, &dp, &fp); |
Heinrich Schuchardt | 0e18f58 | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 2116 | ret = efi_setup_loaded_image(dp, fp, image_obj, &info); |
Heinrich Schuchardt | b0c3c34 | 2019-03-04 17:50:05 +0100 | [diff] [blame] | 2117 | if (ret == EFI_SUCCESS) |
AKASHI Takahiro | 4540dab | 2020-04-14 11:51:44 +0900 | [diff] [blame] | 2118 | ret = efi_load_pe(*image_obj, dest_buffer, source_size, info); |
Heinrich Schuchardt | b0c3c34 | 2019-03-04 17:50:05 +0100 | [diff] [blame] | 2119 | if (!source_buffer) |
| 2120 | /* Release buffer to which file was loaded */ |
| 2121 | efi_free_pages((uintptr_t)dest_buffer, |
| 2122 | efi_size_in_pages(source_size)); |
AKASHI Takahiro | 4540dab | 2020-04-14 11:51:44 +0900 | [diff] [blame] | 2123 | if (ret == EFI_SUCCESS || ret == EFI_SECURITY_VIOLATION) { |
Heinrich Schuchardt | b0c3c34 | 2019-03-04 17:50:05 +0100 | [diff] [blame] | 2124 | info->system_table = &systab; |
| 2125 | info->parent_handle = parent_image; |
| 2126 | } else { |
| 2127 | /* The image is invalid. Release all associated resources. */ |
| 2128 | efi_delete_handle(*image_handle); |
| 2129 | *image_handle = NULL; |
| 2130 | free(info); |
| 2131 | } |
Heinrich Schuchardt | 28a4fd4 | 2018-03-07 02:40:51 +0100 | [diff] [blame] | 2132 | error: |
Heinrich Schuchardt | b9b1759 | 2017-12-04 18:03:03 +0100 | [diff] [blame] | 2133 | return EFI_EXIT(ret); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2134 | } |
| 2135 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2136 | /** |
Alexander Graf | f31239a | 2018-11-15 21:23:47 +0100 | [diff] [blame] | 2137 | * efi_exit_caches() - fix up caches for EFI payloads if necessary |
| 2138 | */ |
| 2139 | static void efi_exit_caches(void) |
| 2140 | { |
Heinrich Schuchardt | 6f3badb | 2019-07-22 22:04:36 +0200 | [diff] [blame] | 2141 | #if defined(CONFIG_EFI_GRUB_ARM32_WORKAROUND) |
Alexander Graf | f31239a | 2018-11-15 21:23:47 +0100 | [diff] [blame] | 2142 | /* |
Heinrich Schuchardt | 6f3badb | 2019-07-22 22:04:36 +0200 | [diff] [blame] | 2143 | * Boooting Linux via GRUB prior to version 2.04 fails on 32bit ARM if |
| 2144 | * caches are enabled. |
| 2145 | * |
| 2146 | * TODO: |
| 2147 | * According to the UEFI spec caches that can be managed via CP15 |
| 2148 | * operations should be enabled. Caches requiring platform information |
| 2149 | * to manage should be disabled. This should not happen in |
| 2150 | * ExitBootServices() but before invoking any UEFI binary is invoked. |
| 2151 | * |
| 2152 | * We want to keep the current workaround while GRUB prior to version |
| 2153 | * 2.04 is still in use. |
Alexander Graf | f31239a | 2018-11-15 21:23:47 +0100 | [diff] [blame] | 2154 | */ |
Heinrich Schuchardt | 6f3badb | 2019-07-22 22:04:36 +0200 | [diff] [blame] | 2155 | cleanup_before_linux(); |
Alexander Graf | f31239a | 2018-11-15 21:23:47 +0100 | [diff] [blame] | 2156 | #endif |
| 2157 | } |
| 2158 | |
| 2159 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2160 | * efi_exit_boot_services() - stop all boot services |
| 2161 | * @image_handle: handle of the loaded image |
| 2162 | * @map_key: key of the memory map |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2163 | * |
| 2164 | * This function implements the ExitBootServices service. |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2165 | * |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2166 | * See the Unified Extensible Firmware Interface (UEFI) specification |
| 2167 | * for details. |
| 2168 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2169 | * All timer events are disabled. For exit boot services events the |
| 2170 | * notification function is called. The boot services are disabled in the |
| 2171 | * system table. |
Heinrich Schuchardt | cc20ed0 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 2172 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2173 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2174 | */ |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 2175 | static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle, |
Heinrich Schuchardt | b015ab5 | 2019-05-05 21:58:35 +0200 | [diff] [blame] | 2176 | efi_uintn_t map_key) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2177 | { |
Heinrich Schuchardt | 14b4048 | 2019-07-11 20:15:09 +0200 | [diff] [blame] | 2178 | struct efi_event *evt, *next_event; |
Heinrich Schuchardt | 9896737 | 2019-06-11 20:05:40 +0200 | [diff] [blame] | 2179 | efi_status_t ret = EFI_SUCCESS; |
Heinrich Schuchardt | 152a263 | 2017-09-15 10:06:18 +0200 | [diff] [blame] | 2180 | |
Heinrich Schuchardt | b015ab5 | 2019-05-05 21:58:35 +0200 | [diff] [blame] | 2181 | EFI_ENTRY("%p, %zx", image_handle, map_key); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2182 | |
Heinrich Schuchardt | 1fcb7ea | 2018-07-02 12:53:55 +0200 | [diff] [blame] | 2183 | /* Check that the caller has read the current memory map */ |
Heinrich Schuchardt | 9896737 | 2019-06-11 20:05:40 +0200 | [diff] [blame] | 2184 | if (map_key != efi_memory_map_key) { |
| 2185 | ret = EFI_INVALID_PARAMETER; |
| 2186 | goto out; |
| 2187 | } |
Heinrich Schuchardt | 1fcb7ea | 2018-07-02 12:53:55 +0200 | [diff] [blame] | 2188 | |
Heinrich Schuchardt | cc20ed0 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 2189 | /* Check if ExitBootServices has already been called */ |
| 2190 | if (!systab.boottime) |
Heinrich Schuchardt | 9896737 | 2019-06-11 20:05:40 +0200 | [diff] [blame] | 2191 | goto out; |
Heinrich Schuchardt | cc20ed0 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 2192 | |
Heinrich Schuchardt | 43eaf5b | 2021-11-16 18:46:27 +0100 | [diff] [blame] | 2193 | /* Notify EFI_EVENT_GROUP_BEFORE_EXIT_BOOT_SERVICES event group. */ |
| 2194 | list_for_each_entry(evt, &efi_events, link) { |
| 2195 | if (evt->group && |
| 2196 | !guidcmp(evt->group, |
| 2197 | &efi_guid_event_group_before_exit_boot_services)) { |
| 2198 | efi_signal_event(evt); |
| 2199 | break; |
| 2200 | } |
| 2201 | } |
| 2202 | |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 2203 | /* Stop all timer related activities */ |
| 2204 | timers_enabled = false; |
| 2205 | |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 2206 | /* Add related events to the event group */ |
| 2207 | list_for_each_entry(evt, &efi_events, link) { |
| 2208 | if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES) |
| 2209 | evt->group = &efi_guid_event_group_exit_boot_services; |
| 2210 | } |
Heinrich Schuchardt | 152a263 | 2017-09-15 10:06:18 +0200 | [diff] [blame] | 2211 | /* Notify that ExitBootServices is invoked. */ |
Heinrich Schuchardt | 43bce44 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 2212 | list_for_each_entry(evt, &efi_events, link) { |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 2213 | if (evt->group && |
| 2214 | !guidcmp(evt->group, |
| 2215 | &efi_guid_event_group_exit_boot_services)) { |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 2216 | efi_signal_event(evt); |
Heinrich Schuchardt | b095f3c | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 2217 | break; |
| 2218 | } |
Heinrich Schuchardt | 152a263 | 2017-09-15 10:06:18 +0200 | [diff] [blame] | 2219 | } |
Heinrich Schuchardt | 152a263 | 2017-09-15 10:06:18 +0200 | [diff] [blame] | 2220 | |
Heinrich Schuchardt | 7eaa900 | 2019-06-07 06:47:01 +0200 | [diff] [blame] | 2221 | /* Make sure that notification functions are not called anymore */ |
| 2222 | efi_tpl = TPL_HIGH_LEVEL; |
| 2223 | |
Heinrich Schuchardt | 29018ab | 2019-06-20 15:25:48 +0200 | [diff] [blame] | 2224 | /* Notify variable services */ |
| 2225 | efi_variables_boot_exit_notify(); |
Rob Clark | ad644e7 | 2017-09-13 18:05:37 -0400 | [diff] [blame] | 2226 | |
Heinrich Schuchardt | 14b4048 | 2019-07-11 20:15:09 +0200 | [diff] [blame] | 2227 | /* Remove all events except EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE */ |
| 2228 | list_for_each_entry_safe(evt, next_event, &efi_events, link) { |
| 2229 | if (evt->type != EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE) |
| 2230 | list_del(&evt->link); |
| 2231 | } |
| 2232 | |
Heinrich Schuchardt | fccd3d9 | 2020-11-12 21:26:28 +0100 | [diff] [blame] | 2233 | if (!efi_st_keep_devices) { |
Tom Rini | 3f73e79 | 2021-11-19 16:33:04 -0500 | [diff] [blame] | 2234 | bootm_disable_interrupts(); |
Heinrich Schuchardt | db6288d | 2020-12-27 15:33:09 +0100 | [diff] [blame] | 2235 | if (IS_ENABLED(CONFIG_USB_DEVICE)) |
Heinrich Schuchardt | fccd3d9 | 2020-11-12 21:26:28 +0100 | [diff] [blame] | 2236 | udc_disconnect(); |
| 2237 | board_quiesce_devices(); |
| 2238 | dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL); |
| 2239 | } |
Alexander Graf | b7b8410 | 2016-11-17 01:02:57 +0100 | [diff] [blame] | 2240 | |
Heinrich Schuchardt | 7f95104 | 2019-07-05 17:42:16 +0200 | [diff] [blame] | 2241 | /* Patch out unsupported runtime function */ |
| 2242 | efi_runtime_detach(); |
| 2243 | |
Alexander Graf | f31239a | 2018-11-15 21:23:47 +0100 | [diff] [blame] | 2244 | /* Fix up caches for EFI payloads if necessary */ |
| 2245 | efi_exit_caches(); |
| 2246 | |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 2247 | /* Disable boot time services */ |
Heinrich Schuchardt | cc20ed0 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 2248 | systab.con_in_handle = NULL; |
| 2249 | systab.con_in = NULL; |
| 2250 | systab.con_out_handle = NULL; |
| 2251 | systab.con_out = NULL; |
| 2252 | systab.stderr_handle = NULL; |
| 2253 | systab.std_err = NULL; |
| 2254 | systab.boottime = NULL; |
| 2255 | |
| 2256 | /* Recalculate CRC32 */ |
Heinrich Schuchardt | 640adad | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 2257 | efi_update_table_header_crc32(&systab.hdr); |
Heinrich Schuchardt | cc20ed0 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 2258 | |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2259 | /* Give the payload some time to boot */ |
Heinrich Schuchardt | b3d6090 | 2017-10-18 18:13:04 +0200 | [diff] [blame] | 2260 | efi_set_watchdog(0); |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 2261 | schedule(); |
Heinrich Schuchardt | 9896737 | 2019-06-11 20:05:40 +0200 | [diff] [blame] | 2262 | out: |
Masahisa Kojima | fdff03e | 2021-08-13 16:12:41 +0900 | [diff] [blame] | 2263 | if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) { |
| 2264 | if (ret != EFI_SUCCESS) |
| 2265 | efi_tcg2_notify_exit_boot_services_failed(); |
| 2266 | } |
| 2267 | |
Heinrich Schuchardt | 9896737 | 2019-06-11 20:05:40 +0200 | [diff] [blame] | 2268 | return EFI_EXIT(ret); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2269 | } |
| 2270 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2271 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2272 | * efi_get_next_monotonic_count() - get next value of the counter |
| 2273 | * @count: returned value of the counter |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2274 | * |
| 2275 | * This function implements the NextMonotonicCount service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2276 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2277 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2278 | * details. |
| 2279 | * |
| 2280 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2281 | */ |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2282 | static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count) |
| 2283 | { |
Heinrich Schuchardt | ab9efa9 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 2284 | static uint64_t mono; |
Heinrich Schuchardt | 1344f7d | 2019-05-17 12:47:17 +0200 | [diff] [blame] | 2285 | efi_status_t ret; |
Heinrich Schuchardt | ab9efa9 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 2286 | |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2287 | EFI_ENTRY("%p", count); |
Heinrich Schuchardt | 1344f7d | 2019-05-17 12:47:17 +0200 | [diff] [blame] | 2288 | if (!count) { |
| 2289 | ret = EFI_INVALID_PARAMETER; |
| 2290 | goto out; |
| 2291 | } |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2292 | *count = mono++; |
Heinrich Schuchardt | 1344f7d | 2019-05-17 12:47:17 +0200 | [diff] [blame] | 2293 | ret = EFI_SUCCESS; |
| 2294 | out: |
| 2295 | return EFI_EXIT(ret); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2296 | } |
| 2297 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2298 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2299 | * efi_stall() - sleep |
| 2300 | * @microseconds: period to sleep in microseconds |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2301 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2302 | * This function implements the Stall service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2303 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2304 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2305 | * details. |
| 2306 | * |
| 2307 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2308 | */ |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2309 | static efi_status_t EFIAPI efi_stall(unsigned long microseconds) |
| 2310 | { |
Heinrich Schuchardt | 22f23db | 2019-06-02 21:12:17 +0200 | [diff] [blame] | 2311 | u64 end_tick; |
| 2312 | |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2313 | EFI_ENTRY("%ld", microseconds); |
Heinrich Schuchardt | 22f23db | 2019-06-02 21:12:17 +0200 | [diff] [blame] | 2314 | |
| 2315 | end_tick = get_ticks() + usec_to_tick(microseconds); |
| 2316 | while (get_ticks() < end_tick) |
| 2317 | efi_timer_check(); |
| 2318 | |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2319 | return EFI_EXIT(EFI_SUCCESS); |
| 2320 | } |
| 2321 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2322 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2323 | * efi_set_watchdog_timer() - reset the watchdog timer |
| 2324 | * @timeout: seconds before reset by watchdog |
| 2325 | * @watchdog_code: code to be logged when resetting |
| 2326 | * @data_size: size of buffer in bytes |
| 2327 | * @watchdog_data: buffer with data describing the reset reason |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2328 | * |
Heinrich Schuchardt | b3d6090 | 2017-10-18 18:13:04 +0200 | [diff] [blame] | 2329 | * This function implements the SetWatchdogTimer service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2330 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2331 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2332 | * details. |
| 2333 | * |
| 2334 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2335 | */ |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2336 | static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout, |
| 2337 | uint64_t watchdog_code, |
| 2338 | unsigned long data_size, |
| 2339 | uint16_t *watchdog_data) |
| 2340 | { |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 2341 | EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2342 | data_size, watchdog_data); |
Heinrich Schuchardt | b3d6090 | 2017-10-18 18:13:04 +0200 | [diff] [blame] | 2343 | return EFI_EXIT(efi_set_watchdog(timeout)); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2344 | } |
| 2345 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2346 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2347 | * efi_close_protocol() - close a protocol |
| 2348 | * @handle: handle on which the protocol shall be closed |
| 2349 | * @protocol: GUID of the protocol to close |
| 2350 | * @agent_handle: handle of the driver |
| 2351 | * @controller_handle: handle of the controller |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2352 | * |
Heinrich Schuchardt | ef18576 | 2022-10-07 15:18:15 +0200 | [diff] [blame] | 2353 | * This is the function implementing the CloseProtocol service is for internal |
| 2354 | * usage in U-Boot. For API usage wrapper efi_close_protocol_ext() is provided. |
| 2355 | * |
| 2356 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2357 | * details. |
| 2358 | * |
| 2359 | * Return: status code |
| 2360 | */ |
| 2361 | efi_status_t efi_close_protocol(efi_handle_t handle, const efi_guid_t *protocol, |
| 2362 | efi_handle_t agent_handle, |
| 2363 | efi_handle_t controller_handle) |
| 2364 | { |
| 2365 | struct efi_handler *handler; |
| 2366 | struct efi_open_protocol_info_item *item; |
| 2367 | struct efi_open_protocol_info_item *pos; |
| 2368 | efi_status_t ret; |
| 2369 | |
| 2370 | if (!efi_search_obj(agent_handle) || |
| 2371 | (controller_handle && !efi_search_obj(controller_handle))) |
| 2372 | return EFI_INVALID_PARAMETER; |
| 2373 | ret = efi_search_protocol(handle, protocol, &handler); |
| 2374 | if (ret != EFI_SUCCESS) |
| 2375 | return ret; |
| 2376 | |
| 2377 | ret = EFI_NOT_FOUND; |
| 2378 | list_for_each_entry_safe(item, pos, &handler->open_infos, link) { |
| 2379 | if (item->info.agent_handle == agent_handle && |
| 2380 | item->info.controller_handle == controller_handle) { |
| 2381 | efi_delete_open_info(item); |
| 2382 | ret = EFI_SUCCESS; |
| 2383 | } |
| 2384 | } |
| 2385 | |
| 2386 | return ret; |
| 2387 | } |
| 2388 | |
| 2389 | /** |
| 2390 | * efi_close_protocol_ext() - close a protocol |
| 2391 | * @handle: handle on which the protocol shall be closed |
| 2392 | * @protocol: GUID of the protocol to close |
| 2393 | * @agent_handle: handle of the driver |
| 2394 | * @controller_handle: handle of the controller |
| 2395 | * |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2396 | * This function implements the CloseProtocol service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2397 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2398 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2399 | * details. |
| 2400 | * |
| 2401 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2402 | */ |
Heinrich Schuchardt | ef18576 | 2022-10-07 15:18:15 +0200 | [diff] [blame] | 2403 | static efi_status_t EFIAPI |
| 2404 | efi_close_protocol_ext(efi_handle_t handle, const efi_guid_t *protocol, |
| 2405 | efi_handle_t agent_handle, |
| 2406 | efi_handle_t controller_handle) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2407 | { |
Heinrich Schuchardt | ef18576 | 2022-10-07 15:18:15 +0200 | [diff] [blame] | 2408 | efi_status_t ret; |
Heinrich Schuchardt | 3b8a489 | 2018-01-11 08:15:59 +0100 | [diff] [blame] | 2409 | |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 2410 | EFI_ENTRY("%p, %pUs, %p, %p", handle, protocol, agent_handle, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2411 | controller_handle); |
Heinrich Schuchardt | 3b8a489 | 2018-01-11 08:15:59 +0100 | [diff] [blame] | 2412 | |
Heinrich Schuchardt | ef18576 | 2022-10-07 15:18:15 +0200 | [diff] [blame] | 2413 | ret = efi_close_protocol(handle, protocol, |
| 2414 | agent_handle, controller_handle); |
Heinrich Schuchardt | 3b8a489 | 2018-01-11 08:15:59 +0100 | [diff] [blame] | 2415 | |
Heinrich Schuchardt | ef18576 | 2022-10-07 15:18:15 +0200 | [diff] [blame] | 2416 | return EFI_EXIT(ret); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2417 | } |
| 2418 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2419 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2420 | * efi_open_protocol_information() - provide information about then open status |
| 2421 | * of a protocol on a handle |
| 2422 | * @handle: handle for which the information shall be retrieved |
| 2423 | * @protocol: GUID of the protocol |
| 2424 | * @entry_buffer: buffer to receive the open protocol information |
| 2425 | * @entry_count: number of entries available in the buffer |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2426 | * |
| 2427 | * This function implements the OpenProtocolInformation service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2428 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2429 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2430 | * details. |
| 2431 | * |
| 2432 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2433 | */ |
Heinrich Schuchardt | ab9efa9 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 2434 | static efi_status_t EFIAPI efi_open_protocol_information( |
| 2435 | efi_handle_t handle, const efi_guid_t *protocol, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2436 | struct efi_open_protocol_info_entry **entry_buffer, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 2437 | efi_uintn_t *entry_count) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2438 | { |
Heinrich Schuchardt | e3fbbc3 | 2018-01-11 08:16:00 +0100 | [diff] [blame] | 2439 | unsigned long buffer_size; |
| 2440 | unsigned long count; |
| 2441 | struct efi_handler *handler; |
| 2442 | struct efi_open_protocol_info_item *item; |
| 2443 | efi_status_t r; |
| 2444 | |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 2445 | EFI_ENTRY("%p, %pUs, %p, %p", handle, protocol, entry_buffer, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2446 | entry_count); |
Heinrich Schuchardt | e3fbbc3 | 2018-01-11 08:16:00 +0100 | [diff] [blame] | 2447 | |
| 2448 | /* Check parameters */ |
| 2449 | if (!entry_buffer) { |
| 2450 | r = EFI_INVALID_PARAMETER; |
| 2451 | goto out; |
| 2452 | } |
| 2453 | r = efi_search_protocol(handle, protocol, &handler); |
| 2454 | if (r != EFI_SUCCESS) |
| 2455 | goto out; |
| 2456 | |
| 2457 | /* Count entries */ |
| 2458 | count = 0; |
| 2459 | list_for_each_entry(item, &handler->open_infos, link) { |
| 2460 | if (item->info.open_count) |
| 2461 | ++count; |
| 2462 | } |
| 2463 | *entry_count = count; |
| 2464 | *entry_buffer = NULL; |
| 2465 | if (!count) { |
| 2466 | r = EFI_SUCCESS; |
| 2467 | goto out; |
| 2468 | } |
| 2469 | |
| 2470 | /* Copy entries */ |
| 2471 | buffer_size = count * sizeof(struct efi_open_protocol_info_entry); |
Heinrich Schuchardt | eee6530 | 2018-10-03 20:02:29 +0200 | [diff] [blame] | 2472 | r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size, |
Heinrich Schuchardt | e3fbbc3 | 2018-01-11 08:16:00 +0100 | [diff] [blame] | 2473 | (void **)entry_buffer); |
| 2474 | if (r != EFI_SUCCESS) |
| 2475 | goto out; |
| 2476 | list_for_each_entry_reverse(item, &handler->open_infos, link) { |
| 2477 | if (item->info.open_count) |
| 2478 | (*entry_buffer)[--count] = item->info; |
| 2479 | } |
| 2480 | out: |
| 2481 | return EFI_EXIT(r); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2482 | } |
| 2483 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2484 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2485 | * efi_protocols_per_handle() - get protocols installed on a handle |
| 2486 | * @handle: handle for which the information is retrieved |
| 2487 | * @protocol_buffer: buffer with protocol GUIDs |
| 2488 | * @protocol_buffer_count: number of entries in the buffer |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2489 | * |
| 2490 | * This function implements the ProtocolsPerHandleService. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2491 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2492 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2493 | * details. |
| 2494 | * |
| 2495 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2496 | */ |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 2497 | static efi_status_t EFIAPI efi_protocols_per_handle( |
| 2498 | efi_handle_t handle, efi_guid_t ***protocol_buffer, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 2499 | efi_uintn_t *protocol_buffer_count) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2500 | { |
xypron.glpk@gmx.de | c0ebfc8 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2501 | unsigned long buffer_size; |
| 2502 | struct efi_object *efiobj; |
Heinrich Schuchardt | 69fb6b1 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 2503 | struct list_head *protocol_handle; |
xypron.glpk@gmx.de | c0ebfc8 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2504 | efi_status_t r; |
| 2505 | |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2506 | EFI_ENTRY("%p, %p, %p", handle, protocol_buffer, |
| 2507 | protocol_buffer_count); |
xypron.glpk@gmx.de | c0ebfc8 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2508 | |
| 2509 | if (!handle || !protocol_buffer || !protocol_buffer_count) |
| 2510 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
| 2511 | |
| 2512 | *protocol_buffer = NULL; |
Rob Clark | 661c832 | 2017-07-20 07:59:39 -0400 | [diff] [blame] | 2513 | *protocol_buffer_count = 0; |
xypron.glpk@gmx.de | c0ebfc8 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2514 | |
Heinrich Schuchardt | 69fb6b1 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 2515 | efiobj = efi_search_obj(handle); |
| 2516 | if (!efiobj) |
| 2517 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
xypron.glpk@gmx.de | c0ebfc8 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2518 | |
Heinrich Schuchardt | 69fb6b1 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 2519 | /* Count protocols */ |
| 2520 | list_for_each(protocol_handle, &efiobj->protocols) { |
| 2521 | ++*protocol_buffer_count; |
| 2522 | } |
| 2523 | |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 2524 | /* Copy GUIDs */ |
Heinrich Schuchardt | 69fb6b1 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 2525 | if (*protocol_buffer_count) { |
| 2526 | size_t j = 0; |
| 2527 | |
| 2528 | buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count; |
Heinrich Schuchardt | eee6530 | 2018-10-03 20:02:29 +0200 | [diff] [blame] | 2529 | r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size, |
Heinrich Schuchardt | 69fb6b1 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 2530 | (void **)protocol_buffer); |
| 2531 | if (r != EFI_SUCCESS) |
| 2532 | return EFI_EXIT(r); |
| 2533 | list_for_each(protocol_handle, &efiobj->protocols) { |
| 2534 | struct efi_handler *protocol; |
| 2535 | |
| 2536 | protocol = list_entry(protocol_handle, |
| 2537 | struct efi_handler, link); |
Heinrich Schuchardt | 6602893 | 2022-03-09 19:56:23 +0100 | [diff] [blame] | 2538 | (*protocol_buffer)[j] = (void *)&protocol->guid; |
Heinrich Schuchardt | 69fb6b1 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 2539 | ++j; |
xypron.glpk@gmx.de | c0ebfc8 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2540 | } |
xypron.glpk@gmx.de | c0ebfc8 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2541 | } |
| 2542 | |
| 2543 | return EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2544 | } |
| 2545 | |
Masahisa Kojima | 87d7914 | 2022-09-12 17:33:50 +0900 | [diff] [blame] | 2546 | efi_status_t efi_locate_handle_buffer_int(enum efi_locate_search_type search_type, |
| 2547 | const efi_guid_t *protocol, void *search_key, |
| 2548 | efi_uintn_t *no_handles, efi_handle_t **buffer) |
| 2549 | { |
| 2550 | efi_status_t r; |
| 2551 | efi_uintn_t buffer_size = 0; |
| 2552 | |
| 2553 | if (!no_handles || !buffer) { |
| 2554 | r = EFI_INVALID_PARAMETER; |
| 2555 | goto out; |
| 2556 | } |
| 2557 | *no_handles = 0; |
| 2558 | *buffer = NULL; |
| 2559 | r = efi_locate_handle(search_type, protocol, search_key, &buffer_size, |
| 2560 | *buffer); |
| 2561 | if (r != EFI_BUFFER_TOO_SMALL) |
| 2562 | goto out; |
| 2563 | r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size, |
| 2564 | (void **)buffer); |
| 2565 | if (r != EFI_SUCCESS) |
| 2566 | goto out; |
| 2567 | r = efi_locate_handle(search_type, protocol, search_key, &buffer_size, |
| 2568 | *buffer); |
| 2569 | if (r == EFI_SUCCESS) |
| 2570 | *no_handles = buffer_size / sizeof(efi_handle_t); |
| 2571 | out: |
| 2572 | return r; |
| 2573 | } |
| 2574 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2575 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2576 | * efi_locate_handle_buffer() - locate handles implementing a protocol |
| 2577 | * @search_type: selection criterion |
| 2578 | * @protocol: GUID of the protocol |
| 2579 | * @search_key: registration key |
| 2580 | * @no_handles: number of returned handles |
| 2581 | * @buffer: buffer with the returned handles |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2582 | * |
| 2583 | * This function implements the LocateHandleBuffer service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2584 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2585 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2586 | * details. |
| 2587 | * |
| 2588 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2589 | */ |
AKASHI Takahiro | b51ec63 | 2020-03-17 11:12:36 +0900 | [diff] [blame] | 2590 | efi_status_t EFIAPI efi_locate_handle_buffer( |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2591 | enum efi_locate_search_type search_type, |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 2592 | const efi_guid_t *protocol, void *search_key, |
Heinrich Schuchardt | f5a2a93 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 2593 | efi_uintn_t *no_handles, efi_handle_t **buffer) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2594 | { |
xypron.glpk@gmx.de | c2e703f | 2017-07-11 22:06:22 +0200 | [diff] [blame] | 2595 | efi_status_t r; |
xypron.glpk@gmx.de | c2e703f | 2017-07-11 22:06:22 +0200 | [diff] [blame] | 2596 | |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 2597 | EFI_ENTRY("%d, %pUs, %p, %p, %p", search_type, protocol, search_key, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2598 | no_handles, buffer); |
xypron.glpk@gmx.de | c2e703f | 2017-07-11 22:06:22 +0200 | [diff] [blame] | 2599 | |
Masahisa Kojima | 87d7914 | 2022-09-12 17:33:50 +0900 | [diff] [blame] | 2600 | r = efi_locate_handle_buffer_int(search_type, protocol, search_key, |
| 2601 | no_handles, buffer); |
| 2602 | |
xypron.glpk@gmx.de | c2e703f | 2017-07-11 22:06:22 +0200 | [diff] [blame] | 2603 | return EFI_EXIT(r); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2604 | } |
| 2605 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2606 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2607 | * efi_locate_protocol() - find an interface implementing a protocol |
| 2608 | * @protocol: GUID of the protocol |
| 2609 | * @registration: registration key passed to the notification function |
| 2610 | * @protocol_interface: interface implementing the protocol |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2611 | * |
| 2612 | * This function implements the LocateProtocol service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2613 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2614 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2615 | * details. |
| 2616 | * |
| 2617 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2618 | */ |
Heinrich Schuchardt | 5a9682d | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 2619 | static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2620 | void *registration, |
| 2621 | void **protocol_interface) |
| 2622 | { |
Heinrich Schuchardt | e31b3b1 | 2019-05-29 18:06:46 +0200 | [diff] [blame] | 2623 | struct efi_handler *handler; |
Heinrich Schuchardt | 9172cd9 | 2017-10-26 19:25:57 +0200 | [diff] [blame] | 2624 | efi_status_t ret; |
Heinrich Schuchardt | e31b3b1 | 2019-05-29 18:06:46 +0200 | [diff] [blame] | 2625 | struct efi_object *efiobj; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2626 | |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 2627 | EFI_ENTRY("%pUs, %p, %p", protocol, registration, protocol_interface); |
xypron.glpk@gmx.de | 88adae5 | 2017-07-11 22:06:24 +0200 | [diff] [blame] | 2628 | |
Heinrich Schuchardt | e31b3b1 | 2019-05-29 18:06:46 +0200 | [diff] [blame] | 2629 | /* |
| 2630 | * The UEFI spec explicitly requires a protocol even if a registration |
| 2631 | * key is provided. This differs from the logic in LocateHandle(). |
| 2632 | */ |
xypron.glpk@gmx.de | 88adae5 | 2017-07-11 22:06:24 +0200 | [diff] [blame] | 2633 | if (!protocol || !protocol_interface) |
| 2634 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
| 2635 | |
Heinrich Schuchardt | e31b3b1 | 2019-05-29 18:06:46 +0200 | [diff] [blame] | 2636 | if (registration) { |
| 2637 | struct efi_register_notify_event *event; |
| 2638 | struct efi_protocol_notification *handle; |
xypron.glpk@gmx.de | 88adae5 | 2017-07-11 22:06:24 +0200 | [diff] [blame] | 2639 | |
Heinrich Schuchardt | e31b3b1 | 2019-05-29 18:06:46 +0200 | [diff] [blame] | 2640 | event = efi_check_register_notify_event(registration); |
| 2641 | if (!event) |
| 2642 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
| 2643 | /* |
| 2644 | * The UEFI spec requires to return EFI_NOT_FOUND if no |
| 2645 | * protocol instance matches protocol and registration. |
| 2646 | * So let's do the same for a mismatch between protocol and |
| 2647 | * registration. |
| 2648 | */ |
| 2649 | if (guidcmp(&event->protocol, protocol)) |
| 2650 | goto not_found; |
| 2651 | if (list_empty(&event->handles)) |
| 2652 | goto not_found; |
| 2653 | handle = list_first_entry(&event->handles, |
| 2654 | struct efi_protocol_notification, |
| 2655 | link); |
| 2656 | efiobj = handle->handle; |
| 2657 | list_del(&handle->link); |
| 2658 | free(handle); |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 2659 | ret = efi_search_protocol(efiobj, protocol, &handler); |
Heinrich Schuchardt | e31b3b1 | 2019-05-29 18:06:46 +0200 | [diff] [blame] | 2660 | if (ret == EFI_SUCCESS) |
| 2661 | goto found; |
| 2662 | } else { |
| 2663 | list_for_each_entry(efiobj, &efi_obj_list, link) { |
| 2664 | ret = efi_search_protocol(efiobj, protocol, &handler); |
| 2665 | if (ret == EFI_SUCCESS) |
| 2666 | goto found; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2667 | } |
| 2668 | } |
Heinrich Schuchardt | e31b3b1 | 2019-05-29 18:06:46 +0200 | [diff] [blame] | 2669 | not_found: |
xypron.glpk@gmx.de | 88adae5 | 2017-07-11 22:06:24 +0200 | [diff] [blame] | 2670 | *protocol_interface = NULL; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2671 | return EFI_EXIT(EFI_NOT_FOUND); |
Heinrich Schuchardt | e31b3b1 | 2019-05-29 18:06:46 +0200 | [diff] [blame] | 2672 | found: |
| 2673 | *protocol_interface = handler->protocol_interface; |
| 2674 | return EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2675 | } |
| 2676 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2677 | /** |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2678 | * efi_install_multiple_protocol_interfaces_int() - Install multiple protocol |
| 2679 | * interfaces |
| 2680 | * @handle: handle on which the protocol interfaces shall be installed |
| 2681 | * @argptr: va_list of args |
| 2682 | * |
| 2683 | * Core functionality of efi_install_multiple_protocol_interfaces |
| 2684 | * Must not be called directly |
| 2685 | * |
| 2686 | * Return: status code |
| 2687 | */ |
| 2688 | static efi_status_t EFIAPI |
| 2689 | efi_install_multiple_protocol_interfaces_int(efi_handle_t *handle, |
| 2690 | efi_va_list argptr) |
| 2691 | { |
| 2692 | const efi_guid_t *protocol; |
| 2693 | void *protocol_interface; |
| 2694 | efi_handle_t old_handle; |
| 2695 | efi_status_t ret = EFI_SUCCESS; |
| 2696 | int i = 0; |
| 2697 | efi_va_list argptr_copy; |
| 2698 | |
| 2699 | if (!handle) |
| 2700 | return EFI_INVALID_PARAMETER; |
| 2701 | |
| 2702 | efi_va_copy(argptr_copy, argptr); |
| 2703 | for (;;) { |
| 2704 | protocol = efi_va_arg(argptr, efi_guid_t*); |
| 2705 | if (!protocol) |
| 2706 | break; |
| 2707 | protocol_interface = efi_va_arg(argptr, void*); |
| 2708 | /* Check that a device path has not been installed before */ |
| 2709 | if (!guidcmp(protocol, &efi_guid_device_path)) { |
| 2710 | struct efi_device_path *dp = protocol_interface; |
| 2711 | |
| 2712 | ret = EFI_CALL(efi_locate_device_path(protocol, &dp, |
| 2713 | &old_handle)); |
| 2714 | if (ret == EFI_SUCCESS && |
| 2715 | dp->type == DEVICE_PATH_TYPE_END) { |
| 2716 | EFI_PRINT("Path %pD already installed\n", |
| 2717 | protocol_interface); |
| 2718 | ret = EFI_ALREADY_STARTED; |
| 2719 | break; |
| 2720 | } |
| 2721 | } |
| 2722 | ret = EFI_CALL(efi_install_protocol_interface(handle, protocol, |
| 2723 | EFI_NATIVE_INTERFACE, |
| 2724 | protocol_interface)); |
| 2725 | if (ret != EFI_SUCCESS) |
| 2726 | break; |
| 2727 | i++; |
| 2728 | } |
| 2729 | if (ret == EFI_SUCCESS) |
| 2730 | goto out; |
| 2731 | |
| 2732 | /* If an error occurred undo all changes. */ |
| 2733 | for (; i; --i) { |
| 2734 | protocol = efi_va_arg(argptr_copy, efi_guid_t*); |
| 2735 | protocol_interface = efi_va_arg(argptr_copy, void*); |
| 2736 | EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol, |
| 2737 | protocol_interface)); |
| 2738 | } |
| 2739 | |
| 2740 | out: |
| 2741 | efi_va_end(argptr_copy); |
| 2742 | return ret; |
| 2743 | |
| 2744 | } |
| 2745 | |
| 2746 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2747 | * efi_install_multiple_protocol_interfaces() - Install multiple protocol |
| 2748 | * interfaces |
| 2749 | * @handle: handle on which the protocol interfaces shall be installed |
| 2750 | * @...: NULL terminated argument list with pairs of protocol GUIDS and |
| 2751 | * interfaces |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2752 | * |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2753 | * |
| 2754 | * This is the function for internal usage in U-Boot. For the API function |
| 2755 | * implementing the InstallMultipleProtocol service see |
| 2756 | * efi_install_multiple_protocol_interfaces_ext() |
| 2757 | * |
| 2758 | * Return: status code |
| 2759 | */ |
| 2760 | efi_status_t EFIAPI |
| 2761 | efi_install_multiple_protocol_interfaces(efi_handle_t *handle, ...) |
| 2762 | { |
| 2763 | efi_status_t ret; |
| 2764 | efi_va_list argptr; |
| 2765 | |
| 2766 | efi_va_start(argptr, handle); |
| 2767 | ret = efi_install_multiple_protocol_interfaces_int(handle, argptr); |
| 2768 | efi_va_end(argptr); |
| 2769 | return ret; |
| 2770 | } |
| 2771 | |
| 2772 | /** |
| 2773 | * efi_install_multiple_protocol_interfaces_ext() - Install multiple protocol |
| 2774 | * interfaces |
| 2775 | * @handle: handle on which the protocol interfaces shall be installed |
| 2776 | * @...: NULL terminated argument list with pairs of protocol GUIDS and |
| 2777 | * interfaces |
| 2778 | * |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2779 | * This function implements the MultipleProtocolInterfaces service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2780 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2781 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2782 | * details. |
| 2783 | * |
| 2784 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2785 | */ |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2786 | static efi_status_t EFIAPI |
| 2787 | efi_install_multiple_protocol_interfaces_ext(efi_handle_t *handle, ...) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2788 | { |
| 2789 | EFI_ENTRY("%p", handle); |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2790 | efi_status_t ret; |
Alexander Graf | beb077a | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2791 | efi_va_list argptr; |
xypron.glpk@gmx.de | 58b8358 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2792 | |
Alexander Graf | beb077a | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2793 | efi_va_start(argptr, handle); |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2794 | ret = efi_install_multiple_protocol_interfaces_int(handle, argptr); |
| 2795 | efi_va_end(argptr); |
| 2796 | return EFI_EXIT(ret); |
| 2797 | } |
| 2798 | |
| 2799 | /** |
| 2800 | * efi_uninstall_multiple_protocol_interfaces_int() - wrapper for uninstall |
| 2801 | * multiple protocol |
| 2802 | * interfaces |
| 2803 | * @handle: handle from which the protocol interfaces shall be removed |
| 2804 | * @argptr: va_list of args |
| 2805 | * |
| 2806 | * Core functionality of efi_uninstall_multiple_protocol_interfaces |
| 2807 | * Must not be called directly |
| 2808 | * |
| 2809 | * Return: status code |
| 2810 | */ |
| 2811 | static efi_status_t EFIAPI |
| 2812 | efi_uninstall_multiple_protocol_interfaces_int(efi_handle_t handle, |
| 2813 | efi_va_list argptr) |
| 2814 | { |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 2815 | const efi_guid_t *protocol, *next_protocol; |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2816 | void *protocol_interface; |
Ilias Apalodimas | 9fb3269 | 2022-11-10 10:21:24 +0200 | [diff] [blame] | 2817 | efi_status_t ret = EFI_SUCCESS; |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2818 | size_t i = 0; |
| 2819 | efi_va_list argptr_copy; |
| 2820 | |
| 2821 | if (!handle) |
| 2822 | return EFI_INVALID_PARAMETER; |
| 2823 | |
| 2824 | efi_va_copy(argptr_copy, argptr); |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 2825 | protocol = efi_va_arg(argptr, efi_guid_t*); |
xypron.glpk@gmx.de | 58b8358 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2826 | for (;;) { |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 2827 | /* |
| 2828 | * If efi_uninstall_protocol() fails we need to be able to |
| 2829 | * reinstall the previously uninstalled protocols on the same |
| 2830 | * handle. |
| 2831 | * Instead of calling efi_uninstall_protocol(...,..., false) |
| 2832 | * and potentially removing the handle, only allow the handle |
| 2833 | * removal on the last protocol that we requested to uninstall. |
| 2834 | * That way we can preserve the handle in case the latter fails |
| 2835 | */ |
| 2836 | bool preserve = true; |
| 2837 | |
xypron.glpk@gmx.de | 58b8358 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2838 | if (!protocol) |
| 2839 | break; |
Alexander Graf | beb077a | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2840 | protocol_interface = efi_va_arg(argptr, void*); |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 2841 | next_protocol = efi_va_arg(argptr, efi_guid_t*); |
| 2842 | if (!next_protocol) |
| 2843 | preserve = false; |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2844 | ret = efi_uninstall_protocol(handle, protocol, |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 2845 | protocol_interface, preserve); |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2846 | if (ret != EFI_SUCCESS) |
xypron.glpk@gmx.de | 58b8358 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2847 | break; |
| 2848 | i++; |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 2849 | protocol = next_protocol; |
xypron.glpk@gmx.de | 58b8358 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2850 | } |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 2851 | if (ret == EFI_SUCCESS) |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2852 | goto out; |
xypron.glpk@gmx.de | 58b8358 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2853 | |
Heinrich Schuchardt | 62471e4 | 2017-10-26 19:25:42 +0200 | [diff] [blame] | 2854 | /* If an error occurred undo all changes. */ |
xypron.glpk@gmx.de | 58b8358 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2855 | for (; i; --i) { |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2856 | protocol = efi_va_arg(argptr_copy, efi_guid_t*); |
| 2857 | protocol_interface = efi_va_arg(argptr_copy, void*); |
| 2858 | EFI_CALL(efi_install_protocol_interface(&handle, protocol, |
| 2859 | EFI_NATIVE_INTERFACE, |
| 2860 | protocol_interface)); |
xypron.glpk@gmx.de | 58b8358 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2861 | } |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2862 | /* |
| 2863 | * If any errors are generated while the protocol interfaces are being |
| 2864 | * uninstalled, then the protocols uninstalled prior to the error will |
| 2865 | * be reinstalled using InstallProtocolInterface() and the status code |
| 2866 | * EFI_INVALID_PARAMETER is returned. |
| 2867 | */ |
| 2868 | ret = EFI_INVALID_PARAMETER; |
xypron.glpk@gmx.de | 58b8358 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2869 | |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2870 | out: |
| 2871 | efi_va_end(argptr_copy); |
| 2872 | return ret; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2873 | } |
| 2874 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2875 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2876 | * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol |
| 2877 | * interfaces |
| 2878 | * @handle: handle from which the protocol interfaces shall be removed |
| 2879 | * @...: NULL terminated argument list with pairs of protocol GUIDS and |
| 2880 | * interfaces |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2881 | * |
| 2882 | * This function implements the UninstallMultipleProtocolInterfaces service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2883 | * |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2884 | * This is the function for internal usage in U-Boot. For the API function |
| 2885 | * implementing the UninstallMultipleProtocolInterfaces service see |
| 2886 | * efi_uninstall_multiple_protocol_interfaces_ext() |
| 2887 | * |
| 2888 | * Return: status code |
| 2889 | */ |
| 2890 | efi_status_t EFIAPI |
| 2891 | efi_uninstall_multiple_protocol_interfaces(efi_handle_t handle, ...) |
| 2892 | { |
| 2893 | efi_status_t ret; |
| 2894 | efi_va_list argptr; |
| 2895 | |
| 2896 | efi_va_start(argptr, handle); |
| 2897 | ret = efi_uninstall_multiple_protocol_interfaces_int(handle, argptr); |
| 2898 | efi_va_end(argptr); |
| 2899 | return ret; |
| 2900 | } |
| 2901 | |
| 2902 | /** |
| 2903 | * efi_uninstall_multiple_protocol_interfaces_ext() - uninstall multiple protocol |
| 2904 | * interfaces |
| 2905 | * @handle: handle from which the protocol interfaces shall be removed |
| 2906 | * @...: NULL terminated argument list with pairs of protocol GUIDS and |
| 2907 | * interfaces |
| 2908 | * |
| 2909 | * This function implements the UninstallMultipleProtocolInterfaces service. |
| 2910 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2911 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2912 | * details. |
| 2913 | * |
| 2914 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2915 | */ |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2916 | static efi_status_t EFIAPI |
| 2917 | efi_uninstall_multiple_protocol_interfaces_ext(efi_handle_t handle, ...) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2918 | { |
| 2919 | EFI_ENTRY("%p", handle); |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2920 | efi_status_t ret; |
Alexander Graf | beb077a | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2921 | efi_va_list argptr; |
Heinrich Schuchardt | 843ce54 | 2017-10-26 19:25:44 +0200 | [diff] [blame] | 2922 | |
Alexander Graf | beb077a | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2923 | efi_va_start(argptr, handle); |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2924 | ret = efi_uninstall_multiple_protocol_interfaces_int(handle, argptr); |
Alexander Graf | beb077a | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2925 | efi_va_end(argptr); |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 2926 | return EFI_EXIT(ret); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2927 | } |
| 2928 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2929 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2930 | * efi_calculate_crc32() - calculate cyclic redundancy code |
| 2931 | * @data: buffer with data |
| 2932 | * @data_size: size of buffer in bytes |
| 2933 | * @crc32_p: cyclic redundancy code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2934 | * |
| 2935 | * This function implements the CalculateCrc32 service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2936 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2937 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2938 | * details. |
| 2939 | * |
| 2940 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2941 | */ |
Heinrich Schuchardt | 8aa8360 | 2018-07-07 15:36:04 +0200 | [diff] [blame] | 2942 | static efi_status_t EFIAPI efi_calculate_crc32(const void *data, |
| 2943 | efi_uintn_t data_size, |
| 2944 | u32 *crc32_p) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2945 | { |
Heinrich Schuchardt | db80fe3 | 2019-05-16 23:31:29 +0200 | [diff] [blame] | 2946 | efi_status_t ret = EFI_SUCCESS; |
| 2947 | |
Heinrich Schuchardt | 8aa8360 | 2018-07-07 15:36:04 +0200 | [diff] [blame] | 2948 | EFI_ENTRY("%p, %zu", data, data_size); |
Heinrich Schuchardt | db80fe3 | 2019-05-16 23:31:29 +0200 | [diff] [blame] | 2949 | if (!data || !data_size || !crc32_p) { |
| 2950 | ret = EFI_INVALID_PARAMETER; |
| 2951 | goto out; |
| 2952 | } |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2953 | *crc32_p = crc32(0, data, data_size); |
Heinrich Schuchardt | db80fe3 | 2019-05-16 23:31:29 +0200 | [diff] [blame] | 2954 | out: |
| 2955 | return EFI_EXIT(ret); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2956 | } |
| 2957 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2958 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2959 | * efi_copy_mem() - copy memory |
| 2960 | * @destination: destination of the copy operation |
| 2961 | * @source: source of the copy operation |
| 2962 | * @length: number of bytes to copy |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2963 | * |
| 2964 | * This function implements the CopyMem service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2965 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2966 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2967 | * details. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2968 | */ |
Heinrich Schuchardt | fc05a95 | 2017-10-05 16:35:52 +0200 | [diff] [blame] | 2969 | static void EFIAPI efi_copy_mem(void *destination, const void *source, |
| 2970 | size_t length) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2971 | { |
Heinrich Schuchardt | fc05a95 | 2017-10-05 16:35:52 +0200 | [diff] [blame] | 2972 | EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length); |
Heinrich Schuchardt | 0bc81a7 | 2019-01-09 21:41:13 +0100 | [diff] [blame] | 2973 | memmove(destination, source, length); |
Heinrich Schuchardt | f7c7817 | 2017-10-05 16:35:51 +0200 | [diff] [blame] | 2974 | EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2975 | } |
| 2976 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2977 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2978 | * efi_set_mem() - Fill memory with a byte value. |
| 2979 | * @buffer: buffer to fill |
| 2980 | * @size: size of buffer in bytes |
| 2981 | * @value: byte to copy to the buffer |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2982 | * |
| 2983 | * This function implements the SetMem service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2984 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2985 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2986 | * details. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2987 | */ |
Heinrich Schuchardt | fc05a95 | 2017-10-05 16:35:52 +0200 | [diff] [blame] | 2988 | static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2989 | { |
Heinrich Schuchardt | fc05a95 | 2017-10-05 16:35:52 +0200 | [diff] [blame] | 2990 | EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2991 | memset(buffer, value, size); |
Heinrich Schuchardt | f7c7817 | 2017-10-05 16:35:51 +0200 | [diff] [blame] | 2992 | EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2993 | } |
| 2994 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2995 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2996 | * efi_protocol_open() - open protocol interface on a handle |
| 2997 | * @handler: handler of a protocol |
| 2998 | * @protocol_interface: interface implementing the protocol |
| 2999 | * @agent_handle: handle of the driver |
| 3000 | * @controller_handle: handle of the controller |
| 3001 | * @attributes: attributes indicating how to open the protocol |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 3002 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3003 | * Return: status code |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3004 | */ |
Heinrich Schuchardt | f9ad240 | 2020-01-10 12:33:59 +0100 | [diff] [blame] | 3005 | efi_status_t efi_protocol_open( |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3006 | struct efi_handler *handler, |
| 3007 | void **protocol_interface, void *agent_handle, |
| 3008 | void *controller_handle, uint32_t attributes) |
| 3009 | { |
| 3010 | struct efi_open_protocol_info_item *item; |
| 3011 | struct efi_open_protocol_info_entry *match = NULL; |
| 3012 | bool opened_by_driver = false; |
| 3013 | bool opened_exclusive = false; |
| 3014 | |
| 3015 | /* If there is no agent, only return the interface */ |
| 3016 | if (!agent_handle) |
| 3017 | goto out; |
| 3018 | |
| 3019 | /* For TEST_PROTOCOL ignore interface attribute */ |
| 3020 | if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL) |
| 3021 | *protocol_interface = NULL; |
| 3022 | |
| 3023 | /* |
| 3024 | * Check if the protocol is already opened by a driver with the same |
| 3025 | * attributes or opened exclusively |
| 3026 | */ |
| 3027 | list_for_each_entry(item, &handler->open_infos, link) { |
| 3028 | if (item->info.agent_handle == agent_handle) { |
| 3029 | if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) && |
| 3030 | (item->info.attributes == attributes)) |
| 3031 | return EFI_ALREADY_STARTED; |
Heinrich Schuchardt | 399a39e | 2019-05-30 14:16:31 +0200 | [diff] [blame] | 3032 | } else { |
| 3033 | if (item->info.attributes & |
| 3034 | EFI_OPEN_PROTOCOL_BY_DRIVER) |
| 3035 | opened_by_driver = true; |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3036 | } |
| 3037 | if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) |
| 3038 | opened_exclusive = true; |
| 3039 | } |
| 3040 | |
| 3041 | /* Only one controller can open the protocol exclusively */ |
Heinrich Schuchardt | 399a39e | 2019-05-30 14:16:31 +0200 | [diff] [blame] | 3042 | if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) { |
| 3043 | if (opened_exclusive) |
| 3044 | return EFI_ACCESS_DENIED; |
| 3045 | } else if (attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) { |
| 3046 | if (opened_exclusive || opened_by_driver) |
| 3047 | return EFI_ACCESS_DENIED; |
| 3048 | } |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3049 | |
| 3050 | /* Prepare exclusive opening */ |
| 3051 | if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) { |
| 3052 | /* Try to disconnect controllers */ |
Heinrich Schuchardt | dae7ce4 | 2019-05-30 14:16:31 +0200 | [diff] [blame] | 3053 | disconnect_next: |
| 3054 | opened_by_driver = false; |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3055 | list_for_each_entry(item, &handler->open_infos, link) { |
Heinrich Schuchardt | dae7ce4 | 2019-05-30 14:16:31 +0200 | [diff] [blame] | 3056 | efi_status_t ret; |
| 3057 | |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3058 | if (item->info.attributes == |
Heinrich Schuchardt | dae7ce4 | 2019-05-30 14:16:31 +0200 | [diff] [blame] | 3059 | EFI_OPEN_PROTOCOL_BY_DRIVER) { |
| 3060 | ret = EFI_CALL(efi_disconnect_controller( |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3061 | item->info.controller_handle, |
| 3062 | item->info.agent_handle, |
| 3063 | NULL)); |
Heinrich Schuchardt | dae7ce4 | 2019-05-30 14:16:31 +0200 | [diff] [blame] | 3064 | if (ret == EFI_SUCCESS) |
| 3065 | /* |
| 3066 | * Child controllers may have been |
| 3067 | * removed from the open_infos list. So |
| 3068 | * let's restart the loop. |
| 3069 | */ |
| 3070 | goto disconnect_next; |
| 3071 | else |
| 3072 | opened_by_driver = true; |
| 3073 | } |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3074 | } |
Heinrich Schuchardt | dae7ce4 | 2019-05-30 14:16:31 +0200 | [diff] [blame] | 3075 | /* Only one driver can be connected */ |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3076 | if (opened_by_driver) |
| 3077 | return EFI_ACCESS_DENIED; |
| 3078 | } |
| 3079 | |
| 3080 | /* Find existing entry */ |
| 3081 | list_for_each_entry(item, &handler->open_infos, link) { |
| 3082 | if (item->info.agent_handle == agent_handle && |
Heinrich Schuchardt | b4863ba | 2019-06-01 20:15:10 +0200 | [diff] [blame] | 3083 | item->info.controller_handle == controller_handle && |
| 3084 | item->info.attributes == attributes) |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3085 | match = &item->info; |
| 3086 | } |
| 3087 | /* None found, create one */ |
| 3088 | if (!match) { |
| 3089 | match = efi_create_open_info(handler); |
| 3090 | if (!match) |
| 3091 | return EFI_OUT_OF_RESOURCES; |
| 3092 | } |
| 3093 | |
| 3094 | match->agent_handle = agent_handle; |
| 3095 | match->controller_handle = controller_handle; |
| 3096 | match->attributes = attributes; |
| 3097 | match->open_count++; |
| 3098 | |
| 3099 | out: |
| 3100 | /* For TEST_PROTOCOL ignore interface attribute. */ |
| 3101 | if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL) |
| 3102 | *protocol_interface = handler->protocol_interface; |
| 3103 | |
| 3104 | return EFI_SUCCESS; |
| 3105 | } |
| 3106 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3107 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3108 | * efi_open_protocol() - open protocol interface on a handle |
| 3109 | * @handle: handle on which the protocol shall be opened |
| 3110 | * @protocol: GUID of the protocol |
| 3111 | * @protocol_interface: interface implementing the protocol |
| 3112 | * @agent_handle: handle of the driver |
| 3113 | * @controller_handle: handle of the controller |
| 3114 | * @attributes: attributes indicating how to open the protocol |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3115 | * |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 3116 | * This function implements the OpenProtocol interface. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 3117 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3118 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 3119 | * details. |
| 3120 | * |
| 3121 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 3122 | */ |
Heinrich Schuchardt | faea104 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 3123 | static efi_status_t EFIAPI efi_open_protocol |
| 3124 | (efi_handle_t handle, const efi_guid_t *protocol, |
| 3125 | void **protocol_interface, efi_handle_t agent_handle, |
| 3126 | efi_handle_t controller_handle, uint32_t attributes) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3127 | { |
Heinrich Schuchardt | 80286e8 | 2017-11-26 14:05:15 +0100 | [diff] [blame] | 3128 | struct efi_handler *handler; |
xypron.glpk@gmx.de | 69baec6 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 3129 | efi_status_t r = EFI_INVALID_PARAMETER; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3130 | |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 3131 | EFI_ENTRY("%p, %pUs, %p, %p, %p, 0x%x", handle, protocol, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3132 | protocol_interface, agent_handle, controller_handle, |
| 3133 | attributes); |
xypron.glpk@gmx.de | b5349f7 | 2017-07-11 22:06:14 +0200 | [diff] [blame] | 3134 | |
xypron.glpk@gmx.de | 69baec6 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 3135 | if (!handle || !protocol || |
| 3136 | (!protocol_interface && attributes != |
| 3137 | EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) { |
| 3138 | goto out; |
| 3139 | } |
| 3140 | |
| 3141 | switch (attributes) { |
| 3142 | case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL: |
| 3143 | case EFI_OPEN_PROTOCOL_GET_PROTOCOL: |
| 3144 | case EFI_OPEN_PROTOCOL_TEST_PROTOCOL: |
| 3145 | break; |
| 3146 | case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER: |
| 3147 | if (controller_handle == handle) |
| 3148 | goto out; |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3149 | /* fall-through */ |
xypron.glpk@gmx.de | 69baec6 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 3150 | case EFI_OPEN_PROTOCOL_BY_DRIVER: |
| 3151 | case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE: |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3152 | /* Check that the controller handle is valid */ |
| 3153 | if (!efi_search_obj(controller_handle)) |
xypron.glpk@gmx.de | 69baec6 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 3154 | goto out; |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3155 | /* fall-through */ |
xypron.glpk@gmx.de | 69baec6 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 3156 | case EFI_OPEN_PROTOCOL_EXCLUSIVE: |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3157 | /* Check that the agent handle is valid */ |
| 3158 | if (!efi_search_obj(agent_handle)) |
xypron.glpk@gmx.de | 69baec6 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 3159 | goto out; |
| 3160 | break; |
| 3161 | default: |
xypron.glpk@gmx.de | b5349f7 | 2017-07-11 22:06:14 +0200 | [diff] [blame] | 3162 | goto out; |
| 3163 | } |
| 3164 | |
Heinrich Schuchardt | 80286e8 | 2017-11-26 14:05:15 +0100 | [diff] [blame] | 3165 | r = efi_search_protocol(handle, protocol, &handler); |
Heinrich Schuchardt | e7c3cd6 | 2019-05-05 11:24:53 +0200 | [diff] [blame] | 3166 | switch (r) { |
| 3167 | case EFI_SUCCESS: |
| 3168 | break; |
| 3169 | case EFI_NOT_FOUND: |
| 3170 | r = EFI_UNSUPPORTED; |
Heinrich Schuchardt | 80286e8 | 2017-11-26 14:05:15 +0100 | [diff] [blame] | 3171 | goto out; |
Heinrich Schuchardt | e7c3cd6 | 2019-05-05 11:24:53 +0200 | [diff] [blame] | 3172 | default: |
| 3173 | goto out; |
| 3174 | } |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3175 | |
Heinrich Schuchardt | 191a41c | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 3176 | r = efi_protocol_open(handler, protocol_interface, agent_handle, |
| 3177 | controller_handle, attributes); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3178 | out: |
| 3179 | return EFI_EXIT(r); |
| 3180 | } |
| 3181 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3182 | /** |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3183 | * efi_start_image() - call the entry point of an image |
| 3184 | * @image_handle: handle of the image |
| 3185 | * @exit_data_size: size of the buffer |
| 3186 | * @exit_data: buffer to receive the exit data of the called image |
| 3187 | * |
| 3188 | * This function implements the StartImage service. |
| 3189 | * |
| 3190 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 3191 | * details. |
| 3192 | * |
| 3193 | * Return: status code |
| 3194 | */ |
| 3195 | efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle, |
| 3196 | efi_uintn_t *exit_data_size, |
| 3197 | u16 **exit_data) |
| 3198 | { |
| 3199 | struct efi_loaded_image_obj *image_obj = |
| 3200 | (struct efi_loaded_image_obj *)image_handle; |
| 3201 | efi_status_t ret; |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 3202 | void *info; |
| 3203 | efi_handle_t parent_image = current_image; |
Heinrich Schuchardt | f8212f0 | 2020-12-28 23:24:40 +0100 | [diff] [blame] | 3204 | efi_status_t exit_status; |
| 3205 | struct jmp_buf_data exit_jmp; |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3206 | |
| 3207 | EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data); |
| 3208 | |
AKASHI Takahiro | 4540dab | 2020-04-14 11:51:44 +0900 | [diff] [blame] | 3209 | if (!efi_search_obj(image_handle)) |
| 3210 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
| 3211 | |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 3212 | /* Check parameters */ |
Heinrich Schuchardt | 1d3e8dc | 2019-06-11 19:35:20 +0200 | [diff] [blame] | 3213 | if (image_obj->header.type != EFI_OBJECT_TYPE_LOADED_IMAGE) |
| 3214 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
| 3215 | |
AKASHI Takahiro | 4540dab | 2020-04-14 11:51:44 +0900 | [diff] [blame] | 3216 | if (image_obj->auth_status != EFI_IMAGE_AUTH_PASSED) |
| 3217 | return EFI_EXIT(EFI_SECURITY_VIOLATION); |
| 3218 | |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 3219 | ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image, |
| 3220 | &info, NULL, NULL, |
| 3221 | EFI_OPEN_PROTOCOL_GET_PROTOCOL)); |
| 3222 | if (ret != EFI_SUCCESS) |
| 3223 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
| 3224 | |
Heinrich Schuchardt | 556d8dc | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 3225 | image_obj->exit_data_size = exit_data_size; |
| 3226 | image_obj->exit_data = exit_data; |
Heinrich Schuchardt | f8212f0 | 2020-12-28 23:24:40 +0100 | [diff] [blame] | 3227 | image_obj->exit_status = &exit_status; |
| 3228 | image_obj->exit_jmp = &exit_jmp; |
Heinrich Schuchardt | 556d8dc | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 3229 | |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 3230 | if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) { |
| 3231 | if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION) { |
Masahisa Kojima | ce3dbc5 | 2021-10-26 17:27:25 +0900 | [diff] [blame] | 3232 | ret = efi_tcg2_measure_efi_app_invocation(image_obj); |
Masahisa Kojima | f9b51dc | 2021-12-07 14:15:33 +0900 | [diff] [blame] | 3233 | if (ret == EFI_SECURITY_VIOLATION) { |
| 3234 | /* |
| 3235 | * TCG2 Protocol is installed but no TPM device found, |
| 3236 | * this is not expected. |
| 3237 | */ |
| 3238 | return EFI_EXIT(EFI_SECURITY_VIOLATION); |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 3239 | } |
| 3240 | } |
| 3241 | } |
| 3242 | |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3243 | /* call the image! */ |
Heinrich Schuchardt | f8212f0 | 2020-12-28 23:24:40 +0100 | [diff] [blame] | 3244 | if (setjmp(&exit_jmp)) { |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3245 | /* |
| 3246 | * We called the entry point of the child image with EFI_CALL |
| 3247 | * in the lines below. The child image called the Exit() boot |
| 3248 | * service efi_exit() which executed the long jump that brought |
| 3249 | * us to the current line. This implies that the second half |
| 3250 | * of the EFI_CALL macro has not been executed. |
| 3251 | */ |
Heinrich Schuchardt | d68d7f4 | 2020-09-10 12:22:54 +0200 | [diff] [blame] | 3252 | #if defined(CONFIG_ARM) || defined(CONFIG_RISCV) |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3253 | /* |
| 3254 | * efi_exit() called efi_restore_gd(). We have to undo this |
| 3255 | * otherwise __efi_entry_check() will put the wrong value into |
| 3256 | * app_gd. |
| 3257 | */ |
Heinrich Schuchardt | 4f7dc5f | 2020-05-27 01:58:30 +0200 | [diff] [blame] | 3258 | set_gd(app_gd); |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3259 | #endif |
| 3260 | /* |
| 3261 | * To get ready to call EFI_EXIT below we have to execute the |
| 3262 | * missed out steps of EFI_CALL. |
| 3263 | */ |
| 3264 | assert(__efi_entry_check()); |
Heinrich Schuchardt | 529886a | 2019-05-05 11:56:23 +0200 | [diff] [blame] | 3265 | EFI_PRINT("%lu returned by started image\n", |
Heinrich Schuchardt | f8212f0 | 2020-12-28 23:24:40 +0100 | [diff] [blame] | 3266 | (unsigned long)((uintptr_t)exit_status & |
Heinrich Schuchardt | 529886a | 2019-05-05 11:56:23 +0200 | [diff] [blame] | 3267 | ~EFI_ERROR_MASK)); |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 3268 | current_image = parent_image; |
Heinrich Schuchardt | f8212f0 | 2020-12-28 23:24:40 +0100 | [diff] [blame] | 3269 | return EFI_EXIT(exit_status); |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3270 | } |
| 3271 | |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 3272 | current_image = image_handle; |
Heinrich Schuchardt | cd73aba | 2019-05-01 14:20:18 +0200 | [diff] [blame] | 3273 | image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE; |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 3274 | EFI_PRINT("Jumping into 0x%p\n", image_obj->entry); |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3275 | ret = EFI_CALL(image_obj->entry(image_handle, &systab)); |
| 3276 | |
| 3277 | /* |
Heinrich Schuchardt | 55111c5 | 2020-01-10 22:06:54 +0100 | [diff] [blame] | 3278 | * Control is returned from a started UEFI image either by calling |
| 3279 | * Exit() (where exit data can be provided) or by simply returning from |
| 3280 | * the entry point. In the latter case call Exit() on behalf of the |
| 3281 | * image. |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3282 | */ |
| 3283 | return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL)); |
| 3284 | } |
| 3285 | |
| 3286 | /** |
Heinrich Schuchardt | df116e8 | 2019-05-01 18:25:45 +0200 | [diff] [blame] | 3287 | * efi_delete_image() - delete loaded image from memory) |
| 3288 | * |
| 3289 | * @image_obj: handle of the loaded image |
| 3290 | * @loaded_image_protocol: loaded image protocol |
| 3291 | */ |
Heinrich Schuchardt | 120ff7b | 2019-06-02 20:02:32 +0200 | [diff] [blame] | 3292 | static efi_status_t efi_delete_image |
| 3293 | (struct efi_loaded_image_obj *image_obj, |
| 3294 | struct efi_loaded_image *loaded_image_protocol) |
Heinrich Schuchardt | df116e8 | 2019-05-01 18:25:45 +0200 | [diff] [blame] | 3295 | { |
Heinrich Schuchardt | 120ff7b | 2019-06-02 20:02:32 +0200 | [diff] [blame] | 3296 | struct efi_object *efiobj; |
| 3297 | efi_status_t r, ret = EFI_SUCCESS; |
| 3298 | |
| 3299 | close_next: |
| 3300 | list_for_each_entry(efiobj, &efi_obj_list, link) { |
| 3301 | struct efi_handler *protocol; |
| 3302 | |
| 3303 | list_for_each_entry(protocol, &efiobj->protocols, link) { |
| 3304 | struct efi_open_protocol_info_item *info; |
| 3305 | |
| 3306 | list_for_each_entry(info, &protocol->open_infos, link) { |
| 3307 | if (info->info.agent_handle != |
| 3308 | (efi_handle_t)image_obj) |
| 3309 | continue; |
Heinrich Schuchardt | ef18576 | 2022-10-07 15:18:15 +0200 | [diff] [blame] | 3310 | r = efi_close_protocol( |
| 3311 | efiobj, &protocol->guid, |
| 3312 | info->info.agent_handle, |
| 3313 | info->info.controller_handle); |
Heinrich Schuchardt | 120ff7b | 2019-06-02 20:02:32 +0200 | [diff] [blame] | 3314 | if (r != EFI_SUCCESS) |
| 3315 | ret = r; |
| 3316 | /* |
| 3317 | * Closing protocols may results in further |
| 3318 | * items being deleted. To play it safe loop |
| 3319 | * over all elements again. |
| 3320 | */ |
| 3321 | goto close_next; |
| 3322 | } |
| 3323 | } |
| 3324 | } |
| 3325 | |
Heinrich Schuchardt | df116e8 | 2019-05-01 18:25:45 +0200 | [diff] [blame] | 3326 | efi_free_pages((uintptr_t)loaded_image_protocol->image_base, |
| 3327 | efi_size_in_pages(loaded_image_protocol->image_size)); |
| 3328 | efi_delete_handle(&image_obj->header); |
Heinrich Schuchardt | 120ff7b | 2019-06-02 20:02:32 +0200 | [diff] [blame] | 3329 | |
| 3330 | return ret; |
Heinrich Schuchardt | df116e8 | 2019-05-01 18:25:45 +0200 | [diff] [blame] | 3331 | } |
| 3332 | |
| 3333 | /** |
Heinrich Schuchardt | 46e99a9 | 2019-05-01 19:04:32 +0200 | [diff] [blame] | 3334 | * efi_unload_image() - unload an EFI image |
| 3335 | * @image_handle: handle of the image to be unloaded |
| 3336 | * |
| 3337 | * This function implements the UnloadImage service. |
| 3338 | * |
| 3339 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 3340 | * details. |
| 3341 | * |
| 3342 | * Return: status code |
| 3343 | */ |
| 3344 | efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle) |
| 3345 | { |
Heinrich Schuchardt | df116e8 | 2019-05-01 18:25:45 +0200 | [diff] [blame] | 3346 | efi_status_t ret = EFI_SUCCESS; |
Heinrich Schuchardt | 46e99a9 | 2019-05-01 19:04:32 +0200 | [diff] [blame] | 3347 | struct efi_object *efiobj; |
Heinrich Schuchardt | df116e8 | 2019-05-01 18:25:45 +0200 | [diff] [blame] | 3348 | struct efi_loaded_image *loaded_image_protocol; |
Heinrich Schuchardt | 46e99a9 | 2019-05-01 19:04:32 +0200 | [diff] [blame] | 3349 | |
| 3350 | EFI_ENTRY("%p", image_handle); |
Heinrich Schuchardt | 46e99a9 | 2019-05-01 19:04:32 +0200 | [diff] [blame] | 3351 | |
Heinrich Schuchardt | df116e8 | 2019-05-01 18:25:45 +0200 | [diff] [blame] | 3352 | efiobj = efi_search_obj(image_handle); |
| 3353 | if (!efiobj) { |
| 3354 | ret = EFI_INVALID_PARAMETER; |
| 3355 | goto out; |
| 3356 | } |
| 3357 | /* Find the loaded image protocol */ |
| 3358 | ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image, |
| 3359 | (void **)&loaded_image_protocol, |
| 3360 | NULL, NULL, |
| 3361 | EFI_OPEN_PROTOCOL_GET_PROTOCOL)); |
| 3362 | if (ret != EFI_SUCCESS) { |
| 3363 | ret = EFI_INVALID_PARAMETER; |
| 3364 | goto out; |
| 3365 | } |
| 3366 | switch (efiobj->type) { |
| 3367 | case EFI_OBJECT_TYPE_STARTED_IMAGE: |
| 3368 | /* Call the unload function */ |
| 3369 | if (!loaded_image_protocol->unload) { |
| 3370 | ret = EFI_UNSUPPORTED; |
| 3371 | goto out; |
| 3372 | } |
| 3373 | ret = EFI_CALL(loaded_image_protocol->unload(image_handle)); |
| 3374 | if (ret != EFI_SUCCESS) |
| 3375 | goto out; |
| 3376 | break; |
| 3377 | case EFI_OBJECT_TYPE_LOADED_IMAGE: |
| 3378 | break; |
| 3379 | default: |
| 3380 | ret = EFI_INVALID_PARAMETER; |
| 3381 | goto out; |
| 3382 | } |
| 3383 | efi_delete_image((struct efi_loaded_image_obj *)efiobj, |
| 3384 | loaded_image_protocol); |
| 3385 | out: |
| 3386 | return EFI_EXIT(ret); |
Heinrich Schuchardt | 46e99a9 | 2019-05-01 19:04:32 +0200 | [diff] [blame] | 3387 | } |
| 3388 | |
| 3389 | /** |
Heinrich Schuchardt | 556d8dc | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 3390 | * efi_update_exit_data() - fill exit data parameters of StartImage() |
| 3391 | * |
Heinrich Schuchardt | 9ce9127 | 2019-07-14 11:25:06 +0200 | [diff] [blame] | 3392 | * @image_obj: image handle |
| 3393 | * @exit_data_size: size of the exit data buffer |
| 3394 | * @exit_data: buffer with data returned by UEFI payload |
Heinrich Schuchardt | 556d8dc | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 3395 | * Return: status code |
| 3396 | */ |
| 3397 | static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj, |
| 3398 | efi_uintn_t exit_data_size, |
| 3399 | u16 *exit_data) |
| 3400 | { |
| 3401 | efi_status_t ret; |
| 3402 | |
| 3403 | /* |
| 3404 | * If exit_data is not provided to StartImage(), exit_data_size must be |
| 3405 | * ignored. |
| 3406 | */ |
| 3407 | if (!image_obj->exit_data) |
| 3408 | return EFI_SUCCESS; |
| 3409 | if (image_obj->exit_data_size) |
| 3410 | *image_obj->exit_data_size = exit_data_size; |
| 3411 | if (exit_data_size && exit_data) { |
| 3412 | ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, |
| 3413 | exit_data_size, |
| 3414 | (void **)image_obj->exit_data); |
| 3415 | if (ret != EFI_SUCCESS) |
| 3416 | return ret; |
| 3417 | memcpy(*image_obj->exit_data, exit_data, exit_data_size); |
| 3418 | } else { |
| 3419 | image_obj->exit_data = NULL; |
| 3420 | } |
| 3421 | return EFI_SUCCESS; |
| 3422 | } |
| 3423 | |
| 3424 | /** |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3425 | * efi_exit() - leave an EFI application or driver |
| 3426 | * @image_handle: handle of the application or driver that is exiting |
| 3427 | * @exit_status: status code |
| 3428 | * @exit_data_size: size of the buffer in bytes |
| 3429 | * @exit_data: buffer with data describing an error |
| 3430 | * |
| 3431 | * This function implements the Exit service. |
| 3432 | * |
| 3433 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 3434 | * details. |
| 3435 | * |
| 3436 | * Return: status code |
| 3437 | */ |
| 3438 | static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle, |
| 3439 | efi_status_t exit_status, |
| 3440 | efi_uintn_t exit_data_size, |
| 3441 | u16 *exit_data) |
| 3442 | { |
| 3443 | /* |
| 3444 | * TODO: We should call the unload procedure of the loaded |
| 3445 | * image protocol. |
| 3446 | */ |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 3447 | efi_status_t ret; |
Heinrich Schuchardt | 126a43f | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 3448 | struct efi_loaded_image *loaded_image_protocol; |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3449 | struct efi_loaded_image_obj *image_obj = |
| 3450 | (struct efi_loaded_image_obj *)image_handle; |
Heinrich Schuchardt | f8212f0 | 2020-12-28 23:24:40 +0100 | [diff] [blame] | 3451 | struct jmp_buf_data *exit_jmp; |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3452 | |
| 3453 | EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status, |
| 3454 | exit_data_size, exit_data); |
| 3455 | |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 3456 | /* Check parameters */ |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 3457 | ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image, |
Heinrich Schuchardt | 126a43f | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 3458 | (void **)&loaded_image_protocol, |
| 3459 | NULL, NULL, |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 3460 | EFI_OPEN_PROTOCOL_GET_PROTOCOL)); |
Heinrich Schuchardt | 126a43f | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 3461 | if (ret != EFI_SUCCESS) { |
| 3462 | ret = EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 3463 | goto out; |
Heinrich Schuchardt | 126a43f | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 3464 | } |
| 3465 | |
| 3466 | /* Unloading of unstarted images */ |
| 3467 | switch (image_obj->header.type) { |
| 3468 | case EFI_OBJECT_TYPE_STARTED_IMAGE: |
| 3469 | break; |
| 3470 | case EFI_OBJECT_TYPE_LOADED_IMAGE: |
| 3471 | efi_delete_image(image_obj, loaded_image_protocol); |
| 3472 | ret = EFI_SUCCESS; |
| 3473 | goto out; |
| 3474 | default: |
| 3475 | /* Handle does not refer to loaded image */ |
| 3476 | ret = EFI_INVALID_PARAMETER; |
| 3477 | goto out; |
| 3478 | } |
| 3479 | /* A started image can only be unloaded it is the last one started. */ |
| 3480 | if (image_handle != current_image) { |
| 3481 | ret = EFI_INVALID_PARAMETER; |
| 3482 | goto out; |
| 3483 | } |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 3484 | |
Heinrich Schuchardt | 556d8dc | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 3485 | /* Exit data is only foreseen in case of failure. */ |
| 3486 | if (exit_status != EFI_SUCCESS) { |
| 3487 | ret = efi_update_exit_data(image_obj, exit_data_size, |
| 3488 | exit_data); |
| 3489 | /* Exiting has priority. Don't return error to caller. */ |
| 3490 | if (ret != EFI_SUCCESS) |
| 3491 | EFI_PRINT("%s: out of memory\n", __func__); |
| 3492 | } |
Heinrich Schuchardt | f8212f0 | 2020-12-28 23:24:40 +0100 | [diff] [blame] | 3493 | /* efi_delete_image() frees image_obj. Copy before the call. */ |
| 3494 | exit_jmp = image_obj->exit_jmp; |
| 3495 | *image_obj->exit_status = exit_status; |
Heinrich Schuchardt | 126a43f | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 3496 | if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION || |
| 3497 | exit_status != EFI_SUCCESS) |
| 3498 | efi_delete_image(image_obj, loaded_image_protocol); |
Heinrich Schuchardt | 556d8dc | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 3499 | |
Masahisa Kojima | 8fc4e0b | 2021-08-13 16:12:40 +0900 | [diff] [blame] | 3500 | if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) { |
| 3501 | if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION) { |
| 3502 | ret = efi_tcg2_measure_efi_app_exit(); |
| 3503 | if (ret != EFI_SUCCESS) { |
| 3504 | log_warning("tcg2 measurement fails(0x%lx)\n", |
| 3505 | ret); |
| 3506 | } |
| 3507 | } |
| 3508 | } |
| 3509 | |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3510 | /* Make sure entry/exit counts for EFI world cross-overs match */ |
| 3511 | EFI_EXIT(exit_status); |
| 3512 | |
| 3513 | /* |
| 3514 | * But longjmp out with the U-Boot gd, not the application's, as |
| 3515 | * the other end is a setjmp call inside EFI context. |
| 3516 | */ |
| 3517 | efi_restore_gd(); |
| 3518 | |
Heinrich Schuchardt | f8212f0 | 2020-12-28 23:24:40 +0100 | [diff] [blame] | 3519 | longjmp(exit_jmp, 1); |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3520 | |
| 3521 | panic("EFI application exited"); |
Heinrich Schuchardt | bb31c3f | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 3522 | out: |
Heinrich Schuchardt | 126a43f | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 3523 | return EFI_EXIT(ret); |
Heinrich Schuchardt | a115d56 | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 3524 | } |
| 3525 | |
| 3526 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3527 | * efi_handle_protocol() - get interface of a protocol on a handle |
| 3528 | * @handle: handle on which the protocol shall be opened |
| 3529 | * @protocol: GUID of the protocol |
| 3530 | * @protocol_interface: interface implementing the protocol |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 3531 | * |
| 3532 | * This function implements the HandleProtocol service. |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 3533 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3534 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 3535 | * details. |
| 3536 | * |
| 3537 | * Return: status code |
Heinrich Schuchardt | 332468f | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 3538 | */ |
AKASHI Takahiro | b51ec63 | 2020-03-17 11:12:36 +0900 | [diff] [blame] | 3539 | efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle, |
| 3540 | const efi_guid_t *protocol, |
| 3541 | void **protocol_interface) |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3542 | { |
Heinrich Schuchardt | 755d42d | 2019-06-01 19:29:39 +0200 | [diff] [blame] | 3543 | return efi_open_protocol(handle, protocol, protocol_interface, efi_root, |
xypron.glpk@gmx.de | 8e1d329 | 2017-06-29 21:16:19 +0200 | [diff] [blame] | 3544 | NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL); |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3545 | } |
| 3546 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3547 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3548 | * efi_bind_controller() - bind a single driver to a controller |
| 3549 | * @controller_handle: controller handle |
| 3550 | * @driver_image_handle: driver handle |
| 3551 | * @remain_device_path: remaining path |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3552 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3553 | * Return: status code |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3554 | */ |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3555 | static efi_status_t efi_bind_controller( |
| 3556 | efi_handle_t controller_handle, |
| 3557 | efi_handle_t driver_image_handle, |
| 3558 | struct efi_device_path *remain_device_path) |
| 3559 | { |
| 3560 | struct efi_driver_binding_protocol *binding_protocol; |
| 3561 | efi_status_t r; |
| 3562 | |
| 3563 | r = EFI_CALL(efi_open_protocol(driver_image_handle, |
| 3564 | &efi_guid_driver_binding_protocol, |
| 3565 | (void **)&binding_protocol, |
| 3566 | driver_image_handle, NULL, |
| 3567 | EFI_OPEN_PROTOCOL_GET_PROTOCOL)); |
| 3568 | if (r != EFI_SUCCESS) |
| 3569 | return r; |
| 3570 | r = EFI_CALL(binding_protocol->supported(binding_protocol, |
| 3571 | controller_handle, |
| 3572 | remain_device_path)); |
| 3573 | if (r == EFI_SUCCESS) |
| 3574 | r = EFI_CALL(binding_protocol->start(binding_protocol, |
| 3575 | controller_handle, |
| 3576 | remain_device_path)); |
Heinrich Schuchardt | ef18576 | 2022-10-07 15:18:15 +0200 | [diff] [blame] | 3577 | efi_close_protocol(driver_image_handle, |
| 3578 | &efi_guid_driver_binding_protocol, |
| 3579 | driver_image_handle, NULL); |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3580 | return r; |
| 3581 | } |
| 3582 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3583 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3584 | * efi_connect_single_controller() - connect a single driver to a controller |
| 3585 | * @controller_handle: controller |
| 3586 | * @driver_image_handle: driver |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 3587 | * @remain_device_path: remaining path |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3588 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3589 | * Return: status code |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3590 | */ |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3591 | static efi_status_t efi_connect_single_controller( |
| 3592 | efi_handle_t controller_handle, |
| 3593 | efi_handle_t *driver_image_handle, |
| 3594 | struct efi_device_path *remain_device_path) |
| 3595 | { |
| 3596 | efi_handle_t *buffer; |
| 3597 | size_t count; |
| 3598 | size_t i; |
| 3599 | efi_status_t r; |
| 3600 | size_t connected = 0; |
| 3601 | |
| 3602 | /* Get buffer with all handles with driver binding protocol */ |
| 3603 | r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, |
| 3604 | &efi_guid_driver_binding_protocol, |
| 3605 | NULL, &count, &buffer)); |
| 3606 | if (r != EFI_SUCCESS) |
| 3607 | return r; |
| 3608 | |
Heinrich Schuchardt | 359a699 | 2019-07-03 20:27:24 +0200 | [diff] [blame] | 3609 | /* Context Override */ |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3610 | if (driver_image_handle) { |
| 3611 | for (; *driver_image_handle; ++driver_image_handle) { |
| 3612 | for (i = 0; i < count; ++i) { |
| 3613 | if (buffer[i] == *driver_image_handle) { |
| 3614 | buffer[i] = NULL; |
| 3615 | r = efi_bind_controller( |
| 3616 | controller_handle, |
| 3617 | *driver_image_handle, |
| 3618 | remain_device_path); |
| 3619 | /* |
| 3620 | * For drivers that do not support the |
| 3621 | * controller or are already connected |
| 3622 | * we receive an error code here. |
| 3623 | */ |
| 3624 | if (r == EFI_SUCCESS) |
| 3625 | ++connected; |
| 3626 | } |
| 3627 | } |
| 3628 | } |
| 3629 | } |
| 3630 | |
| 3631 | /* |
| 3632 | * TODO: Some overrides are not yet implemented: |
| 3633 | * - Platform Driver Override |
| 3634 | * - Driver Family Override Search |
| 3635 | * - Bus Specific Driver Override |
| 3636 | */ |
| 3637 | |
| 3638 | /* Driver Binding Search */ |
| 3639 | for (i = 0; i < count; ++i) { |
| 3640 | if (buffer[i]) { |
| 3641 | r = efi_bind_controller(controller_handle, |
| 3642 | buffer[i], |
| 3643 | remain_device_path); |
| 3644 | if (r == EFI_SUCCESS) |
| 3645 | ++connected; |
| 3646 | } |
| 3647 | } |
| 3648 | |
| 3649 | efi_free_pool(buffer); |
| 3650 | if (!connected) |
| 3651 | return EFI_NOT_FOUND; |
| 3652 | return EFI_SUCCESS; |
| 3653 | } |
| 3654 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3655 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3656 | * efi_connect_controller() - connect a controller to a driver |
| 3657 | * @controller_handle: handle of the controller |
| 3658 | * @driver_image_handle: handle of the driver |
| 3659 | * @remain_device_path: device path of a child controller |
| 3660 | * @recursive: true to connect all child controllers |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3661 | * |
| 3662 | * This function implements the ConnectController service. |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3663 | * |
| 3664 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 3665 | * details. |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3666 | * |
| 3667 | * First all driver binding protocol handles are tried for binding drivers. |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 3668 | * Afterwards all handles that have opened a protocol of the controller |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3669 | * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers. |
| 3670 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3671 | * Return: status code |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3672 | */ |
| 3673 | static efi_status_t EFIAPI efi_connect_controller( |
| 3674 | efi_handle_t controller_handle, |
| 3675 | efi_handle_t *driver_image_handle, |
| 3676 | struct efi_device_path *remain_device_path, |
| 3677 | bool recursive) |
| 3678 | { |
| 3679 | efi_status_t r; |
| 3680 | efi_status_t ret = EFI_NOT_FOUND; |
| 3681 | struct efi_object *efiobj; |
| 3682 | |
Heinrich Schuchardt | d178836 | 2018-12-09 16:39:20 +0100 | [diff] [blame] | 3683 | EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle, |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3684 | remain_device_path, recursive); |
| 3685 | |
| 3686 | efiobj = efi_search_obj(controller_handle); |
| 3687 | if (!efiobj) { |
| 3688 | ret = EFI_INVALID_PARAMETER; |
| 3689 | goto out; |
| 3690 | } |
| 3691 | |
| 3692 | r = efi_connect_single_controller(controller_handle, |
| 3693 | driver_image_handle, |
| 3694 | remain_device_path); |
| 3695 | if (r == EFI_SUCCESS) |
| 3696 | ret = EFI_SUCCESS; |
| 3697 | if (recursive) { |
| 3698 | struct efi_handler *handler; |
| 3699 | struct efi_open_protocol_info_item *item; |
| 3700 | |
| 3701 | list_for_each_entry(handler, &efiobj->protocols, link) { |
| 3702 | list_for_each_entry(item, &handler->open_infos, link) { |
| 3703 | if (item->info.attributes & |
| 3704 | EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) { |
| 3705 | r = EFI_CALL(efi_connect_controller( |
| 3706 | item->info.controller_handle, |
| 3707 | driver_image_handle, |
| 3708 | remain_device_path, |
| 3709 | recursive)); |
| 3710 | if (r == EFI_SUCCESS) |
| 3711 | ret = EFI_SUCCESS; |
| 3712 | } |
| 3713 | } |
| 3714 | } |
| 3715 | } |
Heinrich Schuchardt | 359a699 | 2019-07-03 20:27:24 +0200 | [diff] [blame] | 3716 | /* Check for child controller specified by end node */ |
Heinrich Schuchardt | f0959db | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3717 | if (ret != EFI_SUCCESS && remain_device_path && |
| 3718 | remain_device_path->type == DEVICE_PATH_TYPE_END) |
| 3719 | ret = EFI_SUCCESS; |
| 3720 | out: |
| 3721 | return EFI_EXIT(ret); |
| 3722 | } |
| 3723 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3724 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3725 | * efi_reinstall_protocol_interface() - reinstall protocol interface |
| 3726 | * @handle: handle on which the protocol shall be reinstalled |
| 3727 | * @protocol: GUID of the protocol to be installed |
| 3728 | * @old_interface: interface to be removed |
| 3729 | * @new_interface: interface to be installed |
Heinrich Schuchardt | e861a12 | 2018-05-11 12:09:22 +0200 | [diff] [blame] | 3730 | * |
| 3731 | * This function implements the ReinstallProtocolInterface service. |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3732 | * |
| 3733 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 3734 | * details. |
Heinrich Schuchardt | e861a12 | 2018-05-11 12:09:22 +0200 | [diff] [blame] | 3735 | * |
| 3736 | * The old interface is uninstalled. The new interface is installed. |
| 3737 | * Drivers are connected. |
| 3738 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3739 | * Return: status code |
Heinrich Schuchardt | e861a12 | 2018-05-11 12:09:22 +0200 | [diff] [blame] | 3740 | */ |
| 3741 | static efi_status_t EFIAPI efi_reinstall_protocol_interface( |
| 3742 | efi_handle_t handle, const efi_guid_t *protocol, |
| 3743 | void *old_interface, void *new_interface) |
| 3744 | { |
| 3745 | efi_status_t ret; |
| 3746 | |
Heinrich Schuchardt | ce00a74 | 2022-01-16 14:15:31 +0100 | [diff] [blame] | 3747 | EFI_ENTRY("%p, %pUs, %p, %p", handle, protocol, old_interface, |
Heinrich Schuchardt | e861a12 | 2018-05-11 12:09:22 +0200 | [diff] [blame] | 3748 | new_interface); |
Heinrich Schuchardt | 9b47f13 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 3749 | |
| 3750 | /* Uninstall protocol but do not delete handle */ |
Ilias Apalodimas | cc889bd | 2023-08-24 17:21:09 +0300 | [diff] [blame] | 3751 | ret = efi_uninstall_protocol(handle, protocol, old_interface, true); |
Heinrich Schuchardt | e861a12 | 2018-05-11 12:09:22 +0200 | [diff] [blame] | 3752 | if (ret != EFI_SUCCESS) |
| 3753 | goto out; |
Heinrich Schuchardt | 9b47f13 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 3754 | |
| 3755 | /* Install the new protocol */ |
| 3756 | ret = efi_add_protocol(handle, protocol, new_interface); |
| 3757 | /* |
| 3758 | * The UEFI spec does not specify what should happen to the handle |
| 3759 | * if in case of an error no protocol interface remains on the handle. |
| 3760 | * So let's do nothing here. |
| 3761 | */ |
Heinrich Schuchardt | e861a12 | 2018-05-11 12:09:22 +0200 | [diff] [blame] | 3762 | if (ret != EFI_SUCCESS) |
| 3763 | goto out; |
| 3764 | /* |
| 3765 | * The returned status code has to be ignored. |
| 3766 | * Do not create an error if no suitable driver for the handle exists. |
| 3767 | */ |
| 3768 | EFI_CALL(efi_connect_controller(handle, NULL, NULL, true)); |
| 3769 | out: |
| 3770 | return EFI_EXIT(ret); |
| 3771 | } |
| 3772 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3773 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3774 | * efi_get_child_controllers() - get all child controllers associated to a driver |
| 3775 | * @efiobj: handle of the controller |
| 3776 | * @driver_handle: handle of the driver |
| 3777 | * @number_of_children: number of child controllers |
| 3778 | * @child_handle_buffer: handles of the the child controllers |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3779 | * |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3780 | * The allocated buffer has to be freed with free(). |
| 3781 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3782 | * Return: status code |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3783 | */ |
| 3784 | static efi_status_t efi_get_child_controllers( |
| 3785 | struct efi_object *efiobj, |
| 3786 | efi_handle_t driver_handle, |
| 3787 | efi_uintn_t *number_of_children, |
| 3788 | efi_handle_t **child_handle_buffer) |
| 3789 | { |
| 3790 | struct efi_handler *handler; |
| 3791 | struct efi_open_protocol_info_item *item; |
| 3792 | efi_uintn_t count = 0, i; |
| 3793 | bool duplicate; |
| 3794 | |
| 3795 | /* Count all child controller associations */ |
| 3796 | list_for_each_entry(handler, &efiobj->protocols, link) { |
| 3797 | list_for_each_entry(item, &handler->open_infos, link) { |
| 3798 | if (item->info.agent_handle == driver_handle && |
| 3799 | item->info.attributes & |
| 3800 | EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) |
| 3801 | ++count; |
| 3802 | } |
| 3803 | } |
| 3804 | /* |
| 3805 | * Create buffer. In case of duplicate child controller assignments |
| 3806 | * the buffer will be too large. But that does not harm. |
| 3807 | */ |
| 3808 | *number_of_children = 0; |
Heinrich Schuchardt | 1047c6e | 2020-07-07 04:21:26 +0200 | [diff] [blame] | 3809 | if (!count) |
| 3810 | return EFI_SUCCESS; |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3811 | *child_handle_buffer = calloc(count, sizeof(efi_handle_t)); |
| 3812 | if (!*child_handle_buffer) |
| 3813 | return EFI_OUT_OF_RESOURCES; |
| 3814 | /* Copy unique child handles */ |
| 3815 | list_for_each_entry(handler, &efiobj->protocols, link) { |
| 3816 | list_for_each_entry(item, &handler->open_infos, link) { |
| 3817 | if (item->info.agent_handle == driver_handle && |
| 3818 | item->info.attributes & |
| 3819 | EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) { |
| 3820 | /* Check this is a new child controller */ |
| 3821 | duplicate = false; |
| 3822 | for (i = 0; i < *number_of_children; ++i) { |
| 3823 | if ((*child_handle_buffer)[i] == |
| 3824 | item->info.controller_handle) |
| 3825 | duplicate = true; |
| 3826 | } |
| 3827 | /* Copy handle to buffer */ |
| 3828 | if (!duplicate) { |
| 3829 | i = (*number_of_children)++; |
| 3830 | (*child_handle_buffer)[i] = |
| 3831 | item->info.controller_handle; |
| 3832 | } |
| 3833 | } |
| 3834 | } |
| 3835 | } |
| 3836 | return EFI_SUCCESS; |
| 3837 | } |
| 3838 | |
Heinrich Schuchardt | 6b03cd1 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3839 | /** |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3840 | * efi_disconnect_controller() - disconnect a controller from a driver |
| 3841 | * @controller_handle: handle of the controller |
| 3842 | * @driver_image_handle: handle of the driver |
| 3843 | * @child_handle: handle of the child to destroy |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3844 | * |
| 3845 | * This function implements the DisconnectController service. |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3846 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3847 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 3848 | * details. |
| 3849 | * |
| 3850 | * Return: status code |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3851 | */ |
| 3852 | static efi_status_t EFIAPI efi_disconnect_controller( |
| 3853 | efi_handle_t controller_handle, |
| 3854 | efi_handle_t driver_image_handle, |
| 3855 | efi_handle_t child_handle) |
| 3856 | { |
| 3857 | struct efi_driver_binding_protocol *binding_protocol; |
| 3858 | efi_handle_t *child_handle_buffer = NULL; |
| 3859 | size_t number_of_children = 0; |
| 3860 | efi_status_t r; |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3861 | struct efi_object *efiobj; |
Heinrich Schuchardt | 314bed6 | 2020-10-28 18:45:47 +0100 | [diff] [blame] | 3862 | bool sole_child; |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3863 | |
| 3864 | EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle, |
| 3865 | child_handle); |
| 3866 | |
| 3867 | efiobj = efi_search_obj(controller_handle); |
| 3868 | if (!efiobj) { |
| 3869 | r = EFI_INVALID_PARAMETER; |
| 3870 | goto out; |
| 3871 | } |
| 3872 | |
| 3873 | if (child_handle && !efi_search_obj(child_handle)) { |
| 3874 | r = EFI_INVALID_PARAMETER; |
| 3875 | goto out; |
| 3876 | } |
| 3877 | |
| 3878 | /* If no driver handle is supplied, disconnect all drivers */ |
| 3879 | if (!driver_image_handle) { |
| 3880 | r = efi_disconnect_all_drivers(efiobj, NULL, child_handle); |
| 3881 | goto out; |
| 3882 | } |
| 3883 | |
| 3884 | /* Create list of child handles */ |
Heinrich Schuchardt | 314bed6 | 2020-10-28 18:45:47 +0100 | [diff] [blame] | 3885 | r = efi_get_child_controllers(efiobj, |
| 3886 | driver_image_handle, |
| 3887 | &number_of_children, |
| 3888 | &child_handle_buffer); |
| 3889 | if (r != EFI_SUCCESS) |
| 3890 | return r; |
| 3891 | sole_child = (number_of_children == 1); |
| 3892 | |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3893 | if (child_handle) { |
| 3894 | number_of_children = 1; |
Heinrich Schuchardt | 314bed6 | 2020-10-28 18:45:47 +0100 | [diff] [blame] | 3895 | free(child_handle_buffer); |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3896 | child_handle_buffer = &child_handle; |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3897 | } |
| 3898 | |
| 3899 | /* Get the driver binding protocol */ |
| 3900 | r = EFI_CALL(efi_open_protocol(driver_image_handle, |
| 3901 | &efi_guid_driver_binding_protocol, |
| 3902 | (void **)&binding_protocol, |
| 3903 | driver_image_handle, NULL, |
| 3904 | EFI_OPEN_PROTOCOL_GET_PROTOCOL)); |
Heinrich Schuchardt | 7dc10c9 | 2019-09-13 18:20:40 +0200 | [diff] [blame] | 3905 | if (r != EFI_SUCCESS) { |
| 3906 | r = EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3907 | goto out; |
Heinrich Schuchardt | 7dc10c9 | 2019-09-13 18:20:40 +0200 | [diff] [blame] | 3908 | } |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3909 | /* Remove the children */ |
| 3910 | if (number_of_children) { |
| 3911 | r = EFI_CALL(binding_protocol->stop(binding_protocol, |
| 3912 | controller_handle, |
| 3913 | number_of_children, |
| 3914 | child_handle_buffer)); |
Heinrich Schuchardt | 7dc10c9 | 2019-09-13 18:20:40 +0200 | [diff] [blame] | 3915 | if (r != EFI_SUCCESS) { |
| 3916 | r = EFI_DEVICE_ERROR; |
| 3917 | goto out; |
| 3918 | } |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3919 | } |
| 3920 | /* Remove the driver */ |
Heinrich Schuchardt | 314bed6 | 2020-10-28 18:45:47 +0100 | [diff] [blame] | 3921 | if (!child_handle || sole_child) { |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3922 | r = EFI_CALL(binding_protocol->stop(binding_protocol, |
| 3923 | controller_handle, |
| 3924 | 0, NULL)); |
Heinrich Schuchardt | 7dc10c9 | 2019-09-13 18:20:40 +0200 | [diff] [blame] | 3925 | if (r != EFI_SUCCESS) { |
| 3926 | r = EFI_DEVICE_ERROR; |
| 3927 | goto out; |
| 3928 | } |
| 3929 | } |
Heinrich Schuchardt | ef18576 | 2022-10-07 15:18:15 +0200 | [diff] [blame] | 3930 | efi_close_protocol(driver_image_handle, |
| 3931 | &efi_guid_driver_binding_protocol, |
| 3932 | driver_image_handle, NULL); |
Heinrich Schuchardt | 7dc10c9 | 2019-09-13 18:20:40 +0200 | [diff] [blame] | 3933 | r = EFI_SUCCESS; |
Heinrich Schuchardt | 3f9b004 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3934 | out: |
| 3935 | if (!child_handle) |
| 3936 | free(child_handle_buffer); |
| 3937 | return EFI_EXIT(r); |
| 3938 | } |
| 3939 | |
Heinrich Schuchardt | 640adad | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 3940 | static struct efi_boot_services efi_boot_services = { |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3941 | .hdr = { |
Heinrich Schuchardt | 112f243 | 2018-06-28 12:45:27 +0200 | [diff] [blame] | 3942 | .signature = EFI_BOOT_SERVICES_SIGNATURE, |
| 3943 | .revision = EFI_SPECIFICATION_VERSION, |
Heinrich Schuchardt | 71c846a | 2018-06-28 12:45:29 +0200 | [diff] [blame] | 3944 | .headersize = sizeof(struct efi_boot_services), |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3945 | }, |
| 3946 | .raise_tpl = efi_raise_tpl, |
| 3947 | .restore_tpl = efi_restore_tpl, |
| 3948 | .allocate_pages = efi_allocate_pages_ext, |
| 3949 | .free_pages = efi_free_pages_ext, |
| 3950 | .get_memory_map = efi_get_memory_map_ext, |
Stefan Brüns | ead1274 | 2016-10-09 22:17:18 +0200 | [diff] [blame] | 3951 | .allocate_pool = efi_allocate_pool_ext, |
Stefan Brüns | 42417bc | 2016-10-09 22:17:26 +0200 | [diff] [blame] | 3952 | .free_pool = efi_free_pool_ext, |
xypron.glpk@gmx.de | 49deb45 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 3953 | .create_event = efi_create_event_ext, |
xypron.glpk@gmx.de | bfc7246 | 2017-07-18 20:17:21 +0200 | [diff] [blame] | 3954 | .set_timer = efi_set_timer_ext, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3955 | .wait_for_event = efi_wait_for_event, |
xypron.glpk@gmx.de | c684159 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 3956 | .signal_event = efi_signal_event_ext, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3957 | .close_event = efi_close_event, |
| 3958 | .check_event = efi_check_event, |
Heinrich Schuchardt | 1760ef5 | 2017-11-06 21:17:44 +0100 | [diff] [blame] | 3959 | .install_protocol_interface = efi_install_protocol_interface, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3960 | .reinstall_protocol_interface = efi_reinstall_protocol_interface, |
Heinrich Schuchardt | cd53408 | 2017-11-06 21:17:45 +0100 | [diff] [blame] | 3961 | .uninstall_protocol_interface = efi_uninstall_protocol_interface, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3962 | .handle_protocol = efi_handle_protocol, |
| 3963 | .reserved = NULL, |
| 3964 | .register_protocol_notify = efi_register_protocol_notify, |
xypron.glpk@gmx.de | 2632958 | 2017-07-11 22:06:21 +0200 | [diff] [blame] | 3965 | .locate_handle = efi_locate_handle_ext, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3966 | .locate_device_path = efi_locate_device_path, |
Alexander Graf | 488bf12 | 2016-08-19 01:23:24 +0200 | [diff] [blame] | 3967 | .install_configuration_table = efi_install_configuration_table_ext, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3968 | .load_image = efi_load_image, |
| 3969 | .start_image = efi_start_image, |
Alexander Graf | a86aeaf | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 3970 | .exit = efi_exit, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3971 | .unload_image = efi_unload_image, |
| 3972 | .exit_boot_services = efi_exit_boot_services, |
| 3973 | .get_next_monotonic_count = efi_get_next_monotonic_count, |
| 3974 | .stall = efi_stall, |
| 3975 | .set_watchdog_timer = efi_set_watchdog_timer, |
| 3976 | .connect_controller = efi_connect_controller, |
| 3977 | .disconnect_controller = efi_disconnect_controller, |
| 3978 | .open_protocol = efi_open_protocol, |
Heinrich Schuchardt | ef18576 | 2022-10-07 15:18:15 +0200 | [diff] [blame] | 3979 | .close_protocol = efi_close_protocol_ext, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3980 | .open_protocol_information = efi_open_protocol_information, |
| 3981 | .protocols_per_handle = efi_protocols_per_handle, |
| 3982 | .locate_handle_buffer = efi_locate_handle_buffer, |
| 3983 | .locate_protocol = efi_locate_protocol, |
Heinrich Schuchardt | ab9efa9 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 3984 | .install_multiple_protocol_interfaces = |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 3985 | efi_install_multiple_protocol_interfaces_ext, |
Heinrich Schuchardt | ab9efa9 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 3986 | .uninstall_multiple_protocol_interfaces = |
Ilias Apalodimas | 05c4c9e | 2022-10-06 16:08:46 +0300 | [diff] [blame] | 3987 | efi_uninstall_multiple_protocol_interfaces_ext, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3988 | .calculate_crc32 = efi_calculate_crc32, |
| 3989 | .copy_mem = efi_copy_mem, |
| 3990 | .set_mem = efi_set_mem, |
Heinrich Schuchardt | 9f0930e | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 3991 | .create_event_ex = efi_create_event_ex, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3992 | }; |
| 3993 | |
Simon Glass | 156ccbc | 2022-01-23 12:55:12 -0700 | [diff] [blame] | 3994 | static u16 __efi_runtime_data firmware_vendor[] = u"Das U-Boot"; |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3995 | |
Alexander Graf | 3c63db9 | 2016-10-14 13:45:30 +0200 | [diff] [blame] | 3996 | struct efi_system_table __efi_runtime_data systab = { |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3997 | .hdr = { |
| 3998 | .signature = EFI_SYSTEM_TABLE_SIGNATURE, |
Heinrich Schuchardt | 112f243 | 2018-06-28 12:45:27 +0200 | [diff] [blame] | 3999 | .revision = EFI_SPECIFICATION_VERSION, |
Heinrich Schuchardt | 71c846a | 2018-06-28 12:45:29 +0200 | [diff] [blame] | 4000 | .headersize = sizeof(struct efi_system_table), |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 4001 | }, |
Heinrich Schuchardt | 0b38653 | 2018-06-28 12:45:30 +0200 | [diff] [blame] | 4002 | .fw_vendor = firmware_vendor, |
| 4003 | .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8, |
Heinrich Schuchardt | 3c783bf | 2019-06-15 14:51:06 +0200 | [diff] [blame] | 4004 | .runtime = &efi_runtime_services, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 4005 | .nr_tables = 0, |
Heinrich Schuchardt | 4182a12 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 4006 | .tables = NULL, |
Alexander Graf | bee9116 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 4007 | }; |
Heinrich Schuchardt | 640adad | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 4008 | |
| 4009 | /** |
| 4010 | * efi_initialize_system_table() - Initialize system table |
| 4011 | * |
Heinrich Schuchardt | 0414359 | 2018-09-03 05:00:43 +0200 | [diff] [blame] | 4012 | * Return: status code |
Heinrich Schuchardt | 640adad | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 4013 | */ |
| 4014 | efi_status_t efi_initialize_system_table(void) |
| 4015 | { |
Heinrich Schuchardt | 4182a12 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 4016 | efi_status_t ret; |
| 4017 | |
| 4018 | /* Allocate configuration table array */ |
| 4019 | ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA, |
| 4020 | EFI_MAX_CONFIGURATION_TABLES * |
| 4021 | sizeof(struct efi_configuration_table), |
| 4022 | (void **)&systab.tables); |
| 4023 | |
Heinrich Schuchardt | 93148eb | 2019-06-29 02:00:16 +0200 | [diff] [blame] | 4024 | /* |
| 4025 | * These entries will be set to NULL in ExitBootServices(). To avoid |
| 4026 | * relocation in SetVirtualAddressMap(), set them dynamically. |
| 4027 | */ |
Heinrich Schuchardt | 60bba6e | 2023-01-04 05:56:09 +0100 | [diff] [blame] | 4028 | systab.con_in_handle = efi_root; |
Heinrich Schuchardt | 93148eb | 2019-06-29 02:00:16 +0200 | [diff] [blame] | 4029 | systab.con_in = &efi_con_in; |
Heinrich Schuchardt | 60bba6e | 2023-01-04 05:56:09 +0100 | [diff] [blame] | 4030 | systab.con_out_handle = efi_root; |
Heinrich Schuchardt | 93148eb | 2019-06-29 02:00:16 +0200 | [diff] [blame] | 4031 | systab.con_out = &efi_con_out; |
Heinrich Schuchardt | 60bba6e | 2023-01-04 05:56:09 +0100 | [diff] [blame] | 4032 | systab.stderr_handle = efi_root; |
Heinrich Schuchardt | 93148eb | 2019-06-29 02:00:16 +0200 | [diff] [blame] | 4033 | systab.std_err = &efi_con_out; |
| 4034 | systab.boottime = &efi_boot_services; |
| 4035 | |
Heinrich Schuchardt | b72aaa8 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 4036 | /* Set CRC32 field in table headers */ |
Heinrich Schuchardt | 640adad | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 4037 | efi_update_table_header_crc32(&systab.hdr); |
| 4038 | efi_update_table_header_crc32(&efi_runtime_services.hdr); |
| 4039 | efi_update_table_header_crc32(&efi_boot_services.hdr); |
Heinrich Schuchardt | 4182a12 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 4040 | |
| 4041 | return ret; |
Heinrich Schuchardt | 640adad | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 4042 | } |