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