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