Tom Rini | 70df9d6 | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | c15d921 | 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 | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 8 | #include <common.h> |
Heinrich Schuchardt | 368ca64 | 2017-10-05 16:14:14 +0200 | [diff] [blame] | 9 | #include <div64.h> |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 10 | #include <efi_loader.h> |
Rob Clark | 15f3d74 | 2017-09-13 18:05:37 -0400 | [diff] [blame] | 11 | #include <environment.h> |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 12 | #include <malloc.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 13 | #include <linux/libfdt_env.h> |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 14 | #include <u-boot/crc.h> |
| 15 | #include <bootm.h> |
Heinrich Schuchardt | 3758752 | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 16 | #include <pe.h> |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 17 | #include <watchdog.h> |
| 18 | |
| 19 | DECLARE_GLOBAL_DATA_PTR; |
| 20 | |
Heinrich Schuchardt | 0c150ca | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 21 | /* Task priority level */ |
Heinrich Schuchardt | f8d4ec3 | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 22 | static efi_uintn_t efi_tpl = TPL_APPLICATION; |
Heinrich Schuchardt | 0c150ca | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 23 | |
Alexander Graf | c15d921 | 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 | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 27 | /* List of all events */ |
Heinrich Schuchardt | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 28 | LIST_HEAD(efi_events); |
Heinrich Schuchardt | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 29 | |
Heinrich Schuchardt | 6eec42d | 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 | 8efe079 | 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 | fa5246b | 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 | cdfe696 | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 44 | #ifdef CONFIG_ARM |
Alexander Graf | c15d921 | 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 | cdfe696 | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 52 | #endif |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 53 | |
Heinrich Schuchardt | 7250623 | 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 | e7896c3 | 2017-07-27 08:04:19 -0400 | [diff] [blame] | 56 | static int nesting_level; |
Heinrich Schuchardt | 44ab21b | 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 | 760255f | 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 | 86789d5 | 2017-07-27 08:04:18 -0400 | [diff] [blame] | 62 | |
Heinrich Schuchardt | 672d99e | 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 | b7cb8b4 | 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 | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 83 | |
Rob Clark | 86789d5 | 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 | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 106 | /* Called from do_bootefi_exec() */ |
| 107 | void efi_save_gd(void) |
| 108 | { |
Simon Glass | cdfe696 | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 109 | #ifdef CONFIG_ARM |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 110 | efi_gd = gd; |
Simon Glass | cdfe696 | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 111 | #endif |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 112 | } |
| 113 | |
Rob Clark | 86789d5 | 2017-07-27 08:04:18 -0400 | [diff] [blame] | 114 | /* |
Mario Six | 8fac291 | 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 | cf70a73 | 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 | 86789d5 | 2017-07-27 08:04:18 -0400 | [diff] [blame] | 118 | */ |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 119 | void efi_restore_gd(void) |
| 120 | { |
Simon Glass | cdfe696 | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 121 | #ifdef CONFIG_ARM |
Alexander Graf | c15d921 | 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 | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 125 | gd = efi_gd; |
Simon Glass | cdfe696 | 2016-09-25 15:27:35 -0600 | [diff] [blame] | 126 | #endif |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 127 | } |
| 128 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 129 | /** |
Mario Six | 8fac291 | 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 | 091cf43 | 2018-01-24 19:21:36 +0100 | [diff] [blame] | 132 | * |
Heinrich Schuchardt | 5999917 | 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 | 8fac291 | 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 | e7896c3 | 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 | 9106459 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 143 | |
Rob Clark | e7896c3 | 2017-07-27 08:04:19 -0400 | [diff] [blame] | 144 | level = min(max, level * 2); |
| 145 | return &indent[max - level]; |
| 146 | } |
| 147 | |
Heinrich Schuchardt | 4d66489 | 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 | e7896c3 | 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 | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 163 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 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 | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 173 | * |
| 174 | * For the SignalEvent service see efi_signal_event_ext. |
| 175 | * |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 176 | */ |
Heinrich Schuchardt | bf7f169 | 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 | 3070823 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 178 | { |
Heinrich Schuchardt | 8b11a8a | 2017-09-15 10:06:13 +0200 | [diff] [blame] | 179 | if (event->notify_function) { |
Heinrich Schuchardt | 1bbee39 | 2017-10-04 15:03:24 +0200 | [diff] [blame] | 180 | event->is_queued = true; |
Heinrich Schuchardt | 0c150ca | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 181 | /* Check TPL */ |
Heinrich Schuchardt | d8b878a | 2018-01-19 20:24:51 +0100 | [diff] [blame] | 182 | if (check_tpl && efi_tpl >= event->notify_tpl) |
Heinrich Schuchardt | 0c150ca | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 183 | return; |
Heinrich Schuchardt | 91e5b8a | 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 | 3070823 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 186 | } |
Heinrich Schuchardt | 1bbee39 | 2017-10-04 15:03:24 +0200 | [diff] [blame] | 187 | event->is_queued = false; |
xypron.glpk@gmx.de | 3070823 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 188 | } |
| 189 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 190 | /** |
Heinrich Schuchardt | 7f0f005 | 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 | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 194 | * Return: status code |
Heinrich Schuchardt | 7f0f005 | 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 | 8fac291 | 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 | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 213 | * |
Mario Six | 8fac291 | 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 | bf7f169 | 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 | bf7f169 | 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 | 66ddc2e | 2019-05-05 00:07:34 +0200 | [diff] [blame] | 245 | } else { |
Heinrich Schuchardt | bf7f169 | 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 | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 252 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 255 | * |
| 256 | * This function implements the RaiseTpl service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 257 | * |
| 258 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 259 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 260 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 261 | * Return: old value of the task priority level |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 262 | */ |
Heinrich Schuchardt | f8d4ec3 | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 263 | static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 264 | { |
Heinrich Schuchardt | f8d4ec3 | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 265 | efi_uintn_t old_tpl = efi_tpl; |
Heinrich Schuchardt | 0c150ca | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 266 | |
xypron.glpk@gmx.de | 48df209 | 2017-07-18 20:17:19 +0200 | [diff] [blame] | 267 | EFI_ENTRY("0x%zx", new_tpl); |
Heinrich Schuchardt | 0c150ca | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 268 | |
| 269 | if (new_tpl < efi_tpl) |
| 270 | debug("WARNING: new_tpl < current_tpl in %s\n", __func__); |
| 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 | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 277 | } |
| 278 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 279 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 282 | * |
| 283 | * This function implements the RestoreTpl service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 284 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 285 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 286 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 287 | */ |
Heinrich Schuchardt | f8d4ec3 | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 288 | static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 289 | { |
xypron.glpk@gmx.de | 48df209 | 2017-07-18 20:17:19 +0200 | [diff] [blame] | 290 | EFI_ENTRY("0x%zx", old_tpl); |
Heinrich Schuchardt | 0c150ca | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 291 | |
| 292 | if (old_tpl > efi_tpl) |
| 293 | debug("WARNING: old_tpl > current_tpl in %s\n", __func__); |
| 294 | efi_tpl = old_tpl; |
| 295 | if (efi_tpl > TPL_HIGH_LEVEL) |
| 296 | efi_tpl = TPL_HIGH_LEVEL; |
| 297 | |
Heinrich Schuchardt | 59b2095 | 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 | 0c150ca | 2017-09-15 10:06:16 +0200 | [diff] [blame] | 303 | EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 304 | } |
| 305 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 306 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 312 | * |
| 313 | * This function implements the AllocatePages service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 314 | * |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 319 | */ |
Masahiro Yamada | b2a05c1 | 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 | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 321 | efi_uintn_t pages, |
Masahiro Yamada | b2a05c1 | 2017-06-22 17:49:03 +0900 | [diff] [blame] | 322 | uint64_t *memory) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 323 | { |
| 324 | efi_status_t r; |
| 325 | |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 326 | EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory); |
Alexander Graf | c15d921 | 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 | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 331 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 335 | * |
| 336 | * This function implements the FreePages service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 337 | * |
| 338 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 339 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 340 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 341 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 342 | */ |
Masahiro Yamada | b2a05c1 | 2017-06-22 17:49:03 +0900 | [diff] [blame] | 343 | static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 344 | efi_uintn_t pages) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 345 | { |
| 346 | efi_status_t r; |
| 347 | |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 348 | EFI_ENTRY("%llx, 0x%zx", memory, pages); |
Alexander Graf | c15d921 | 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 | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 353 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 361 | * |
| 362 | * This function implements the GetMemoryMap service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 363 | * |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 368 | */ |
Masahiro Yamada | b2a05c1 | 2017-06-22 17:49:03 +0900 | [diff] [blame] | 369 | static efi_status_t EFIAPI efi_get_memory_map_ext( |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 370 | efi_uintn_t *memory_map_size, |
Masahiro Yamada | b2a05c1 | 2017-06-22 17:49:03 +0900 | [diff] [blame] | 371 | struct efi_mem_desc *memory_map, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 372 | efi_uintn_t *map_key, |
| 373 | efi_uintn_t *descriptor_size, |
Masahiro Yamada | b2a05c1 | 2017-06-22 17:49:03 +0900 | [diff] [blame] | 374 | uint32_t *descriptor_version) |
Alexander Graf | c15d921 | 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 | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 385 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 390 | * |
| 391 | * This function implements the AllocatePool service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 392 | * |
| 393 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 394 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 395 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 396 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 397 | */ |
Stefan Brüns | 5a09aef | 2016-10-09 22:17:18 +0200 | [diff] [blame] | 398 | static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 399 | efi_uintn_t size, |
Stefan Brüns | 5a09aef | 2016-10-09 22:17:18 +0200 | [diff] [blame] | 400 | void **buffer) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 401 | { |
Alexander Graf | 1c34fa8 | 2016-03-24 01:37:37 +0100 | [diff] [blame] | 402 | efi_status_t r; |
| 403 | |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 404 | EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer); |
Stefan Brüns | 5a09aef | 2016-10-09 22:17:18 +0200 | [diff] [blame] | 405 | r = efi_allocate_pool(pool_type, size, buffer); |
Alexander Graf | 1c34fa8 | 2016-03-24 01:37:37 +0100 | [diff] [blame] | 406 | return EFI_EXIT(r); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 407 | } |
| 408 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 409 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 412 | * |
| 413 | * This function implements the FreePool service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 414 | * |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 419 | */ |
Stefan Brüns | 67b67d9 | 2016-10-09 22:17:26 +0200 | [diff] [blame] | 420 | static efi_status_t EFIAPI efi_free_pool_ext(void *buffer) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 421 | { |
Alexander Graf | 1c34fa8 | 2016-03-24 01:37:37 +0100 | [diff] [blame] | 422 | efi_status_t r; |
| 423 | |
| 424 | EFI_ENTRY("%p", buffer); |
Stefan Brüns | 67b67d9 | 2016-10-09 22:17:26 +0200 | [diff] [blame] | 425 | r = efi_free_pool(buffer); |
Alexander Graf | 1c34fa8 | 2016-03-24 01:37:37 +0100 | [diff] [blame] | 426 | return EFI_EXIT(r); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 427 | } |
| 428 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 429 | /** |
Heinrich Schuchardt | 30cd046 | 2019-05-01 09:42:39 +0200 | [diff] [blame] | 430 | * efi_add_handle() - add a new handle to the object list |
| 431 | * |
| 432 | * @handle: handle to be added |
Heinrich Schuchardt | 967d7de | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 433 | * |
Heinrich Schuchardt | 30cd046 | 2019-05-01 09:42:39 +0200 | [diff] [blame] | 434 | * The protocols list is initialized. The handle is added to the list of known |
| 435 | * UEFI objects. |
Heinrich Schuchardt | 967d7de | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 436 | */ |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 437 | void efi_add_handle(efi_handle_t handle) |
Heinrich Schuchardt | 967d7de | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 438 | { |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 439 | if (!handle) |
Heinrich Schuchardt | 967d7de | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 440 | return; |
Heinrich Schuchardt | adb50d0 | 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 | 967d7de | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 443 | } |
| 444 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 445 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 446 | * efi_create_handle() - create handle |
| 447 | * @handle: new handle |
Heinrich Schuchardt | eb6106e | 2017-10-26 19:25:49 +0200 | [diff] [blame] | 448 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 449 | * Return: status code |
Heinrich Schuchardt | eb6106e | 2017-10-26 19:25:49 +0200 | [diff] [blame] | 450 | */ |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 451 | efi_status_t efi_create_handle(efi_handle_t *handle) |
Heinrich Schuchardt | cd522cb | 2017-08-27 00:51:09 +0200 | [diff] [blame] | 452 | { |
| 453 | struct efi_object *obj; |
Heinrich Schuchardt | cd522cb | 2017-08-27 00:51:09 +0200 | [diff] [blame] | 454 | |
Heinrich Schuchardt | ae1d206 | 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 | 967d7de | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 459 | efi_add_handle(obj); |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 460 | *handle = obj; |
Heinrich Schuchardt | ae1d206 | 2018-05-27 16:47:21 +0200 | [diff] [blame] | 461 | |
| 462 | return EFI_SUCCESS; |
Heinrich Schuchardt | cd522cb | 2017-08-27 00:51:09 +0200 | [diff] [blame] | 463 | } |
| 464 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 465 | /** |
Mario Six | 8fac291 | 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 | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 470 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 471 | * Return: status code |
Heinrich Schuchardt | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 472 | */ |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 473 | efi_status_t efi_search_protocol(const efi_handle_t handle, |
Heinrich Schuchardt | 7d13546 | 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 | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 498 | /** |
Mario Six | 8fac291 | 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 | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 503 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 504 | * Return: status code |
Heinrich Schuchardt | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 505 | */ |
Heinrich Schuchardt | b7cb8b4 | 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 | 7d13546 | 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 | b27594d | 2018-05-11 12:09:21 +0200 | [diff] [blame] | 518 | if (handler->protocol_interface != protocol_interface) |
| 519 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 7d13546 | 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 | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 525 | /** |
Mario Six | 8fac291 | 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 | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 528 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 529 | * Return: status code |
Heinrich Schuchardt | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 530 | */ |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 531 | efi_status_t efi_remove_all_protocols(const efi_handle_t handle) |
Heinrich Schuchardt | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 532 | { |
| 533 | struct efi_object *efiobj; |
Heinrich Schuchardt | a84731d | 2018-01-11 08:15:55 +0100 | [diff] [blame] | 534 | struct efi_handler *protocol; |
| 535 | struct efi_handler *pos; |
Heinrich Schuchardt | 7d13546 | 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 | a84731d | 2018-01-11 08:15:55 +0100 | [diff] [blame] | 540 | list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) { |
Heinrich Schuchardt | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 541 | efi_status_t ret; |
| 542 | |
Heinrich Schuchardt | 7d13546 | 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 | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 551 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 552 | * efi_delete_handle() - delete handle |
Heinrich Schuchardt | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 553 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 554 | * @obj: handle to delete |
Heinrich Schuchardt | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 555 | */ |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 556 | void efi_delete_handle(efi_handle_t handle) |
Heinrich Schuchardt | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 557 | { |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 558 | if (!handle) |
Heinrich Schuchardt | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 559 | return; |
Heinrich Schuchardt | adb50d0 | 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 | 7d13546 | 2017-12-04 18:03:02 +0100 | [diff] [blame] | 563 | } |
| 564 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 565 | /** |
Mario Six | 8fac291 | 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 | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 568 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 569 | * Return: status code |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 570 | */ |
Heinrich Schuchardt | 370c7a8 | 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 | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 583 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 584 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 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 | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 598 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 599 | */ |
Heinrich Schuchardt | f8d4ec3 | 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 | 852a0e177 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 601 | void (EFIAPI *notify_function) ( |
xypron.glpk@gmx.de | cdbf3ac | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 602 | struct efi_event *event, |
| 603 | void *context), |
Heinrich Schuchardt | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 604 | void *notify_context, efi_guid_t *group, |
| 605 | struct efi_event **event) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 606 | { |
Heinrich Schuchardt | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 607 | struct efi_event *evt; |
xypron.glpk@gmx.de | 3070823 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 608 | |
Jonathan Gray | 7758b21 | 2017-03-12 19:26:07 +1100 | [diff] [blame] | 609 | if (event == NULL) |
xypron.glpk@gmx.de | 852a0e177 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 610 | return EFI_INVALID_PARAMETER; |
Jonathan Gray | 7758b21 | 2017-03-12 19:26:07 +1100 | [diff] [blame] | 611 | |
Heinrich Schuchardt | 7f0f005 | 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 | 852a0e177 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 623 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 7f0f005 | 2018-07-02 12:53:52 +0200 | [diff] [blame] | 624 | } |
Jonathan Gray | 7758b21 | 2017-03-12 19:26:07 +1100 | [diff] [blame] | 625 | |
AKASHI Takahiro | 3f3835d | 2018-08-10 15:36:32 +0900 | [diff] [blame] | 626 | if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) && |
Heinrich Schuchardt | ad7a215 | 2019-04-25 07:30:41 +0200 | [diff] [blame] | 627 | (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS)) |
xypron.glpk@gmx.de | 852a0e177 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 628 | return EFI_INVALID_PARAMETER; |
Jonathan Gray | 7758b21 | 2017-03-12 19:26:07 +1100 | [diff] [blame] | 629 | |
Heinrich Schuchardt | 370c7a8 | 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 | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 637 | evt->group = group; |
Heinrich Schuchardt | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 638 | /* Disable timers on boot up */ |
Heinrich Schuchardt | 370c7a8 | 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 | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 645 | } |
| 646 | |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 647 | /* |
Mario Six | 8fac291 | 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 | 717c458 | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 655 | * |
| 656 | * This function implements the CreateEventEx service. |
Heinrich Schuchardt | 717c458 | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 657 | * |
Mario Six | 8fac291 | 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 | 717c458 | 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 | ce66499 | 2019-05-04 10:12:50 +0200 | [diff] [blame] | 671 | efi_status_t ret; |
| 672 | |
Heinrich Schuchardt | 717c458 | 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 | ce66499 | 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 | 717c458 | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 691 | } |
| 692 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 693 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 700 | * |
| 701 | * This function implements the CreateEvent service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 702 | * |
| 703 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 704 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 705 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 706 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 707 | */ |
xypron.glpk@gmx.de | 852a0e177 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 708 | static efi_status_t EFIAPI efi_create_event_ext( |
Heinrich Schuchardt | f8d4ec3 | 2017-11-06 21:17:47 +0100 | [diff] [blame] | 709 | uint32_t type, efi_uintn_t notify_tpl, |
xypron.glpk@gmx.de | 852a0e177 | 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 | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 718 | notify_context, NULL, event)); |
xypron.glpk@gmx.de | 852a0e177 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 719 | } |
| 720 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 721 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 722 | * efi_timer_check() - check if a timer event has occurred |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 723 | * |
Heinrich Schuchardt | a40db6e | 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 | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 727 | * Our timers have to work without interrupts, so we check whenever keyboard |
Heinrich Schuchardt | a40db6e | 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 | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 729 | */ |
| 730 | void efi_timer_check(void) |
| 731 | { |
Heinrich Schuchardt | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 732 | struct efi_event *evt; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 733 | u64 now = timer_get_us(); |
| 734 | |
Heinrich Schuchardt | 370c7a8 | 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 | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 737 | efi_queue_event(evt, true); |
Heinrich Schuchardt | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 738 | if (!(evt->type & EVT_TIMER) || now < evt->trigger_next) |
Heinrich Schuchardt | 8b11a8a | 2017-09-15 10:06:13 +0200 | [diff] [blame] | 739 | continue; |
Heinrich Schuchardt | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 740 | switch (evt->trigger_type) { |
Heinrich Schuchardt | 8b11a8a | 2017-09-15 10:06:13 +0200 | [diff] [blame] | 741 | case EFI_TIMER_RELATIVE: |
Heinrich Schuchardt | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 742 | evt->trigger_type = EFI_TIMER_STOP; |
Heinrich Schuchardt | 8b11a8a | 2017-09-15 10:06:13 +0200 | [diff] [blame] | 743 | break; |
| 744 | case EFI_TIMER_PERIODIC: |
Heinrich Schuchardt | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 745 | evt->trigger_next += evt->trigger_time; |
Heinrich Schuchardt | 8b11a8a | 2017-09-15 10:06:13 +0200 | [diff] [blame] | 746 | break; |
| 747 | default: |
| 748 | continue; |
xypron.glpk@gmx.de | 3070823 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 749 | } |
Heinrich Schuchardt | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 750 | evt->is_signaled = false; |
Heinrich Schuchardt | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 751 | efi_signal_event(evt, true); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 752 | } |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 753 | WATCHDOG_RESET(); |
| 754 | } |
| 755 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 756 | /** |
Mario Six | 8fac291 | 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 | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 760 | * @trigger_time: trigger period in multiples of 100 ns |
Heinrich Schuchardt | a40db6e | 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 | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 765 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 766 | */ |
xypron.glpk@gmx.de | 3ecc6bd | 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 | a587fd1 | 2017-07-18 20:17:21 +0200 | [diff] [blame] | 768 | uint64_t trigger_time) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 769 | { |
Heinrich Schuchardt | 370c7a8 | 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 | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 773 | |
xypron.glpk@gmx.de | 44c4be0 | 2017-07-18 20:17:23 +0200 | [diff] [blame] | 774 | /* |
Heinrich Schuchardt | cf70a73 | 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 | 44c4be0 | 2017-07-18 20:17:23 +0200 | [diff] [blame] | 777 | */ |
Heinrich Schuchardt | 368ca64 | 2017-10-05 16:14:14 +0200 | [diff] [blame] | 778 | do_div(trigger_time, 10); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 779 | |
Heinrich Schuchardt | 370c7a8 | 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 | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 790 | } |
Heinrich Schuchardt | 370c7a8 | 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; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 795 | } |
| 796 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 797 | /** |
Mario Six | 8fac291 | 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 | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 802 | * @trigger_time: trigger period in multiples of 100 ns |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 803 | * |
| 804 | * This function implements the SetTimer service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 805 | * |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 811 | */ |
xypron.glpk@gmx.de | 3ecc6bd | 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 | a587fd1 | 2017-07-18 20:17:21 +0200 | [diff] [blame] | 815 | { |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 816 | EFI_ENTRY("%p, %d, %llx", event, type, trigger_time); |
xypron.glpk@gmx.de | a587fd1 | 2017-07-18 20:17:21 +0200 | [diff] [blame] | 817 | return EFI_EXIT(efi_set_timer(event, type, trigger_time)); |
| 818 | } |
| 819 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 820 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 825 | * |
| 826 | * This function implements the WaitForEvent service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 827 | * |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 832 | */ |
Heinrich Schuchardt | 798a441 | 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 | cdbf3ac | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 834 | struct efi_event **event, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 835 | efi_uintn_t *index) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 836 | { |
Heinrich Schuchardt | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 837 | int i; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 838 | |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 839 | EFI_ENTRY("%zd, %p, %p", num_events, event, index); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 840 | |
xypron.glpk@gmx.de | 3070823 | 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 | 0c150ca | 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 | 3070823 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 847 | for (i = 0; i < num_events; ++i) { |
Heinrich Schuchardt | 370c7a8 | 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 | 3070823 | 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 | 1bbee39 | 2017-10-04 15:03:24 +0200 | [diff] [blame] | 852 | if (!event[i]->is_signaled) |
Heinrich Schuchardt | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 853 | efi_queue_event(event[i], true); |
xypron.glpk@gmx.de | 3070823 | 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 | 1bbee39 | 2017-10-04 15:03:24 +0200 | [diff] [blame] | 859 | if (event[i]->is_signaled) |
xypron.glpk@gmx.de | 3070823 | 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 | 1bbee39 | 2017-10-04 15:03:24 +0200 | [diff] [blame] | 871 | event[i]->is_signaled = false; |
xypron.glpk@gmx.de | 3070823 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 872 | if (index) |
| 873 | *index = i; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 874 | |
| 875 | return EFI_EXIT(EFI_SUCCESS); |
| 876 | } |
| 877 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 878 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 881 | * |
| 882 | * This function implements the SignalEvent service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 883 | * |
| 884 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 885 | * details. |
Heinrich Schuchardt | a40db6e | 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 | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 890 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 891 | */ |
xypron.glpk@gmx.de | 3070823 | 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 | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 893 | { |
| 894 | EFI_ENTRY("%p", event); |
Heinrich Schuchardt | 370c7a8 | 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 | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 897 | efi_signal_event(event, true); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 898 | return EFI_EXIT(EFI_SUCCESS); |
| 899 | } |
| 900 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 901 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 902 | * efi_close_event() - close an EFI event |
| 903 | * @event: event to close |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 904 | * |
| 905 | * This function implements the CloseEvent service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 906 | * |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 911 | */ |
xypron.glpk@gmx.de | cdbf3ac | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 912 | static efi_status_t EFIAPI efi_close_event(struct efi_event *event) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 913 | { |
Heinrich Schuchardt | 6eec42d | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 914 | struct efi_register_notify_event *item, *next; |
| 915 | |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 916 | EFI_ENTRY("%p", event); |
Heinrich Schuchardt | 370c7a8 | 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 | 6eec42d | 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 | 370c7a8 | 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 | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 932 | } |
| 933 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 934 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 937 | * |
| 938 | * This function implements the CheckEvent service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 939 | * |
| 940 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 941 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 942 | * |
Mario Six | 8fac291 | 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. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 945 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 946 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 947 | */ |
xypron.glpk@gmx.de | cdbf3ac | 2017-07-18 20:17:17 +0200 | [diff] [blame] | 948 | static efi_status_t EFIAPI efi_check_event(struct efi_event *event) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 949 | { |
| 950 | EFI_ENTRY("%p", event); |
xypron.glpk@gmx.de | 3070823 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 951 | efi_timer_check(); |
Heinrich Schuchardt | 370c7a8 | 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 | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 956 | efi_queue_event(event, true); |
Heinrich Schuchardt | 370c7a8 | 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 | 3070823 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 960 | } |
Heinrich Schuchardt | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 961 | return EFI_EXIT(EFI_NOT_READY); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 962 | } |
| 963 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 964 | /** |
Mario Six | 8fac291 | 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 | 37ebcba | 2017-10-18 18:13:03 +0200 | [diff] [blame] | 967 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 968 | * Return: EFI object |
Heinrich Schuchardt | 37ebcba | 2017-10-18 18:13:03 +0200 | [diff] [blame] | 969 | */ |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 970 | struct efi_object *efi_search_obj(const efi_handle_t handle) |
Heinrich Schuchardt | 37ebcba | 2017-10-18 18:13:03 +0200 | [diff] [blame] | 971 | { |
Heinrich Schuchardt | 274cc87 | 2017-11-06 21:17:50 +0100 | [diff] [blame] | 972 | struct efi_object *efiobj; |
Heinrich Schuchardt | 37ebcba | 2017-10-18 18:13:03 +0200 | [diff] [blame] | 973 | |
Heinrich Schuchardt | 5d8231b | 2019-05-05 10:37:51 +0200 | [diff] [blame^] | 974 | if (!handle) |
| 975 | return NULL; |
| 976 | |
Heinrich Schuchardt | 274cc87 | 2017-11-06 21:17:50 +0100 | [diff] [blame] | 977 | list_for_each_entry(efiobj, &efi_obj_list, link) { |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 978 | if (efiobj == handle) |
Heinrich Schuchardt | 37ebcba | 2017-10-18 18:13:03 +0200 | [diff] [blame] | 979 | return efiobj; |
| 980 | } |
Heinrich Schuchardt | 37ebcba | 2017-10-18 18:13:03 +0200 | [diff] [blame] | 981 | return NULL; |
| 982 | } |
| 983 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 984 | /** |
Mario Six | 8fac291 | 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 | a277d3a | 2018-01-11 08:15:57 +0100 | [diff] [blame] | 988 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 989 | * Return: open protocol info entry |
Heinrich Schuchardt | a277d3a | 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 | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1005 | /** |
Mario Six | 8fac291 | 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 | a277d3a | 2018-01-11 08:15:57 +0100 | [diff] [blame] | 1008 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1009 | * Return: status code |
Heinrich Schuchardt | a277d3a | 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 | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1019 | /** |
Mario Six | 8fac291 | 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 | 5aef61d | 2017-10-26 19:25:53 +0200 | [diff] [blame] | 1024 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1025 | * Return: status code |
Heinrich Schuchardt | 5aef61d | 2017-10-26 19:25:53 +0200 | [diff] [blame] | 1026 | */ |
Heinrich Schuchardt | b7cb8b4 | 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 | 5aef61d | 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 | 6eec42d | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1034 | struct efi_register_notify_event *event; |
Heinrich Schuchardt | 5aef61d | 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 | 99ce206 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 1045 | handler->guid = protocol; |
| 1046 | handler->protocol_interface = protocol_interface; |
Heinrich Schuchardt | a277d3a | 2018-01-11 08:15:57 +0100 | [diff] [blame] | 1047 | INIT_LIST_HEAD(&handler->open_infos); |
Heinrich Schuchardt | 99ce206 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 1048 | list_add_tail(&handler->link, &efiobj->protocols); |
Heinrich Schuchardt | 6eec42d | 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 | 3d2abc3 | 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 | 99ce206 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 1058 | return EFI_SUCCESS; |
Heinrich Schuchardt | 5aef61d | 2017-10-26 19:25:53 +0200 | [diff] [blame] | 1059 | } |
| 1060 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1061 | /** |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1068 | * |
Heinrich Schuchardt | 0a27ac8 | 2017-11-06 21:17:44 +0100 | [diff] [blame] | 1069 | * This function implements the InstallProtocolInterface service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1070 | * |
Mario Six | 8fac291 | 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 | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1075 | */ |
Heinrich Schuchardt | 0a27ac8 | 2017-11-06 21:17:44 +0100 | [diff] [blame] | 1076 | static efi_status_t EFIAPI efi_install_protocol_interface( |
Heinrich Schuchardt | 4f94ec5 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 1077 | efi_handle_t *handle, const efi_guid_t *protocol, |
Heinrich Schuchardt | 0a27ac8 | 2017-11-06 21:17:44 +0100 | [diff] [blame] | 1078 | int protocol_interface_type, void *protocol_interface) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1079 | { |
xypron.glpk@gmx.de | 0581fa8 | 2017-07-11 22:06:16 +0200 | [diff] [blame] | 1080 | efi_status_t r; |
| 1081 | |
Heinrich Schuchardt | 0a27ac8 | 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 | 0581fa8 | 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 | cd522cb | 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 | 50f0210 | 2017-10-26 19:25:43 +0200 | [diff] [blame] | 1096 | debug("%sEFI: new handle %p\n", indent_string(nesting_level), |
| 1097 | *handle); |
| 1098 | } else { |
| 1099 | debug("%sEFI: handle %p\n", indent_string(nesting_level), |
| 1100 | *handle); |
xypron.glpk@gmx.de | 0581fa8 | 2017-07-11 22:06:16 +0200 | [diff] [blame] | 1101 | } |
Heinrich Schuchardt | 865d5f3 | 2017-10-26 19:25:54 +0200 | [diff] [blame] | 1102 | /* Add new protocol */ |
| 1103 | r = efi_add_protocol(*handle, protocol, protocol_interface); |
xypron.glpk@gmx.de | 0581fa8 | 2017-07-11 22:06:16 +0200 | [diff] [blame] | 1104 | out: |
Heinrich Schuchardt | 0a27ac8 | 2017-11-06 21:17:44 +0100 | [diff] [blame] | 1105 | return EFI_EXIT(r); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1106 | } |
xypron.glpk@gmx.de | 0581fa8 | 2017-07-11 22:06:16 +0200 | [diff] [blame] | 1107 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1108 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1109 | * efi_get_drivers() - get all drivers associated to a controller |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1110 | * @handle: handle of the controller |
Heinrich Schuchardt | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 1111 | * @protocol: protocol GUID (optional) |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1112 | * @number_of_drivers: number of child controllers |
| 1113 | * @driver_handle_buffer: handles of the the drivers |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1114 | * |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1115 | * The allocated buffer has to be freed with free(). |
| 1116 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1117 | * Return: status code |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1118 | */ |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1119 | static efi_status_t efi_get_drivers(efi_handle_t handle, |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1120 | const efi_guid_t *protocol, |
| 1121 | efi_uintn_t *number_of_drivers, |
| 1122 | efi_handle_t **driver_handle_buffer) |
| 1123 | { |
| 1124 | struct efi_handler *handler; |
| 1125 | struct efi_open_protocol_info_item *item; |
| 1126 | efi_uintn_t count = 0, i; |
| 1127 | bool duplicate; |
| 1128 | |
| 1129 | /* Count all driver associations */ |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1130 | list_for_each_entry(handler, &handle->protocols, link) { |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1131 | if (protocol && guidcmp(handler->guid, protocol)) |
| 1132 | continue; |
| 1133 | list_for_each_entry(item, &handler->open_infos, link) { |
| 1134 | if (item->info.attributes & |
| 1135 | EFI_OPEN_PROTOCOL_BY_DRIVER) |
| 1136 | ++count; |
| 1137 | } |
| 1138 | } |
| 1139 | /* |
| 1140 | * Create buffer. In case of duplicate driver assignments the buffer |
| 1141 | * will be too large. But that does not harm. |
| 1142 | */ |
| 1143 | *number_of_drivers = 0; |
| 1144 | *driver_handle_buffer = calloc(count, sizeof(efi_handle_t)); |
| 1145 | if (!*driver_handle_buffer) |
| 1146 | return EFI_OUT_OF_RESOURCES; |
| 1147 | /* Collect unique driver handles */ |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1148 | list_for_each_entry(handler, &handle->protocols, link) { |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1149 | if (protocol && guidcmp(handler->guid, protocol)) |
| 1150 | continue; |
| 1151 | list_for_each_entry(item, &handler->open_infos, link) { |
| 1152 | if (item->info.attributes & |
| 1153 | EFI_OPEN_PROTOCOL_BY_DRIVER) { |
| 1154 | /* Check this is a new driver */ |
| 1155 | duplicate = false; |
| 1156 | for (i = 0; i < *number_of_drivers; ++i) { |
| 1157 | if ((*driver_handle_buffer)[i] == |
| 1158 | item->info.agent_handle) |
| 1159 | duplicate = true; |
| 1160 | } |
| 1161 | /* Copy handle to buffer */ |
| 1162 | if (!duplicate) { |
| 1163 | i = (*number_of_drivers)++; |
| 1164 | (*driver_handle_buffer)[i] = |
| 1165 | item->info.agent_handle; |
| 1166 | } |
| 1167 | } |
| 1168 | } |
| 1169 | } |
| 1170 | return EFI_SUCCESS; |
| 1171 | } |
| 1172 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1173 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1174 | * efi_disconnect_all_drivers() - disconnect all drivers from a controller |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1175 | * @handle: handle of the controller |
Heinrich Schuchardt | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 1176 | * @protocol: protocol GUID (optional) |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1177 | * @child_handle: handle of the child to destroy |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1178 | * |
| 1179 | * This function implements the DisconnectController service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1180 | * |
| 1181 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1182 | * details. |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1183 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1184 | * Return: status code |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1185 | */ |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1186 | static efi_status_t efi_disconnect_all_drivers |
| 1187 | (efi_handle_t handle, |
| 1188 | const efi_guid_t *protocol, |
| 1189 | efi_handle_t child_handle) |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1190 | { |
| 1191 | efi_uintn_t number_of_drivers; |
| 1192 | efi_handle_t *driver_handle_buffer; |
| 1193 | efi_status_t r, ret; |
| 1194 | |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1195 | ret = efi_get_drivers(handle, protocol, &number_of_drivers, |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1196 | &driver_handle_buffer); |
| 1197 | if (ret != EFI_SUCCESS) |
| 1198 | return ret; |
| 1199 | |
| 1200 | ret = EFI_NOT_FOUND; |
| 1201 | while (number_of_drivers) { |
| 1202 | r = EFI_CALL(efi_disconnect_controller( |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1203 | handle, |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 1204 | driver_handle_buffer[--number_of_drivers], |
| 1205 | child_handle)); |
| 1206 | if (r == EFI_SUCCESS) |
| 1207 | ret = r; |
| 1208 | } |
| 1209 | free(driver_handle_buffer); |
| 1210 | return ret; |
| 1211 | } |
| 1212 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1213 | /** |
Heinrich Schuchardt | 1b45134 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 1214 | * efi_uninstall_protocol() - uninstall protocol interface |
| 1215 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1216 | * @handle: handle from which the protocol shall be removed |
| 1217 | * @protocol: GUID of the protocol to be removed |
| 1218 | * @protocol_interface: interface to be removed |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1219 | * |
Heinrich Schuchardt | 1b45134 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 1220 | * This function DOES NOT delete a handle without installed protocol. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1221 | * |
| 1222 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1223 | */ |
Heinrich Schuchardt | 1b45134 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 1224 | static efi_status_t efi_uninstall_protocol |
| 1225 | (efi_handle_t handle, const efi_guid_t *protocol, |
| 1226 | void *protocol_interface) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1227 | { |
Heinrich Schuchardt | 86637f3 | 2018-01-11 08:16:05 +0100 | [diff] [blame] | 1228 | struct efi_object *efiobj; |
Heinrich Schuchardt | 7538c27 | 2017-10-26 19:25:56 +0200 | [diff] [blame] | 1229 | struct efi_handler *handler; |
Heinrich Schuchardt | 86637f3 | 2018-01-11 08:16:05 +0100 | [diff] [blame] | 1230 | struct efi_open_protocol_info_item *item; |
| 1231 | struct efi_open_protocol_info_item *pos; |
Heinrich Schuchardt | 7538c27 | 2017-10-26 19:25:56 +0200 | [diff] [blame] | 1232 | efi_status_t r; |
xypron.glpk@gmx.de | 2cfad48 | 2017-07-11 22:06:17 +0200 | [diff] [blame] | 1233 | |
Heinrich Schuchardt | 86637f3 | 2018-01-11 08:16:05 +0100 | [diff] [blame] | 1234 | /* Check handle */ |
| 1235 | efiobj = efi_search_obj(handle); |
| 1236 | if (!efiobj) { |
xypron.glpk@gmx.de | 2cfad48 | 2017-07-11 22:06:17 +0200 | [diff] [blame] | 1237 | r = EFI_INVALID_PARAMETER; |
| 1238 | goto out; |
| 1239 | } |
Heinrich Schuchardt | 7538c27 | 2017-10-26 19:25:56 +0200 | [diff] [blame] | 1240 | /* Find the protocol on the handle */ |
| 1241 | r = efi_search_protocol(handle, protocol, &handler); |
| 1242 | if (r != EFI_SUCCESS) |
| 1243 | goto out; |
Heinrich Schuchardt | 86637f3 | 2018-01-11 08:16:05 +0100 | [diff] [blame] | 1244 | /* Disconnect controllers */ |
| 1245 | efi_disconnect_all_drivers(efiobj, protocol, NULL); |
| 1246 | if (!list_empty(&handler->open_infos)) { |
| 1247 | r = EFI_ACCESS_DENIED; |
| 1248 | goto out; |
| 1249 | } |
| 1250 | /* Close protocol */ |
| 1251 | list_for_each_entry_safe(item, pos, &handler->open_infos, link) { |
| 1252 | if (item->info.attributes == |
| 1253 | EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL || |
| 1254 | item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL || |
| 1255 | item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL) |
| 1256 | list_del(&item->link); |
| 1257 | } |
| 1258 | if (!list_empty(&handler->open_infos)) { |
Heinrich Schuchardt | 7538c27 | 2017-10-26 19:25:56 +0200 | [diff] [blame] | 1259 | r = EFI_ACCESS_DENIED; |
Heinrich Schuchardt | 86637f3 | 2018-01-11 08:16:05 +0100 | [diff] [blame] | 1260 | goto out; |
xypron.glpk@gmx.de | 2cfad48 | 2017-07-11 22:06:17 +0200 | [diff] [blame] | 1261 | } |
Heinrich Schuchardt | 86637f3 | 2018-01-11 08:16:05 +0100 | [diff] [blame] | 1262 | r = efi_remove_protocol(handle, protocol, protocol_interface); |
xypron.glpk@gmx.de | 2cfad48 | 2017-07-11 22:06:17 +0200 | [diff] [blame] | 1263 | out: |
Heinrich Schuchardt | 1b45134 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 1264 | return r; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1265 | } |
| 1266 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1267 | /** |
Heinrich Schuchardt | 1b45134 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 1268 | * efi_uninstall_protocol_interface() - uninstall protocol interface |
| 1269 | * @handle: handle from which the protocol shall be removed |
| 1270 | * @protocol: GUID of the protocol to be removed |
| 1271 | * @protocol_interface: interface to be removed |
| 1272 | * |
| 1273 | * This function implements the UninstallProtocolInterface service. |
| 1274 | * |
| 1275 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1276 | * details. |
| 1277 | * |
| 1278 | * Return: status code |
| 1279 | */ |
| 1280 | static efi_status_t EFIAPI efi_uninstall_protocol_interface |
| 1281 | (efi_handle_t handle, const efi_guid_t *protocol, |
| 1282 | void *protocol_interface) |
| 1283 | { |
| 1284 | efi_status_t ret; |
| 1285 | |
| 1286 | EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface); |
| 1287 | |
| 1288 | ret = efi_uninstall_protocol(handle, protocol, protocol_interface); |
| 1289 | if (ret != EFI_SUCCESS) |
| 1290 | goto out; |
| 1291 | |
| 1292 | /* If the last protocol has been removed, delete the handle. */ |
| 1293 | if (list_empty(&handle->protocols)) { |
| 1294 | list_del(&handle->link); |
| 1295 | free(handle); |
| 1296 | } |
| 1297 | out: |
| 1298 | return EFI_EXIT(ret); |
| 1299 | } |
| 1300 | |
| 1301 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1302 | * efi_register_protocol_notify() - register an event for notification when a |
| 1303 | * protocol is installed. |
| 1304 | * @protocol: GUID of the protocol whose installation shall be notified |
| 1305 | * @event: event to be signaled upon installation of the protocol |
| 1306 | * @registration: key for retrieving the registration information |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1307 | * |
| 1308 | * This function implements the RegisterProtocolNotify service. |
| 1309 | * See the Unified Extensible Firmware Interface (UEFI) specification |
| 1310 | * for details. |
| 1311 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1312 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1313 | */ |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 1314 | static efi_status_t EFIAPI efi_register_protocol_notify( |
| 1315 | const efi_guid_t *protocol, |
| 1316 | struct efi_event *event, |
| 1317 | void **registration) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1318 | { |
Heinrich Schuchardt | 6eec42d | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1319 | struct efi_register_notify_event *item; |
| 1320 | efi_status_t ret = EFI_SUCCESS; |
| 1321 | |
Rob Clark | 238f88c | 2017-09-13 18:05:41 -0400 | [diff] [blame] | 1322 | EFI_ENTRY("%pUl, %p, %p", protocol, event, registration); |
Heinrich Schuchardt | 6eec42d | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1323 | |
| 1324 | if (!protocol || !event || !registration) { |
| 1325 | ret = EFI_INVALID_PARAMETER; |
| 1326 | goto out; |
| 1327 | } |
| 1328 | |
| 1329 | item = calloc(1, sizeof(struct efi_register_notify_event)); |
| 1330 | if (!item) { |
| 1331 | ret = EFI_OUT_OF_RESOURCES; |
| 1332 | goto out; |
| 1333 | } |
| 1334 | |
| 1335 | item->event = event; |
| 1336 | memcpy(&item->protocol, protocol, sizeof(efi_guid_t)); |
| 1337 | |
| 1338 | list_add_tail(&item->link, &efi_register_notify_events); |
| 1339 | |
| 1340 | *registration = item; |
| 1341 | out: |
| 1342 | return EFI_EXIT(ret); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1343 | } |
| 1344 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1345 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1346 | * efi_search() - determine if an EFI handle implements a protocol |
| 1347 | * @search_type: selection criterion |
| 1348 | * @protocol: GUID of the protocol |
| 1349 | * @search_key: registration key |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1350 | * @handle: handle |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1351 | * |
| 1352 | * See the documentation of the LocateHandle service in the UEFI specification. |
| 1353 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1354 | * Return: 0 if the handle implements the protocol |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1355 | */ |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1356 | static int efi_search(enum efi_locate_search_type search_type, |
Heinrich Schuchardt | 6eec42d | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1357 | const efi_guid_t *protocol, efi_handle_t handle) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1358 | { |
Heinrich Schuchardt | 6a43075 | 2017-10-26 19:25:55 +0200 | [diff] [blame] | 1359 | efi_status_t ret; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1360 | |
| 1361 | switch (search_type) { |
Heinrich Schuchardt | 68845f0 | 2017-11-06 21:17:42 +0100 | [diff] [blame] | 1362 | case ALL_HANDLES: |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1363 | return 0; |
Heinrich Schuchardt | 68845f0 | 2017-11-06 21:17:42 +0100 | [diff] [blame] | 1364 | case BY_REGISTER_NOTIFY: |
Heinrich Schuchardt | 68845f0 | 2017-11-06 21:17:42 +0100 | [diff] [blame] | 1365 | case BY_PROTOCOL: |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1366 | ret = efi_search_protocol(handle, protocol, NULL); |
Heinrich Schuchardt | 6a43075 | 2017-10-26 19:25:55 +0200 | [diff] [blame] | 1367 | return (ret != EFI_SUCCESS); |
| 1368 | default: |
| 1369 | /* Invalid search type */ |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1370 | return -1; |
| 1371 | } |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1372 | } |
| 1373 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1374 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1375 | * efi_locate_handle() - locate handles implementing a protocol |
Heinrich Schuchardt | 6eec42d | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1376 | * |
| 1377 | * @search_type: selection criterion |
| 1378 | * @protocol: GUID of the protocol |
| 1379 | * @search_key: registration key |
| 1380 | * @buffer_size: size of the buffer to receive the handles in bytes |
| 1381 | * @buffer: buffer to receive the relevant handles |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1382 | * |
| 1383 | * This function is meant for U-Boot internal calls. For the API implementation |
| 1384 | * of the LocateHandle service see efi_locate_handle_ext. |
| 1385 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1386 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1387 | */ |
xypron.glpk@gmx.de | cab4dd5 | 2017-08-09 20:55:00 +0200 | [diff] [blame] | 1388 | static efi_status_t efi_locate_handle( |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1389 | enum efi_locate_search_type search_type, |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 1390 | const efi_guid_t *protocol, void *search_key, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 1391 | efi_uintn_t *buffer_size, efi_handle_t *buffer) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1392 | { |
Heinrich Schuchardt | ec66fc8 | 2017-11-06 21:17:49 +0100 | [diff] [blame] | 1393 | struct efi_object *efiobj; |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 1394 | efi_uintn_t size = 0; |
Heinrich Schuchardt | 6eec42d | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1395 | struct efi_register_notify_event *item, *event = NULL; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1396 | |
Heinrich Schuchardt | ec66fc8 | 2017-11-06 21:17:49 +0100 | [diff] [blame] | 1397 | /* Check parameters */ |
| 1398 | switch (search_type) { |
| 1399 | case ALL_HANDLES: |
| 1400 | break; |
| 1401 | case BY_REGISTER_NOTIFY: |
| 1402 | if (!search_key) |
| 1403 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 6eec42d | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1404 | /* Check that the registration key is valid */ |
| 1405 | list_for_each_entry(item, &efi_register_notify_events, link) { |
| 1406 | if (item == |
| 1407 | (struct efi_register_notify_event *)search_key) { |
| 1408 | event = item; |
| 1409 | break; |
| 1410 | } |
| 1411 | } |
| 1412 | if (!event) |
| 1413 | return EFI_INVALID_PARAMETER; |
| 1414 | |
| 1415 | protocol = &event->protocol; |
| 1416 | break; |
Heinrich Schuchardt | ec66fc8 | 2017-11-06 21:17:49 +0100 | [diff] [blame] | 1417 | case BY_PROTOCOL: |
| 1418 | if (!protocol) |
| 1419 | return EFI_INVALID_PARAMETER; |
| 1420 | break; |
| 1421 | default: |
| 1422 | return EFI_INVALID_PARAMETER; |
| 1423 | } |
| 1424 | |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1425 | /* Count how much space we need */ |
Heinrich Schuchardt | ec66fc8 | 2017-11-06 21:17:49 +0100 | [diff] [blame] | 1426 | list_for_each_entry(efiobj, &efi_obj_list, link) { |
Heinrich Schuchardt | 6eec42d | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1427 | if (!efi_search(search_type, protocol, efiobj)) |
Heinrich Schuchardt | 9106459 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 1428 | size += sizeof(void *); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1429 | } |
| 1430 | |
Heinrich Schuchardt | c0ee5f3 | 2019-05-04 17:37:32 +0200 | [diff] [blame] | 1431 | if (size == 0) |
| 1432 | return EFI_NOT_FOUND; |
| 1433 | |
| 1434 | if (!buffer_size) |
| 1435 | return EFI_INVALID_PARAMETER; |
| 1436 | |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1437 | if (*buffer_size < size) { |
| 1438 | *buffer_size = size; |
xypron.glpk@gmx.de | 69f9403 | 2017-07-11 22:06:21 +0200 | [diff] [blame] | 1439 | return EFI_BUFFER_TOO_SMALL; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1440 | } |
| 1441 | |
Rob Clark | cdee337 | 2017-08-06 14:10:07 -0400 | [diff] [blame] | 1442 | *buffer_size = size; |
Heinrich Schuchardt | c0ee5f3 | 2019-05-04 17:37:32 +0200 | [diff] [blame] | 1443 | |
| 1444 | /* The buffer size is sufficient but there is not buffer */ |
| 1445 | if (!buffer) |
| 1446 | return EFI_INVALID_PARAMETER; |
Rob Clark | cdee337 | 2017-08-06 14:10:07 -0400 | [diff] [blame] | 1447 | |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1448 | /* Then fill the array */ |
Heinrich Schuchardt | ec66fc8 | 2017-11-06 21:17:49 +0100 | [diff] [blame] | 1449 | list_for_each_entry(efiobj, &efi_obj_list, link) { |
Heinrich Schuchardt | 6eec42d | 2019-05-04 17:27:54 +0200 | [diff] [blame] | 1450 | if (!efi_search(search_type, protocol, efiobj)) |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 1451 | *buffer++ = efiobj; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1452 | } |
| 1453 | |
xypron.glpk@gmx.de | 69f9403 | 2017-07-11 22:06:21 +0200 | [diff] [blame] | 1454 | return EFI_SUCCESS; |
| 1455 | } |
| 1456 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1457 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1458 | * efi_locate_handle_ext() - locate handles implementing a protocol. |
| 1459 | * @search_type: selection criterion |
| 1460 | * @protocol: GUID of the protocol |
| 1461 | * @search_key: registration key |
| 1462 | * @buffer_size: size of the buffer to receive the handles in bytes |
| 1463 | * @buffer: buffer to receive the relevant handles |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1464 | * |
| 1465 | * This function implements the LocateHandle service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1466 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1467 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1468 | * details. |
| 1469 | * |
| 1470 | * Return: 0 if the handle implements the protocol |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1471 | */ |
xypron.glpk@gmx.de | 69f9403 | 2017-07-11 22:06:21 +0200 | [diff] [blame] | 1472 | static efi_status_t EFIAPI efi_locate_handle_ext( |
| 1473 | enum efi_locate_search_type search_type, |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 1474 | const efi_guid_t *protocol, void *search_key, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 1475 | efi_uintn_t *buffer_size, efi_handle_t *buffer) |
xypron.glpk@gmx.de | 69f9403 | 2017-07-11 22:06:21 +0200 | [diff] [blame] | 1476 | { |
Rob Clark | 238f88c | 2017-09-13 18:05:41 -0400 | [diff] [blame] | 1477 | EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key, |
xypron.glpk@gmx.de | 69f9403 | 2017-07-11 22:06:21 +0200 | [diff] [blame] | 1478 | buffer_size, buffer); |
| 1479 | |
| 1480 | return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key, |
| 1481 | buffer_size, buffer)); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1482 | } |
| 1483 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1484 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1485 | * efi_remove_configuration_table() - collapses configuration table entries, |
| 1486 | * removing index i |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1487 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1488 | * @i: index of the table entry to be removed |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1489 | */ |
Alexander Graf | fe3366f | 2017-07-26 13:41:04 +0200 | [diff] [blame] | 1490 | static void efi_remove_configuration_table(int i) |
| 1491 | { |
Heinrich Schuchardt | 2f528c2 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 1492 | struct efi_configuration_table *this = &systab.tables[i]; |
| 1493 | struct efi_configuration_table *next = &systab.tables[i + 1]; |
| 1494 | struct efi_configuration_table *end = &systab.tables[systab.nr_tables]; |
Alexander Graf | fe3366f | 2017-07-26 13:41:04 +0200 | [diff] [blame] | 1495 | |
| 1496 | memmove(this, next, (ulong)end - (ulong)next); |
| 1497 | systab.nr_tables--; |
| 1498 | } |
| 1499 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1500 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1501 | * efi_install_configuration_table() - adds, updates, or removes a |
| 1502 | * configuration table |
| 1503 | * @guid: GUID of the installed table |
| 1504 | * @table: table to be installed |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1505 | * |
| 1506 | * This function is used for internal calls. For the API implementation of the |
| 1507 | * InstallConfigurationTable service see efi_install_configuration_table_ext. |
| 1508 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1509 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1510 | */ |
Heinrich Schuchardt | 9106459 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 1511 | efi_status_t efi_install_configuration_table(const efi_guid_t *guid, |
| 1512 | void *table) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1513 | { |
Heinrich Schuchardt | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 1514 | struct efi_event *evt; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1515 | int i; |
| 1516 | |
Heinrich Schuchardt | 754ce10 | 2018-02-18 00:08:00 +0100 | [diff] [blame] | 1517 | if (!guid) |
| 1518 | return EFI_INVALID_PARAMETER; |
| 1519 | |
Heinrich Schuchardt | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 1520 | /* Check for GUID override */ |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1521 | for (i = 0; i < systab.nr_tables; i++) { |
Heinrich Schuchardt | 2f528c2 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 1522 | if (!guidcmp(guid, &systab.tables[i].guid)) { |
Alexander Graf | fe3366f | 2017-07-26 13:41:04 +0200 | [diff] [blame] | 1523 | if (table) |
Heinrich Schuchardt | 2f528c2 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 1524 | systab.tables[i].table = table; |
Alexander Graf | fe3366f | 2017-07-26 13:41:04 +0200 | [diff] [blame] | 1525 | else |
| 1526 | efi_remove_configuration_table(i); |
Heinrich Schuchardt | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 1527 | goto out; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1528 | } |
| 1529 | } |
| 1530 | |
Alexander Graf | fe3366f | 2017-07-26 13:41:04 +0200 | [diff] [blame] | 1531 | if (!table) |
| 1532 | return EFI_NOT_FOUND; |
| 1533 | |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1534 | /* No override, check for overflow */ |
Heinrich Schuchardt | 2f528c2 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 1535 | if (i >= EFI_MAX_CONFIGURATION_TABLES) |
Alexander Graf | c5c1163 | 2016-08-19 01:23:24 +0200 | [diff] [blame] | 1536 | return EFI_OUT_OF_RESOURCES; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1537 | |
| 1538 | /* Add a new entry */ |
Heinrich Schuchardt | 2f528c2 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 1539 | memcpy(&systab.tables[i].guid, guid, sizeof(*guid)); |
| 1540 | systab.tables[i].table = table; |
Alexander Graf | 9982e67 | 2016-08-19 01:23:30 +0200 | [diff] [blame] | 1541 | systab.nr_tables = i + 1; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1542 | |
Heinrich Schuchardt | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 1543 | out: |
Heinrich Schuchardt | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 1544 | /* systab.nr_tables may have changed. So we need to update the CRC32 */ |
Heinrich Schuchardt | ac2d4da | 2018-07-07 15:36:05 +0200 | [diff] [blame] | 1545 | efi_update_table_header_crc32(&systab.hdr); |
| 1546 | |
Heinrich Schuchardt | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 1547 | /* Notify that the configuration table was changed */ |
| 1548 | list_for_each_entry(evt, &efi_events, link) { |
| 1549 | if (evt->group && !guidcmp(evt->group, guid)) { |
| 1550 | efi_signal_event(evt, false); |
| 1551 | break; |
| 1552 | } |
| 1553 | } |
| 1554 | |
Alexander Graf | c5c1163 | 2016-08-19 01:23:24 +0200 | [diff] [blame] | 1555 | return EFI_SUCCESS; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1556 | } |
| 1557 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1558 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1559 | * efi_install_configuration_table_ex() - Adds, updates, or removes a |
| 1560 | * configuration table. |
| 1561 | * @guid: GUID of the installed table |
| 1562 | * @table: table to be installed |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1563 | * |
| 1564 | * This function implements the InstallConfigurationTable service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1565 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1566 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1567 | * details. |
| 1568 | * |
| 1569 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1570 | */ |
Alexander Graf | c5c1163 | 2016-08-19 01:23:24 +0200 | [diff] [blame] | 1571 | static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid, |
| 1572 | void *table) |
| 1573 | { |
Rob Clark | 238f88c | 2017-09-13 18:05:41 -0400 | [diff] [blame] | 1574 | EFI_ENTRY("%pUl, %p", guid, table); |
Alexander Graf | c5c1163 | 2016-08-19 01:23:24 +0200 | [diff] [blame] | 1575 | return EFI_EXIT(efi_install_configuration_table(guid, table)); |
| 1576 | } |
| 1577 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1578 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1579 | * efi_setup_loaded_image() - initialize a loaded image |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1580 | * |
| 1581 | * Initialize a loaded_image_info and loaded_image_info object with correct |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 1582 | * protocols, boot-device, etc. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1583 | * |
Heinrich Schuchardt | 6346a90 | 2019-02-06 19:41:29 +0100 | [diff] [blame] | 1584 | * In case of an error *handle_ptr and *info_ptr are set to NULL and an error |
| 1585 | * code is returned. |
| 1586 | * |
| 1587 | * @device_path: device path of the loaded image |
| 1588 | * @file_path: file path of the loaded image |
| 1589 | * @handle_ptr: handle of the loaded image |
| 1590 | * @info_ptr: loaded image protocol |
| 1591 | * Return: status code |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 1592 | */ |
Heinrich Schuchardt | 3c3a735 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 1593 | efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path, |
| 1594 | struct efi_device_path *file_path, |
| 1595 | struct efi_loaded_image_obj **handle_ptr, |
| 1596 | struct efi_loaded_image **info_ptr) |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 1597 | { |
Heinrich Schuchardt | 24d3a66 | 2017-10-26 19:25:58 +0200 | [diff] [blame] | 1598 | efi_status_t ret; |
Heinrich Schuchardt | 6346a90 | 2019-02-06 19:41:29 +0100 | [diff] [blame] | 1599 | struct efi_loaded_image *info = NULL; |
| 1600 | struct efi_loaded_image_obj *obj = NULL; |
AKASHI Takahiro | bbe13da | 2019-03-27 13:40:32 +0900 | [diff] [blame] | 1601 | struct efi_device_path *dp; |
Heinrich Schuchardt | 6346a90 | 2019-02-06 19:41:29 +0100 | [diff] [blame] | 1602 | |
| 1603 | /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */ |
| 1604 | *handle_ptr = NULL; |
| 1605 | *info_ptr = NULL; |
Heinrich Schuchardt | 3c3a735 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 1606 | |
| 1607 | info = calloc(1, sizeof(*info)); |
| 1608 | if (!info) |
| 1609 | return EFI_OUT_OF_RESOURCES; |
| 1610 | obj = calloc(1, sizeof(*obj)); |
| 1611 | if (!obj) { |
| 1612 | free(info); |
| 1613 | return EFI_OUT_OF_RESOURCES; |
| 1614 | } |
Heinrich Schuchardt | b27ced4 | 2019-05-01 14:20:18 +0200 | [diff] [blame] | 1615 | obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE; |
Heinrich Schuchardt | 24d3a66 | 2017-10-26 19:25:58 +0200 | [diff] [blame] | 1616 | |
Heinrich Schuchardt | 967d7de | 2017-11-26 14:05:23 +0100 | [diff] [blame] | 1617 | /* Add internal object to object list */ |
Heinrich Schuchardt | 7292872 | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 1618 | efi_add_handle(&obj->header); |
Heinrich Schuchardt | 3c3a735 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 1619 | |
Heinrich Schuchardt | c47f870 | 2018-07-05 08:17:58 +0200 | [diff] [blame] | 1620 | info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION; |
Heinrich Schuchardt | 24d3a66 | 2017-10-26 19:25:58 +0200 | [diff] [blame] | 1621 | info->file_path = file_path; |
Heinrich Schuchardt | 8a7e09d | 2018-08-26 15:31:52 +0200 | [diff] [blame] | 1622 | info->system_table = &systab; |
Heinrich Schuchardt | 24d3a66 | 2017-10-26 19:25:58 +0200 | [diff] [blame] | 1623 | |
Heinrich Schuchardt | f3996be | 2018-01-26 06:50:54 +0100 | [diff] [blame] | 1624 | if (device_path) { |
| 1625 | info->device_handle = efi_dp_find_obj(device_path, NULL); |
AKASHI Takahiro | bbe13da | 2019-03-27 13:40:32 +0900 | [diff] [blame] | 1626 | |
| 1627 | dp = efi_dp_append(device_path, file_path); |
| 1628 | if (!dp) { |
| 1629 | ret = EFI_OUT_OF_RESOURCES; |
Heinrich Schuchardt | f3996be | 2018-01-26 06:50:54 +0100 | [diff] [blame] | 1630 | goto failure; |
AKASHI Takahiro | bbe13da | 2019-03-27 13:40:32 +0900 | [diff] [blame] | 1631 | } |
| 1632 | } else { |
| 1633 | dp = NULL; |
Heinrich Schuchardt | f3996be | 2018-01-26 06:50:54 +0100 | [diff] [blame] | 1634 | } |
AKASHI Takahiro | bbe13da | 2019-03-27 13:40:32 +0900 | [diff] [blame] | 1635 | ret = efi_add_protocol(&obj->header, |
| 1636 | &efi_guid_loaded_image_device_path, dp); |
| 1637 | if (ret != EFI_SUCCESS) |
| 1638 | goto failure; |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 1639 | |
| 1640 | /* |
| 1641 | * When asking for the loaded_image interface, just |
| 1642 | * return handle which points to loaded_image_info |
| 1643 | */ |
Heinrich Schuchardt | 7292872 | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 1644 | ret = efi_add_protocol(&obj->header, |
Heinrich Schuchardt | 3c3a735 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 1645 | &efi_guid_loaded_image, info); |
Heinrich Schuchardt | 24d3a66 | 2017-10-26 19:25:58 +0200 | [diff] [blame] | 1646 | if (ret != EFI_SUCCESS) |
| 1647 | goto failure; |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 1648 | |
Heinrich Schuchardt | d20f512 | 2019-03-19 18:58:58 +0100 | [diff] [blame] | 1649 | *info_ptr = info; |
| 1650 | *handle_ptr = obj; |
Heinrich Schuchardt | 6346a90 | 2019-02-06 19:41:29 +0100 | [diff] [blame] | 1651 | |
Heinrich Schuchardt | 7db9f89 | 2017-12-04 18:03:01 +0100 | [diff] [blame] | 1652 | return ret; |
Heinrich Schuchardt | 24d3a66 | 2017-10-26 19:25:58 +0200 | [diff] [blame] | 1653 | failure: |
| 1654 | printf("ERROR: Failure to install protocols for loaded image\n"); |
Heinrich Schuchardt | 6346a90 | 2019-02-06 19:41:29 +0100 | [diff] [blame] | 1655 | efi_delete_handle(&obj->header); |
| 1656 | free(info); |
Heinrich Schuchardt | 7db9f89 | 2017-12-04 18:03:01 +0100 | [diff] [blame] | 1657 | return ret; |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 1658 | } |
| 1659 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1660 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1661 | * efi_load_image_from_path() - load an image using a file path |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1662 | * |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1663 | * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the |
| 1664 | * callers obligation to update the memory type as needed. |
| 1665 | * |
| 1666 | * @file_path: the path of the image to load |
| 1667 | * @buffer: buffer containing the loaded image |
| 1668 | * @size: size of the loaded image |
| 1669 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1670 | */ |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 1671 | static |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 1672 | efi_status_t efi_load_image_from_path(struct efi_device_path *file_path, |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1673 | void **buffer, efi_uintn_t *size) |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1674 | { |
| 1675 | struct efi_file_info *info = NULL; |
| 1676 | struct efi_file_handle *f; |
| 1677 | static efi_status_t ret; |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1678 | u64 addr; |
Heinrich Schuchardt | 6b06e0d | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 1679 | efi_uintn_t bs; |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1680 | |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1681 | /* In case of failure nothing is returned */ |
| 1682 | *buffer = NULL; |
| 1683 | *size = 0; |
| 1684 | |
| 1685 | /* Open file */ |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1686 | f = efi_file_from_path(file_path); |
| 1687 | if (!f) |
| 1688 | return EFI_DEVICE_ERROR; |
| 1689 | |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1690 | /* Get file size */ |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1691 | bs = 0; |
| 1692 | EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, |
| 1693 | &bs, info)); |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1694 | if (ret != EFI_BUFFER_TOO_SMALL) { |
| 1695 | ret = EFI_DEVICE_ERROR; |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1696 | goto error; |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1697 | } |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1698 | |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1699 | info = malloc(bs); |
| 1700 | EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs, |
| 1701 | info)); |
| 1702 | if (ret != EFI_SUCCESS) |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1703 | goto error; |
| 1704 | |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1705 | /* |
| 1706 | * When reading the file we do not yet know if it contains an |
| 1707 | * application, a boottime driver, or a runtime driver. So here we |
| 1708 | * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to |
| 1709 | * update the reservation according to the image type. |
| 1710 | */ |
Heinrich Schuchardt | 6b06e0d | 2018-04-03 22:37:11 +0200 | [diff] [blame] | 1711 | bs = info->file_size; |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1712 | ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, |
| 1713 | EFI_BOOT_SERVICES_DATA, |
| 1714 | efi_size_in_pages(bs), &addr); |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1715 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1716 | ret = EFI_OUT_OF_RESOURCES; |
| 1717 | goto error; |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1718 | } |
| 1719 | |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1720 | /* Read file */ |
| 1721 | EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr)); |
| 1722 | if (ret != EFI_SUCCESS) |
| 1723 | efi_free_pages(addr, efi_size_in_pages(bs)); |
| 1724 | *buffer = (void *)(uintptr_t)addr; |
| 1725 | *size = bs; |
| 1726 | error: |
| 1727 | EFI_CALL(f->close(f)); |
| 1728 | free(info); |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1729 | return ret; |
| 1730 | } |
| 1731 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1732 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1733 | * efi_load_image() - load an EFI image into memory |
| 1734 | * @boot_policy: true for request originating from the boot manager |
| 1735 | * @parent_image: the caller's image handle |
| 1736 | * @file_path: the path of the image to load |
| 1737 | * @source_buffer: memory location from which the image is installed |
| 1738 | * @source_size: size of the memory area from which the image is installed |
| 1739 | * @image_handle: handle for the newly installed image |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1740 | * |
| 1741 | * This function implements the LoadImage service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1742 | * |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1743 | * See the Unified Extensible Firmware Interface (UEFI) specification |
| 1744 | * for details. |
| 1745 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1746 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1747 | */ |
AKASHI Takahiro | b0ad905 | 2019-03-05 14:53:31 +0900 | [diff] [blame] | 1748 | efi_status_t EFIAPI efi_load_image(bool boot_policy, |
| 1749 | efi_handle_t parent_image, |
| 1750 | struct efi_device_path *file_path, |
| 1751 | void *source_buffer, |
| 1752 | efi_uintn_t source_size, |
| 1753 | efi_handle_t *image_handle) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1754 | { |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1755 | struct efi_device_path *dp, *fp; |
Tom Rini | 04c4906 | 2018-09-30 10:38:15 -0400 | [diff] [blame] | 1756 | struct efi_loaded_image *info = NULL; |
Heinrich Schuchardt | 3c3a735 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 1757 | struct efi_loaded_image_obj **image_obj = |
| 1758 | (struct efi_loaded_image_obj **)image_handle; |
Heinrich Schuchardt | d4d7ca9 | 2017-12-04 18:03:03 +0100 | [diff] [blame] | 1759 | efi_status_t ret; |
Heinrich Schuchardt | 47e35a9 | 2019-03-04 17:50:05 +0100 | [diff] [blame] | 1760 | void *dest_buffer; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1761 | |
Heinrich Schuchardt | 4cde1fa | 2018-04-03 22:29:30 +0200 | [diff] [blame] | 1762 | EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1763 | file_path, source_buffer, source_size, image_handle); |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1764 | |
Heinrich Schuchardt | c935c2f | 2018-03-07 02:40:51 +0100 | [diff] [blame] | 1765 | if (!image_handle || !parent_image) { |
| 1766 | ret = EFI_INVALID_PARAMETER; |
| 1767 | goto error; |
| 1768 | } |
| 1769 | |
| 1770 | if (!source_buffer && !file_path) { |
| 1771 | ret = EFI_NOT_FOUND; |
| 1772 | goto error; |
| 1773 | } |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1774 | |
| 1775 | if (!source_buffer) { |
Heinrich Schuchardt | 47e35a9 | 2019-03-04 17:50:05 +0100 | [diff] [blame] | 1776 | ret = efi_load_image_from_path(file_path, &dest_buffer, |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1777 | &source_size); |
Heinrich Schuchardt | d4d7ca9 | 2017-12-04 18:03:03 +0100 | [diff] [blame] | 1778 | if (ret != EFI_SUCCESS) |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1779 | goto error; |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1780 | } else { |
Heinrich Schuchardt | 47e35a9 | 2019-03-04 17:50:05 +0100 | [diff] [blame] | 1781 | dest_buffer = source_buffer; |
Rob Clark | 857a122 | 2017-09-13 18:05:35 -0400 | [diff] [blame] | 1782 | } |
Heinrich Schuchardt | 28b3917 | 2019-04-20 19:24:43 +0000 | [diff] [blame] | 1783 | /* split file_path which contains both the device and file parts */ |
| 1784 | efi_dp_split_file_path(file_path, &dp, &fp); |
Heinrich Schuchardt | e3d3a0c | 2018-12-24 09:19:07 +0100 | [diff] [blame] | 1785 | ret = efi_setup_loaded_image(dp, fp, image_obj, &info); |
Heinrich Schuchardt | 47e35a9 | 2019-03-04 17:50:05 +0100 | [diff] [blame] | 1786 | if (ret == EFI_SUCCESS) |
| 1787 | ret = efi_load_pe(*image_obj, dest_buffer, info); |
| 1788 | if (!source_buffer) |
| 1789 | /* Release buffer to which file was loaded */ |
| 1790 | efi_free_pages((uintptr_t)dest_buffer, |
| 1791 | efi_size_in_pages(source_size)); |
| 1792 | if (ret == EFI_SUCCESS) { |
| 1793 | info->system_table = &systab; |
| 1794 | info->parent_handle = parent_image; |
| 1795 | } else { |
| 1796 | /* The image is invalid. Release all associated resources. */ |
| 1797 | efi_delete_handle(*image_handle); |
| 1798 | *image_handle = NULL; |
| 1799 | free(info); |
| 1800 | } |
Heinrich Schuchardt | c935c2f | 2018-03-07 02:40:51 +0100 | [diff] [blame] | 1801 | error: |
Heinrich Schuchardt | d4d7ca9 | 2017-12-04 18:03:03 +0100 | [diff] [blame] | 1802 | return EFI_EXIT(ret); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1803 | } |
| 1804 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1805 | /** |
Alexander Graf | fa5246b | 2018-11-15 21:23:47 +0100 | [diff] [blame] | 1806 | * efi_exit_caches() - fix up caches for EFI payloads if necessary |
| 1807 | */ |
| 1808 | static void efi_exit_caches(void) |
| 1809 | { |
| 1810 | #if defined(CONFIG_ARM) && !defined(CONFIG_ARM64) |
| 1811 | /* |
| 1812 | * Grub on 32bit ARM needs to have caches disabled before jumping into |
| 1813 | * a zImage, but does not know of all cache layers. Give it a hand. |
| 1814 | */ |
| 1815 | if (efi_is_direct_boot) |
| 1816 | cleanup_before_linux(); |
| 1817 | #endif |
| 1818 | } |
| 1819 | |
| 1820 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1821 | * efi_exit_boot_services() - stop all boot services |
| 1822 | * @image_handle: handle of the loaded image |
| 1823 | * @map_key: key of the memory map |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1824 | * |
| 1825 | * This function implements the ExitBootServices service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1826 | * |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1827 | * See the Unified Extensible Firmware Interface (UEFI) specification |
| 1828 | * for details. |
| 1829 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1830 | * All timer events are disabled. For exit boot services events the |
| 1831 | * notification function is called. The boot services are disabled in the |
| 1832 | * system table. |
Heinrich Schuchardt | b1fbb21 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 1833 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1834 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1835 | */ |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 1836 | static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1837 | unsigned long map_key) |
| 1838 | { |
Heinrich Schuchardt | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 1839 | struct efi_event *evt; |
Heinrich Schuchardt | 2d4c738 | 2017-09-15 10:06:18 +0200 | [diff] [blame] | 1840 | |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1841 | EFI_ENTRY("%p, %ld", image_handle, map_key); |
| 1842 | |
Heinrich Schuchardt | 0f233c4 | 2018-07-02 12:53:55 +0200 | [diff] [blame] | 1843 | /* Check that the caller has read the current memory map */ |
| 1844 | if (map_key != efi_memory_map_key) |
| 1845 | return EFI_INVALID_PARAMETER; |
| 1846 | |
Heinrich Schuchardt | b1fbb21 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 1847 | /* Make sure that notification functions are not called anymore */ |
| 1848 | efi_tpl = TPL_HIGH_LEVEL; |
| 1849 | |
| 1850 | /* Check if ExitBootServices has already been called */ |
| 1851 | if (!systab.boottime) |
| 1852 | return EFI_EXIT(EFI_SUCCESS); |
| 1853 | |
Heinrich Schuchardt | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 1854 | /* Add related events to the event group */ |
| 1855 | list_for_each_entry(evt, &efi_events, link) { |
| 1856 | if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES) |
| 1857 | evt->group = &efi_guid_event_group_exit_boot_services; |
| 1858 | } |
Heinrich Schuchardt | 2d4c738 | 2017-09-15 10:06:18 +0200 | [diff] [blame] | 1859 | /* Notify that ExitBootServices is invoked. */ |
Heinrich Schuchardt | 370c7a8 | 2018-02-18 15:17:50 +0100 | [diff] [blame] | 1860 | list_for_each_entry(evt, &efi_events, link) { |
Heinrich Schuchardt | bf7f169 | 2018-02-18 15:17:52 +0100 | [diff] [blame] | 1861 | if (evt->group && |
| 1862 | !guidcmp(evt->group, |
| 1863 | &efi_guid_event_group_exit_boot_services)) { |
| 1864 | efi_signal_event(evt, false); |
| 1865 | break; |
| 1866 | } |
Heinrich Schuchardt | 2d4c738 | 2017-09-15 10:06:18 +0200 | [diff] [blame] | 1867 | } |
Heinrich Schuchardt | 2d4c738 | 2017-09-15 10:06:18 +0200 | [diff] [blame] | 1868 | |
Heinrich Schuchardt | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 1869 | /* TODO: Should persist EFI variables here */ |
Rob Clark | 15f3d74 | 2017-09-13 18:05:37 -0400 | [diff] [blame] | 1870 | |
Alexander Graf | 2ebeb44 | 2016-11-17 01:02:57 +0100 | [diff] [blame] | 1871 | board_quiesce_devices(); |
| 1872 | |
Alexander Graf | fa5246b | 2018-11-15 21:23:47 +0100 | [diff] [blame] | 1873 | /* Fix up caches for EFI payloads if necessary */ |
| 1874 | efi_exit_caches(); |
| 1875 | |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1876 | /* This stops all lingering devices */ |
| 1877 | bootm_disable_interrupts(); |
| 1878 | |
Heinrich Schuchardt | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 1879 | /* Disable boot time services */ |
Heinrich Schuchardt | b1fbb21 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 1880 | systab.con_in_handle = NULL; |
| 1881 | systab.con_in = NULL; |
| 1882 | systab.con_out_handle = NULL; |
| 1883 | systab.con_out = NULL; |
| 1884 | systab.stderr_handle = NULL; |
| 1885 | systab.std_err = NULL; |
| 1886 | systab.boottime = NULL; |
| 1887 | |
| 1888 | /* Recalculate CRC32 */ |
Heinrich Schuchardt | 15070db | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 1889 | efi_update_table_header_crc32(&systab.hdr); |
Heinrich Schuchardt | b1fbb21 | 2018-01-19 20:24:52 +0100 | [diff] [blame] | 1890 | |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1891 | /* Give the payload some time to boot */ |
Heinrich Schuchardt | 18081d4 | 2017-10-18 18:13:04 +0200 | [diff] [blame] | 1892 | efi_set_watchdog(0); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1893 | WATCHDOG_RESET(); |
| 1894 | |
| 1895 | return EFI_EXIT(EFI_SUCCESS); |
| 1896 | } |
| 1897 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1898 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1899 | * efi_get_next_monotonic_count() - get next value of the counter |
| 1900 | * @count: returned value of the counter |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1901 | * |
| 1902 | * This function implements the NextMonotonicCount service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1903 | * |
| 1904 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1905 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1906 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1907 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1908 | */ |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1909 | static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count) |
| 1910 | { |
Heinrich Schuchardt | 9106459 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 1911 | static uint64_t mono; |
| 1912 | |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1913 | EFI_ENTRY("%p", count); |
| 1914 | *count = mono++; |
| 1915 | return EFI_EXIT(EFI_SUCCESS); |
| 1916 | } |
| 1917 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1918 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1919 | * efi_stall() - sleep |
| 1920 | * @microseconds: period to sleep in microseconds |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1921 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1922 | * This function implements the Stall service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1923 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1924 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1925 | * details. |
| 1926 | * |
| 1927 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1928 | */ |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1929 | static efi_status_t EFIAPI efi_stall(unsigned long microseconds) |
| 1930 | { |
| 1931 | EFI_ENTRY("%ld", microseconds); |
| 1932 | udelay(microseconds); |
| 1933 | return EFI_EXIT(EFI_SUCCESS); |
| 1934 | } |
| 1935 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1936 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1937 | * efi_set_watchdog_timer() - reset the watchdog timer |
| 1938 | * @timeout: seconds before reset by watchdog |
| 1939 | * @watchdog_code: code to be logged when resetting |
| 1940 | * @data_size: size of buffer in bytes |
| 1941 | * @watchdog_data: buffer with data describing the reset reason |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1942 | * |
Heinrich Schuchardt | 18081d4 | 2017-10-18 18:13:04 +0200 | [diff] [blame] | 1943 | * This function implements the SetWatchdogTimer service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1944 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1945 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1946 | * details. |
| 1947 | * |
| 1948 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1949 | */ |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1950 | static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout, |
| 1951 | uint64_t watchdog_code, |
| 1952 | unsigned long data_size, |
| 1953 | uint16_t *watchdog_data) |
| 1954 | { |
Masahiro Yamada | c7570a3 | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 1955 | EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1956 | data_size, watchdog_data); |
Heinrich Schuchardt | 18081d4 | 2017-10-18 18:13:04 +0200 | [diff] [blame] | 1957 | return EFI_EXIT(efi_set_watchdog(timeout)); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1958 | } |
| 1959 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 1960 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1961 | * efi_close_protocol() - close a protocol |
| 1962 | * @handle: handle on which the protocol shall be closed |
| 1963 | * @protocol: GUID of the protocol to close |
| 1964 | * @agent_handle: handle of the driver |
| 1965 | * @controller_handle: handle of the controller |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1966 | * |
| 1967 | * This function implements the CloseProtocol service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1968 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 1969 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 1970 | * details. |
| 1971 | * |
| 1972 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 1973 | */ |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 1974 | static efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle, |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 1975 | const efi_guid_t *protocol, |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 1976 | efi_handle_t agent_handle, |
| 1977 | efi_handle_t controller_handle) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1978 | { |
Heinrich Schuchardt | 4fd1ee2 | 2018-01-11 08:15:59 +0100 | [diff] [blame] | 1979 | struct efi_handler *handler; |
| 1980 | struct efi_open_protocol_info_item *item; |
| 1981 | struct efi_open_protocol_info_item *pos; |
| 1982 | efi_status_t r; |
| 1983 | |
Rob Clark | 238f88c | 2017-09-13 18:05:41 -0400 | [diff] [blame] | 1984 | EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 1985 | controller_handle); |
Heinrich Schuchardt | 4fd1ee2 | 2018-01-11 08:15:59 +0100 | [diff] [blame] | 1986 | |
Heinrich Schuchardt | 5d8231b | 2019-05-05 10:37:51 +0200 | [diff] [blame^] | 1987 | if (!efi_search_obj(agent_handle) || |
| 1988 | (controller_handle && !efi_search_obj(controller_handle))) { |
Heinrich Schuchardt | 4fd1ee2 | 2018-01-11 08:15:59 +0100 | [diff] [blame] | 1989 | r = EFI_INVALID_PARAMETER; |
| 1990 | goto out; |
| 1991 | } |
| 1992 | r = efi_search_protocol(handle, protocol, &handler); |
| 1993 | if (r != EFI_SUCCESS) |
| 1994 | goto out; |
| 1995 | |
| 1996 | r = EFI_NOT_FOUND; |
| 1997 | list_for_each_entry_safe(item, pos, &handler->open_infos, link) { |
| 1998 | if (item->info.agent_handle == agent_handle && |
| 1999 | item->info.controller_handle == controller_handle) { |
| 2000 | efi_delete_open_info(item); |
| 2001 | r = EFI_SUCCESS; |
| 2002 | break; |
| 2003 | } |
| 2004 | } |
| 2005 | out: |
| 2006 | return EFI_EXIT(r); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2007 | } |
| 2008 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2009 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2010 | * efi_open_protocol_information() - provide information about then open status |
| 2011 | * of a protocol on a handle |
| 2012 | * @handle: handle for which the information shall be retrieved |
| 2013 | * @protocol: GUID of the protocol |
| 2014 | * @entry_buffer: buffer to receive the open protocol information |
| 2015 | * @entry_count: number of entries available in the buffer |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2016 | * |
| 2017 | * This function implements the OpenProtocolInformation service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2018 | * |
| 2019 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2020 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2021 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2022 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2023 | */ |
Heinrich Schuchardt | 9106459 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 2024 | static efi_status_t EFIAPI efi_open_protocol_information( |
| 2025 | efi_handle_t handle, const efi_guid_t *protocol, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2026 | struct efi_open_protocol_info_entry **entry_buffer, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 2027 | efi_uintn_t *entry_count) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2028 | { |
Heinrich Schuchardt | f2ef22e | 2018-01-11 08:16:00 +0100 | [diff] [blame] | 2029 | unsigned long buffer_size; |
| 2030 | unsigned long count; |
| 2031 | struct efi_handler *handler; |
| 2032 | struct efi_open_protocol_info_item *item; |
| 2033 | efi_status_t r; |
| 2034 | |
Rob Clark | 238f88c | 2017-09-13 18:05:41 -0400 | [diff] [blame] | 2035 | EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2036 | entry_count); |
Heinrich Schuchardt | f2ef22e | 2018-01-11 08:16:00 +0100 | [diff] [blame] | 2037 | |
| 2038 | /* Check parameters */ |
| 2039 | if (!entry_buffer) { |
| 2040 | r = EFI_INVALID_PARAMETER; |
| 2041 | goto out; |
| 2042 | } |
| 2043 | r = efi_search_protocol(handle, protocol, &handler); |
| 2044 | if (r != EFI_SUCCESS) |
| 2045 | goto out; |
| 2046 | |
| 2047 | /* Count entries */ |
| 2048 | count = 0; |
| 2049 | list_for_each_entry(item, &handler->open_infos, link) { |
| 2050 | if (item->info.open_count) |
| 2051 | ++count; |
| 2052 | } |
| 2053 | *entry_count = count; |
| 2054 | *entry_buffer = NULL; |
| 2055 | if (!count) { |
| 2056 | r = EFI_SUCCESS; |
| 2057 | goto out; |
| 2058 | } |
| 2059 | |
| 2060 | /* Copy entries */ |
| 2061 | buffer_size = count * sizeof(struct efi_open_protocol_info_entry); |
Heinrich Schuchardt | abb4387 | 2018-10-03 20:02:29 +0200 | [diff] [blame] | 2062 | r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size, |
Heinrich Schuchardt | f2ef22e | 2018-01-11 08:16:00 +0100 | [diff] [blame] | 2063 | (void **)entry_buffer); |
| 2064 | if (r != EFI_SUCCESS) |
| 2065 | goto out; |
| 2066 | list_for_each_entry_reverse(item, &handler->open_infos, link) { |
| 2067 | if (item->info.open_count) |
| 2068 | (*entry_buffer)[--count] = item->info; |
| 2069 | } |
| 2070 | out: |
| 2071 | return EFI_EXIT(r); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2072 | } |
| 2073 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2074 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2075 | * efi_protocols_per_handle() - get protocols installed on a handle |
| 2076 | * @handle: handle for which the information is retrieved |
| 2077 | * @protocol_buffer: buffer with protocol GUIDs |
| 2078 | * @protocol_buffer_count: number of entries in the buffer |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2079 | * |
| 2080 | * This function implements the ProtocolsPerHandleService. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2081 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2082 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2083 | * details. |
| 2084 | * |
| 2085 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2086 | */ |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 2087 | static efi_status_t EFIAPI efi_protocols_per_handle( |
| 2088 | efi_handle_t handle, efi_guid_t ***protocol_buffer, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 2089 | efi_uintn_t *protocol_buffer_count) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2090 | { |
xypron.glpk@gmx.de | 8960c97 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2091 | unsigned long buffer_size; |
| 2092 | struct efi_object *efiobj; |
Heinrich Schuchardt | 99ce206 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 2093 | struct list_head *protocol_handle; |
xypron.glpk@gmx.de | 8960c97 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2094 | efi_status_t r; |
| 2095 | |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2096 | EFI_ENTRY("%p, %p, %p", handle, protocol_buffer, |
| 2097 | protocol_buffer_count); |
xypron.glpk@gmx.de | 8960c97 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2098 | |
| 2099 | if (!handle || !protocol_buffer || !protocol_buffer_count) |
| 2100 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
| 2101 | |
| 2102 | *protocol_buffer = NULL; |
Rob Clark | d51b8ca | 2017-07-20 07:59:39 -0400 | [diff] [blame] | 2103 | *protocol_buffer_count = 0; |
xypron.glpk@gmx.de | 8960c97 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2104 | |
Heinrich Schuchardt | 99ce206 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 2105 | efiobj = efi_search_obj(handle); |
| 2106 | if (!efiobj) |
| 2107 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
xypron.glpk@gmx.de | 8960c97 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2108 | |
Heinrich Schuchardt | 99ce206 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 2109 | /* Count protocols */ |
| 2110 | list_for_each(protocol_handle, &efiobj->protocols) { |
| 2111 | ++*protocol_buffer_count; |
| 2112 | } |
| 2113 | |
Heinrich Schuchardt | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 2114 | /* Copy GUIDs */ |
Heinrich Schuchardt | 99ce206 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 2115 | if (*protocol_buffer_count) { |
| 2116 | size_t j = 0; |
| 2117 | |
| 2118 | buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count; |
Heinrich Schuchardt | abb4387 | 2018-10-03 20:02:29 +0200 | [diff] [blame] | 2119 | r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size, |
Heinrich Schuchardt | 99ce206 | 2017-11-26 14:05:17 +0100 | [diff] [blame] | 2120 | (void **)protocol_buffer); |
| 2121 | if (r != EFI_SUCCESS) |
| 2122 | return EFI_EXIT(r); |
| 2123 | list_for_each(protocol_handle, &efiobj->protocols) { |
| 2124 | struct efi_handler *protocol; |
| 2125 | |
| 2126 | protocol = list_entry(protocol_handle, |
| 2127 | struct efi_handler, link); |
| 2128 | (*protocol_buffer)[j] = (void *)protocol->guid; |
| 2129 | ++j; |
xypron.glpk@gmx.de | 8960c97 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2130 | } |
xypron.glpk@gmx.de | 8960c97 | 2017-07-13 23:24:32 +0200 | [diff] [blame] | 2131 | } |
| 2132 | |
| 2133 | return EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2134 | } |
| 2135 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2136 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2137 | * efi_locate_handle_buffer() - locate handles implementing a protocol |
| 2138 | * @search_type: selection criterion |
| 2139 | * @protocol: GUID of the protocol |
| 2140 | * @search_key: registration key |
| 2141 | * @no_handles: number of returned handles |
| 2142 | * @buffer: buffer with the returned handles |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2143 | * |
| 2144 | * This function implements the LocateHandleBuffer service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2145 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2146 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2147 | * details. |
| 2148 | * |
| 2149 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2150 | */ |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2151 | static efi_status_t EFIAPI efi_locate_handle_buffer( |
| 2152 | enum efi_locate_search_type search_type, |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 2153 | const efi_guid_t *protocol, void *search_key, |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 2154 | efi_uintn_t *no_handles, efi_handle_t **buffer) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2155 | { |
xypron.glpk@gmx.de | 550a68a | 2017-07-11 22:06:22 +0200 | [diff] [blame] | 2156 | efi_status_t r; |
Heinrich Schuchardt | 798a441 | 2017-11-06 21:17:48 +0100 | [diff] [blame] | 2157 | efi_uintn_t buffer_size = 0; |
xypron.glpk@gmx.de | 550a68a | 2017-07-11 22:06:22 +0200 | [diff] [blame] | 2158 | |
Rob Clark | 238f88c | 2017-09-13 18:05:41 -0400 | [diff] [blame] | 2159 | EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2160 | no_handles, buffer); |
xypron.glpk@gmx.de | 550a68a | 2017-07-11 22:06:22 +0200 | [diff] [blame] | 2161 | |
| 2162 | if (!no_handles || !buffer) { |
| 2163 | r = EFI_INVALID_PARAMETER; |
| 2164 | goto out; |
| 2165 | } |
| 2166 | *no_handles = 0; |
| 2167 | *buffer = NULL; |
| 2168 | r = efi_locate_handle(search_type, protocol, search_key, &buffer_size, |
| 2169 | *buffer); |
| 2170 | if (r != EFI_BUFFER_TOO_SMALL) |
| 2171 | goto out; |
Heinrich Schuchardt | abb4387 | 2018-10-03 20:02:29 +0200 | [diff] [blame] | 2172 | r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size, |
xypron.glpk@gmx.de | 550a68a | 2017-07-11 22:06:22 +0200 | [diff] [blame] | 2173 | (void **)buffer); |
| 2174 | if (r != EFI_SUCCESS) |
| 2175 | goto out; |
| 2176 | r = efi_locate_handle(search_type, protocol, search_key, &buffer_size, |
| 2177 | *buffer); |
| 2178 | if (r == EFI_SUCCESS) |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 2179 | *no_handles = buffer_size / sizeof(efi_handle_t); |
xypron.glpk@gmx.de | 550a68a | 2017-07-11 22:06:22 +0200 | [diff] [blame] | 2180 | out: |
| 2181 | return EFI_EXIT(r); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2182 | } |
| 2183 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2184 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2185 | * efi_locate_protocol() - find an interface implementing a protocol |
| 2186 | * @protocol: GUID of the protocol |
| 2187 | * @registration: registration key passed to the notification function |
| 2188 | * @protocol_interface: interface implementing the protocol |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2189 | * |
| 2190 | * This function implements the LocateProtocol service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2191 | * |
| 2192 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2193 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2194 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2195 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2196 | */ |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 2197 | static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2198 | void *registration, |
| 2199 | void **protocol_interface) |
| 2200 | { |
xypron.glpk@gmx.de | 4534ad6 | 2017-07-11 22:06:24 +0200 | [diff] [blame] | 2201 | struct list_head *lhandle; |
Heinrich Schuchardt | 57505e9 | 2017-10-26 19:25:57 +0200 | [diff] [blame] | 2202 | efi_status_t ret; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2203 | |
Rob Clark | 238f88c | 2017-09-13 18:05:41 -0400 | [diff] [blame] | 2204 | EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface); |
xypron.glpk@gmx.de | 4534ad6 | 2017-07-11 22:06:24 +0200 | [diff] [blame] | 2205 | |
| 2206 | if (!protocol || !protocol_interface) |
| 2207 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
| 2208 | |
| 2209 | list_for_each(lhandle, &efi_obj_list) { |
| 2210 | struct efi_object *efiobj; |
Heinrich Schuchardt | 57505e9 | 2017-10-26 19:25:57 +0200 | [diff] [blame] | 2211 | struct efi_handler *handler; |
xypron.glpk@gmx.de | 4534ad6 | 2017-07-11 22:06:24 +0200 | [diff] [blame] | 2212 | |
| 2213 | efiobj = list_entry(lhandle, struct efi_object, link); |
xypron.glpk@gmx.de | 4534ad6 | 2017-07-11 22:06:24 +0200 | [diff] [blame] | 2214 | |
Heinrich Schuchardt | adb50d0 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 2215 | ret = efi_search_protocol(efiobj, protocol, &handler); |
Heinrich Schuchardt | 57505e9 | 2017-10-26 19:25:57 +0200 | [diff] [blame] | 2216 | if (ret == EFI_SUCCESS) { |
| 2217 | *protocol_interface = handler->protocol_interface; |
| 2218 | return EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2219 | } |
| 2220 | } |
xypron.glpk@gmx.de | 4534ad6 | 2017-07-11 22:06:24 +0200 | [diff] [blame] | 2221 | *protocol_interface = NULL; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2222 | |
| 2223 | return EFI_EXIT(EFI_NOT_FOUND); |
| 2224 | } |
| 2225 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2226 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2227 | * efi_locate_device_path() - Get the device path and handle of an device |
| 2228 | * implementing a protocol |
| 2229 | * @protocol: GUID of the protocol |
| 2230 | * @device_path: device path |
| 2231 | * @device: handle of the device |
Heinrich Schuchardt | 06ec689 | 2017-11-26 14:05:10 +0100 | [diff] [blame] | 2232 | * |
| 2233 | * This function implements the LocateDevicePath service. |
Heinrich Schuchardt | 06ec689 | 2017-11-26 14:05:10 +0100 | [diff] [blame] | 2234 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2235 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2236 | * details. |
| 2237 | * |
| 2238 | * Return: status code |
Heinrich Schuchardt | 06ec689 | 2017-11-26 14:05:10 +0100 | [diff] [blame] | 2239 | */ |
| 2240 | static efi_status_t EFIAPI efi_locate_device_path( |
| 2241 | const efi_guid_t *protocol, |
| 2242 | struct efi_device_path **device_path, |
| 2243 | efi_handle_t *device) |
| 2244 | { |
| 2245 | struct efi_device_path *dp; |
| 2246 | size_t i; |
| 2247 | struct efi_handler *handler; |
| 2248 | efi_handle_t *handles; |
| 2249 | size_t len, len_dp; |
| 2250 | size_t len_best = 0; |
| 2251 | efi_uintn_t no_handles; |
| 2252 | u8 *remainder; |
| 2253 | efi_status_t ret; |
| 2254 | |
| 2255 | EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device); |
| 2256 | |
| 2257 | if (!protocol || !device_path || !*device_path || !device) { |
| 2258 | ret = EFI_INVALID_PARAMETER; |
| 2259 | goto out; |
| 2260 | } |
| 2261 | |
| 2262 | /* Find end of device path */ |
Heinrich Schuchardt | 51ca4f5 | 2018-04-16 07:59:08 +0200 | [diff] [blame] | 2263 | len = efi_dp_instance_size(*device_path); |
Heinrich Schuchardt | 06ec689 | 2017-11-26 14:05:10 +0100 | [diff] [blame] | 2264 | |
| 2265 | /* Get all handles implementing the protocol */ |
| 2266 | ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL, |
| 2267 | &no_handles, &handles)); |
| 2268 | if (ret != EFI_SUCCESS) |
| 2269 | goto out; |
| 2270 | |
| 2271 | for (i = 0; i < no_handles; ++i) { |
| 2272 | /* Find the device path protocol */ |
| 2273 | ret = efi_search_protocol(handles[i], &efi_guid_device_path, |
| 2274 | &handler); |
| 2275 | if (ret != EFI_SUCCESS) |
| 2276 | continue; |
| 2277 | dp = (struct efi_device_path *)handler->protocol_interface; |
Heinrich Schuchardt | 51ca4f5 | 2018-04-16 07:59:08 +0200 | [diff] [blame] | 2278 | len_dp = efi_dp_instance_size(dp); |
Heinrich Schuchardt | 06ec689 | 2017-11-26 14:05:10 +0100 | [diff] [blame] | 2279 | /* |
| 2280 | * This handle can only be a better fit |
| 2281 | * if its device path length is longer than the best fit and |
| 2282 | * if its device path length is shorter of equal the searched |
| 2283 | * device path. |
| 2284 | */ |
| 2285 | if (len_dp <= len_best || len_dp > len) |
| 2286 | continue; |
| 2287 | /* Check if dp is a subpath of device_path */ |
| 2288 | if (memcmp(*device_path, dp, len_dp)) |
| 2289 | continue; |
| 2290 | *device = handles[i]; |
| 2291 | len_best = len_dp; |
| 2292 | } |
| 2293 | if (len_best) { |
| 2294 | remainder = (u8 *)*device_path + len_best; |
| 2295 | *device_path = (struct efi_device_path *)remainder; |
| 2296 | ret = EFI_SUCCESS; |
| 2297 | } else { |
| 2298 | ret = EFI_NOT_FOUND; |
| 2299 | } |
| 2300 | out: |
| 2301 | return EFI_EXIT(ret); |
| 2302 | } |
| 2303 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2304 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2305 | * efi_install_multiple_protocol_interfaces() - Install multiple protocol |
| 2306 | * interfaces |
| 2307 | * @handle: handle on which the protocol interfaces shall be installed |
| 2308 | * @...: NULL terminated argument list with pairs of protocol GUIDS and |
| 2309 | * interfaces |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2310 | * |
| 2311 | * This function implements the MultipleProtocolInterfaces service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2312 | * |
| 2313 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2314 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2315 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2316 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2317 | */ |
Heinrich Schuchardt | 744d83e | 2019-04-12 06:59:49 +0200 | [diff] [blame] | 2318 | efi_status_t EFIAPI efi_install_multiple_protocol_interfaces |
Heinrich Schuchardt | 4f94ec5 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 2319 | (efi_handle_t *handle, ...) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2320 | { |
| 2321 | EFI_ENTRY("%p", handle); |
xypron.glpk@gmx.de | 83eebc7 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2322 | |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2323 | efi_va_list argptr; |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 2324 | const efi_guid_t *protocol; |
xypron.glpk@gmx.de | 83eebc7 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2325 | void *protocol_interface; |
| 2326 | efi_status_t r = EFI_SUCCESS; |
| 2327 | int i = 0; |
| 2328 | |
| 2329 | if (!handle) |
| 2330 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
| 2331 | |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2332 | efi_va_start(argptr, handle); |
xypron.glpk@gmx.de | 83eebc7 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2333 | for (;;) { |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2334 | protocol = efi_va_arg(argptr, efi_guid_t*); |
xypron.glpk@gmx.de | 83eebc7 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2335 | if (!protocol) |
| 2336 | break; |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2337 | protocol_interface = efi_va_arg(argptr, void*); |
Heinrich Schuchardt | 0a27ac8 | 2017-11-06 21:17:44 +0100 | [diff] [blame] | 2338 | r = EFI_CALL(efi_install_protocol_interface( |
| 2339 | handle, protocol, |
| 2340 | EFI_NATIVE_INTERFACE, |
| 2341 | protocol_interface)); |
xypron.glpk@gmx.de | 83eebc7 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2342 | if (r != EFI_SUCCESS) |
| 2343 | break; |
| 2344 | i++; |
| 2345 | } |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2346 | efi_va_end(argptr); |
xypron.glpk@gmx.de | 83eebc7 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2347 | if (r == EFI_SUCCESS) |
| 2348 | return EFI_EXIT(r); |
| 2349 | |
Heinrich Schuchardt | ec47f3e | 2017-10-26 19:25:42 +0200 | [diff] [blame] | 2350 | /* If an error occurred undo all changes. */ |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2351 | efi_va_start(argptr, handle); |
xypron.glpk@gmx.de | 83eebc7 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2352 | for (; i; --i) { |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2353 | protocol = efi_va_arg(argptr, efi_guid_t*); |
| 2354 | protocol_interface = efi_va_arg(argptr, void*); |
Heinrich Schuchardt | 4f94ec5 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 2355 | EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol, |
Heinrich Schuchardt | 7cdc17f | 2017-11-06 21:17:45 +0100 | [diff] [blame] | 2356 | protocol_interface)); |
xypron.glpk@gmx.de | 83eebc7 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2357 | } |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2358 | efi_va_end(argptr); |
xypron.glpk@gmx.de | 83eebc7 | 2017-07-11 22:06:20 +0200 | [diff] [blame] | 2359 | |
| 2360 | return EFI_EXIT(r); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2361 | } |
| 2362 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2363 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2364 | * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol |
| 2365 | * interfaces |
| 2366 | * @handle: handle from which the protocol interfaces shall be removed |
| 2367 | * @...: NULL terminated argument list with pairs of protocol GUIDS and |
| 2368 | * interfaces |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2369 | * |
| 2370 | * This function implements the UninstallMultipleProtocolInterfaces service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2371 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2372 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2373 | * details. |
| 2374 | * |
| 2375 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2376 | */ |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2377 | static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces( |
Heinrich Schuchardt | 4f94ec5 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 2378 | efi_handle_t handle, ...) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2379 | { |
| 2380 | EFI_ENTRY("%p", handle); |
Heinrich Schuchardt | a616dcf | 2017-10-26 19:25:44 +0200 | [diff] [blame] | 2381 | |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2382 | efi_va_list argptr; |
Heinrich Schuchardt | a616dcf | 2017-10-26 19:25:44 +0200 | [diff] [blame] | 2383 | const efi_guid_t *protocol; |
| 2384 | void *protocol_interface; |
| 2385 | efi_status_t r = EFI_SUCCESS; |
| 2386 | size_t i = 0; |
| 2387 | |
| 2388 | if (!handle) |
| 2389 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
| 2390 | |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2391 | efi_va_start(argptr, handle); |
Heinrich Schuchardt | a616dcf | 2017-10-26 19:25:44 +0200 | [diff] [blame] | 2392 | for (;;) { |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2393 | protocol = efi_va_arg(argptr, efi_guid_t*); |
Heinrich Schuchardt | a616dcf | 2017-10-26 19:25:44 +0200 | [diff] [blame] | 2394 | if (!protocol) |
| 2395 | break; |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2396 | protocol_interface = efi_va_arg(argptr, void*); |
Heinrich Schuchardt | 1b45134 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 2397 | r = efi_uninstall_protocol(handle, protocol, |
| 2398 | protocol_interface); |
Heinrich Schuchardt | a616dcf | 2017-10-26 19:25:44 +0200 | [diff] [blame] | 2399 | if (r != EFI_SUCCESS) |
| 2400 | break; |
| 2401 | i++; |
| 2402 | } |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2403 | efi_va_end(argptr); |
Heinrich Schuchardt | 1b45134 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 2404 | if (r == EFI_SUCCESS) { |
| 2405 | /* If the last protocol has been removed, delete the handle. */ |
| 2406 | if (list_empty(&handle->protocols)) { |
| 2407 | list_del(&handle->link); |
| 2408 | free(handle); |
| 2409 | } |
Heinrich Schuchardt | a616dcf | 2017-10-26 19:25:44 +0200 | [diff] [blame] | 2410 | return EFI_EXIT(r); |
Heinrich Schuchardt | 1b45134 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 2411 | } |
Heinrich Schuchardt | a616dcf | 2017-10-26 19:25:44 +0200 | [diff] [blame] | 2412 | |
| 2413 | /* If an error occurred undo all changes. */ |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2414 | efi_va_start(argptr, handle); |
Heinrich Schuchardt | a616dcf | 2017-10-26 19:25:44 +0200 | [diff] [blame] | 2415 | for (; i; --i) { |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2416 | protocol = efi_va_arg(argptr, efi_guid_t*); |
| 2417 | protocol_interface = efi_va_arg(argptr, void*); |
Heinrich Schuchardt | a616dcf | 2017-10-26 19:25:44 +0200 | [diff] [blame] | 2418 | EFI_CALL(efi_install_protocol_interface(&handle, protocol, |
| 2419 | EFI_NATIVE_INTERFACE, |
| 2420 | protocol_interface)); |
| 2421 | } |
Alexander Graf | 404a7c8 | 2018-06-18 17:23:05 +0200 | [diff] [blame] | 2422 | efi_va_end(argptr); |
Heinrich Schuchardt | a616dcf | 2017-10-26 19:25:44 +0200 | [diff] [blame] | 2423 | |
Heinrich Schuchardt | 1c76eda | 2018-09-24 19:57:27 +0200 | [diff] [blame] | 2424 | /* In case of an error always return EFI_INVALID_PARAMETER */ |
| 2425 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2426 | } |
| 2427 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2428 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2429 | * efi_calculate_crc32() - calculate cyclic redundancy code |
| 2430 | * @data: buffer with data |
| 2431 | * @data_size: size of buffer in bytes |
| 2432 | * @crc32_p: cyclic redundancy code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2433 | * |
| 2434 | * This function implements the CalculateCrc32 service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2435 | * |
| 2436 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2437 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2438 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2439 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2440 | */ |
Heinrich Schuchardt | f272558 | 2018-07-07 15:36:04 +0200 | [diff] [blame] | 2441 | static efi_status_t EFIAPI efi_calculate_crc32(const void *data, |
| 2442 | efi_uintn_t data_size, |
| 2443 | u32 *crc32_p) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2444 | { |
Heinrich Schuchardt | f272558 | 2018-07-07 15:36:04 +0200 | [diff] [blame] | 2445 | EFI_ENTRY("%p, %zu", data, data_size); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2446 | *crc32_p = crc32(0, data, data_size); |
| 2447 | return EFI_EXIT(EFI_SUCCESS); |
| 2448 | } |
| 2449 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2450 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2451 | * efi_copy_mem() - copy memory |
| 2452 | * @destination: destination of the copy operation |
| 2453 | * @source: source of the copy operation |
| 2454 | * @length: number of bytes to copy |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2455 | * |
| 2456 | * This function implements the CopyMem service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2457 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2458 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2459 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2460 | */ |
Heinrich Schuchardt | d0a349e | 2017-10-05 16:35:52 +0200 | [diff] [blame] | 2461 | static void EFIAPI efi_copy_mem(void *destination, const void *source, |
| 2462 | size_t length) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2463 | { |
Heinrich Schuchardt | d0a349e | 2017-10-05 16:35:52 +0200 | [diff] [blame] | 2464 | EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length); |
Heinrich Schuchardt | efba6ba | 2019-01-09 21:41:13 +0100 | [diff] [blame] | 2465 | memmove(destination, source, length); |
Heinrich Schuchardt | a5270e0 | 2017-10-05 16:35:51 +0200 | [diff] [blame] | 2466 | EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2467 | } |
| 2468 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2469 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2470 | * efi_set_mem() - Fill memory with a byte value. |
| 2471 | * @buffer: buffer to fill |
| 2472 | * @size: size of buffer in bytes |
| 2473 | * @value: byte to copy to the buffer |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2474 | * |
| 2475 | * This function implements the SetMem service. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2476 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2477 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2478 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2479 | */ |
Heinrich Schuchardt | d0a349e | 2017-10-05 16:35:52 +0200 | [diff] [blame] | 2480 | static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2481 | { |
Heinrich Schuchardt | d0a349e | 2017-10-05 16:35:52 +0200 | [diff] [blame] | 2482 | EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2483 | memset(buffer, value, size); |
Heinrich Schuchardt | a5270e0 | 2017-10-05 16:35:51 +0200 | [diff] [blame] | 2484 | EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2485 | } |
| 2486 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2487 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2488 | * efi_protocol_open() - open protocol interface on a handle |
| 2489 | * @handler: handler of a protocol |
| 2490 | * @protocol_interface: interface implementing the protocol |
| 2491 | * @agent_handle: handle of the driver |
| 2492 | * @controller_handle: handle of the controller |
| 2493 | * @attributes: attributes indicating how to open the protocol |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2494 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2495 | * Return: status code |
Heinrich Schuchardt | 8cb38c0 | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 2496 | */ |
| 2497 | static efi_status_t efi_protocol_open( |
| 2498 | struct efi_handler *handler, |
| 2499 | void **protocol_interface, void *agent_handle, |
| 2500 | void *controller_handle, uint32_t attributes) |
| 2501 | { |
| 2502 | struct efi_open_protocol_info_item *item; |
| 2503 | struct efi_open_protocol_info_entry *match = NULL; |
| 2504 | bool opened_by_driver = false; |
| 2505 | bool opened_exclusive = false; |
| 2506 | |
| 2507 | /* If there is no agent, only return the interface */ |
| 2508 | if (!agent_handle) |
| 2509 | goto out; |
| 2510 | |
| 2511 | /* For TEST_PROTOCOL ignore interface attribute */ |
| 2512 | if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL) |
| 2513 | *protocol_interface = NULL; |
| 2514 | |
| 2515 | /* |
| 2516 | * Check if the protocol is already opened by a driver with the same |
| 2517 | * attributes or opened exclusively |
| 2518 | */ |
| 2519 | list_for_each_entry(item, &handler->open_infos, link) { |
| 2520 | if (item->info.agent_handle == agent_handle) { |
| 2521 | if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) && |
| 2522 | (item->info.attributes == attributes)) |
| 2523 | return EFI_ALREADY_STARTED; |
| 2524 | } |
| 2525 | if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) |
| 2526 | opened_exclusive = true; |
| 2527 | } |
| 2528 | |
| 2529 | /* Only one controller can open the protocol exclusively */ |
| 2530 | if (opened_exclusive && attributes & |
| 2531 | (EFI_OPEN_PROTOCOL_EXCLUSIVE | EFI_OPEN_PROTOCOL_BY_DRIVER)) |
| 2532 | return EFI_ACCESS_DENIED; |
| 2533 | |
| 2534 | /* Prepare exclusive opening */ |
| 2535 | if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) { |
| 2536 | /* Try to disconnect controllers */ |
| 2537 | list_for_each_entry(item, &handler->open_infos, link) { |
| 2538 | if (item->info.attributes == |
| 2539 | EFI_OPEN_PROTOCOL_BY_DRIVER) |
| 2540 | EFI_CALL(efi_disconnect_controller( |
| 2541 | item->info.controller_handle, |
| 2542 | item->info.agent_handle, |
| 2543 | NULL)); |
| 2544 | } |
| 2545 | opened_by_driver = false; |
| 2546 | /* Check if all controllers are disconnected */ |
| 2547 | list_for_each_entry(item, &handler->open_infos, link) { |
| 2548 | if (item->info.attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) |
| 2549 | opened_by_driver = true; |
| 2550 | } |
Heinrich Schuchardt | 8d0b45d | 2018-09-30 13:40:43 +0200 | [diff] [blame] | 2551 | /* Only one controller can be connected */ |
Heinrich Schuchardt | 8cb38c0 | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 2552 | if (opened_by_driver) |
| 2553 | return EFI_ACCESS_DENIED; |
| 2554 | } |
| 2555 | |
| 2556 | /* Find existing entry */ |
| 2557 | list_for_each_entry(item, &handler->open_infos, link) { |
| 2558 | if (item->info.agent_handle == agent_handle && |
| 2559 | item->info.controller_handle == controller_handle) |
| 2560 | match = &item->info; |
| 2561 | } |
| 2562 | /* None found, create one */ |
| 2563 | if (!match) { |
| 2564 | match = efi_create_open_info(handler); |
| 2565 | if (!match) |
| 2566 | return EFI_OUT_OF_RESOURCES; |
| 2567 | } |
| 2568 | |
| 2569 | match->agent_handle = agent_handle; |
| 2570 | match->controller_handle = controller_handle; |
| 2571 | match->attributes = attributes; |
| 2572 | match->open_count++; |
| 2573 | |
| 2574 | out: |
| 2575 | /* For TEST_PROTOCOL ignore interface attribute. */ |
| 2576 | if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL) |
| 2577 | *protocol_interface = handler->protocol_interface; |
| 2578 | |
| 2579 | return EFI_SUCCESS; |
| 2580 | } |
| 2581 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2582 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2583 | * efi_open_protocol() - open protocol interface on a handle |
| 2584 | * @handle: handle on which the protocol shall be opened |
| 2585 | * @protocol: GUID of the protocol |
| 2586 | * @protocol_interface: interface implementing the protocol |
| 2587 | * @agent_handle: handle of the driver |
| 2588 | * @controller_handle: handle of the controller |
| 2589 | * @attributes: attributes indicating how to open the protocol |
Heinrich Schuchardt | 8cb38c0 | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 2590 | * |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2591 | * This function implements the OpenProtocol interface. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2592 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2593 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2594 | * details. |
| 2595 | * |
| 2596 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2597 | */ |
Heinrich Schuchardt | 4f94ec5 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 2598 | static efi_status_t EFIAPI efi_open_protocol |
| 2599 | (efi_handle_t handle, const efi_guid_t *protocol, |
| 2600 | void **protocol_interface, efi_handle_t agent_handle, |
| 2601 | efi_handle_t controller_handle, uint32_t attributes) |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2602 | { |
Heinrich Schuchardt | e5e78a3 | 2017-11-26 14:05:15 +0100 | [diff] [blame] | 2603 | struct efi_handler *handler; |
xypron.glpk@gmx.de | f097c84 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 2604 | efi_status_t r = EFI_INVALID_PARAMETER; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2605 | |
Rob Clark | 238f88c | 2017-09-13 18:05:41 -0400 | [diff] [blame] | 2606 | EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2607 | protocol_interface, agent_handle, controller_handle, |
| 2608 | attributes); |
xypron.glpk@gmx.de | c35c924 | 2017-07-11 22:06:14 +0200 | [diff] [blame] | 2609 | |
xypron.glpk@gmx.de | f097c84 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 2610 | if (!handle || !protocol || |
| 2611 | (!protocol_interface && attributes != |
| 2612 | EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) { |
xypron.glpk@gmx.de | c35c924 | 2017-07-11 22:06:14 +0200 | [diff] [blame] | 2613 | goto out; |
| 2614 | } |
| 2615 | |
xypron.glpk@gmx.de | f097c84 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 2616 | switch (attributes) { |
| 2617 | case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL: |
| 2618 | case EFI_OPEN_PROTOCOL_GET_PROTOCOL: |
| 2619 | case EFI_OPEN_PROTOCOL_TEST_PROTOCOL: |
| 2620 | break; |
| 2621 | case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER: |
| 2622 | if (controller_handle == handle) |
| 2623 | goto out; |
Heinrich Schuchardt | 8cb38c0 | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 2624 | /* fall-through */ |
xypron.glpk@gmx.de | f097c84 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 2625 | case EFI_OPEN_PROTOCOL_BY_DRIVER: |
| 2626 | case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE: |
Heinrich Schuchardt | 8cb38c0 | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 2627 | /* Check that the controller handle is valid */ |
| 2628 | if (!efi_search_obj(controller_handle)) |
xypron.glpk@gmx.de | f097c84 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 2629 | goto out; |
Heinrich Schuchardt | 8cb38c0 | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 2630 | /* fall-through */ |
xypron.glpk@gmx.de | f097c84 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 2631 | case EFI_OPEN_PROTOCOL_EXCLUSIVE: |
Heinrich Schuchardt | 8cb38c0 | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 2632 | /* Check that the agent handle is valid */ |
| 2633 | if (!efi_search_obj(agent_handle)) |
xypron.glpk@gmx.de | f097c84 | 2017-07-11 22:06:15 +0200 | [diff] [blame] | 2634 | goto out; |
| 2635 | break; |
| 2636 | default: |
| 2637 | goto out; |
| 2638 | } |
| 2639 | |
Heinrich Schuchardt | e5e78a3 | 2017-11-26 14:05:15 +0100 | [diff] [blame] | 2640 | r = efi_search_protocol(handle, protocol, &handler); |
| 2641 | if (r != EFI_SUCCESS) |
| 2642 | goto out; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2643 | |
Heinrich Schuchardt | 8cb38c0 | 2018-01-11 08:15:58 +0100 | [diff] [blame] | 2644 | r = efi_protocol_open(handler, protocol_interface, agent_handle, |
| 2645 | controller_handle, attributes); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2646 | out: |
| 2647 | return EFI_EXIT(r); |
| 2648 | } |
| 2649 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2650 | /** |
Heinrich Schuchardt | 2650a4d | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 2651 | * efi_start_image() - call the entry point of an image |
| 2652 | * @image_handle: handle of the image |
| 2653 | * @exit_data_size: size of the buffer |
| 2654 | * @exit_data: buffer to receive the exit data of the called image |
| 2655 | * |
| 2656 | * This function implements the StartImage service. |
| 2657 | * |
| 2658 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2659 | * details. |
| 2660 | * |
| 2661 | * Return: status code |
| 2662 | */ |
| 2663 | efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle, |
| 2664 | efi_uintn_t *exit_data_size, |
| 2665 | u16 **exit_data) |
| 2666 | { |
| 2667 | struct efi_loaded_image_obj *image_obj = |
| 2668 | (struct efi_loaded_image_obj *)image_handle; |
| 2669 | efi_status_t ret; |
Heinrich Schuchardt | 8efe079 | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 2670 | void *info; |
| 2671 | efi_handle_t parent_image = current_image; |
Heinrich Schuchardt | 2650a4d | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 2672 | |
| 2673 | EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data); |
| 2674 | |
Heinrich Schuchardt | 8efe079 | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 2675 | /* Check parameters */ |
| 2676 | ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image, |
| 2677 | &info, NULL, NULL, |
| 2678 | EFI_OPEN_PROTOCOL_GET_PROTOCOL)); |
| 2679 | if (ret != EFI_SUCCESS) |
| 2680 | return EFI_EXIT(EFI_INVALID_PARAMETER); |
| 2681 | |
Heinrich Schuchardt | 2650a4d | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 2682 | efi_is_direct_boot = false; |
| 2683 | |
Heinrich Schuchardt | 3d44512 | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 2684 | image_obj->exit_data_size = exit_data_size; |
| 2685 | image_obj->exit_data = exit_data; |
| 2686 | |
Heinrich Schuchardt | 2650a4d | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 2687 | /* call the image! */ |
| 2688 | if (setjmp(&image_obj->exit_jmp)) { |
| 2689 | /* |
| 2690 | * We called the entry point of the child image with EFI_CALL |
| 2691 | * in the lines below. The child image called the Exit() boot |
| 2692 | * service efi_exit() which executed the long jump that brought |
| 2693 | * us to the current line. This implies that the second half |
| 2694 | * of the EFI_CALL macro has not been executed. |
| 2695 | */ |
| 2696 | #ifdef CONFIG_ARM |
| 2697 | /* |
| 2698 | * efi_exit() called efi_restore_gd(). We have to undo this |
| 2699 | * otherwise __efi_entry_check() will put the wrong value into |
| 2700 | * app_gd. |
| 2701 | */ |
| 2702 | gd = app_gd; |
| 2703 | #endif |
| 2704 | /* |
| 2705 | * To get ready to call EFI_EXIT below we have to execute the |
| 2706 | * missed out steps of EFI_CALL. |
| 2707 | */ |
| 2708 | assert(__efi_entry_check()); |
| 2709 | debug("%sEFI: %lu returned by started image\n", |
| 2710 | __efi_nesting_dec(), |
| 2711 | (unsigned long)((uintptr_t)image_obj->exit_status & |
| 2712 | ~EFI_ERROR_MASK)); |
Heinrich Schuchardt | 8efe079 | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 2713 | current_image = parent_image; |
Heinrich Schuchardt | 2650a4d | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 2714 | return EFI_EXIT(image_obj->exit_status); |
| 2715 | } |
| 2716 | |
Heinrich Schuchardt | 8efe079 | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 2717 | current_image = image_handle; |
Heinrich Schuchardt | b27ced4 | 2019-05-01 14:20:18 +0200 | [diff] [blame] | 2718 | image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE; |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 2719 | EFI_PRINT("Jumping into 0x%p\n", image_obj->entry); |
Heinrich Schuchardt | 2650a4d | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 2720 | ret = EFI_CALL(image_obj->entry(image_handle, &systab)); |
| 2721 | |
| 2722 | /* |
| 2723 | * Usually UEFI applications call Exit() instead of returning. |
| 2724 | * But because the world doesn't consist of ponies and unicorns, |
| 2725 | * we're happy to emulate that behavior on behalf of a payload |
| 2726 | * that forgot. |
| 2727 | */ |
| 2728 | return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL)); |
| 2729 | } |
| 2730 | |
| 2731 | /** |
Heinrich Schuchardt | 4ed66e5 | 2019-05-01 18:25:45 +0200 | [diff] [blame] | 2732 | * efi_delete_image() - delete loaded image from memory) |
| 2733 | * |
| 2734 | * @image_obj: handle of the loaded image |
| 2735 | * @loaded_image_protocol: loaded image protocol |
| 2736 | */ |
| 2737 | static void efi_delete_image(struct efi_loaded_image_obj *image_obj, |
| 2738 | struct efi_loaded_image *loaded_image_protocol) |
| 2739 | { |
| 2740 | efi_free_pages((uintptr_t)loaded_image_protocol->image_base, |
| 2741 | efi_size_in_pages(loaded_image_protocol->image_size)); |
| 2742 | efi_delete_handle(&image_obj->header); |
| 2743 | } |
| 2744 | |
| 2745 | /** |
Heinrich Schuchardt | 6b3581a | 2019-05-01 19:04:32 +0200 | [diff] [blame] | 2746 | * efi_unload_image() - unload an EFI image |
| 2747 | * @image_handle: handle of the image to be unloaded |
| 2748 | * |
| 2749 | * This function implements the UnloadImage service. |
| 2750 | * |
| 2751 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2752 | * details. |
| 2753 | * |
| 2754 | * Return: status code |
| 2755 | */ |
| 2756 | efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle) |
| 2757 | { |
Heinrich Schuchardt | 4ed66e5 | 2019-05-01 18:25:45 +0200 | [diff] [blame] | 2758 | efi_status_t ret = EFI_SUCCESS; |
Heinrich Schuchardt | 6b3581a | 2019-05-01 19:04:32 +0200 | [diff] [blame] | 2759 | struct efi_object *efiobj; |
Heinrich Schuchardt | 4ed66e5 | 2019-05-01 18:25:45 +0200 | [diff] [blame] | 2760 | struct efi_loaded_image *loaded_image_protocol; |
Heinrich Schuchardt | 6b3581a | 2019-05-01 19:04:32 +0200 | [diff] [blame] | 2761 | |
| 2762 | EFI_ENTRY("%p", image_handle); |
Heinrich Schuchardt | 6b3581a | 2019-05-01 19:04:32 +0200 | [diff] [blame] | 2763 | |
Heinrich Schuchardt | 4ed66e5 | 2019-05-01 18:25:45 +0200 | [diff] [blame] | 2764 | efiobj = efi_search_obj(image_handle); |
| 2765 | if (!efiobj) { |
| 2766 | ret = EFI_INVALID_PARAMETER; |
| 2767 | goto out; |
| 2768 | } |
| 2769 | /* Find the loaded image protocol */ |
| 2770 | ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image, |
| 2771 | (void **)&loaded_image_protocol, |
| 2772 | NULL, NULL, |
| 2773 | EFI_OPEN_PROTOCOL_GET_PROTOCOL)); |
| 2774 | if (ret != EFI_SUCCESS) { |
| 2775 | ret = EFI_INVALID_PARAMETER; |
| 2776 | goto out; |
| 2777 | } |
| 2778 | switch (efiobj->type) { |
| 2779 | case EFI_OBJECT_TYPE_STARTED_IMAGE: |
| 2780 | /* Call the unload function */ |
| 2781 | if (!loaded_image_protocol->unload) { |
| 2782 | ret = EFI_UNSUPPORTED; |
| 2783 | goto out; |
| 2784 | } |
| 2785 | ret = EFI_CALL(loaded_image_protocol->unload(image_handle)); |
| 2786 | if (ret != EFI_SUCCESS) |
| 2787 | goto out; |
| 2788 | break; |
| 2789 | case EFI_OBJECT_TYPE_LOADED_IMAGE: |
| 2790 | break; |
| 2791 | default: |
| 2792 | ret = EFI_INVALID_PARAMETER; |
| 2793 | goto out; |
| 2794 | } |
| 2795 | efi_delete_image((struct efi_loaded_image_obj *)efiobj, |
| 2796 | loaded_image_protocol); |
| 2797 | out: |
| 2798 | return EFI_EXIT(ret); |
Heinrich Schuchardt | 6b3581a | 2019-05-01 19:04:32 +0200 | [diff] [blame] | 2799 | } |
| 2800 | |
| 2801 | /** |
Heinrich Schuchardt | 3d44512 | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 2802 | * efi_update_exit_data() - fill exit data parameters of StartImage() |
| 2803 | * |
| 2804 | * @image_obj image handle |
| 2805 | * @exit_data_size size of the exit data buffer |
| 2806 | * @exit_data buffer with data returned by UEFI payload |
| 2807 | * Return: status code |
| 2808 | */ |
| 2809 | static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj, |
| 2810 | efi_uintn_t exit_data_size, |
| 2811 | u16 *exit_data) |
| 2812 | { |
| 2813 | efi_status_t ret; |
| 2814 | |
| 2815 | /* |
| 2816 | * If exit_data is not provided to StartImage(), exit_data_size must be |
| 2817 | * ignored. |
| 2818 | */ |
| 2819 | if (!image_obj->exit_data) |
| 2820 | return EFI_SUCCESS; |
| 2821 | if (image_obj->exit_data_size) |
| 2822 | *image_obj->exit_data_size = exit_data_size; |
| 2823 | if (exit_data_size && exit_data) { |
| 2824 | ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, |
| 2825 | exit_data_size, |
| 2826 | (void **)image_obj->exit_data); |
| 2827 | if (ret != EFI_SUCCESS) |
| 2828 | return ret; |
| 2829 | memcpy(*image_obj->exit_data, exit_data, exit_data_size); |
| 2830 | } else { |
| 2831 | image_obj->exit_data = NULL; |
| 2832 | } |
| 2833 | return EFI_SUCCESS; |
| 2834 | } |
| 2835 | |
| 2836 | /** |
Heinrich Schuchardt | 2650a4d | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 2837 | * efi_exit() - leave an EFI application or driver |
| 2838 | * @image_handle: handle of the application or driver that is exiting |
| 2839 | * @exit_status: status code |
| 2840 | * @exit_data_size: size of the buffer in bytes |
| 2841 | * @exit_data: buffer with data describing an error |
| 2842 | * |
| 2843 | * This function implements the Exit service. |
| 2844 | * |
| 2845 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2846 | * details. |
| 2847 | * |
| 2848 | * Return: status code |
| 2849 | */ |
| 2850 | static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle, |
| 2851 | efi_status_t exit_status, |
| 2852 | efi_uintn_t exit_data_size, |
| 2853 | u16 *exit_data) |
| 2854 | { |
| 2855 | /* |
| 2856 | * TODO: We should call the unload procedure of the loaded |
| 2857 | * image protocol. |
| 2858 | */ |
Heinrich Schuchardt | 8efe079 | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 2859 | efi_status_t ret; |
Heinrich Schuchardt | 3758752 | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 2860 | struct efi_loaded_image *loaded_image_protocol; |
Heinrich Schuchardt | 2650a4d | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 2861 | struct efi_loaded_image_obj *image_obj = |
| 2862 | (struct efi_loaded_image_obj *)image_handle; |
| 2863 | |
| 2864 | EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status, |
| 2865 | exit_data_size, exit_data); |
| 2866 | |
Heinrich Schuchardt | 8efe079 | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 2867 | /* Check parameters */ |
Heinrich Schuchardt | 8efe079 | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 2868 | ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image, |
Heinrich Schuchardt | 3758752 | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 2869 | (void **)&loaded_image_protocol, |
| 2870 | NULL, NULL, |
Heinrich Schuchardt | 8efe079 | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 2871 | EFI_OPEN_PROTOCOL_GET_PROTOCOL)); |
Heinrich Schuchardt | 3758752 | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 2872 | if (ret != EFI_SUCCESS) { |
| 2873 | ret = EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 8efe079 | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 2874 | goto out; |
Heinrich Schuchardt | 3758752 | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 2875 | } |
| 2876 | |
| 2877 | /* Unloading of unstarted images */ |
| 2878 | switch (image_obj->header.type) { |
| 2879 | case EFI_OBJECT_TYPE_STARTED_IMAGE: |
| 2880 | break; |
| 2881 | case EFI_OBJECT_TYPE_LOADED_IMAGE: |
| 2882 | efi_delete_image(image_obj, loaded_image_protocol); |
| 2883 | ret = EFI_SUCCESS; |
| 2884 | goto out; |
| 2885 | default: |
| 2886 | /* Handle does not refer to loaded image */ |
| 2887 | ret = EFI_INVALID_PARAMETER; |
| 2888 | goto out; |
| 2889 | } |
| 2890 | /* A started image can only be unloaded it is the last one started. */ |
| 2891 | if (image_handle != current_image) { |
| 2892 | ret = EFI_INVALID_PARAMETER; |
| 2893 | goto out; |
| 2894 | } |
Heinrich Schuchardt | 8efe079 | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 2895 | |
Heinrich Schuchardt | 3d44512 | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 2896 | /* Exit data is only foreseen in case of failure. */ |
| 2897 | if (exit_status != EFI_SUCCESS) { |
| 2898 | ret = efi_update_exit_data(image_obj, exit_data_size, |
| 2899 | exit_data); |
| 2900 | /* Exiting has priority. Don't return error to caller. */ |
| 2901 | if (ret != EFI_SUCCESS) |
| 2902 | EFI_PRINT("%s: out of memory\n", __func__); |
| 2903 | } |
Heinrich Schuchardt | 3758752 | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 2904 | if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION || |
| 2905 | exit_status != EFI_SUCCESS) |
| 2906 | efi_delete_image(image_obj, loaded_image_protocol); |
Heinrich Schuchardt | 3d44512 | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 2907 | |
Heinrich Schuchardt | 2650a4d | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 2908 | /* Make sure entry/exit counts for EFI world cross-overs match */ |
| 2909 | EFI_EXIT(exit_status); |
| 2910 | |
| 2911 | /* |
| 2912 | * But longjmp out with the U-Boot gd, not the application's, as |
| 2913 | * the other end is a setjmp call inside EFI context. |
| 2914 | */ |
| 2915 | efi_restore_gd(); |
| 2916 | |
| 2917 | image_obj->exit_status = exit_status; |
| 2918 | longjmp(&image_obj->exit_jmp, 1); |
| 2919 | |
| 2920 | panic("EFI application exited"); |
Heinrich Schuchardt | 8efe079 | 2019-03-26 19:03:17 +0100 | [diff] [blame] | 2921 | out: |
Heinrich Schuchardt | 3758752 | 2019-05-01 20:07:04 +0200 | [diff] [blame] | 2922 | return EFI_EXIT(ret); |
Heinrich Schuchardt | 2650a4d | 2019-03-26 19:02:05 +0100 | [diff] [blame] | 2923 | } |
| 2924 | |
| 2925 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2926 | * efi_handle_protocol() - get interface of a protocol on a handle |
| 2927 | * @handle: handle on which the protocol shall be opened |
| 2928 | * @protocol: GUID of the protocol |
| 2929 | * @protocol_interface: interface implementing the protocol |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2930 | * |
| 2931 | * This function implements the HandleProtocol service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2932 | * |
| 2933 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 2934 | * details. |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2935 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2936 | * Return: status code |
Heinrich Schuchardt | a40db6e | 2017-09-21 18:30:11 +0200 | [diff] [blame] | 2937 | */ |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 2938 | static efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle, |
Heinrich Schuchardt | e547c66 | 2017-10-05 16:35:53 +0200 | [diff] [blame] | 2939 | const efi_guid_t *protocol, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2940 | void **protocol_interface) |
| 2941 | { |
xypron.glpk@gmx.de | 1bf5d87 | 2017-06-29 21:16:19 +0200 | [diff] [blame] | 2942 | return efi_open_protocol(handle, protocol, protocol_interface, NULL, |
| 2943 | NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL); |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 2944 | } |
| 2945 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2946 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2947 | * efi_bind_controller() - bind a single driver to a controller |
| 2948 | * @controller_handle: controller handle |
| 2949 | * @driver_image_handle: driver handle |
| 2950 | * @remain_device_path: remaining path |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2951 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2952 | * Return: status code |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2953 | */ |
Heinrich Schuchardt | 760255f | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 2954 | static efi_status_t efi_bind_controller( |
| 2955 | efi_handle_t controller_handle, |
| 2956 | efi_handle_t driver_image_handle, |
| 2957 | struct efi_device_path *remain_device_path) |
| 2958 | { |
| 2959 | struct efi_driver_binding_protocol *binding_protocol; |
| 2960 | efi_status_t r; |
| 2961 | |
| 2962 | r = EFI_CALL(efi_open_protocol(driver_image_handle, |
| 2963 | &efi_guid_driver_binding_protocol, |
| 2964 | (void **)&binding_protocol, |
| 2965 | driver_image_handle, NULL, |
| 2966 | EFI_OPEN_PROTOCOL_GET_PROTOCOL)); |
| 2967 | if (r != EFI_SUCCESS) |
| 2968 | return r; |
| 2969 | r = EFI_CALL(binding_protocol->supported(binding_protocol, |
| 2970 | controller_handle, |
| 2971 | remain_device_path)); |
| 2972 | if (r == EFI_SUCCESS) |
| 2973 | r = EFI_CALL(binding_protocol->start(binding_protocol, |
| 2974 | controller_handle, |
| 2975 | remain_device_path)); |
| 2976 | EFI_CALL(efi_close_protocol(driver_image_handle, |
| 2977 | &efi_guid_driver_binding_protocol, |
| 2978 | driver_image_handle, NULL)); |
| 2979 | return r; |
| 2980 | } |
| 2981 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2982 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2983 | * efi_connect_single_controller() - connect a single driver to a controller |
| 2984 | * @controller_handle: controller |
| 2985 | * @driver_image_handle: driver |
Heinrich Schuchardt | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 2986 | * @remain_device_path: remaining path |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2987 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 2988 | * Return: status code |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 2989 | */ |
Heinrich Schuchardt | 760255f | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 2990 | static efi_status_t efi_connect_single_controller( |
| 2991 | efi_handle_t controller_handle, |
| 2992 | efi_handle_t *driver_image_handle, |
| 2993 | struct efi_device_path *remain_device_path) |
| 2994 | { |
| 2995 | efi_handle_t *buffer; |
| 2996 | size_t count; |
| 2997 | size_t i; |
| 2998 | efi_status_t r; |
| 2999 | size_t connected = 0; |
| 3000 | |
| 3001 | /* Get buffer with all handles with driver binding protocol */ |
| 3002 | r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, |
| 3003 | &efi_guid_driver_binding_protocol, |
| 3004 | NULL, &count, &buffer)); |
| 3005 | if (r != EFI_SUCCESS) |
| 3006 | return r; |
| 3007 | |
| 3008 | /* Context Override */ |
| 3009 | if (driver_image_handle) { |
| 3010 | for (; *driver_image_handle; ++driver_image_handle) { |
| 3011 | for (i = 0; i < count; ++i) { |
| 3012 | if (buffer[i] == *driver_image_handle) { |
| 3013 | buffer[i] = NULL; |
| 3014 | r = efi_bind_controller( |
| 3015 | controller_handle, |
| 3016 | *driver_image_handle, |
| 3017 | remain_device_path); |
| 3018 | /* |
| 3019 | * For drivers that do not support the |
| 3020 | * controller or are already connected |
| 3021 | * we receive an error code here. |
| 3022 | */ |
| 3023 | if (r == EFI_SUCCESS) |
| 3024 | ++connected; |
| 3025 | } |
| 3026 | } |
| 3027 | } |
| 3028 | } |
| 3029 | |
| 3030 | /* |
| 3031 | * TODO: Some overrides are not yet implemented: |
| 3032 | * - Platform Driver Override |
| 3033 | * - Driver Family Override Search |
| 3034 | * - Bus Specific Driver Override |
| 3035 | */ |
| 3036 | |
| 3037 | /* Driver Binding Search */ |
| 3038 | for (i = 0; i < count; ++i) { |
| 3039 | if (buffer[i]) { |
| 3040 | r = efi_bind_controller(controller_handle, |
| 3041 | buffer[i], |
| 3042 | remain_device_path); |
| 3043 | if (r == EFI_SUCCESS) |
| 3044 | ++connected; |
| 3045 | } |
| 3046 | } |
| 3047 | |
| 3048 | efi_free_pool(buffer); |
| 3049 | if (!connected) |
| 3050 | return EFI_NOT_FOUND; |
| 3051 | return EFI_SUCCESS; |
| 3052 | } |
| 3053 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3054 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3055 | * efi_connect_controller() - connect a controller to a driver |
| 3056 | * @controller_handle: handle of the controller |
| 3057 | * @driver_image_handle: handle of the driver |
| 3058 | * @remain_device_path: device path of a child controller |
| 3059 | * @recursive: true to connect all child controllers |
Heinrich Schuchardt | 760255f | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3060 | * |
| 3061 | * This function implements the ConnectController service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3062 | * |
| 3063 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 3064 | * details. |
Heinrich Schuchardt | 760255f | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3065 | * |
| 3066 | * First all driver binding protocol handles are tried for binding drivers. |
Heinrich Schuchardt | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 3067 | * Afterwards all handles that have opened a protocol of the controller |
Heinrich Schuchardt | 760255f | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3068 | * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers. |
| 3069 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3070 | * Return: status code |
Heinrich Schuchardt | 760255f | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3071 | */ |
| 3072 | static efi_status_t EFIAPI efi_connect_controller( |
| 3073 | efi_handle_t controller_handle, |
| 3074 | efi_handle_t *driver_image_handle, |
| 3075 | struct efi_device_path *remain_device_path, |
| 3076 | bool recursive) |
| 3077 | { |
| 3078 | efi_status_t r; |
| 3079 | efi_status_t ret = EFI_NOT_FOUND; |
| 3080 | struct efi_object *efiobj; |
| 3081 | |
Heinrich Schuchardt | 7c89fb0 | 2018-12-09 16:39:20 +0100 | [diff] [blame] | 3082 | EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle, |
Heinrich Schuchardt | 760255f | 2018-01-11 08:16:02 +0100 | [diff] [blame] | 3083 | remain_device_path, recursive); |
| 3084 | |
| 3085 | efiobj = efi_search_obj(controller_handle); |
| 3086 | if (!efiobj) { |
| 3087 | ret = EFI_INVALID_PARAMETER; |
| 3088 | goto out; |
| 3089 | } |
| 3090 | |
| 3091 | r = efi_connect_single_controller(controller_handle, |
| 3092 | driver_image_handle, |
| 3093 | remain_device_path); |
| 3094 | if (r == EFI_SUCCESS) |
| 3095 | ret = EFI_SUCCESS; |
| 3096 | if (recursive) { |
| 3097 | struct efi_handler *handler; |
| 3098 | struct efi_open_protocol_info_item *item; |
| 3099 | |
| 3100 | list_for_each_entry(handler, &efiobj->protocols, link) { |
| 3101 | list_for_each_entry(item, &handler->open_infos, link) { |
| 3102 | if (item->info.attributes & |
| 3103 | EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) { |
| 3104 | r = EFI_CALL(efi_connect_controller( |
| 3105 | item->info.controller_handle, |
| 3106 | driver_image_handle, |
| 3107 | remain_device_path, |
| 3108 | recursive)); |
| 3109 | if (r == EFI_SUCCESS) |
| 3110 | ret = EFI_SUCCESS; |
| 3111 | } |
| 3112 | } |
| 3113 | } |
| 3114 | } |
| 3115 | /* Check for child controller specified by end node */ |
| 3116 | if (ret != EFI_SUCCESS && remain_device_path && |
| 3117 | remain_device_path->type == DEVICE_PATH_TYPE_END) |
| 3118 | ret = EFI_SUCCESS; |
| 3119 | out: |
| 3120 | return EFI_EXIT(ret); |
| 3121 | } |
| 3122 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3123 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3124 | * efi_reinstall_protocol_interface() - reinstall protocol interface |
| 3125 | * @handle: handle on which the protocol shall be reinstalled |
| 3126 | * @protocol: GUID of the protocol to be installed |
| 3127 | * @old_interface: interface to be removed |
| 3128 | * @new_interface: interface to be installed |
Heinrich Schuchardt | 90761b8 | 2018-05-11 12:09:22 +0200 | [diff] [blame] | 3129 | * |
| 3130 | * This function implements the ReinstallProtocolInterface service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3131 | * |
| 3132 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 3133 | * details. |
Heinrich Schuchardt | 90761b8 | 2018-05-11 12:09:22 +0200 | [diff] [blame] | 3134 | * |
| 3135 | * The old interface is uninstalled. The new interface is installed. |
| 3136 | * Drivers are connected. |
| 3137 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3138 | * Return: status code |
Heinrich Schuchardt | 90761b8 | 2018-05-11 12:09:22 +0200 | [diff] [blame] | 3139 | */ |
| 3140 | static efi_status_t EFIAPI efi_reinstall_protocol_interface( |
| 3141 | efi_handle_t handle, const efi_guid_t *protocol, |
| 3142 | void *old_interface, void *new_interface) |
| 3143 | { |
| 3144 | efi_status_t ret; |
| 3145 | |
| 3146 | EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface, |
| 3147 | new_interface); |
Heinrich Schuchardt | 1b45134 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 3148 | |
| 3149 | /* Uninstall protocol but do not delete handle */ |
| 3150 | ret = efi_uninstall_protocol(handle, protocol, old_interface); |
Heinrich Schuchardt | 90761b8 | 2018-05-11 12:09:22 +0200 | [diff] [blame] | 3151 | if (ret != EFI_SUCCESS) |
| 3152 | goto out; |
Heinrich Schuchardt | 1b45134 | 2018-09-28 22:14:17 +0200 | [diff] [blame] | 3153 | |
| 3154 | /* Install the new protocol */ |
| 3155 | ret = efi_add_protocol(handle, protocol, new_interface); |
| 3156 | /* |
| 3157 | * The UEFI spec does not specify what should happen to the handle |
| 3158 | * if in case of an error no protocol interface remains on the handle. |
| 3159 | * So let's do nothing here. |
| 3160 | */ |
Heinrich Schuchardt | 90761b8 | 2018-05-11 12:09:22 +0200 | [diff] [blame] | 3161 | if (ret != EFI_SUCCESS) |
| 3162 | goto out; |
| 3163 | /* |
| 3164 | * The returned status code has to be ignored. |
| 3165 | * Do not create an error if no suitable driver for the handle exists. |
| 3166 | */ |
| 3167 | EFI_CALL(efi_connect_controller(handle, NULL, NULL, true)); |
| 3168 | out: |
| 3169 | return EFI_EXIT(ret); |
| 3170 | } |
| 3171 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3172 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3173 | * efi_get_child_controllers() - get all child controllers associated to a driver |
| 3174 | * @efiobj: handle of the controller |
| 3175 | * @driver_handle: handle of the driver |
| 3176 | * @number_of_children: number of child controllers |
| 3177 | * @child_handle_buffer: handles of the the child controllers |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3178 | * |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3179 | * The allocated buffer has to be freed with free(). |
| 3180 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3181 | * Return: status code |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3182 | */ |
| 3183 | static efi_status_t efi_get_child_controllers( |
| 3184 | struct efi_object *efiobj, |
| 3185 | efi_handle_t driver_handle, |
| 3186 | efi_uintn_t *number_of_children, |
| 3187 | efi_handle_t **child_handle_buffer) |
| 3188 | { |
| 3189 | struct efi_handler *handler; |
| 3190 | struct efi_open_protocol_info_item *item; |
| 3191 | efi_uintn_t count = 0, i; |
| 3192 | bool duplicate; |
| 3193 | |
| 3194 | /* Count all child controller associations */ |
| 3195 | list_for_each_entry(handler, &efiobj->protocols, link) { |
| 3196 | list_for_each_entry(item, &handler->open_infos, link) { |
| 3197 | if (item->info.agent_handle == driver_handle && |
| 3198 | item->info.attributes & |
| 3199 | EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) |
| 3200 | ++count; |
| 3201 | } |
| 3202 | } |
| 3203 | /* |
| 3204 | * Create buffer. In case of duplicate child controller assignments |
| 3205 | * the buffer will be too large. But that does not harm. |
| 3206 | */ |
| 3207 | *number_of_children = 0; |
| 3208 | *child_handle_buffer = calloc(count, sizeof(efi_handle_t)); |
| 3209 | if (!*child_handle_buffer) |
| 3210 | return EFI_OUT_OF_RESOURCES; |
| 3211 | /* Copy unique child handles */ |
| 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 | /* Check this is a new child controller */ |
| 3218 | duplicate = false; |
| 3219 | for (i = 0; i < *number_of_children; ++i) { |
| 3220 | if ((*child_handle_buffer)[i] == |
| 3221 | item->info.controller_handle) |
| 3222 | duplicate = true; |
| 3223 | } |
| 3224 | /* Copy handle to buffer */ |
| 3225 | if (!duplicate) { |
| 3226 | i = (*number_of_children)++; |
| 3227 | (*child_handle_buffer)[i] = |
| 3228 | item->info.controller_handle; |
| 3229 | } |
| 3230 | } |
| 3231 | } |
| 3232 | } |
| 3233 | return EFI_SUCCESS; |
| 3234 | } |
| 3235 | |
Heinrich Schuchardt | 5999917 | 2018-05-11 18:15:41 +0200 | [diff] [blame] | 3236 | /** |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3237 | * efi_disconnect_controller() - disconnect a controller from a driver |
| 3238 | * @controller_handle: handle of the controller |
| 3239 | * @driver_image_handle: handle of the driver |
| 3240 | * @child_handle: handle of the child to destroy |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3241 | * |
| 3242 | * This function implements the DisconnectController service. |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3243 | * |
| 3244 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 3245 | * details. |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3246 | * |
Mario Six | 8fac291 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 3247 | * Return: status code |
Heinrich Schuchardt | e994328 | 2018-01-11 08:16:04 +0100 | [diff] [blame] | 3248 | */ |
| 3249 | static efi_status_t EFIAPI efi_disconnect_controller( |
| 3250 | efi_handle_t controller_handle, |
| 3251 | efi_handle_t driver_image_handle, |
| 3252 | efi_handle_t child_handle) |
| 3253 | { |
| 3254 | struct efi_driver_binding_protocol *binding_protocol; |
| 3255 | efi_handle_t *child_handle_buffer = NULL; |
| 3256 | size_t number_of_children = 0; |
| 3257 | efi_status_t r; |
| 3258 | size_t stop_count = 0; |
| 3259 | struct efi_object *efiobj; |
| 3260 | |
| 3261 | EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle, |
| 3262 | child_handle); |
| 3263 | |
| 3264 | efiobj = efi_search_obj(controller_handle); |
| 3265 | if (!efiobj) { |
| 3266 | r = EFI_INVALID_PARAMETER; |
| 3267 | goto out; |
| 3268 | } |
| 3269 | |
| 3270 | if (child_handle && !efi_search_obj(child_handle)) { |
| 3271 | r = EFI_INVALID_PARAMETER; |
| 3272 | goto out; |
| 3273 | } |
| 3274 | |
| 3275 | /* If no driver handle is supplied, disconnect all drivers */ |
| 3276 | if (!driver_image_handle) { |
| 3277 | r = efi_disconnect_all_drivers(efiobj, NULL, child_handle); |
| 3278 | goto out; |
| 3279 | } |
| 3280 | |
| 3281 | /* Create list of child handles */ |
| 3282 | if (child_handle) { |
| 3283 | number_of_children = 1; |
| 3284 | child_handle_buffer = &child_handle; |
| 3285 | } else { |
| 3286 | efi_get_child_controllers(efiobj, |
| 3287 | driver_image_handle, |
| 3288 | &number_of_children, |
| 3289 | &child_handle_buffer); |
| 3290 | } |
| 3291 | |
| 3292 | /* Get the driver binding protocol */ |
| 3293 | r = EFI_CALL(efi_open_protocol(driver_image_handle, |
| 3294 | &efi_guid_driver_binding_protocol, |
| 3295 | (void **)&binding_protocol, |
| 3296 | driver_image_handle, NULL, |
| 3297 | EFI_OPEN_PROTOCOL_GET_PROTOCOL)); |
| 3298 | if (r != EFI_SUCCESS) |
| 3299 | goto out; |
| 3300 | /* Remove the children */ |
| 3301 | if (number_of_children) { |
| 3302 | r = EFI_CALL(binding_protocol->stop(binding_protocol, |
| 3303 | controller_handle, |
| 3304 | number_of_children, |
| 3305 | child_handle_buffer)); |
| 3306 | if (r == EFI_SUCCESS) |
| 3307 | ++stop_count; |
| 3308 | } |
| 3309 | /* Remove the driver */ |
| 3310 | if (!child_handle) |
| 3311 | r = EFI_CALL(binding_protocol->stop(binding_protocol, |
| 3312 | controller_handle, |
| 3313 | 0, NULL)); |
| 3314 | if (r == EFI_SUCCESS) |
| 3315 | ++stop_count; |
| 3316 | EFI_CALL(efi_close_protocol(driver_image_handle, |
| 3317 | &efi_guid_driver_binding_protocol, |
| 3318 | driver_image_handle, NULL)); |
| 3319 | |
| 3320 | if (stop_count) |
| 3321 | r = EFI_SUCCESS; |
| 3322 | else |
| 3323 | r = EFI_NOT_FOUND; |
| 3324 | out: |
| 3325 | if (!child_handle) |
| 3326 | free(child_handle_buffer); |
| 3327 | return EFI_EXIT(r); |
| 3328 | } |
| 3329 | |
Heinrich Schuchardt | 15070db | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 3330 | static struct efi_boot_services efi_boot_services = { |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3331 | .hdr = { |
Heinrich Schuchardt | e75b3cb | 2018-06-28 12:45:27 +0200 | [diff] [blame] | 3332 | .signature = EFI_BOOT_SERVICES_SIGNATURE, |
| 3333 | .revision = EFI_SPECIFICATION_VERSION, |
Heinrich Schuchardt | 1020425 | 2018-06-28 12:45:29 +0200 | [diff] [blame] | 3334 | .headersize = sizeof(struct efi_boot_services), |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3335 | }, |
| 3336 | .raise_tpl = efi_raise_tpl, |
| 3337 | .restore_tpl = efi_restore_tpl, |
| 3338 | .allocate_pages = efi_allocate_pages_ext, |
| 3339 | .free_pages = efi_free_pages_ext, |
| 3340 | .get_memory_map = efi_get_memory_map_ext, |
Stefan Brüns | 5a09aef | 2016-10-09 22:17:18 +0200 | [diff] [blame] | 3341 | .allocate_pool = efi_allocate_pool_ext, |
Stefan Brüns | 67b67d9 | 2016-10-09 22:17:26 +0200 | [diff] [blame] | 3342 | .free_pool = efi_free_pool_ext, |
xypron.glpk@gmx.de | 852a0e177 | 2017-07-18 20:17:20 +0200 | [diff] [blame] | 3343 | .create_event = efi_create_event_ext, |
xypron.glpk@gmx.de | a587fd1 | 2017-07-18 20:17:21 +0200 | [diff] [blame] | 3344 | .set_timer = efi_set_timer_ext, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3345 | .wait_for_event = efi_wait_for_event, |
xypron.glpk@gmx.de | 3070823 | 2017-07-18 20:17:18 +0200 | [diff] [blame] | 3346 | .signal_event = efi_signal_event_ext, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3347 | .close_event = efi_close_event, |
| 3348 | .check_event = efi_check_event, |
Heinrich Schuchardt | 0a27ac8 | 2017-11-06 21:17:44 +0100 | [diff] [blame] | 3349 | .install_protocol_interface = efi_install_protocol_interface, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3350 | .reinstall_protocol_interface = efi_reinstall_protocol_interface, |
Heinrich Schuchardt | 7cdc17f | 2017-11-06 21:17:45 +0100 | [diff] [blame] | 3351 | .uninstall_protocol_interface = efi_uninstall_protocol_interface, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3352 | .handle_protocol = efi_handle_protocol, |
| 3353 | .reserved = NULL, |
| 3354 | .register_protocol_notify = efi_register_protocol_notify, |
xypron.glpk@gmx.de | 69f9403 | 2017-07-11 22:06:21 +0200 | [diff] [blame] | 3355 | .locate_handle = efi_locate_handle_ext, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3356 | .locate_device_path = efi_locate_device_path, |
Alexander Graf | c5c1163 | 2016-08-19 01:23:24 +0200 | [diff] [blame] | 3357 | .install_configuration_table = efi_install_configuration_table_ext, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3358 | .load_image = efi_load_image, |
| 3359 | .start_image = efi_start_image, |
Alexander Graf | 988c066 | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 3360 | .exit = efi_exit, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3361 | .unload_image = efi_unload_image, |
| 3362 | .exit_boot_services = efi_exit_boot_services, |
| 3363 | .get_next_monotonic_count = efi_get_next_monotonic_count, |
| 3364 | .stall = efi_stall, |
| 3365 | .set_watchdog_timer = efi_set_watchdog_timer, |
| 3366 | .connect_controller = efi_connect_controller, |
| 3367 | .disconnect_controller = efi_disconnect_controller, |
| 3368 | .open_protocol = efi_open_protocol, |
| 3369 | .close_protocol = efi_close_protocol, |
| 3370 | .open_protocol_information = efi_open_protocol_information, |
| 3371 | .protocols_per_handle = efi_protocols_per_handle, |
| 3372 | .locate_handle_buffer = efi_locate_handle_buffer, |
| 3373 | .locate_protocol = efi_locate_protocol, |
Heinrich Schuchardt | 9106459 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 3374 | .install_multiple_protocol_interfaces = |
| 3375 | efi_install_multiple_protocol_interfaces, |
| 3376 | .uninstall_multiple_protocol_interfaces = |
| 3377 | efi_uninstall_multiple_protocol_interfaces, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3378 | .calculate_crc32 = efi_calculate_crc32, |
| 3379 | .copy_mem = efi_copy_mem, |
| 3380 | .set_mem = efi_set_mem, |
Heinrich Schuchardt | 717c458 | 2018-02-04 23:05:13 +0100 | [diff] [blame] | 3381 | .create_event_ex = efi_create_event_ex, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3382 | }; |
| 3383 | |
Heinrich Schuchardt | 27685f7 | 2018-06-28 12:45:30 +0200 | [diff] [blame] | 3384 | static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot"; |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3385 | |
Alexander Graf | 393dd91 | 2016-10-14 13:45:30 +0200 | [diff] [blame] | 3386 | struct efi_system_table __efi_runtime_data systab = { |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3387 | .hdr = { |
| 3388 | .signature = EFI_SYSTEM_TABLE_SIGNATURE, |
Heinrich Schuchardt | e75b3cb | 2018-06-28 12:45:27 +0200 | [diff] [blame] | 3389 | .revision = EFI_SPECIFICATION_VERSION, |
Heinrich Schuchardt | 1020425 | 2018-06-28 12:45:29 +0200 | [diff] [blame] | 3390 | .headersize = sizeof(struct efi_system_table), |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3391 | }, |
Heinrich Schuchardt | 27685f7 | 2018-06-28 12:45:30 +0200 | [diff] [blame] | 3392 | .fw_vendor = firmware_vendor, |
| 3393 | .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8, |
Heinrich Schuchardt | 9106459 | 2018-02-18 15:17:49 +0100 | [diff] [blame] | 3394 | .con_in = (void *)&efi_con_in, |
| 3395 | .con_out = (void *)&efi_con_out, |
| 3396 | .std_err = (void *)&efi_con_out, |
| 3397 | .runtime = (void *)&efi_runtime_services, |
| 3398 | .boottime = (void *)&efi_boot_services, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3399 | .nr_tables = 0, |
Heinrich Schuchardt | 2f528c2 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 3400 | .tables = NULL, |
Alexander Graf | c15d921 | 2016-03-04 01:09:59 +0100 | [diff] [blame] | 3401 | }; |
Heinrich Schuchardt | 15070db | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 3402 | |
| 3403 | /** |
| 3404 | * efi_initialize_system_table() - Initialize system table |
| 3405 | * |
Heinrich Schuchardt | 7b4b2a2 | 2018-09-03 05:00:43 +0200 | [diff] [blame] | 3406 | * Return: status code |
Heinrich Schuchardt | 15070db | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 3407 | */ |
| 3408 | efi_status_t efi_initialize_system_table(void) |
| 3409 | { |
Heinrich Schuchardt | 2f528c2 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 3410 | efi_status_t ret; |
| 3411 | |
| 3412 | /* Allocate configuration table array */ |
| 3413 | ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA, |
| 3414 | EFI_MAX_CONFIGURATION_TABLES * |
| 3415 | sizeof(struct efi_configuration_table), |
| 3416 | (void **)&systab.tables); |
| 3417 | |
Heinrich Schuchardt | cf70a73 | 2018-09-03 19:12:24 +0200 | [diff] [blame] | 3418 | /* Set CRC32 field in table headers */ |
Heinrich Schuchardt | 15070db | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 3419 | efi_update_table_header_crc32(&systab.hdr); |
| 3420 | efi_update_table_header_crc32(&efi_runtime_services.hdr); |
| 3421 | efi_update_table_header_crc32(&efi_boot_services.hdr); |
Heinrich Schuchardt | 2f528c2 | 2018-06-28 12:45:32 +0200 | [diff] [blame] | 3422 | |
| 3423 | return ret; |
Heinrich Schuchardt | 15070db | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 3424 | } |