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