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