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