blob: 253f9f75ef63b53aae7f8ec2356e230e15c1313e [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafbee91162016-03-04 01:09:59 +01002/*
Heinrich Schuchardt359a6992019-07-03 20:27:24 +02003 * EFI application boot time services
Alexander Grafbee91162016-03-04 01:09:59 +01004 *
Heinrich Schuchardt359a6992019-07-03 20:27:24 +02005 * Copyright (c) 2016 Alexander Graf
Alexander Grafbee91162016-03-04 01:09:59 +01006 */
7
Alexander Grafbee91162016-03-04 01:09:59 +01008#include <common.h>
Ilias Apalodimas19763ea2020-10-22 01:04:20 +03009#include <bootm.h>
Heinrich Schuchardt7d963322017-10-05 16:14:14 +020010#include <div64.h>
Ilias Apalodimas529441c2020-10-22 01:04:21 +030011#include <dm/device.h>
12#include <dm/root.h>
Alexander Grafbee91162016-03-04 01:09:59 +010013#include <efi_loader.h>
Simon Glass36bf4462019-11-14 12:57:42 -070014#include <irq_func.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Alexander Grafbee91162016-03-04 01:09:59 +010016#include <malloc.h>
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +020017#include <pe.h>
Ilias Apalodimas19763ea2020-10-22 01:04:20 +030018#include <time.h>
Simon Glass3db71102019-11-14 12:57:16 -070019#include <u-boot/crc.h>
Ilias Apalodimas529441c2020-10-22 01:04:21 +030020#include <usb.h>
Alexander Grafbee91162016-03-04 01:09:59 +010021#include <watchdog.h>
Simon Glass401d1c42020-10-30 21:38:53 -060022#include <asm/global_data.h>
AKASHI Takahiro86a3d432021-07-20 14:57:02 +090023#include <asm/setjmp.h>
Ilias Apalodimas19763ea2020-10-22 01:04:20 +030024#include <linux/libfdt_env.h>
Alexander Grafbee91162016-03-04 01:09:59 +010025
26DECLARE_GLOBAL_DATA_PTR;
27
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +020028/* Task priority level */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +010029static efi_uintn_t efi_tpl = TPL_APPLICATION;
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +020030
Alexander Grafbee91162016-03-04 01:09:59 +010031/* This list contains all the EFI objects our payload has access to */
32LIST_HEAD(efi_obj_list);
33
Heinrich Schuchardt43bce442018-02-18 15:17:50 +010034/* List of all events */
Heinrich Schuchardt14b40482019-07-11 20:15:09 +020035__efi_runtime_data LIST_HEAD(efi_events);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +010036
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +020037/* List of queued events */
38LIST_HEAD(efi_event_queue);
39
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +020040/* Flag to disable timer activity in ExitBootServices() */
41static bool timers_enabled = true;
42
Heinrich Schuchardtfccd3d92020-11-12 21:26:28 +010043/* Flag used by the selftest to avoid detaching devices in ExitBootServices() */
44bool efi_st_keep_devices;
45
Heinrich Schuchardtab15d412019-05-04 17:27:54 +020046/* List of all events registered by RegisterProtocolNotify() */
47LIST_HEAD(efi_register_notify_events);
48
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +010049/* Handle of the currently executing image */
50static efi_handle_t current_image;
51
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +020052#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Alexander Grafbee91162016-03-04 01:09:59 +010053/*
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +020054 * The "gd" pointer lives in a register on ARM and RISC-V that we declare
Alexander Grafbee91162016-03-04 01:09:59 +010055 * fixed when compiling U-Boot. However, the payload does not know about that
56 * restriction so we need to manually swap its and our view of that register on
57 * EFI callback entry/exit.
58 */
Heinrich Schuchardt4f7dc5f2020-05-27 01:58:30 +020059static volatile gd_t *efi_gd, *app_gd;
Simon Glass65e4c0b2016-09-25 15:27:35 -060060#endif
Alexander Grafbee91162016-03-04 01:09:59 +010061
Heinrich Schuchardt914df752019-02-09 14:10:39 +010062/* 1 if inside U-Boot code, 0 if inside EFI payload code */
63static int entry_count = 1;
Rob Clarkaf65db82017-07-27 08:04:19 -040064static int nesting_level;
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +010065/* GUID of the device tree table */
66const efi_guid_t efi_guid_fdt = EFI_FDT_GUID;
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +010067/* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
68const efi_guid_t efi_guid_driver_binding_protocol =
69 EFI_DRIVER_BINDING_PROTOCOL_GUID;
Rob Clarkc160d2f2017-07-27 08:04:18 -040070
Heinrich Schuchardta3a28f52018-02-18 15:17:51 +010071/* event group ExitBootServices() invoked */
72const efi_guid_t efi_guid_event_group_exit_boot_services =
73 EFI_EVENT_GROUP_EXIT_BOOT_SERVICES;
Heinrich Schuchardt43eaf5b2021-11-16 18:46:27 +010074/* event group before ExitBootServices() invoked */
75const efi_guid_t efi_guid_event_group_before_exit_boot_services =
76 EFI_EVENT_GROUP_BEFORE_EXIT_BOOT_SERVICES;
Heinrich Schuchardta3a28f52018-02-18 15:17:51 +010077/* event group SetVirtualAddressMap() invoked */
78const efi_guid_t efi_guid_event_group_virtual_address_change =
79 EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE;
80/* event group memory map changed */
81const efi_guid_t efi_guid_event_group_memory_map_change =
82 EFI_EVENT_GROUP_MEMORY_MAP_CHANGE;
83/* event group boot manager about to boot */
84const efi_guid_t efi_guid_event_group_ready_to_boot =
85 EFI_EVENT_GROUP_READY_TO_BOOT;
86/* event group ResetSystem() invoked (before ExitBootServices) */
87const efi_guid_t efi_guid_event_group_reset_system =
88 EFI_EVENT_GROUP_RESET_SYSTEM;
Heinrich Schuchardtb6f11092020-12-04 03:33:41 +010089/* GUIDs of the Load File and Load File2 protocols */
90const efi_guid_t efi_guid_load_file_protocol = EFI_LOAD_FILE_PROTOCOL_GUID;
91const efi_guid_t efi_guid_load_file2_protocol = EFI_LOAD_FILE2_PROTOCOL_GUID;
Masahisa Kojima3d49ee82021-10-26 17:27:24 +090092/* GUID of the SMBIOS table */
93const efi_guid_t smbios_guid = SMBIOS_TABLE_GUID;
Heinrich Schuchardta3a28f52018-02-18 15:17:51 +010094
Heinrich Schuchardt2074f702018-01-11 08:16:09 +010095static efi_status_t EFIAPI efi_disconnect_controller(
96 efi_handle_t controller_handle,
97 efi_handle_t driver_image_handle,
98 efi_handle_t child_handle);
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +010099
Rob Clarkc160d2f2017-07-27 08:04:18 -0400100/* Called on every callback entry */
101int __efi_entry_check(void)
102{
103 int ret = entry_count++ == 0;
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +0200104#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Rob Clarkc160d2f2017-07-27 08:04:18 -0400105 assert(efi_gd);
106 app_gd = gd;
Heinrich Schuchardt4f7dc5f2020-05-27 01:58:30 +0200107 set_gd(efi_gd);
Rob Clarkc160d2f2017-07-27 08:04:18 -0400108#endif
109 return ret;
110}
111
112/* Called on every callback exit */
113int __efi_exit_check(void)
114{
115 int ret = --entry_count == 0;
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +0200116#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Heinrich Schuchardt4f7dc5f2020-05-27 01:58:30 +0200117 set_gd(app_gd);
Rob Clarkc160d2f2017-07-27 08:04:18 -0400118#endif
119 return ret;
120}
121
Heinrich Schuchardte7d64062020-07-18 09:53:01 +0200122/**
123 * efi_save_gd() - save global data register
124 *
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +0200125 * On the ARM and RISC-V architectures gd is mapped to a fixed register.
Heinrich Schuchardte7d64062020-07-18 09:53:01 +0200126 * As this register may be overwritten by an EFI payload we save it here
127 * and restore it on every callback entered.
128 *
129 * This function is called after relocation from initr_reloc_global_data().
130 */
Alexander Grafbee91162016-03-04 01:09:59 +0100131void efi_save_gd(void)
132{
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +0200133#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Alexander Grafbee91162016-03-04 01:09:59 +0100134 efi_gd = gd;
Simon Glass65e4c0b2016-09-25 15:27:35 -0600135#endif
Alexander Grafbee91162016-03-04 01:09:59 +0100136}
137
Heinrich Schuchardte7d64062020-07-18 09:53:01 +0200138/**
139 * efi_restore_gd() - restore global data register
140 *
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +0200141 * On the ARM and RISC-V architectures gd is mapped to a fixed register.
Heinrich Schuchardte7d64062020-07-18 09:53:01 +0200142 * Restore it after returning from the UEFI world to the value saved via
143 * efi_save_gd().
Rob Clarkc160d2f2017-07-27 08:04:18 -0400144 */
Alexander Grafbee91162016-03-04 01:09:59 +0100145void efi_restore_gd(void)
146{
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +0200147#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Alexander Grafbee91162016-03-04 01:09:59 +0100148 /* Only restore if we're already in EFI context */
149 if (!efi_gd)
150 return;
Heinrich Schuchardt4f7dc5f2020-05-27 01:58:30 +0200151 set_gd(efi_gd);
Simon Glass65e4c0b2016-09-25 15:27:35 -0600152#endif
Alexander Grafbee91162016-03-04 01:09:59 +0100153}
154
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200155/**
Mario Six78a88f72018-07-10 08:40:17 +0200156 * indent_string() - returns a string for indenting with two spaces per level
157 * @level: indent level
Heinrich Schuchardtc8df80c2018-01-24 19:21:36 +0100158 *
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200159 * A maximum of ten indent levels is supported. Higher indent levels will be
160 * truncated.
161 *
Mario Six78a88f72018-07-10 08:40:17 +0200162 * Return: A string for indenting with two spaces per level is
163 * returned.
Rob Clarkaf65db82017-07-27 08:04:19 -0400164 */
165static const char *indent_string(int level)
166{
167 const char *indent = " ";
168 const int max = strlen(indent);
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +0100169
Rob Clarkaf65db82017-07-27 08:04:19 -0400170 level = min(max, level * 2);
171 return &indent[max - level];
172}
173
Heinrich Schuchardtae0bd3a2017-08-18 17:45:16 +0200174const char *__efi_nesting(void)
175{
176 return indent_string(nesting_level);
177}
178
Rob Clarkaf65db82017-07-27 08:04:19 -0400179const char *__efi_nesting_inc(void)
180{
181 return indent_string(nesting_level++);
182}
183
184const char *__efi_nesting_dec(void)
185{
186 return indent_string(--nesting_level);
187}
188
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200189/**
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200190 * efi_event_is_queued() - check if an event is queued
191 *
192 * @event: event
193 * Return: true if event is queued
194 */
195static bool efi_event_is_queued(struct efi_event *event)
196{
197 return !!event->queue_link.next;
198}
199
200/**
201 * efi_process_event_queue() - process event queue
202 */
203static void efi_process_event_queue(void)
204{
205 while (!list_empty(&efi_event_queue)) {
206 struct efi_event *event;
207 efi_uintn_t old_tpl;
208
209 event = list_first_entry(&efi_event_queue, struct efi_event,
210 queue_link);
211 if (efi_tpl >= event->notify_tpl)
212 return;
213 list_del(&event->queue_link);
214 event->queue_link.next = NULL;
215 event->queue_link.prev = NULL;
216 /* Events must be executed at the event's TPL */
217 old_tpl = efi_tpl;
218 efi_tpl = event->notify_tpl;
219 EFI_CALL_VOID(event->notify_function(event,
220 event->notify_context));
221 efi_tpl = old_tpl;
222 if (event->type == EVT_NOTIFY_SIGNAL)
223 event->is_signaled = 0;
224 }
225}
226
227/**
Mario Six78a88f72018-07-10 08:40:17 +0200228 * efi_queue_event() - queue an EFI event
229 * @event: event to signal
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200230 *
231 * This function queues the notification function of the event for future
232 * execution.
233 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200234 */
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200235static void efi_queue_event(struct efi_event *event)
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200236{
Heinrich Schuchardt2b8568f2020-03-06 21:56:10 +0100237 struct efi_event *item;
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200238
239 if (!event->notify_function)
240 return;
241
242 if (!efi_event_is_queued(event)) {
243 /*
244 * Events must be notified in order of decreasing task priority
245 * level. Insert the new event accordingly.
246 */
247 list_for_each_entry(item, &efi_event_queue, queue_link) {
248 if (item->notify_tpl < event->notify_tpl) {
249 list_add_tail(&event->queue_link,
250 &item->queue_link);
251 event = NULL;
252 break;
253 }
254 }
255 if (event)
256 list_add_tail(&event->queue_link, &efi_event_queue);
Heinrich Schuchardtb7d186f2020-12-28 00:25:34 +0100257 efi_process_event_queue();
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200258 }
259}
260
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200261/**
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200262 * is_valid_tpl() - check if the task priority level is valid
263 *
264 * @tpl: TPL level to check
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200265 * Return: status code
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200266 */
267efi_status_t is_valid_tpl(efi_uintn_t tpl)
268{
269 switch (tpl) {
270 case TPL_APPLICATION:
271 case TPL_CALLBACK:
272 case TPL_NOTIFY:
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200273 return EFI_SUCCESS;
274 default:
275 return EFI_INVALID_PARAMETER;
276 }
277}
278
279/**
Mario Six78a88f72018-07-10 08:40:17 +0200280 * efi_signal_event() - signal an EFI event
281 * @event: event to signal
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100282 *
Heinrich Schuchardt2a0f80f2020-12-28 00:59:09 +0100283 * This function signals an event. If the event belongs to an event group, all
284 * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL,
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100285 * their notification function is queued.
286 *
287 * For the SignalEvent service see efi_signal_event_ext.
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100288 */
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200289void efi_signal_event(struct efi_event *event)
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100290{
Heinrich Schuchardtdfa306e2019-06-06 01:51:50 +0200291 if (event->is_signaled)
292 return;
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100293 if (event->group) {
294 struct efi_event *evt;
295
296 /*
297 * The signaled state has to set before executing any
298 * notification function
299 */
300 list_for_each_entry(evt, &efi_events, link) {
301 if (!evt->group || guidcmp(evt->group, event->group))
302 continue;
303 if (evt->is_signaled)
304 continue;
305 evt->is_signaled = true;
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100306 }
307 list_for_each_entry(evt, &efi_events, link) {
308 if (!evt->group || guidcmp(evt->group, event->group))
309 continue;
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200310 efi_queue_event(evt);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100311 }
Heinrich Schuchardt3626e532019-05-05 00:07:34 +0200312 } else {
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100313 event->is_signaled = true;
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200314 efi_queue_event(event);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100315 }
316}
317
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200318/**
Mario Six78a88f72018-07-10 08:40:17 +0200319 * efi_raise_tpl() - raise the task priority level
320 * @new_tpl: new value of the task priority level
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200321 *
322 * This function implements the RaiseTpl service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200323 *
Mario Six78a88f72018-07-10 08:40:17 +0200324 * See the Unified Extensible Firmware Interface (UEFI) specification for
325 * details.
326 *
327 * Return: old value of the task priority level
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200328 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100329static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
Alexander Grafbee91162016-03-04 01:09:59 +0100330{
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100331 efi_uintn_t old_tpl = efi_tpl;
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200332
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200333 EFI_ENTRY("0x%zx", new_tpl);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200334
335 if (new_tpl < efi_tpl)
Heinrich Schuchardt529886a2019-05-05 11:56:23 +0200336 EFI_PRINT("WARNING: new_tpl < current_tpl in %s\n", __func__);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200337 efi_tpl = new_tpl;
338 if (efi_tpl > TPL_HIGH_LEVEL)
339 efi_tpl = TPL_HIGH_LEVEL;
340
341 EFI_EXIT(EFI_SUCCESS);
342 return old_tpl;
Alexander Grafbee91162016-03-04 01:09:59 +0100343}
344
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200345/**
Mario Six78a88f72018-07-10 08:40:17 +0200346 * efi_restore_tpl() - lower the task priority level
347 * @old_tpl: value of the task priority level to be restored
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200348 *
349 * This function implements the RestoreTpl service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200350 *
Mario Six78a88f72018-07-10 08:40:17 +0200351 * See the Unified Extensible Firmware Interface (UEFI) specification for
352 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200353 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100354static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
Alexander Grafbee91162016-03-04 01:09:59 +0100355{
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200356 EFI_ENTRY("0x%zx", old_tpl);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200357
358 if (old_tpl > efi_tpl)
Heinrich Schuchardt529886a2019-05-05 11:56:23 +0200359 EFI_PRINT("WARNING: old_tpl > current_tpl in %s\n", __func__);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200360 efi_tpl = old_tpl;
361 if (efi_tpl > TPL_HIGH_LEVEL)
362 efi_tpl = TPL_HIGH_LEVEL;
363
Heinrich Schuchardt0f7fcc72018-03-24 18:40:21 +0100364 /*
365 * Lowering the TPL may have made queued events eligible for execution.
366 */
367 efi_timer_check();
368
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200369 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +0100370}
371
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200372/**
Mario Six78a88f72018-07-10 08:40:17 +0200373 * efi_allocate_pages_ext() - allocate memory pages
374 * @type: type of allocation to be performed
375 * @memory_type: usage type of the allocated memory
376 * @pages: number of pages to be allocated
377 * @memory: allocated memory
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200378 *
379 * This function implements the AllocatePages service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200380 *
Mario Six78a88f72018-07-10 08:40:17 +0200381 * See the Unified Extensible Firmware Interface (UEFI) specification for
382 * details.
383 *
384 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200385 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900386static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100387 efi_uintn_t pages,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900388 uint64_t *memory)
Alexander Grafbee91162016-03-04 01:09:59 +0100389{
390 efi_status_t r;
391
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100392 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
Alexander Grafbee91162016-03-04 01:09:59 +0100393 r = efi_allocate_pages(type, memory_type, pages, memory);
394 return EFI_EXIT(r);
395}
396
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200397/**
Mario Six78a88f72018-07-10 08:40:17 +0200398 * efi_free_pages_ext() - Free memory pages.
399 * @memory: start of the memory area to be freed
400 * @pages: number of pages to be freed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200401 *
402 * This function implements the FreePages service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200403 *
Mario Six78a88f72018-07-10 08:40:17 +0200404 * See the Unified Extensible Firmware Interface (UEFI) specification for
405 * details.
406 *
407 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200408 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900409static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100410 efi_uintn_t pages)
Alexander Grafbee91162016-03-04 01:09:59 +0100411{
412 efi_status_t r;
413
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900414 EFI_ENTRY("%llx, 0x%zx", memory, pages);
Alexander Grafbee91162016-03-04 01:09:59 +0100415 r = efi_free_pages(memory, pages);
416 return EFI_EXIT(r);
417}
418
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200419/**
Mario Six78a88f72018-07-10 08:40:17 +0200420 * efi_get_memory_map_ext() - get map describing memory usage
421 * @memory_map_size: on entry the size, in bytes, of the memory map buffer,
422 * on exit the size of the copied memory map
423 * @memory_map: buffer to which the memory map is written
424 * @map_key: key for the memory map
425 * @descriptor_size: size of an individual memory descriptor
426 * @descriptor_version: version number of the memory descriptor structure
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200427 *
428 * This function implements the GetMemoryMap service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200429 *
Mario Six78a88f72018-07-10 08:40:17 +0200430 * See the Unified Extensible Firmware Interface (UEFI) specification for
431 * details.
432 *
433 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200434 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900435static efi_status_t EFIAPI efi_get_memory_map_ext(
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100436 efi_uintn_t *memory_map_size,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900437 struct efi_mem_desc *memory_map,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100438 efi_uintn_t *map_key,
439 efi_uintn_t *descriptor_size,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900440 uint32_t *descriptor_version)
Alexander Grafbee91162016-03-04 01:09:59 +0100441{
442 efi_status_t r;
443
444 EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
445 map_key, descriptor_size, descriptor_version);
446 r = efi_get_memory_map(memory_map_size, memory_map, map_key,
447 descriptor_size, descriptor_version);
448 return EFI_EXIT(r);
449}
450
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200451/**
Mario Six78a88f72018-07-10 08:40:17 +0200452 * efi_allocate_pool_ext() - allocate memory from pool
453 * @pool_type: type of the pool from which memory is to be allocated
454 * @size: number of bytes to be allocated
455 * @buffer: allocated memory
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200456 *
457 * This function implements the AllocatePool service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200458 *
Mario Six78a88f72018-07-10 08:40:17 +0200459 * See the Unified Extensible Firmware Interface (UEFI) specification for
460 * details.
461 *
462 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200463 */
Stefan Brünsead12742016-10-09 22:17:18 +0200464static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100465 efi_uintn_t size,
Stefan Brünsead12742016-10-09 22:17:18 +0200466 void **buffer)
Alexander Grafbee91162016-03-04 01:09:59 +0100467{
Alexander Graf1cd29f02016-03-24 01:37:37 +0100468 efi_status_t r;
469
Heinrich Schuchardte9df5492022-02-03 22:21:51 +0100470 EFI_ENTRY("%d, %zu, %p", pool_type, size, buffer);
Stefan Brünsead12742016-10-09 22:17:18 +0200471 r = efi_allocate_pool(pool_type, size, buffer);
Alexander Graf1cd29f02016-03-24 01:37:37 +0100472 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +0100473}
474
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200475/**
Mario Six78a88f72018-07-10 08:40:17 +0200476 * efi_free_pool_ext() - free memory from pool
477 * @buffer: start of memory to be freed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200478 *
479 * This function implements the FreePool service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200480 *
Mario Six78a88f72018-07-10 08:40:17 +0200481 * See the Unified Extensible Firmware Interface (UEFI) specification for
482 * details.
483 *
484 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200485 */
Stefan Brüns42417bc2016-10-09 22:17:26 +0200486static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
Alexander Grafbee91162016-03-04 01:09:59 +0100487{
Alexander Graf1cd29f02016-03-24 01:37:37 +0100488 efi_status_t r;
489
490 EFI_ENTRY("%p", buffer);
Stefan Brüns42417bc2016-10-09 22:17:26 +0200491 r = efi_free_pool(buffer);
Alexander Graf1cd29f02016-03-24 01:37:37 +0100492 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +0100493}
494
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200495/**
Heinrich Schuchardte6023be2019-05-01 09:42:39 +0200496 * efi_add_handle() - add a new handle to the object list
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100497 *
Heinrich Schuchardte6023be2019-05-01 09:42:39 +0200498 * @handle: handle to be added
499 *
500 * The protocols list is initialized. The handle is added to the list of known
501 * UEFI objects.
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100502 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200503void efi_add_handle(efi_handle_t handle)
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100504{
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200505 if (!handle)
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100506 return;
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200507 INIT_LIST_HEAD(&handle->protocols);
508 list_add_tail(&handle->link, &efi_obj_list);
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100509}
510
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200511/**
Mario Six78a88f72018-07-10 08:40:17 +0200512 * efi_create_handle() - create handle
513 * @handle: new handle
Heinrich Schuchardt2edab5e2017-10-26 19:25:49 +0200514 *
Mario Six78a88f72018-07-10 08:40:17 +0200515 * Return: status code
Heinrich Schuchardt2edab5e2017-10-26 19:25:49 +0200516 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100517efi_status_t efi_create_handle(efi_handle_t *handle)
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200518{
519 struct efi_object *obj;
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200520
Heinrich Schuchardtd29e7822018-05-27 16:47:21 +0200521 obj = calloc(1, sizeof(struct efi_object));
522 if (!obj)
523 return EFI_OUT_OF_RESOURCES;
524
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100525 efi_add_handle(obj);
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200526 *handle = obj;
Heinrich Schuchardtd29e7822018-05-27 16:47:21 +0200527
528 return EFI_SUCCESS;
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200529}
530
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200531/**
Mario Six78a88f72018-07-10 08:40:17 +0200532 * efi_search_protocol() - find a protocol on a handle.
533 * @handle: handle
534 * @protocol_guid: GUID of the protocol
535 * @handler: reference to the protocol
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100536 *
Mario Six78a88f72018-07-10 08:40:17 +0200537 * Return: status code
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100538 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100539efi_status_t efi_search_protocol(const efi_handle_t handle,
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100540 const efi_guid_t *protocol_guid,
541 struct efi_handler **handler)
542{
543 struct efi_object *efiobj;
544 struct list_head *lhandle;
545
546 if (!handle || !protocol_guid)
547 return EFI_INVALID_PARAMETER;
548 efiobj = efi_search_obj(handle);
549 if (!efiobj)
550 return EFI_INVALID_PARAMETER;
551 list_for_each(lhandle, &efiobj->protocols) {
552 struct efi_handler *protocol;
553
554 protocol = list_entry(lhandle, struct efi_handler, link);
Heinrich Schuchardt66028932022-03-09 19:56:23 +0100555 if (!guidcmp(&protocol->guid, protocol_guid)) {
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100556 if (handler)
557 *handler = protocol;
558 return EFI_SUCCESS;
559 }
560 }
561 return EFI_NOT_FOUND;
562}
563
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200564/**
Mario Six78a88f72018-07-10 08:40:17 +0200565 * efi_remove_protocol() - delete protocol from a handle
566 * @handle: handle from which the protocol shall be deleted
567 * @protocol: GUID of the protocol to be deleted
568 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100569 *
Mario Six78a88f72018-07-10 08:40:17 +0200570 * Return: status code
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100571 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100572efi_status_t efi_remove_protocol(const efi_handle_t handle,
573 const efi_guid_t *protocol,
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100574 void *protocol_interface)
575{
576 struct efi_handler *handler;
577 efi_status_t ret;
578
579 ret = efi_search_protocol(handle, protocol, &handler);
580 if (ret != EFI_SUCCESS)
581 return ret;
Heinrich Schuchardt1f470e12018-05-11 12:09:21 +0200582 if (handler->protocol_interface != protocol_interface)
Heinrich Schuchardt96aa99c2019-05-10 20:06:48 +0200583 return EFI_NOT_FOUND;
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100584 list_del(&handler->link);
585 free(handler);
586 return EFI_SUCCESS;
587}
588
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200589/**
Mario Six78a88f72018-07-10 08:40:17 +0200590 * efi_remove_all_protocols() - delete all protocols from a handle
591 * @handle: handle from which the protocols shall be deleted
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100592 *
Mario Six78a88f72018-07-10 08:40:17 +0200593 * Return: status code
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100594 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100595efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100596{
597 struct efi_object *efiobj;
Heinrich Schuchardt32e6fed2018-01-11 08:15:55 +0100598 struct efi_handler *protocol;
599 struct efi_handler *pos;
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100600
601 efiobj = efi_search_obj(handle);
602 if (!efiobj)
603 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt32e6fed2018-01-11 08:15:55 +0100604 list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100605 efi_status_t ret;
606
Heinrich Schuchardt66028932022-03-09 19:56:23 +0100607 ret = efi_remove_protocol(handle, &protocol->guid,
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100608 protocol->protocol_interface);
609 if (ret != EFI_SUCCESS)
610 return ret;
611 }
612 return EFI_SUCCESS;
613}
614
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200615/**
Mario Six78a88f72018-07-10 08:40:17 +0200616 * efi_delete_handle() - delete handle
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100617 *
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +0200618 * @handle: handle to delete
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100619 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200620void efi_delete_handle(efi_handle_t handle)
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100621{
Etienne Carriere79325482022-09-07 10:20:13 +0200622 efi_status_t ret;
623
624 ret = efi_remove_all_protocols(handle);
625 if (ret == EFI_INVALID_PARAMETER) {
626 log_err("Can't remove invalid handle %p\n", handle);
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100627 return;
Etienne Carriere79325482022-09-07 10:20:13 +0200628 }
629
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200630 list_del(&handle->link);
631 free(handle);
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100632}
633
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200634/**
Mario Six78a88f72018-07-10 08:40:17 +0200635 * efi_is_event() - check if a pointer is a valid event
636 * @event: pointer to check
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100637 *
Mario Six78a88f72018-07-10 08:40:17 +0200638 * Return: status code
Alexander Grafbee91162016-03-04 01:09:59 +0100639 */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100640static efi_status_t efi_is_event(const struct efi_event *event)
641{
642 const struct efi_event *evt;
643
644 if (!event)
645 return EFI_INVALID_PARAMETER;
646 list_for_each_entry(evt, &efi_events, link) {
647 if (evt == event)
648 return EFI_SUCCESS;
649 }
650 return EFI_INVALID_PARAMETER;
651}
Alexander Grafbee91162016-03-04 01:09:59 +0100652
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200653/**
Mario Six78a88f72018-07-10 08:40:17 +0200654 * efi_create_event() - create an event
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +0200655 *
Mario Six78a88f72018-07-10 08:40:17 +0200656 * @type: type of the event to create
657 * @notify_tpl: task priority level of the event
658 * @notify_function: notification function of the event
659 * @notify_context: pointer passed to the notification function
660 * @group: event group
661 * @event: created event
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200662 *
663 * This function is used inside U-Boot code to create an event.
664 *
665 * For the API function implementing the CreateEvent service see
666 * efi_create_event_ext.
667 *
Mario Six78a88f72018-07-10 08:40:17 +0200668 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200669 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100670efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200671 void (EFIAPI *notify_function) (
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200672 struct efi_event *event,
673 void *context),
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100674 void *notify_context, efi_guid_t *group,
675 struct efi_event **event)
Alexander Grafbee91162016-03-04 01:09:59 +0100676{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100677 struct efi_event *evt;
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200678 efi_status_t ret;
679 int pool_type;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200680
Jonathan Graya95343b2017-03-12 19:26:07 +1100681 if (event == NULL)
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200682 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100683
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200684 switch (type) {
685 case 0:
686 case EVT_TIMER:
687 case EVT_NOTIFY_SIGNAL:
688 case EVT_TIMER | EVT_NOTIFY_SIGNAL:
689 case EVT_NOTIFY_WAIT:
690 case EVT_TIMER | EVT_NOTIFY_WAIT:
691 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200692 pool_type = EFI_BOOT_SERVICES_DATA;
693 break;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200694 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200695 pool_type = EFI_RUNTIME_SERVICES_DATA;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200696 break;
697 default:
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200698 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200699 }
Jonathan Graya95343b2017-03-12 19:26:07 +1100700
Heinrich Schuchardt2cfb68f2021-01-06 12:55:22 +0100701 /*
702 * The UEFI specification requires event notification levels to be
703 * > TPL_APPLICATION and <= TPL_HIGH_LEVEL.
704 *
705 * Parameter NotifyTpl should not be checked if it is not used.
706 */
AKASHI Takahiro3748ed92018-08-10 15:36:32 +0900707 if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) &&
Heinrich Schuchardt2cfb68f2021-01-06 12:55:22 +0100708 (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS ||
709 notify_tpl == TPL_APPLICATION))
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200710 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100711
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200712 ret = efi_allocate_pool(pool_type, sizeof(struct efi_event),
713 (void **)&evt);
714 if (ret != EFI_SUCCESS)
715 return ret;
716 memset(evt, 0, sizeof(struct efi_event));
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100717 evt->type = type;
718 evt->notify_tpl = notify_tpl;
719 evt->notify_function = notify_function;
720 evt->notify_context = notify_context;
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100721 evt->group = group;
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200722 /* Disable timers on boot up */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100723 evt->trigger_next = -1ULL;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100724 list_add_tail(&evt->link, &efi_events);
725 *event = evt;
726 return EFI_SUCCESS;
Alexander Grafbee91162016-03-04 01:09:59 +0100727}
728
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200729/*
Mario Six78a88f72018-07-10 08:40:17 +0200730 * efi_create_event_ex() - create an event in a group
731 * @type: type of the event to create
732 * @notify_tpl: task priority level of the event
733 * @notify_function: notification function of the event
734 * @notify_context: pointer passed to the notification function
735 * @event: created event
736 * @event_group: event group
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100737 *
738 * This function implements the CreateEventEx service.
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100739 *
Mario Six78a88f72018-07-10 08:40:17 +0200740 * See the Unified Extensible Firmware Interface (UEFI) specification for
741 * details.
742 *
743 * Return: status code
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100744 */
745efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl,
746 void (EFIAPI *notify_function) (
747 struct efi_event *event,
748 void *context),
749 void *notify_context,
750 efi_guid_t *event_group,
751 struct efi_event **event)
752{
Heinrich Schuchardt18845122019-05-04 10:12:50 +0200753 efi_status_t ret;
754
Heinrich Schuchardtce00a742022-01-16 14:15:31 +0100755 EFI_ENTRY("%d, 0x%zx, %p, %p, %pUs", type, notify_tpl, notify_function,
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100756 notify_context, event_group);
Heinrich Schuchardt18845122019-05-04 10:12:50 +0200757
758 /*
759 * The allowable input parameters are the same as in CreateEvent()
760 * except for the following two disallowed event types.
761 */
762 switch (type) {
763 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
764 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
765 ret = EFI_INVALID_PARAMETER;
766 goto out;
767 }
768
769 ret = efi_create_event(type, notify_tpl, notify_function,
770 notify_context, event_group, event);
771out:
772 return EFI_EXIT(ret);
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100773}
774
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200775/**
Mario Six78a88f72018-07-10 08:40:17 +0200776 * efi_create_event_ext() - create an event
777 * @type: type of the event to create
778 * @notify_tpl: task priority level of the event
779 * @notify_function: notification function of the event
780 * @notify_context: pointer passed to the notification function
781 * @event: created event
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200782 *
783 * This function implements the CreateEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200784 *
Mario Six78a88f72018-07-10 08:40:17 +0200785 * See the Unified Extensible Firmware Interface (UEFI) specification for
786 * details.
787 *
788 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200789 */
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200790static efi_status_t EFIAPI efi_create_event_ext(
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100791 uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200792 void (EFIAPI *notify_function) (
793 struct efi_event *event,
794 void *context),
795 void *notify_context, struct efi_event **event)
796{
797 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
798 notify_context);
799 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100800 notify_context, NULL, event));
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200801}
802
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200803/**
Mario Six78a88f72018-07-10 08:40:17 +0200804 * efi_timer_check() - check if a timer event has occurred
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200805 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200806 * Check if a timer event has occurred or a queued notification function should
807 * be called.
808 *
Alexander Grafbee91162016-03-04 01:09:59 +0100809 * Our timers have to work without interrupts, so we check whenever keyboard
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200810 * input or disk accesses happen if enough time elapsed for them to fire.
Alexander Grafbee91162016-03-04 01:09:59 +0100811 */
812void efi_timer_check(void)
813{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100814 struct efi_event *evt;
Alexander Grafbee91162016-03-04 01:09:59 +0100815 u64 now = timer_get_us();
816
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100817 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200818 if (!timers_enabled)
819 continue;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100820 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next)
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200821 continue;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100822 switch (evt->trigger_type) {
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200823 case EFI_TIMER_RELATIVE:
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100824 evt->trigger_type = EFI_TIMER_STOP;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200825 break;
826 case EFI_TIMER_PERIODIC:
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100827 evt->trigger_next += evt->trigger_time;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200828 break;
829 default:
830 continue;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200831 }
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100832 evt->is_signaled = false;
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200833 efi_signal_event(evt);
Alexander Grafbee91162016-03-04 01:09:59 +0100834 }
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200835 efi_process_event_queue();
Stefan Roese29caf932022-09-02 14:10:46 +0200836 schedule();
Alexander Grafbee91162016-03-04 01:09:59 +0100837}
838
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200839/**
Mario Six78a88f72018-07-10 08:40:17 +0200840 * efi_set_timer() - set the trigger time for a timer event or stop the event
841 * @event: event for which the timer is set
842 * @type: type of the timer
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200843 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200844 *
845 * This is the function for internal usage in U-Boot. For the API function
846 * implementing the SetTimer service see efi_set_timer_ext.
847 *
Mario Six78a88f72018-07-10 08:40:17 +0200848 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200849 */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200850efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200851 uint64_t trigger_time)
Alexander Grafbee91162016-03-04 01:09:59 +0100852{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100853 /* Check that the event is valid */
854 if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER))
855 return EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +0100856
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200857 /*
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200858 * The parameter defines a multiple of 100 ns.
859 * We use multiples of 1000 ns. So divide by 10.
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200860 */
Heinrich Schuchardt7d963322017-10-05 16:14:14 +0200861 do_div(trigger_time, 10);
Alexander Grafbee91162016-03-04 01:09:59 +0100862
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100863 switch (type) {
864 case EFI_TIMER_STOP:
865 event->trigger_next = -1ULL;
866 break;
867 case EFI_TIMER_PERIODIC:
868 case EFI_TIMER_RELATIVE:
869 event->trigger_next = timer_get_us() + trigger_time;
870 break;
871 default:
872 return EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +0100873 }
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100874 event->trigger_type = type;
875 event->trigger_time = trigger_time;
876 event->is_signaled = false;
877 return EFI_SUCCESS;
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200878}
879
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200880/**
Mario Six78a88f72018-07-10 08:40:17 +0200881 * efi_set_timer_ext() - Set the trigger time for a timer event or stop the
882 * event
883 * @event: event for which the timer is set
884 * @type: type of the timer
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200885 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200886 *
887 * This function implements the SetTimer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200888 *
Mario Six78a88f72018-07-10 08:40:17 +0200889 * See the Unified Extensible Firmware Interface (UEFI) specification for
890 * details.
891 *
892 *
893 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200894 */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200895static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
896 enum efi_timer_delay type,
897 uint64_t trigger_time)
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200898{
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900899 EFI_ENTRY("%p, %d, %llx", event, type, trigger_time);
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200900 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
Alexander Grafbee91162016-03-04 01:09:59 +0100901}
902
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200903/**
Mario Six78a88f72018-07-10 08:40:17 +0200904 * efi_wait_for_event() - wait for events to be signaled
905 * @num_events: number of events to be waited for
906 * @event: events to be waited for
907 * @index: index of the event that was signaled
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200908 *
909 * This function implements the WaitForEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200910 *
Mario Six78a88f72018-07-10 08:40:17 +0200911 * See the Unified Extensible Firmware Interface (UEFI) specification for
912 * details.
913 *
914 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200915 */
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100916static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200917 struct efi_event **event,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100918 efi_uintn_t *index)
Alexander Grafbee91162016-03-04 01:09:59 +0100919{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100920 int i;
Alexander Grafbee91162016-03-04 01:09:59 +0100921
Heinrich Schuchardte9df5492022-02-03 22:21:51 +0100922 EFI_ENTRY("%zu, %p, %p", num_events, event, index);
Alexander Grafbee91162016-03-04 01:09:59 +0100923
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200924 /* Check parameters */
925 if (!num_events || !event)
926 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200927 /* Check TPL */
928 if (efi_tpl != TPL_APPLICATION)
929 return EFI_EXIT(EFI_UNSUPPORTED);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200930 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100931 if (efi_is_event(event[i]) != EFI_SUCCESS)
932 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200933 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
934 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200935 if (!event[i]->is_signaled)
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200936 efi_queue_event(event[i]);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200937 }
938
939 /* Wait for signal */
940 for (;;) {
941 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200942 if (event[i]->is_signaled)
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200943 goto out;
944 }
945 /* Allow events to occur. */
946 efi_timer_check();
947 }
948
949out:
950 /*
951 * Reset the signal which is passed to the caller to allow periodic
952 * events to occur.
953 */
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200954 event[i]->is_signaled = false;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200955 if (index)
956 *index = i;
Alexander Grafbee91162016-03-04 01:09:59 +0100957
958 return EFI_EXIT(EFI_SUCCESS);
959}
960
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200961/**
Mario Six78a88f72018-07-10 08:40:17 +0200962 * efi_signal_event_ext() - signal an EFI event
963 * @event: event to signal
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200964 *
965 * This function implements the SignalEvent service.
Mario Six78a88f72018-07-10 08:40:17 +0200966 *
967 * See the Unified Extensible Firmware Interface (UEFI) specification for
968 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200969 *
970 * This functions sets the signaled state of the event and queues the
971 * notification function for execution.
972 *
Mario Six78a88f72018-07-10 08:40:17 +0200973 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200974 */
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200975static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100976{
977 EFI_ENTRY("%p", event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100978 if (efi_is_event(event) != EFI_SUCCESS)
979 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200980 efi_signal_event(event);
Alexander Grafbee91162016-03-04 01:09:59 +0100981 return EFI_EXIT(EFI_SUCCESS);
982}
983
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200984/**
Mario Six78a88f72018-07-10 08:40:17 +0200985 * efi_close_event() - close an EFI event
986 * @event: event to close
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200987 *
988 * This function implements the CloseEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200989 *
Mario Six78a88f72018-07-10 08:40:17 +0200990 * See the Unified Extensible Firmware Interface (UEFI) specification for
991 * details.
992 *
993 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200994 */
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200995static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100996{
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200997 struct efi_register_notify_event *item, *next;
998
Alexander Grafbee91162016-03-04 01:09:59 +0100999 EFI_ENTRY("%p", event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001000 if (efi_is_event(event) != EFI_SUCCESS)
1001 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001002
1003 /* Remove protocol notify registrations for the event */
1004 list_for_each_entry_safe(item, next, &efi_register_notify_events,
1005 link) {
1006 if (event == item->event) {
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001007 struct efi_protocol_notification *hitem, *hnext;
1008
1009 /* Remove signaled handles */
1010 list_for_each_entry_safe(hitem, hnext, &item->handles,
1011 link) {
1012 list_del(&hitem->link);
1013 free(hitem);
1014 }
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001015 list_del(&item->link);
1016 free(item);
1017 }
1018 }
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +02001019 /* Remove event from queue */
1020 if (efi_event_is_queued(event))
1021 list_del(&event->queue_link);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001022
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001023 list_del(&event->link);
Heinrich Schuchardt14b40482019-07-11 20:15:09 +02001024 efi_free_pool(event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001025 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01001026}
1027
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001028/**
Mario Six78a88f72018-07-10 08:40:17 +02001029 * efi_check_event() - check if an event is signaled
1030 * @event: event to check
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001031 *
1032 * This function implements the CheckEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001033 *
Mario Six78a88f72018-07-10 08:40:17 +02001034 * See the Unified Extensible Firmware Interface (UEFI) specification for
1035 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001036 *
Mario Six78a88f72018-07-10 08:40:17 +02001037 * If an event is not signaled yet, the notification function is queued. The
1038 * signaled state is cleared.
1039 *
1040 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001041 */
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +02001042static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +01001043{
1044 EFI_ENTRY("%p", event);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02001045 efi_timer_check();
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001046 if (efi_is_event(event) != EFI_SUCCESS ||
1047 event->type & EVT_NOTIFY_SIGNAL)
1048 return EFI_EXIT(EFI_INVALID_PARAMETER);
1049 if (!event->is_signaled)
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001050 efi_queue_event(event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001051 if (event->is_signaled) {
1052 event->is_signaled = false;
1053 return EFI_EXIT(EFI_SUCCESS);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02001054 }
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001055 return EFI_EXIT(EFI_NOT_READY);
Alexander Grafbee91162016-03-04 01:09:59 +01001056}
1057
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001058/**
Mario Six78a88f72018-07-10 08:40:17 +02001059 * efi_search_obj() - find the internal EFI object for a handle
1060 * @handle: handle to find
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001061 *
Mario Six78a88f72018-07-10 08:40:17 +02001062 * Return: EFI object
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001063 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01001064struct efi_object *efi_search_obj(const efi_handle_t handle)
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001065{
Heinrich Schuchardt1b681532017-11-06 21:17:50 +01001066 struct efi_object *efiobj;
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001067
Heinrich Schuchardtec163fa2019-05-05 10:37:51 +02001068 if (!handle)
1069 return NULL;
1070
Heinrich Schuchardt1b681532017-11-06 21:17:50 +01001071 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001072 if (efiobj == handle)
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001073 return efiobj;
1074 }
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001075 return NULL;
1076}
1077
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001078/**
Mario Six78a88f72018-07-10 08:40:17 +02001079 * efi_open_protocol_info_entry() - create open protocol info entry and add it
1080 * to a protocol
1081 * @handler: handler of a protocol
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001082 *
Mario Six78a88f72018-07-10 08:40:17 +02001083 * Return: open protocol info entry
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001084 */
1085static struct efi_open_protocol_info_entry *efi_create_open_info(
1086 struct efi_handler *handler)
1087{
1088 struct efi_open_protocol_info_item *item;
1089
1090 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
1091 if (!item)
1092 return NULL;
1093 /* Append the item to the open protocol info list. */
1094 list_add_tail(&item->link, &handler->open_infos);
1095
1096 return &item->info;
1097}
1098
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001099/**
Mario Six78a88f72018-07-10 08:40:17 +02001100 * efi_delete_open_info() - remove an open protocol info entry from a protocol
1101 * @item: open protocol info entry to delete
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001102 *
Mario Six78a88f72018-07-10 08:40:17 +02001103 * Return: status code
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001104 */
1105static efi_status_t efi_delete_open_info(
1106 struct efi_open_protocol_info_item *item)
1107{
1108 list_del(&item->link);
1109 free(item);
1110 return EFI_SUCCESS;
1111}
1112
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001113/**
Mario Six78a88f72018-07-10 08:40:17 +02001114 * efi_add_protocol() - install new protocol on a handle
1115 * @handle: handle on which the protocol shall be installed
1116 * @protocol: GUID of the protocol to be installed
1117 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001118 *
Mario Six78a88f72018-07-10 08:40:17 +02001119 * Return: status code
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001120 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01001121efi_status_t efi_add_protocol(const efi_handle_t handle,
1122 const efi_guid_t *protocol,
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001123 void *protocol_interface)
1124{
1125 struct efi_object *efiobj;
1126 struct efi_handler *handler;
1127 efi_status_t ret;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001128 struct efi_register_notify_event *event;
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001129
1130 efiobj = efi_search_obj(handle);
1131 if (!efiobj)
1132 return EFI_INVALID_PARAMETER;
1133 ret = efi_search_protocol(handle, protocol, NULL);
1134 if (ret != EFI_NOT_FOUND)
1135 return EFI_INVALID_PARAMETER;
1136 handler = calloc(1, sizeof(struct efi_handler));
1137 if (!handler)
1138 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt66028932022-03-09 19:56:23 +01001139 memcpy((void *)&handler->guid, protocol, sizeof(efi_guid_t));
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001140 handler->protocol_interface = protocol_interface;
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001141 INIT_LIST_HEAD(&handler->open_infos);
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001142 list_add_tail(&handler->link, &efiobj->protocols);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001143
1144 /* Notify registered events */
1145 list_for_each_entry(event, &efi_register_notify_events, link) {
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001146 if (!guidcmp(protocol, &event->protocol)) {
1147 struct efi_protocol_notification *notif;
1148
1149 notif = calloc(1, sizeof(*notif));
1150 if (!notif) {
1151 list_del(&handler->link);
1152 free(handler);
1153 return EFI_OUT_OF_RESOURCES;
1154 }
1155 notif->handle = handle;
1156 list_add_tail(&notif->link, &event->handles);
Heinrich Schuchardtdaa3f842019-06-07 07:43:24 +02001157 event->event->is_signaled = false;
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001158 efi_signal_event(event->event);
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001159 }
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001160 }
1161
Heinrich Schuchardtd5504142018-01-11 08:16:01 +01001162 if (!guidcmp(&efi_guid_device_path, protocol))
1163 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001164 return EFI_SUCCESS;
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001165}
1166
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001167/**
Mario Six78a88f72018-07-10 08:40:17 +02001168 * efi_install_protocol_interface() - install protocol interface
1169 * @handle: handle on which the protocol shall be installed
1170 * @protocol: GUID of the protocol to be installed
1171 * @protocol_interface_type: type of the interface to be installed,
1172 * always EFI_NATIVE_INTERFACE
1173 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001174 *
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001175 * This function implements the InstallProtocolInterface service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001176 *
Mario Six78a88f72018-07-10 08:40:17 +02001177 * See the Unified Extensible Firmware Interface (UEFI) specification for
1178 * details.
1179 *
1180 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001181 */
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001182static efi_status_t EFIAPI efi_install_protocol_interface(
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02001183 efi_handle_t *handle, const efi_guid_t *protocol,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001184 int protocol_interface_type, void *protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01001185{
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001186 efi_status_t r;
1187
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01001188 EFI_ENTRY("%p, %pUs, %d, %p", handle, protocol, protocol_interface_type,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001189 protocol_interface);
1190
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001191 if (!handle || !protocol ||
1192 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1193 r = EFI_INVALID_PARAMETER;
1194 goto out;
1195 }
1196
1197 /* Create new handle if requested. */
1198 if (!*handle) {
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +02001199 r = efi_create_handle(handle);
1200 if (r != EFI_SUCCESS)
1201 goto out;
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02001202 EFI_PRINT("new handle %p\n", *handle);
Heinrich Schuchardtaf1408e2017-10-26 19:25:43 +02001203 } else {
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02001204 EFI_PRINT("handle %p\n", *handle);
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001205 }
Heinrich Schuchardt12025302017-10-26 19:25:54 +02001206 /* Add new protocol */
1207 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001208out:
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001209 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01001210}
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001211
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001212/**
Mario Six78a88f72018-07-10 08:40:17 +02001213 * efi_get_drivers() - get all drivers associated to a controller
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001214 * @handle: handle of the controller
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001215 * @protocol: protocol GUID (optional)
Mario Six78a88f72018-07-10 08:40:17 +02001216 * @number_of_drivers: number of child controllers
1217 * @driver_handle_buffer: handles of the the drivers
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001218 *
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001219 * The allocated buffer has to be freed with free().
1220 *
Mario Six78a88f72018-07-10 08:40:17 +02001221 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001222 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001223static efi_status_t efi_get_drivers(efi_handle_t handle,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001224 const efi_guid_t *protocol,
1225 efi_uintn_t *number_of_drivers,
1226 efi_handle_t **driver_handle_buffer)
1227{
1228 struct efi_handler *handler;
1229 struct efi_open_protocol_info_item *item;
1230 efi_uintn_t count = 0, i;
1231 bool duplicate;
1232
1233 /* Count all driver associations */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001234 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardt66028932022-03-09 19:56:23 +01001235 if (protocol && guidcmp(&handler->guid, protocol))
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001236 continue;
1237 list_for_each_entry(item, &handler->open_infos, link) {
1238 if (item->info.attributes &
1239 EFI_OPEN_PROTOCOL_BY_DRIVER)
1240 ++count;
1241 }
1242 }
Heinrich Schuchardt66ca24a2019-06-02 01:43:33 +02001243 *number_of_drivers = 0;
1244 if (!count) {
1245 *driver_handle_buffer = NULL;
1246 return EFI_SUCCESS;
1247 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001248 /*
1249 * Create buffer. In case of duplicate driver assignments the buffer
1250 * will be too large. But that does not harm.
1251 */
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001252 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1253 if (!*driver_handle_buffer)
1254 return EFI_OUT_OF_RESOURCES;
1255 /* Collect unique driver handles */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001256 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardt66028932022-03-09 19:56:23 +01001257 if (protocol && guidcmp(&handler->guid, protocol))
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001258 continue;
1259 list_for_each_entry(item, &handler->open_infos, link) {
1260 if (item->info.attributes &
1261 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1262 /* Check this is a new driver */
1263 duplicate = false;
1264 for (i = 0; i < *number_of_drivers; ++i) {
1265 if ((*driver_handle_buffer)[i] ==
1266 item->info.agent_handle)
1267 duplicate = true;
1268 }
1269 /* Copy handle to buffer */
1270 if (!duplicate) {
1271 i = (*number_of_drivers)++;
1272 (*driver_handle_buffer)[i] =
1273 item->info.agent_handle;
1274 }
1275 }
1276 }
1277 }
1278 return EFI_SUCCESS;
1279}
1280
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001281/**
Mario Six78a88f72018-07-10 08:40:17 +02001282 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001283 * @handle: handle of the controller
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001284 * @protocol: protocol GUID (optional)
Mario Six78a88f72018-07-10 08:40:17 +02001285 * @child_handle: handle of the child to destroy
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001286 *
1287 * This function implements the DisconnectController service.
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001288 *
Mario Six78a88f72018-07-10 08:40:17 +02001289 * See the Unified Extensible Firmware Interface (UEFI) specification for
1290 * details.
1291 *
1292 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001293 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001294static efi_status_t efi_disconnect_all_drivers
1295 (efi_handle_t handle,
1296 const efi_guid_t *protocol,
1297 efi_handle_t child_handle)
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001298{
1299 efi_uintn_t number_of_drivers;
1300 efi_handle_t *driver_handle_buffer;
1301 efi_status_t r, ret;
1302
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001303 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001304 &driver_handle_buffer);
1305 if (ret != EFI_SUCCESS)
1306 return ret;
Heinrich Schuchardt66ca24a2019-06-02 01:43:33 +02001307 if (!number_of_drivers)
1308 return EFI_SUCCESS;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001309 ret = EFI_NOT_FOUND;
1310 while (number_of_drivers) {
1311 r = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001312 handle,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001313 driver_handle_buffer[--number_of_drivers],
1314 child_handle));
1315 if (r == EFI_SUCCESS)
1316 ret = r;
1317 }
1318 free(driver_handle_buffer);
1319 return ret;
1320}
1321
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001322/**
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001323 * efi_uninstall_protocol() - uninstall protocol interface
1324 *
Mario Six78a88f72018-07-10 08:40:17 +02001325 * @handle: handle from which the protocol shall be removed
1326 * @protocol: GUID of the protocol to be removed
1327 * @protocol_interface: interface to be removed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001328 *
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001329 * This function DOES NOT delete a handle without installed protocol.
Mario Six78a88f72018-07-10 08:40:17 +02001330 *
1331 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001332 */
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001333static efi_status_t efi_uninstall_protocol
1334 (efi_handle_t handle, const efi_guid_t *protocol,
1335 void *protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01001336{
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001337 struct efi_object *efiobj;
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001338 struct efi_handler *handler;
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001339 struct efi_open_protocol_info_item *item;
1340 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001341 efi_status_t r;
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001342
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001343 /* Check handle */
1344 efiobj = efi_search_obj(handle);
1345 if (!efiobj) {
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001346 r = EFI_INVALID_PARAMETER;
1347 goto out;
1348 }
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001349 /* Find the protocol on the handle */
1350 r = efi_search_protocol(handle, protocol, &handler);
1351 if (r != EFI_SUCCESS)
1352 goto out;
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001353 /* Disconnect controllers */
1354 efi_disconnect_all_drivers(efiobj, protocol, NULL);
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001355 /* Close protocol */
1356 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1357 if (item->info.attributes ==
1358 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1359 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1360 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1361 list_del(&item->link);
1362 }
1363 if (!list_empty(&handler->open_infos)) {
1364 r = EFI_ACCESS_DENIED;
1365 goto out;
1366 }
1367 r = efi_remove_protocol(handle, protocol, protocol_interface);
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001368out:
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001369 return r;
1370}
1371
1372/**
1373 * efi_uninstall_protocol_interface() - uninstall protocol interface
1374 * @handle: handle from which the protocol shall be removed
1375 * @protocol: GUID of the protocol to be removed
1376 * @protocol_interface: interface to be removed
1377 *
1378 * This function implements the UninstallProtocolInterface service.
1379 *
1380 * See the Unified Extensible Firmware Interface (UEFI) specification for
1381 * details.
1382 *
1383 * Return: status code
1384 */
1385static efi_status_t EFIAPI efi_uninstall_protocol_interface
1386 (efi_handle_t handle, const efi_guid_t *protocol,
1387 void *protocol_interface)
1388{
1389 efi_status_t ret;
1390
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01001391 EFI_ENTRY("%p, %pUs, %p", handle, protocol, protocol_interface);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001392
1393 ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1394 if (ret != EFI_SUCCESS)
1395 goto out;
1396
1397 /* If the last protocol has been removed, delete the handle. */
1398 if (list_empty(&handle->protocols)) {
1399 list_del(&handle->link);
1400 free(handle);
1401 }
1402out:
1403 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001404}
1405
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001406/**
Mario Six78a88f72018-07-10 08:40:17 +02001407 * efi_register_protocol_notify() - register an event for notification when a
1408 * protocol is installed.
1409 * @protocol: GUID of the protocol whose installation shall be notified
1410 * @event: event to be signaled upon installation of the protocol
1411 * @registration: key for retrieving the registration information
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001412 *
1413 * This function implements the RegisterProtocolNotify service.
1414 * See the Unified Extensible Firmware Interface (UEFI) specification
1415 * for details.
1416 *
Mario Six78a88f72018-07-10 08:40:17 +02001417 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001418 */
Jose Marinho64a8aae2021-03-02 17:26:38 +00001419efi_status_t EFIAPI efi_register_protocol_notify(const efi_guid_t *protocol,
1420 struct efi_event *event,
1421 void **registration)
Alexander Grafbee91162016-03-04 01:09:59 +01001422{
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001423 struct efi_register_notify_event *item;
1424 efi_status_t ret = EFI_SUCCESS;
1425
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01001426 EFI_ENTRY("%pUs, %p, %p", protocol, event, registration);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001427
1428 if (!protocol || !event || !registration) {
1429 ret = EFI_INVALID_PARAMETER;
1430 goto out;
1431 }
1432
1433 item = calloc(1, sizeof(struct efi_register_notify_event));
1434 if (!item) {
1435 ret = EFI_OUT_OF_RESOURCES;
1436 goto out;
1437 }
1438
1439 item->event = event;
Sughosh Ganu61e42d92019-12-29 00:01:04 +05301440 guidcpy(&item->protocol, protocol);
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001441 INIT_LIST_HEAD(&item->handles);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001442
1443 list_add_tail(&item->link, &efi_register_notify_events);
1444
1445 *registration = item;
1446out:
1447 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001448}
1449
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001450/**
Mario Six78a88f72018-07-10 08:40:17 +02001451 * efi_search() - determine if an EFI handle implements a protocol
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +02001452 *
Mario Six78a88f72018-07-10 08:40:17 +02001453 * @search_type: selection criterion
1454 * @protocol: GUID of the protocol
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001455 * @handle: handle
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001456 *
1457 * See the documentation of the LocateHandle service in the UEFI specification.
1458 *
Mario Six78a88f72018-07-10 08:40:17 +02001459 * Return: 0 if the handle implements the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001460 */
Alexander Grafbee91162016-03-04 01:09:59 +01001461static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001462 const efi_guid_t *protocol, efi_handle_t handle)
Alexander Grafbee91162016-03-04 01:09:59 +01001463{
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +02001464 efi_status_t ret;
Alexander Grafbee91162016-03-04 01:09:59 +01001465
1466 switch (search_type) {
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +01001467 case ALL_HANDLES:
Alexander Grafbee91162016-03-04 01:09:59 +01001468 return 0;
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +01001469 case BY_PROTOCOL:
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001470 ret = efi_search_protocol(handle, protocol, NULL);
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +02001471 return (ret != EFI_SUCCESS);
1472 default:
1473 /* Invalid search type */
Alexander Grafbee91162016-03-04 01:09:59 +01001474 return -1;
1475 }
Alexander Grafbee91162016-03-04 01:09:59 +01001476}
1477
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001478/**
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001479 * efi_check_register_notify_event() - check if registration key is valid
1480 *
1481 * Check that a pointer is a valid registration key as returned by
1482 * RegisterProtocolNotify().
1483 *
1484 * @key: registration key
1485 * Return: valid registration key or NULL
1486 */
1487static struct efi_register_notify_event *efi_check_register_notify_event
1488 (void *key)
1489{
1490 struct efi_register_notify_event *event;
1491
1492 list_for_each_entry(event, &efi_register_notify_events, link) {
1493 if (event == (struct efi_register_notify_event *)key)
1494 return event;
1495 }
1496 return NULL;
1497}
1498
1499/**
Mario Six78a88f72018-07-10 08:40:17 +02001500 * efi_locate_handle() - locate handles implementing a protocol
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001501 *
1502 * @search_type: selection criterion
1503 * @protocol: GUID of the protocol
1504 * @search_key: registration key
1505 * @buffer_size: size of the buffer to receive the handles in bytes
1506 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001507 *
1508 * This function is meant for U-Boot internal calls. For the API implementation
1509 * of the LocateHandle service see efi_locate_handle_ext.
1510 *
Mario Six78a88f72018-07-10 08:40:17 +02001511 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001512 */
xypron.glpk@gmx.deebf199b2017-08-09 20:55:00 +02001513static efi_status_t efi_locate_handle(
Alexander Grafbee91162016-03-04 01:09:59 +01001514 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001515 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001516 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafbee91162016-03-04 01:09:59 +01001517{
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001518 struct efi_object *efiobj;
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001519 efi_uintn_t size = 0;
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001520 struct efi_register_notify_event *event;
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001521 struct efi_protocol_notification *handle = NULL;
Alexander Grafbee91162016-03-04 01:09:59 +01001522
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001523 /* Check parameters */
1524 switch (search_type) {
1525 case ALL_HANDLES:
1526 break;
1527 case BY_REGISTER_NOTIFY:
1528 if (!search_key)
1529 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001530 /* Check that the registration key is valid */
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001531 event = efi_check_register_notify_event(search_key);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001532 if (!event)
1533 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001534 break;
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001535 case BY_PROTOCOL:
1536 if (!protocol)
1537 return EFI_INVALID_PARAMETER;
1538 break;
1539 default:
1540 return EFI_INVALID_PARAMETER;
1541 }
1542
Alexander Grafbee91162016-03-04 01:09:59 +01001543 /* Count how much space we need */
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001544 if (search_type == BY_REGISTER_NOTIFY) {
1545 if (list_empty(&event->handles))
1546 return EFI_NOT_FOUND;
1547 handle = list_first_entry(&event->handles,
1548 struct efi_protocol_notification,
1549 link);
1550 efiobj = handle->handle;
1551 size += sizeof(void *);
1552 } else {
1553 list_for_each_entry(efiobj, &efi_obj_list, link) {
1554 if (!efi_search(search_type, protocol, efiobj))
1555 size += sizeof(void *);
1556 }
1557 if (size == 0)
1558 return EFI_NOT_FOUND;
Alexander Grafbee91162016-03-04 01:09:59 +01001559 }
1560
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001561 if (!buffer_size)
1562 return EFI_INVALID_PARAMETER;
1563
Alexander Grafbee91162016-03-04 01:09:59 +01001564 if (*buffer_size < size) {
1565 *buffer_size = size;
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001566 return EFI_BUFFER_TOO_SMALL;
Alexander Grafbee91162016-03-04 01:09:59 +01001567 }
1568
Rob Clark796a78c2017-08-06 14:10:07 -04001569 *buffer_size = size;
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001570
Heinrich Schuchardt0a843192019-05-10 19:03:49 +02001571 /* The buffer size is sufficient but there is no buffer */
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001572 if (!buffer)
1573 return EFI_INVALID_PARAMETER;
Rob Clark796a78c2017-08-06 14:10:07 -04001574
Alexander Grafbee91162016-03-04 01:09:59 +01001575 /* Then fill the array */
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001576 if (search_type == BY_REGISTER_NOTIFY) {
1577 *buffer = efiobj;
1578 list_del(&handle->link);
1579 } else {
1580 list_for_each_entry(efiobj, &efi_obj_list, link) {
1581 if (!efi_search(search_type, protocol, efiobj))
1582 *buffer++ = efiobj;
1583 }
Alexander Grafbee91162016-03-04 01:09:59 +01001584 }
1585
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001586 return EFI_SUCCESS;
1587}
1588
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001589/**
Mario Six78a88f72018-07-10 08:40:17 +02001590 * efi_locate_handle_ext() - locate handles implementing a protocol.
1591 * @search_type: selection criterion
1592 * @protocol: GUID of the protocol
1593 * @search_key: registration key
1594 * @buffer_size: size of the buffer to receive the handles in bytes
1595 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001596 *
1597 * This function implements the LocateHandle service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001598 *
Mario Six78a88f72018-07-10 08:40:17 +02001599 * See the Unified Extensible Firmware Interface (UEFI) specification for
1600 * details.
1601 *
1602 * Return: 0 if the handle implements the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001603 */
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001604static efi_status_t EFIAPI efi_locate_handle_ext(
1605 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001606 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001607 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001608{
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01001609 EFI_ENTRY("%d, %pUs, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001610 buffer_size, buffer);
1611
1612 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1613 buffer_size, buffer));
Alexander Grafbee91162016-03-04 01:09:59 +01001614}
1615
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001616/**
Mario Six78a88f72018-07-10 08:40:17 +02001617 * efi_remove_configuration_table() - collapses configuration table entries,
1618 * removing index i
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001619 *
Mario Six78a88f72018-07-10 08:40:17 +02001620 * @i: index of the table entry to be removed
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001621 */
Alexander Grafd98cdf62017-07-26 13:41:04 +02001622static void efi_remove_configuration_table(int i)
1623{
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001624 struct efi_configuration_table *this = &systab.tables[i];
1625 struct efi_configuration_table *next = &systab.tables[i + 1];
1626 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
Alexander Grafd98cdf62017-07-26 13:41:04 +02001627
1628 memmove(this, next, (ulong)end - (ulong)next);
1629 systab.nr_tables--;
1630}
1631
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001632/**
Mario Six78a88f72018-07-10 08:40:17 +02001633 * efi_install_configuration_table() - adds, updates, or removes a
1634 * configuration table
1635 * @guid: GUID of the installed table
1636 * @table: table to be installed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001637 *
1638 * This function is used for internal calls. For the API implementation of the
1639 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1640 *
Mario Six78a88f72018-07-10 08:40:17 +02001641 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001642 */
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01001643efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1644 void *table)
Alexander Grafbee91162016-03-04 01:09:59 +01001645{
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001646 struct efi_event *evt;
Alexander Grafbee91162016-03-04 01:09:59 +01001647 int i;
1648
Heinrich Schuchardteb68b4e2018-02-18 00:08:00 +01001649 if (!guid)
1650 return EFI_INVALID_PARAMETER;
1651
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001652 /* Check for GUID override */
Alexander Grafbee91162016-03-04 01:09:59 +01001653 for (i = 0; i < systab.nr_tables; i++) {
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001654 if (!guidcmp(guid, &systab.tables[i].guid)) {
Alexander Grafd98cdf62017-07-26 13:41:04 +02001655 if (table)
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001656 systab.tables[i].table = table;
Alexander Grafd98cdf62017-07-26 13:41:04 +02001657 else
1658 efi_remove_configuration_table(i);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001659 goto out;
Alexander Grafbee91162016-03-04 01:09:59 +01001660 }
1661 }
1662
Alexander Grafd98cdf62017-07-26 13:41:04 +02001663 if (!table)
1664 return EFI_NOT_FOUND;
1665
Alexander Grafbee91162016-03-04 01:09:59 +01001666 /* No override, check for overflow */
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001667 if (i >= EFI_MAX_CONFIGURATION_TABLES)
Alexander Graf488bf122016-08-19 01:23:24 +02001668 return EFI_OUT_OF_RESOURCES;
Alexander Grafbee91162016-03-04 01:09:59 +01001669
1670 /* Add a new entry */
Sughosh Ganu61e42d92019-12-29 00:01:04 +05301671 guidcpy(&systab.tables[i].guid, guid);
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001672 systab.tables[i].table = table;
Alexander Grafaba5e912016-08-19 01:23:30 +02001673 systab.nr_tables = i + 1;
Alexander Grafbee91162016-03-04 01:09:59 +01001674
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001675out:
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001676 /* systab.nr_tables may have changed. So we need to update the CRC32 */
Heinrich Schuchardt55d8ee32018-07-07 15:36:05 +02001677 efi_update_table_header_crc32(&systab.hdr);
1678
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001679 /* Notify that the configuration table was changed */
1680 list_for_each_entry(evt, &efi_events, link) {
1681 if (evt->group && !guidcmp(evt->group, guid)) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001682 efi_signal_event(evt);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001683 break;
1684 }
1685 }
1686
Alexander Graf488bf122016-08-19 01:23:24 +02001687 return EFI_SUCCESS;
1688}
1689
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001690/**
Mario Six78a88f72018-07-10 08:40:17 +02001691 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1692 * configuration table.
1693 * @guid: GUID of the installed table
1694 * @table: table to be installed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001695 *
1696 * This function implements the InstallConfigurationTable service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001697 *
Mario Six78a88f72018-07-10 08:40:17 +02001698 * See the Unified Extensible Firmware Interface (UEFI) specification for
1699 * details.
1700 *
1701 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001702 */
Masahisa Kojimaf86352e2021-10-22 20:24:24 +09001703static efi_status_t
1704EFIAPI efi_install_configuration_table_ext(const efi_guid_t *guid,
1705 void *table)
Alexander Graf488bf122016-08-19 01:23:24 +02001706{
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01001707 EFI_ENTRY("%pUs, %p", guid, table);
Alexander Graf488bf122016-08-19 01:23:24 +02001708 return EFI_EXIT(efi_install_configuration_table(guid, table));
Alexander Grafbee91162016-03-04 01:09:59 +01001709}
1710
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001711/**
Mario Six78a88f72018-07-10 08:40:17 +02001712 * efi_setup_loaded_image() - initialize a loaded image
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001713 *
1714 * Initialize a loaded_image_info and loaded_image_info object with correct
Rob Clark95c55532017-09-13 18:05:33 -04001715 * protocols, boot-device, etc.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001716 *
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +02001717 * In case of an error \*handle_ptr and \*info_ptr are set to NULL and an error
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001718 * code is returned.
1719 *
1720 * @device_path: device path of the loaded image
1721 * @file_path: file path of the loaded image
1722 * @handle_ptr: handle of the loaded image
1723 * @info_ptr: loaded image protocol
1724 * Return: status code
Rob Clark95c55532017-09-13 18:05:33 -04001725 */
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001726efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1727 struct efi_device_path *file_path,
1728 struct efi_loaded_image_obj **handle_ptr,
1729 struct efi_loaded_image **info_ptr)
Rob Clark95c55532017-09-13 18:05:33 -04001730{
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001731 efi_status_t ret;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001732 struct efi_loaded_image *info = NULL;
1733 struct efi_loaded_image_obj *obj = NULL;
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001734 struct efi_device_path *dp;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001735
1736 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1737 *handle_ptr = NULL;
1738 *info_ptr = NULL;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001739
1740 info = calloc(1, sizeof(*info));
1741 if (!info)
1742 return EFI_OUT_OF_RESOURCES;
1743 obj = calloc(1, sizeof(*obj));
1744 if (!obj) {
1745 free(info);
1746 return EFI_OUT_OF_RESOURCES;
1747 }
Heinrich Schuchardtcd73aba2019-05-01 14:20:18 +02001748 obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001749
Heinrich Schuchardt44549d62017-11-26 14:05:23 +01001750 /* Add internal object to object list */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +02001751 efi_add_handle(&obj->header);
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001752
Heinrich Schuchardt95147312018-07-05 08:17:58 +02001753 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
Rob Clark95c55532017-09-13 18:05:33 -04001754 info->file_path = file_path;
Heinrich Schuchardt7e1effc2018-08-26 15:31:52 +02001755 info->system_table = &systab;
Rob Clark95c55532017-09-13 18:05:33 -04001756
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001757 if (device_path) {
Heinrich Schuchardte46ef1d2022-03-19 06:35:43 +01001758 info->device_handle = efi_dp_find_obj(device_path, NULL, NULL);
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001759
1760 dp = efi_dp_append(device_path, file_path);
1761 if (!dp) {
1762 ret = EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001763 goto failure;
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001764 }
1765 } else {
1766 dp = NULL;
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001767 }
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001768 ret = efi_add_protocol(&obj->header,
1769 &efi_guid_loaded_image_device_path, dp);
1770 if (ret != EFI_SUCCESS)
1771 goto failure;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001772
1773 /*
1774 * When asking for the loaded_image interface, just
1775 * return handle which points to loaded_image_info
1776 */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +02001777 ret = efi_add_protocol(&obj->header,
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001778 &efi_guid_loaded_image, info);
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001779 if (ret != EFI_SUCCESS)
1780 goto failure;
1781
Heinrich Schuchardtd5974af2019-03-19 18:58:58 +01001782 *info_ptr = info;
1783 *handle_ptr = obj;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001784
Heinrich Schuchardt56d92882017-12-04 18:03:01 +01001785 return ret;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001786failure:
1787 printf("ERROR: Failure to install protocols for loaded image\n");
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001788 efi_delete_handle(&obj->header);
1789 free(info);
Heinrich Schuchardt56d92882017-12-04 18:03:01 +01001790 return ret;
Rob Clark95c55532017-09-13 18:05:33 -04001791}
1792
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001793/**
Heinrich Schuchardt0e9d2d72020-12-04 03:02:03 +01001794 * efi_locate_device_path() - Get the device path and handle of an device
1795 * implementing a protocol
1796 * @protocol: GUID of the protocol
1797 * @device_path: device path
1798 * @device: handle of the device
1799 *
1800 * This function implements the LocateDevicePath service.
1801 *
1802 * See the Unified Extensible Firmware Interface (UEFI) specification for
1803 * details.
1804 *
1805 * Return: status code
1806 */
AKASHI Takahirod8465ff2022-04-28 17:09:38 +09001807efi_status_t EFIAPI efi_locate_device_path(const efi_guid_t *protocol,
1808 struct efi_device_path **device_path,
1809 efi_handle_t *device)
Heinrich Schuchardt0e9d2d72020-12-04 03:02:03 +01001810{
1811 struct efi_device_path *dp;
1812 size_t i;
1813 struct efi_handler *handler;
1814 efi_handle_t *handles;
1815 size_t len, len_dp;
1816 size_t len_best = 0;
1817 efi_uintn_t no_handles;
1818 u8 *remainder;
1819 efi_status_t ret;
1820
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01001821 EFI_ENTRY("%pUs, %p, %p", protocol, device_path, device);
Heinrich Schuchardt0e9d2d72020-12-04 03:02:03 +01001822
1823 if (!protocol || !device_path || !*device_path) {
1824 ret = EFI_INVALID_PARAMETER;
1825 goto out;
1826 }
1827
1828 /* Find end of device path */
1829 len = efi_dp_instance_size(*device_path);
1830
1831 /* Get all handles implementing the protocol */
1832 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
1833 &no_handles, &handles));
1834 if (ret != EFI_SUCCESS)
1835 goto out;
1836
1837 for (i = 0; i < no_handles; ++i) {
1838 /* Find the device path protocol */
1839 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
1840 &handler);
1841 if (ret != EFI_SUCCESS)
1842 continue;
1843 dp = (struct efi_device_path *)handler->protocol_interface;
1844 len_dp = efi_dp_instance_size(dp);
1845 /*
1846 * This handle can only be a better fit
1847 * if its device path length is longer than the best fit and
1848 * if its device path length is shorter of equal the searched
1849 * device path.
1850 */
1851 if (len_dp <= len_best || len_dp > len)
1852 continue;
1853 /* Check if dp is a subpath of device_path */
1854 if (memcmp(*device_path, dp, len_dp))
1855 continue;
1856 if (!device) {
1857 ret = EFI_INVALID_PARAMETER;
1858 goto out;
1859 }
1860 *device = handles[i];
1861 len_best = len_dp;
1862 }
1863 if (len_best) {
1864 remainder = (u8 *)*device_path + len_best;
1865 *device_path = (struct efi_device_path *)remainder;
1866 ret = EFI_SUCCESS;
1867 } else {
1868 ret = EFI_NOT_FOUND;
1869 }
1870out:
1871 return EFI_EXIT(ret);
1872}
1873
1874/**
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001875 * efi_load_image_from_file() - load an image from file system
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001876 *
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001877 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1878 * callers obligation to update the memory type as needed.
1879 *
Heinrich Schuchardtc06c55b2020-12-04 09:27:41 +01001880 * @file_path: the path of the image to load
1881 * @buffer: buffer containing the loaded image
1882 * @size: size of the loaded image
1883 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001884 */
AKASHI Takahiro6b95b382019-04-19 12:22:35 +09001885static
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001886efi_status_t efi_load_image_from_file(struct efi_device_path *file_path,
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001887 void **buffer, efi_uintn_t *size)
Rob Clark838ee4b2017-09-13 18:05:35 -04001888{
Rob Clark838ee4b2017-09-13 18:05:35 -04001889 struct efi_file_handle *f;
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001890 efi_status_t ret;
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001891 u64 addr;
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +02001892 efi_uintn_t bs;
Rob Clark838ee4b2017-09-13 18:05:35 -04001893
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001894 /* Open file */
Rob Clark838ee4b2017-09-13 18:05:35 -04001895 f = efi_file_from_path(file_path);
1896 if (!f)
Heinrich Schuchardt20000032019-06-11 19:00:56 +02001897 return EFI_NOT_FOUND;
Rob Clark838ee4b2017-09-13 18:05:35 -04001898
Ilias Apalodimasac30aad2021-03-25 21:55:16 +02001899 ret = efi_file_size(f, &bs);
Rob Clark838ee4b2017-09-13 18:05:35 -04001900 if (ret != EFI_SUCCESS)
1901 goto error;
1902
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001903 /*
1904 * When reading the file we do not yet know if it contains an
1905 * application, a boottime driver, or a runtime driver. So here we
1906 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1907 * update the reservation according to the image type.
1908 */
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001909 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1910 EFI_BOOT_SERVICES_DATA,
1911 efi_size_in_pages(bs), &addr);
Rob Clark838ee4b2017-09-13 18:05:35 -04001912 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001913 ret = EFI_OUT_OF_RESOURCES;
1914 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04001915 }
1916
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001917 /* Read file */
1918 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1919 if (ret != EFI_SUCCESS)
1920 efi_free_pages(addr, efi_size_in_pages(bs));
1921 *buffer = (void *)(uintptr_t)addr;
1922 *size = bs;
1923error:
1924 EFI_CALL(f->close(f));
Rob Clark838ee4b2017-09-13 18:05:35 -04001925 return ret;
1926}
1927
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001928/**
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001929 * efi_load_image_from_path() - load an image using a file path
1930 *
1931 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1932 * callers obligation to update the memory type as needed.
1933 *
1934 * @boot_policy: true for request originating from the boot manager
1935 * @file_path: the path of the image to load
1936 * @buffer: buffer containing the loaded image
1937 * @size: size of the loaded image
1938 * Return: status code
1939 */
1940static
1941efi_status_t efi_load_image_from_path(bool boot_policy,
1942 struct efi_device_path *file_path,
1943 void **buffer, efi_uintn_t *size)
1944{
1945 efi_handle_t device;
1946 efi_status_t ret;
Heinrich Schuchardt9cdf4702022-02-26 12:05:30 +01001947 struct efi_device_path *dp, *rem;
Heinrich Schuchardt3da0b282020-12-06 13:00:15 +01001948 struct efi_load_file_protocol *load_file_protocol = NULL;
1949 efi_uintn_t buffer_size;
1950 uint64_t addr, pages;
1951 const efi_guid_t *guid;
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001952
1953 /* In case of failure nothing is returned */
1954 *buffer = NULL;
1955 *size = 0;
1956
1957 dp = file_path;
Heinrich Schuchardt9cdf4702022-02-26 12:05:30 +01001958 device = efi_dp_find_obj(dp, NULL, &rem);
1959 ret = efi_search_protocol(device, &efi_simple_file_system_protocol_guid,
1960 NULL);
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001961 if (ret == EFI_SUCCESS)
1962 return efi_load_image_from_file(file_path, buffer, size);
Heinrich Schuchardt3da0b282020-12-06 13:00:15 +01001963
Heinrich Schuchardt9cdf4702022-02-26 12:05:30 +01001964 ret = efi_search_protocol(device, &efi_guid_load_file_protocol, NULL);
Heinrich Schuchardt3da0b282020-12-06 13:00:15 +01001965 if (ret == EFI_SUCCESS) {
1966 guid = &efi_guid_load_file_protocol;
1967 } else if (!boot_policy) {
1968 guid = &efi_guid_load_file2_protocol;
Heinrich Schuchardt9cdf4702022-02-26 12:05:30 +01001969 ret = efi_search_protocol(device, guid, NULL);
Heinrich Schuchardt3da0b282020-12-06 13:00:15 +01001970 }
1971 if (ret != EFI_SUCCESS)
1972 return EFI_NOT_FOUND;
1973 ret = EFI_CALL(efi_handle_protocol(device, guid,
1974 (void **)&load_file_protocol));
1975 if (ret != EFI_SUCCESS)
1976 return EFI_NOT_FOUND;
1977 buffer_size = 0;
Heinrich Schuchardt9cdf4702022-02-26 12:05:30 +01001978 ret = EFI_CALL(load_file_protocol->load_file(
1979 load_file_protocol, rem, boot_policy,
1980 &buffer_size, NULL));
Heinrich Schuchardt3da0b282020-12-06 13:00:15 +01001981 if (ret != EFI_BUFFER_TOO_SMALL)
1982 goto out;
1983 pages = efi_size_in_pages(buffer_size);
1984 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, EFI_BOOT_SERVICES_DATA,
1985 pages, &addr);
1986 if (ret != EFI_SUCCESS) {
1987 ret = EFI_OUT_OF_RESOURCES;
1988 goto out;
1989 }
1990 ret = EFI_CALL(load_file_protocol->load_file(
Heinrich Schuchardt9cdf4702022-02-26 12:05:30 +01001991 load_file_protocol, rem, boot_policy,
Heinrich Schuchardt3da0b282020-12-06 13:00:15 +01001992 &buffer_size, (void *)(uintptr_t)addr));
1993 if (ret != EFI_SUCCESS)
1994 efi_free_pages(addr, pages);
1995out:
Heinrich Schuchardtef185762022-10-07 15:18:15 +02001996 efi_close_protocol(device, guid, efi_root, NULL);
Heinrich Schuchardt3da0b282020-12-06 13:00:15 +01001997 if (ret == EFI_SUCCESS) {
1998 *buffer = (void *)(uintptr_t)addr;
1999 *size = buffer_size;
2000 }
2001
2002 return ret;
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01002003}
2004
2005/**
Mario Six78a88f72018-07-10 08:40:17 +02002006 * efi_load_image() - load an EFI image into memory
2007 * @boot_policy: true for request originating from the boot manager
2008 * @parent_image: the caller's image handle
2009 * @file_path: the path of the image to load
2010 * @source_buffer: memory location from which the image is installed
2011 * @source_size: size of the memory area from which the image is installed
2012 * @image_handle: handle for the newly installed image
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002013 *
2014 * This function implements the LoadImage service.
Mario Six78a88f72018-07-10 08:40:17 +02002015 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002016 * See the Unified Extensible Firmware Interface (UEFI) specification
2017 * for details.
2018 *
Mario Six78a88f72018-07-10 08:40:17 +02002019 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002020 */
AKASHI Takahirod7e0b012019-03-05 14:53:31 +09002021efi_status_t EFIAPI efi_load_image(bool boot_policy,
2022 efi_handle_t parent_image,
2023 struct efi_device_path *file_path,
2024 void *source_buffer,
2025 efi_uintn_t source_size,
2026 efi_handle_t *image_handle)
Alexander Grafbee91162016-03-04 01:09:59 +01002027{
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01002028 struct efi_device_path *dp, *fp;
Tom Rini1c3b2f42018-09-30 10:38:15 -04002029 struct efi_loaded_image *info = NULL;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02002030 struct efi_loaded_image_obj **image_obj =
2031 (struct efi_loaded_image_obj **)image_handle;
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01002032 efi_status_t ret;
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002033 void *dest_buffer;
Alexander Grafbee91162016-03-04 01:09:59 +01002034
Heinrich Schuchardte9df5492022-02-03 22:21:51 +01002035 EFI_ENTRY("%d, %p, %pD, %p, %zu, %p", boot_policy, parent_image,
Alexander Grafbee91162016-03-04 01:09:59 +01002036 file_path, source_buffer, source_size, image_handle);
Rob Clark838ee4b2017-09-13 18:05:35 -04002037
Heinrich Schuchardte4afcb22019-06-11 18:52:33 +02002038 if (!image_handle || (!source_buffer && !file_path) ||
2039 !efi_search_obj(parent_image) ||
2040 /* The parent image handle must refer to a loaded image */
2041 !parent_image->type) {
Heinrich Schuchardt84a918e2019-05-05 16:55:06 +02002042 ret = EFI_INVALID_PARAMETER;
2043 goto error;
2044 }
Heinrich Schuchardt28a4fd42018-03-07 02:40:51 +01002045
Rob Clark838ee4b2017-09-13 18:05:35 -04002046 if (!source_buffer) {
Heinrich Schuchardtc06c55b2020-12-04 09:27:41 +01002047 ret = efi_load_image_from_path(boot_policy, file_path,
2048 &dest_buffer, &source_size);
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01002049 if (ret != EFI_SUCCESS)
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01002050 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04002051 } else {
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002052 dest_buffer = source_buffer;
Rob Clark838ee4b2017-09-13 18:05:35 -04002053 }
Heinrich Schuchardt1e15a9c2019-04-20 19:24:43 +00002054 /* split file_path which contains both the device and file parts */
2055 efi_dp_split_file_path(file_path, &dp, &fp);
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01002056 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002057 if (ret == EFI_SUCCESS)
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09002058 ret = efi_load_pe(*image_obj, dest_buffer, source_size, info);
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002059 if (!source_buffer)
2060 /* Release buffer to which file was loaded */
2061 efi_free_pages((uintptr_t)dest_buffer,
2062 efi_size_in_pages(source_size));
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09002063 if (ret == EFI_SUCCESS || ret == EFI_SECURITY_VIOLATION) {
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002064 info->system_table = &systab;
2065 info->parent_handle = parent_image;
2066 } else {
2067 /* The image is invalid. Release all associated resources. */
2068 efi_delete_handle(*image_handle);
2069 *image_handle = NULL;
2070 free(info);
2071 }
Heinrich Schuchardt28a4fd42018-03-07 02:40:51 +01002072error:
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01002073 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002074}
2075
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002076/**
Alexander Graff31239a2018-11-15 21:23:47 +01002077 * efi_exit_caches() - fix up caches for EFI payloads if necessary
2078 */
2079static void efi_exit_caches(void)
2080{
Heinrich Schuchardt6f3badb2019-07-22 22:04:36 +02002081#if defined(CONFIG_EFI_GRUB_ARM32_WORKAROUND)
Alexander Graff31239a2018-11-15 21:23:47 +01002082 /*
Heinrich Schuchardt6f3badb2019-07-22 22:04:36 +02002083 * Boooting Linux via GRUB prior to version 2.04 fails on 32bit ARM if
2084 * caches are enabled.
2085 *
2086 * TODO:
2087 * According to the UEFI spec caches that can be managed via CP15
2088 * operations should be enabled. Caches requiring platform information
2089 * to manage should be disabled. This should not happen in
2090 * ExitBootServices() but before invoking any UEFI binary is invoked.
2091 *
2092 * We want to keep the current workaround while GRUB prior to version
2093 * 2.04 is still in use.
Alexander Graff31239a2018-11-15 21:23:47 +01002094 */
Heinrich Schuchardt6f3badb2019-07-22 22:04:36 +02002095 cleanup_before_linux();
Alexander Graff31239a2018-11-15 21:23:47 +01002096#endif
2097}
2098
2099/**
Mario Six78a88f72018-07-10 08:40:17 +02002100 * efi_exit_boot_services() - stop all boot services
2101 * @image_handle: handle of the loaded image
2102 * @map_key: key of the memory map
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002103 *
2104 * This function implements the ExitBootServices service.
Mario Six78a88f72018-07-10 08:40:17 +02002105 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002106 * See the Unified Extensible Firmware Interface (UEFI) specification
2107 * for details.
2108 *
Mario Six78a88f72018-07-10 08:40:17 +02002109 * All timer events are disabled. For exit boot services events the
2110 * notification function is called. The boot services are disabled in the
2111 * system table.
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002112 *
Mario Six78a88f72018-07-10 08:40:17 +02002113 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002114 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002115static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
Heinrich Schuchardtb015ab52019-05-05 21:58:35 +02002116 efi_uintn_t map_key)
Alexander Grafbee91162016-03-04 01:09:59 +01002117{
Heinrich Schuchardt14b40482019-07-11 20:15:09 +02002118 struct efi_event *evt, *next_event;
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002119 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02002120
Heinrich Schuchardtb015ab52019-05-05 21:58:35 +02002121 EFI_ENTRY("%p, %zx", image_handle, map_key);
Alexander Grafbee91162016-03-04 01:09:59 +01002122
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +02002123 /* Check that the caller has read the current memory map */
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002124 if (map_key != efi_memory_map_key) {
2125 ret = EFI_INVALID_PARAMETER;
2126 goto out;
2127 }
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +02002128
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002129 /* Check if ExitBootServices has already been called */
2130 if (!systab.boottime)
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002131 goto out;
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002132
Heinrich Schuchardt43eaf5b2021-11-16 18:46:27 +01002133 /* Notify EFI_EVENT_GROUP_BEFORE_EXIT_BOOT_SERVICES event group. */
2134 list_for_each_entry(evt, &efi_events, link) {
2135 if (evt->group &&
2136 !guidcmp(evt->group,
2137 &efi_guid_event_group_before_exit_boot_services)) {
2138 efi_signal_event(evt);
2139 break;
2140 }
2141 }
2142
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02002143 /* Stop all timer related activities */
2144 timers_enabled = false;
2145
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01002146 /* Add related events to the event group */
2147 list_for_each_entry(evt, &efi_events, link) {
2148 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
2149 evt->group = &efi_guid_event_group_exit_boot_services;
2150 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02002151 /* Notify that ExitBootServices is invoked. */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01002152 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01002153 if (evt->group &&
2154 !guidcmp(evt->group,
2155 &efi_guid_event_group_exit_boot_services)) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02002156 efi_signal_event(evt);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01002157 break;
2158 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02002159 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02002160
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02002161 /* Make sure that notification functions are not called anymore */
2162 efi_tpl = TPL_HIGH_LEVEL;
2163
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +02002164 /* Notify variable services */
2165 efi_variables_boot_exit_notify();
Rob Clarkad644e72017-09-13 18:05:37 -04002166
Heinrich Schuchardt14b40482019-07-11 20:15:09 +02002167 /* Remove all events except EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE */
2168 list_for_each_entry_safe(evt, next_event, &efi_events, link) {
2169 if (evt->type != EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE)
2170 list_del(&evt->link);
2171 }
2172
Heinrich Schuchardtfccd3d92020-11-12 21:26:28 +01002173 if (!efi_st_keep_devices) {
Tom Rini3f73e792021-11-19 16:33:04 -05002174 bootm_disable_interrupts();
Heinrich Schuchardtdb6288d2020-12-27 15:33:09 +01002175 if (IS_ENABLED(CONFIG_USB_DEVICE))
Heinrich Schuchardtfccd3d92020-11-12 21:26:28 +01002176 udc_disconnect();
2177 board_quiesce_devices();
2178 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
2179 }
Alexander Grafb7b84102016-11-17 01:02:57 +01002180
Heinrich Schuchardt7f951042019-07-05 17:42:16 +02002181 /* Patch out unsupported runtime function */
2182 efi_runtime_detach();
2183
Alexander Graff31239a2018-11-15 21:23:47 +01002184 /* Fix up caches for EFI payloads if necessary */
2185 efi_exit_caches();
2186
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02002187 /* Disable boot time services */
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002188 systab.con_in_handle = NULL;
2189 systab.con_in = NULL;
2190 systab.con_out_handle = NULL;
2191 systab.con_out = NULL;
2192 systab.stderr_handle = NULL;
2193 systab.std_err = NULL;
2194 systab.boottime = NULL;
2195
2196 /* Recalculate CRC32 */
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02002197 efi_update_table_header_crc32(&systab.hdr);
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002198
Alexander Grafbee91162016-03-04 01:09:59 +01002199 /* Give the payload some time to boot */
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002200 efi_set_watchdog(0);
Stefan Roese29caf932022-09-02 14:10:46 +02002201 schedule();
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002202out:
Masahisa Kojimafdff03e2021-08-13 16:12:41 +09002203 if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
2204 if (ret != EFI_SUCCESS)
2205 efi_tcg2_notify_exit_boot_services_failed();
2206 }
2207
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002208 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002209}
2210
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002211/**
Mario Six78a88f72018-07-10 08:40:17 +02002212 * efi_get_next_monotonic_count() - get next value of the counter
2213 * @count: returned value of the counter
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002214 *
2215 * This function implements the NextMonotonicCount service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002216 *
Mario Six78a88f72018-07-10 08:40:17 +02002217 * See the Unified Extensible Firmware Interface (UEFI) specification for
2218 * details.
2219 *
2220 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002221 */
Alexander Grafbee91162016-03-04 01:09:59 +01002222static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
2223{
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002224 static uint64_t mono;
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02002225 efi_status_t ret;
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002226
Alexander Grafbee91162016-03-04 01:09:59 +01002227 EFI_ENTRY("%p", count);
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02002228 if (!count) {
2229 ret = EFI_INVALID_PARAMETER;
2230 goto out;
2231 }
Alexander Grafbee91162016-03-04 01:09:59 +01002232 *count = mono++;
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02002233 ret = EFI_SUCCESS;
2234out:
2235 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002236}
2237
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002238/**
Mario Six78a88f72018-07-10 08:40:17 +02002239 * efi_stall() - sleep
2240 * @microseconds: period to sleep in microseconds
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002241 *
Mario Six78a88f72018-07-10 08:40:17 +02002242 * This function implements the Stall service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002243 *
Mario Six78a88f72018-07-10 08:40:17 +02002244 * See the Unified Extensible Firmware Interface (UEFI) specification for
2245 * details.
2246 *
2247 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002248 */
Alexander Grafbee91162016-03-04 01:09:59 +01002249static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
2250{
Heinrich Schuchardt22f23db2019-06-02 21:12:17 +02002251 u64 end_tick;
2252
Alexander Grafbee91162016-03-04 01:09:59 +01002253 EFI_ENTRY("%ld", microseconds);
Heinrich Schuchardt22f23db2019-06-02 21:12:17 +02002254
2255 end_tick = get_ticks() + usec_to_tick(microseconds);
2256 while (get_ticks() < end_tick)
2257 efi_timer_check();
2258
Alexander Grafbee91162016-03-04 01:09:59 +01002259 return EFI_EXIT(EFI_SUCCESS);
2260}
2261
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002262/**
Mario Six78a88f72018-07-10 08:40:17 +02002263 * efi_set_watchdog_timer() - reset the watchdog timer
2264 * @timeout: seconds before reset by watchdog
2265 * @watchdog_code: code to be logged when resetting
2266 * @data_size: size of buffer in bytes
2267 * @watchdog_data: buffer with data describing the reset reason
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002268 *
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002269 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002270 *
Mario Six78a88f72018-07-10 08:40:17 +02002271 * See the Unified Extensible Firmware Interface (UEFI) specification for
2272 * details.
2273 *
2274 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002275 */
Alexander Grafbee91162016-03-04 01:09:59 +01002276static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
2277 uint64_t watchdog_code,
2278 unsigned long data_size,
2279 uint16_t *watchdog_data)
2280{
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09002281 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
Alexander Grafbee91162016-03-04 01:09:59 +01002282 data_size, watchdog_data);
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002283 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafbee91162016-03-04 01:09:59 +01002284}
2285
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002286/**
Mario Six78a88f72018-07-10 08:40:17 +02002287 * efi_close_protocol() - close a protocol
2288 * @handle: handle on which the protocol shall be closed
2289 * @protocol: GUID of the protocol to close
2290 * @agent_handle: handle of the driver
2291 * @controller_handle: handle of the controller
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002292 *
Heinrich Schuchardtef185762022-10-07 15:18:15 +02002293 * This is the function implementing the CloseProtocol service is for internal
2294 * usage in U-Boot. For API usage wrapper efi_close_protocol_ext() is provided.
2295 *
2296 * See the Unified Extensible Firmware Interface (UEFI) specification for
2297 * details.
2298 *
2299 * Return: status code
2300 */
2301efi_status_t efi_close_protocol(efi_handle_t handle, const efi_guid_t *protocol,
2302 efi_handle_t agent_handle,
2303 efi_handle_t controller_handle)
2304{
2305 struct efi_handler *handler;
2306 struct efi_open_protocol_info_item *item;
2307 struct efi_open_protocol_info_item *pos;
2308 efi_status_t ret;
2309
2310 if (!efi_search_obj(agent_handle) ||
2311 (controller_handle && !efi_search_obj(controller_handle)))
2312 return EFI_INVALID_PARAMETER;
2313 ret = efi_search_protocol(handle, protocol, &handler);
2314 if (ret != EFI_SUCCESS)
2315 return ret;
2316
2317 ret = EFI_NOT_FOUND;
2318 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2319 if (item->info.agent_handle == agent_handle &&
2320 item->info.controller_handle == controller_handle) {
2321 efi_delete_open_info(item);
2322 ret = EFI_SUCCESS;
2323 }
2324 }
2325
2326 return ret;
2327}
2328
2329/**
2330 * efi_close_protocol_ext() - close a protocol
2331 * @handle: handle on which the protocol shall be closed
2332 * @protocol: GUID of the protocol to close
2333 * @agent_handle: handle of the driver
2334 * @controller_handle: handle of the controller
2335 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002336 * This function implements the CloseProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002337 *
Mario Six78a88f72018-07-10 08:40:17 +02002338 * See the Unified Extensible Firmware Interface (UEFI) specification for
2339 * details.
2340 *
2341 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002342 */
Heinrich Schuchardtef185762022-10-07 15:18:15 +02002343static efi_status_t EFIAPI
2344efi_close_protocol_ext(efi_handle_t handle, const efi_guid_t *protocol,
2345 efi_handle_t agent_handle,
2346 efi_handle_t controller_handle)
Alexander Grafbee91162016-03-04 01:09:59 +01002347{
Heinrich Schuchardtef185762022-10-07 15:18:15 +02002348 efi_status_t ret;
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002349
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01002350 EFI_ENTRY("%p, %pUs, %p, %p", handle, protocol, agent_handle,
Alexander Grafbee91162016-03-04 01:09:59 +01002351 controller_handle);
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002352
Heinrich Schuchardtef185762022-10-07 15:18:15 +02002353 ret = efi_close_protocol(handle, protocol,
2354 agent_handle, controller_handle);
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002355
Heinrich Schuchardtef185762022-10-07 15:18:15 +02002356 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002357}
2358
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002359/**
Mario Six78a88f72018-07-10 08:40:17 +02002360 * efi_open_protocol_information() - provide information about then open status
2361 * of a protocol on a handle
2362 * @handle: handle for which the information shall be retrieved
2363 * @protocol: GUID of the protocol
2364 * @entry_buffer: buffer to receive the open protocol information
2365 * @entry_count: number of entries available in the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002366 *
2367 * This function implements the OpenProtocolInformation service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002368 *
Mario Six78a88f72018-07-10 08:40:17 +02002369 * See the Unified Extensible Firmware Interface (UEFI) specification for
2370 * details.
2371 *
2372 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002373 */
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002374static efi_status_t EFIAPI efi_open_protocol_information(
2375 efi_handle_t handle, const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002376 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002377 efi_uintn_t *entry_count)
Alexander Grafbee91162016-03-04 01:09:59 +01002378{
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002379 unsigned long buffer_size;
2380 unsigned long count;
2381 struct efi_handler *handler;
2382 struct efi_open_protocol_info_item *item;
2383 efi_status_t r;
2384
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01002385 EFI_ENTRY("%p, %pUs, %p, %p", handle, protocol, entry_buffer,
Alexander Grafbee91162016-03-04 01:09:59 +01002386 entry_count);
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002387
2388 /* Check parameters */
2389 if (!entry_buffer) {
2390 r = EFI_INVALID_PARAMETER;
2391 goto out;
2392 }
2393 r = efi_search_protocol(handle, protocol, &handler);
2394 if (r != EFI_SUCCESS)
2395 goto out;
2396
2397 /* Count entries */
2398 count = 0;
2399 list_for_each_entry(item, &handler->open_infos, link) {
2400 if (item->info.open_count)
2401 ++count;
2402 }
2403 *entry_count = count;
2404 *entry_buffer = NULL;
2405 if (!count) {
2406 r = EFI_SUCCESS;
2407 goto out;
2408 }
2409
2410 /* Copy entries */
2411 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002412 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002413 (void **)entry_buffer);
2414 if (r != EFI_SUCCESS)
2415 goto out;
2416 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2417 if (item->info.open_count)
2418 (*entry_buffer)[--count] = item->info;
2419 }
2420out:
2421 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002422}
2423
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002424/**
Mario Six78a88f72018-07-10 08:40:17 +02002425 * efi_protocols_per_handle() - get protocols installed on a handle
2426 * @handle: handle for which the information is retrieved
2427 * @protocol_buffer: buffer with protocol GUIDs
2428 * @protocol_buffer_count: number of entries in the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002429 *
2430 * This function implements the ProtocolsPerHandleService.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002431 *
Mario Six78a88f72018-07-10 08:40:17 +02002432 * See the Unified Extensible Firmware Interface (UEFI) specification for
2433 * details.
2434 *
2435 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002436 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002437static efi_status_t EFIAPI efi_protocols_per_handle(
2438 efi_handle_t handle, efi_guid_t ***protocol_buffer,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002439 efi_uintn_t *protocol_buffer_count)
Alexander Grafbee91162016-03-04 01:09:59 +01002440{
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002441 unsigned long buffer_size;
2442 struct efi_object *efiobj;
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002443 struct list_head *protocol_handle;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002444 efi_status_t r;
2445
Alexander Grafbee91162016-03-04 01:09:59 +01002446 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2447 protocol_buffer_count);
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002448
2449 if (!handle || !protocol_buffer || !protocol_buffer_count)
2450 return EFI_EXIT(EFI_INVALID_PARAMETER);
2451
2452 *protocol_buffer = NULL;
Rob Clark661c8322017-07-20 07:59:39 -04002453 *protocol_buffer_count = 0;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002454
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002455 efiobj = efi_search_obj(handle);
2456 if (!efiobj)
2457 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002458
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002459 /* Count protocols */
2460 list_for_each(protocol_handle, &efiobj->protocols) {
2461 ++*protocol_buffer_count;
2462 }
2463
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02002464 /* Copy GUIDs */
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002465 if (*protocol_buffer_count) {
2466 size_t j = 0;
2467
2468 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002469 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002470 (void **)protocol_buffer);
2471 if (r != EFI_SUCCESS)
2472 return EFI_EXIT(r);
2473 list_for_each(protocol_handle, &efiobj->protocols) {
2474 struct efi_handler *protocol;
2475
2476 protocol = list_entry(protocol_handle,
2477 struct efi_handler, link);
Heinrich Schuchardt66028932022-03-09 19:56:23 +01002478 (*protocol_buffer)[j] = (void *)&protocol->guid;
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002479 ++j;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002480 }
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002481 }
2482
2483 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002484}
2485
Masahisa Kojima87d79142022-09-12 17:33:50 +09002486efi_status_t efi_locate_handle_buffer_int(enum efi_locate_search_type search_type,
2487 const efi_guid_t *protocol, void *search_key,
2488 efi_uintn_t *no_handles, efi_handle_t **buffer)
2489{
2490 efi_status_t r;
2491 efi_uintn_t buffer_size = 0;
2492
2493 if (!no_handles || !buffer) {
2494 r = EFI_INVALID_PARAMETER;
2495 goto out;
2496 }
2497 *no_handles = 0;
2498 *buffer = NULL;
2499 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2500 *buffer);
2501 if (r != EFI_BUFFER_TOO_SMALL)
2502 goto out;
2503 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2504 (void **)buffer);
2505 if (r != EFI_SUCCESS)
2506 goto out;
2507 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2508 *buffer);
2509 if (r == EFI_SUCCESS)
2510 *no_handles = buffer_size / sizeof(efi_handle_t);
2511out:
2512 return r;
2513}
2514
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002515/**
Mario Six78a88f72018-07-10 08:40:17 +02002516 * efi_locate_handle_buffer() - locate handles implementing a protocol
2517 * @search_type: selection criterion
2518 * @protocol: GUID of the protocol
2519 * @search_key: registration key
2520 * @no_handles: number of returned handles
2521 * @buffer: buffer with the returned handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002522 *
2523 * This function implements the LocateHandleBuffer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002524 *
Mario Six78a88f72018-07-10 08:40:17 +02002525 * See the Unified Extensible Firmware Interface (UEFI) specification for
2526 * details.
2527 *
2528 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002529 */
AKASHI Takahirob51ec632020-03-17 11:12:36 +09002530efi_status_t EFIAPI efi_locate_handle_buffer(
Alexander Grafbee91162016-03-04 01:09:59 +01002531 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002532 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002533 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafbee91162016-03-04 01:09:59 +01002534{
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002535 efi_status_t r;
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002536
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01002537 EFI_ENTRY("%d, %pUs, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafbee91162016-03-04 01:09:59 +01002538 no_handles, buffer);
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002539
Masahisa Kojima87d79142022-09-12 17:33:50 +09002540 r = efi_locate_handle_buffer_int(search_type, protocol, search_key,
2541 no_handles, buffer);
2542
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002543 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002544}
2545
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002546/**
Mario Six78a88f72018-07-10 08:40:17 +02002547 * efi_locate_protocol() - find an interface implementing a protocol
2548 * @protocol: GUID of the protocol
2549 * @registration: registration key passed to the notification function
2550 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002551 *
2552 * This function implements the LocateProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002553 *
Mario Six78a88f72018-07-10 08:40:17 +02002554 * See the Unified Extensible Firmware Interface (UEFI) specification for
2555 * details.
2556 *
2557 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002558 */
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002559static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002560 void *registration,
2561 void **protocol_interface)
2562{
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002563 struct efi_handler *handler;
Heinrich Schuchardt9172cd92017-10-26 19:25:57 +02002564 efi_status_t ret;
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002565 struct efi_object *efiobj;
Alexander Grafbee91162016-03-04 01:09:59 +01002566
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01002567 EFI_ENTRY("%pUs, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002568
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002569 /*
2570 * The UEFI spec explicitly requires a protocol even if a registration
2571 * key is provided. This differs from the logic in LocateHandle().
2572 */
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002573 if (!protocol || !protocol_interface)
2574 return EFI_EXIT(EFI_INVALID_PARAMETER);
2575
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002576 if (registration) {
2577 struct efi_register_notify_event *event;
2578 struct efi_protocol_notification *handle;
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002579
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002580 event = efi_check_register_notify_event(registration);
2581 if (!event)
2582 return EFI_EXIT(EFI_INVALID_PARAMETER);
2583 /*
2584 * The UEFI spec requires to return EFI_NOT_FOUND if no
2585 * protocol instance matches protocol and registration.
2586 * So let's do the same for a mismatch between protocol and
2587 * registration.
2588 */
2589 if (guidcmp(&event->protocol, protocol))
2590 goto not_found;
2591 if (list_empty(&event->handles))
2592 goto not_found;
2593 handle = list_first_entry(&event->handles,
2594 struct efi_protocol_notification,
2595 link);
2596 efiobj = handle->handle;
2597 list_del(&handle->link);
2598 free(handle);
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02002599 ret = efi_search_protocol(efiobj, protocol, &handler);
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002600 if (ret == EFI_SUCCESS)
2601 goto found;
2602 } else {
2603 list_for_each_entry(efiobj, &efi_obj_list, link) {
2604 ret = efi_search_protocol(efiobj, protocol, &handler);
2605 if (ret == EFI_SUCCESS)
2606 goto found;
Alexander Grafbee91162016-03-04 01:09:59 +01002607 }
2608 }
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002609not_found:
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002610 *protocol_interface = NULL;
Alexander Grafbee91162016-03-04 01:09:59 +01002611 return EFI_EXIT(EFI_NOT_FOUND);
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002612found:
2613 *protocol_interface = handler->protocol_interface;
2614 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002615}
2616
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002617/**
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002618 * efi_install_multiple_protocol_interfaces_int() - Install multiple protocol
2619 * interfaces
2620 * @handle: handle on which the protocol interfaces shall be installed
2621 * @argptr: va_list of args
2622 *
2623 * Core functionality of efi_install_multiple_protocol_interfaces
2624 * Must not be called directly
2625 *
2626 * Return: status code
2627 */
2628static efi_status_t EFIAPI
2629efi_install_multiple_protocol_interfaces_int(efi_handle_t *handle,
2630 efi_va_list argptr)
2631{
2632 const efi_guid_t *protocol;
2633 void *protocol_interface;
2634 efi_handle_t old_handle;
2635 efi_status_t ret = EFI_SUCCESS;
2636 int i = 0;
2637 efi_va_list argptr_copy;
2638
2639 if (!handle)
2640 return EFI_INVALID_PARAMETER;
2641
2642 efi_va_copy(argptr_copy, argptr);
2643 for (;;) {
2644 protocol = efi_va_arg(argptr, efi_guid_t*);
2645 if (!protocol)
2646 break;
2647 protocol_interface = efi_va_arg(argptr, void*);
2648 /* Check that a device path has not been installed before */
2649 if (!guidcmp(protocol, &efi_guid_device_path)) {
2650 struct efi_device_path *dp = protocol_interface;
2651
2652 ret = EFI_CALL(efi_locate_device_path(protocol, &dp,
2653 &old_handle));
2654 if (ret == EFI_SUCCESS &&
2655 dp->type == DEVICE_PATH_TYPE_END) {
2656 EFI_PRINT("Path %pD already installed\n",
2657 protocol_interface);
2658 ret = EFI_ALREADY_STARTED;
2659 break;
2660 }
2661 }
2662 ret = EFI_CALL(efi_install_protocol_interface(handle, protocol,
2663 EFI_NATIVE_INTERFACE,
2664 protocol_interface));
2665 if (ret != EFI_SUCCESS)
2666 break;
2667 i++;
2668 }
2669 if (ret == EFI_SUCCESS)
2670 goto out;
2671
2672 /* If an error occurred undo all changes. */
2673 for (; i; --i) {
2674 protocol = efi_va_arg(argptr_copy, efi_guid_t*);
2675 protocol_interface = efi_va_arg(argptr_copy, void*);
2676 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
2677 protocol_interface));
2678 }
2679
2680out:
2681 efi_va_end(argptr_copy);
2682 return ret;
2683
2684}
2685
2686/**
Mario Six78a88f72018-07-10 08:40:17 +02002687 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2688 * interfaces
2689 * @handle: handle on which the protocol interfaces shall be installed
2690 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2691 * interfaces
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002692 *
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002693 *
2694 * This is the function for internal usage in U-Boot. For the API function
2695 * implementing the InstallMultipleProtocol service see
2696 * efi_install_multiple_protocol_interfaces_ext()
2697 *
2698 * Return: status code
2699 */
2700efi_status_t EFIAPI
2701efi_install_multiple_protocol_interfaces(efi_handle_t *handle, ...)
2702{
2703 efi_status_t ret;
2704 efi_va_list argptr;
2705
2706 efi_va_start(argptr, handle);
2707 ret = efi_install_multiple_protocol_interfaces_int(handle, argptr);
2708 efi_va_end(argptr);
2709 return ret;
2710}
2711
2712/**
2713 * efi_install_multiple_protocol_interfaces_ext() - Install multiple protocol
2714 * interfaces
2715 * @handle: handle on which the protocol interfaces shall be installed
2716 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2717 * interfaces
2718 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002719 * This function implements the MultipleProtocolInterfaces service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002720 *
Mario Six78a88f72018-07-10 08:40:17 +02002721 * See the Unified Extensible Firmware Interface (UEFI) specification for
2722 * details.
2723 *
2724 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002725 */
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002726static efi_status_t EFIAPI
2727efi_install_multiple_protocol_interfaces_ext(efi_handle_t *handle, ...)
Alexander Grafbee91162016-03-04 01:09:59 +01002728{
2729 EFI_ENTRY("%p", handle);
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002730 efi_status_t ret;
Alexander Grafbeb077a2018-06-18 17:23:05 +02002731 efi_va_list argptr;
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002732
Alexander Grafbeb077a2018-06-18 17:23:05 +02002733 efi_va_start(argptr, handle);
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002734 ret = efi_install_multiple_protocol_interfaces_int(handle, argptr);
2735 efi_va_end(argptr);
2736 return EFI_EXIT(ret);
2737}
2738
2739/**
2740 * efi_uninstall_multiple_protocol_interfaces_int() - wrapper for uninstall
2741 * multiple protocol
2742 * interfaces
2743 * @handle: handle from which the protocol interfaces shall be removed
2744 * @argptr: va_list of args
2745 *
2746 * Core functionality of efi_uninstall_multiple_protocol_interfaces
2747 * Must not be called directly
2748 *
2749 * Return: status code
2750 */
2751static efi_status_t EFIAPI
2752efi_uninstall_multiple_protocol_interfaces_int(efi_handle_t handle,
2753 efi_va_list argptr)
2754{
2755 const efi_guid_t *protocol;
2756 void *protocol_interface;
Ilias Apalodimas9fb32692022-11-10 10:21:24 +02002757 efi_status_t ret = EFI_SUCCESS;
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002758 size_t i = 0;
2759 efi_va_list argptr_copy;
2760
2761 if (!handle)
2762 return EFI_INVALID_PARAMETER;
2763
2764 efi_va_copy(argptr_copy, argptr);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002765 for (;;) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002766 protocol = efi_va_arg(argptr, efi_guid_t*);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002767 if (!protocol)
2768 break;
Alexander Grafbeb077a2018-06-18 17:23:05 +02002769 protocol_interface = efi_va_arg(argptr, void*);
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002770 ret = efi_uninstall_protocol(handle, protocol,
2771 protocol_interface);
2772 if (ret != EFI_SUCCESS)
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002773 break;
2774 i++;
2775 }
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002776 if (ret == EFI_SUCCESS) {
2777 /* If the last protocol has been removed, delete the handle. */
2778 if (list_empty(&handle->protocols)) {
2779 list_del(&handle->link);
2780 free(handle);
2781 }
2782 goto out;
2783 }
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002784
Heinrich Schuchardt62471e42017-10-26 19:25:42 +02002785 /* If an error occurred undo all changes. */
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002786 for (; i; --i) {
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002787 protocol = efi_va_arg(argptr_copy, efi_guid_t*);
2788 protocol_interface = efi_va_arg(argptr_copy, void*);
2789 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2790 EFI_NATIVE_INTERFACE,
2791 protocol_interface));
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002792 }
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002793 /*
2794 * If any errors are generated while the protocol interfaces are being
2795 * uninstalled, then the protocols uninstalled prior to the error will
2796 * be reinstalled using InstallProtocolInterface() and the status code
2797 * EFI_INVALID_PARAMETER is returned.
2798 */
2799 ret = EFI_INVALID_PARAMETER;
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002800
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002801out:
2802 efi_va_end(argptr_copy);
2803 return ret;
Alexander Grafbee91162016-03-04 01:09:59 +01002804}
2805
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002806/**
Mario Six78a88f72018-07-10 08:40:17 +02002807 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2808 * interfaces
2809 * @handle: handle from which the protocol interfaces shall be removed
2810 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2811 * interfaces
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002812 *
2813 * This function implements the UninstallMultipleProtocolInterfaces service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002814 *
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002815 * This is the function for internal usage in U-Boot. For the API function
2816 * implementing the UninstallMultipleProtocolInterfaces service see
2817 * efi_uninstall_multiple_protocol_interfaces_ext()
2818 *
2819 * Return: status code
2820 */
2821efi_status_t EFIAPI
2822efi_uninstall_multiple_protocol_interfaces(efi_handle_t handle, ...)
2823{
2824 efi_status_t ret;
2825 efi_va_list argptr;
2826
2827 efi_va_start(argptr, handle);
2828 ret = efi_uninstall_multiple_protocol_interfaces_int(handle, argptr);
2829 efi_va_end(argptr);
2830 return ret;
2831}
2832
2833/**
2834 * efi_uninstall_multiple_protocol_interfaces_ext() - uninstall multiple protocol
2835 * interfaces
2836 * @handle: handle from which the protocol interfaces shall be removed
2837 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2838 * interfaces
2839 *
2840 * This function implements the UninstallMultipleProtocolInterfaces service.
2841 *
Mario Six78a88f72018-07-10 08:40:17 +02002842 * See the Unified Extensible Firmware Interface (UEFI) specification for
2843 * details.
2844 *
2845 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002846 */
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002847static efi_status_t EFIAPI
2848efi_uninstall_multiple_protocol_interfaces_ext(efi_handle_t handle, ...)
Alexander Grafbee91162016-03-04 01:09:59 +01002849{
2850 EFI_ENTRY("%p", handle);
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002851 efi_status_t ret;
Alexander Grafbeb077a2018-06-18 17:23:05 +02002852 efi_va_list argptr;
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002853
Alexander Grafbeb077a2018-06-18 17:23:05 +02002854 efi_va_start(argptr, handle);
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002855 ret = efi_uninstall_multiple_protocol_interfaces_int(handle, argptr);
Alexander Grafbeb077a2018-06-18 17:23:05 +02002856 efi_va_end(argptr);
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03002857 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002858}
2859
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002860/**
Mario Six78a88f72018-07-10 08:40:17 +02002861 * efi_calculate_crc32() - calculate cyclic redundancy code
2862 * @data: buffer with data
2863 * @data_size: size of buffer in bytes
2864 * @crc32_p: cyclic redundancy code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002865 *
2866 * This function implements the CalculateCrc32 service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002867 *
Mario Six78a88f72018-07-10 08:40:17 +02002868 * See the Unified Extensible Firmware Interface (UEFI) specification for
2869 * details.
2870 *
2871 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002872 */
Heinrich Schuchardt8aa83602018-07-07 15:36:04 +02002873static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2874 efi_uintn_t data_size,
2875 u32 *crc32_p)
Alexander Grafbee91162016-03-04 01:09:59 +01002876{
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002877 efi_status_t ret = EFI_SUCCESS;
2878
Heinrich Schuchardt8aa83602018-07-07 15:36:04 +02002879 EFI_ENTRY("%p, %zu", data, data_size);
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002880 if (!data || !data_size || !crc32_p) {
2881 ret = EFI_INVALID_PARAMETER;
2882 goto out;
2883 }
Alexander Grafbee91162016-03-04 01:09:59 +01002884 *crc32_p = crc32(0, data, data_size);
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002885out:
2886 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002887}
2888
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002889/**
Mario Six78a88f72018-07-10 08:40:17 +02002890 * efi_copy_mem() - copy memory
2891 * @destination: destination of the copy operation
2892 * @source: source of the copy operation
2893 * @length: number of bytes to copy
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002894 *
2895 * This function implements the CopyMem service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002896 *
Mario Six78a88f72018-07-10 08:40:17 +02002897 * See the Unified Extensible Firmware Interface (UEFI) specification for
2898 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002899 */
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002900static void EFIAPI efi_copy_mem(void *destination, const void *source,
2901 size_t length)
Alexander Grafbee91162016-03-04 01:09:59 +01002902{
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002903 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Heinrich Schuchardt0bc81a72019-01-09 21:41:13 +01002904 memmove(destination, source, length);
Heinrich Schuchardtf7c78172017-10-05 16:35:51 +02002905 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002906}
2907
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002908/**
Mario Six78a88f72018-07-10 08:40:17 +02002909 * efi_set_mem() - Fill memory with a byte value.
2910 * @buffer: buffer to fill
2911 * @size: size of buffer in bytes
2912 * @value: byte to copy to the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002913 *
2914 * This function implements the SetMem service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002915 *
Mario Six78a88f72018-07-10 08:40:17 +02002916 * See the Unified Extensible Firmware Interface (UEFI) specification for
2917 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002918 */
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002919static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafbee91162016-03-04 01:09:59 +01002920{
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002921 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafbee91162016-03-04 01:09:59 +01002922 memset(buffer, value, size);
Heinrich Schuchardtf7c78172017-10-05 16:35:51 +02002923 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002924}
2925
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002926/**
Mario Six78a88f72018-07-10 08:40:17 +02002927 * efi_protocol_open() - open protocol interface on a handle
2928 * @handler: handler of a protocol
2929 * @protocol_interface: interface implementing the protocol
2930 * @agent_handle: handle of the driver
2931 * @controller_handle: handle of the controller
2932 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002933 *
Mario Six78a88f72018-07-10 08:40:17 +02002934 * Return: status code
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002935 */
Heinrich Schuchardtf9ad2402020-01-10 12:33:59 +01002936efi_status_t efi_protocol_open(
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002937 struct efi_handler *handler,
2938 void **protocol_interface, void *agent_handle,
2939 void *controller_handle, uint32_t attributes)
2940{
2941 struct efi_open_protocol_info_item *item;
2942 struct efi_open_protocol_info_entry *match = NULL;
2943 bool opened_by_driver = false;
2944 bool opened_exclusive = false;
2945
2946 /* If there is no agent, only return the interface */
2947 if (!agent_handle)
2948 goto out;
2949
2950 /* For TEST_PROTOCOL ignore interface attribute */
2951 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2952 *protocol_interface = NULL;
2953
2954 /*
2955 * Check if the protocol is already opened by a driver with the same
2956 * attributes or opened exclusively
2957 */
2958 list_for_each_entry(item, &handler->open_infos, link) {
2959 if (item->info.agent_handle == agent_handle) {
2960 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2961 (item->info.attributes == attributes))
2962 return EFI_ALREADY_STARTED;
Heinrich Schuchardt399a39e2019-05-30 14:16:31 +02002963 } else {
2964 if (item->info.attributes &
2965 EFI_OPEN_PROTOCOL_BY_DRIVER)
2966 opened_by_driver = true;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002967 }
2968 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2969 opened_exclusive = true;
2970 }
2971
2972 /* Only one controller can open the protocol exclusively */
Heinrich Schuchardt399a39e2019-05-30 14:16:31 +02002973 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2974 if (opened_exclusive)
2975 return EFI_ACCESS_DENIED;
2976 } else if (attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
2977 if (opened_exclusive || opened_by_driver)
2978 return EFI_ACCESS_DENIED;
2979 }
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002980
2981 /* Prepare exclusive opening */
2982 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2983 /* Try to disconnect controllers */
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002984disconnect_next:
2985 opened_by_driver = false;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002986 list_for_each_entry(item, &handler->open_infos, link) {
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002987 efi_status_t ret;
2988
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002989 if (item->info.attributes ==
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002990 EFI_OPEN_PROTOCOL_BY_DRIVER) {
2991 ret = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002992 item->info.controller_handle,
2993 item->info.agent_handle,
2994 NULL));
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002995 if (ret == EFI_SUCCESS)
2996 /*
2997 * Child controllers may have been
2998 * removed from the open_infos list. So
2999 * let's restart the loop.
3000 */
3001 goto disconnect_next;
3002 else
3003 opened_by_driver = true;
3004 }
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01003005 }
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02003006 /* Only one driver can be connected */
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01003007 if (opened_by_driver)
3008 return EFI_ACCESS_DENIED;
3009 }
3010
3011 /* Find existing entry */
3012 list_for_each_entry(item, &handler->open_infos, link) {
3013 if (item->info.agent_handle == agent_handle &&
Heinrich Schuchardtb4863ba2019-06-01 20:15:10 +02003014 item->info.controller_handle == controller_handle &&
3015 item->info.attributes == attributes)
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01003016 match = &item->info;
3017 }
3018 /* None found, create one */
3019 if (!match) {
3020 match = efi_create_open_info(handler);
3021 if (!match)
3022 return EFI_OUT_OF_RESOURCES;
3023 }
3024
3025 match->agent_handle = agent_handle;
3026 match->controller_handle = controller_handle;
3027 match->attributes = attributes;
3028 match->open_count++;
3029
3030out:
3031 /* For TEST_PROTOCOL ignore interface attribute. */
3032 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
3033 *protocol_interface = handler->protocol_interface;
3034
3035 return EFI_SUCCESS;
3036}
3037
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003038/**
Mario Six78a88f72018-07-10 08:40:17 +02003039 * efi_open_protocol() - open protocol interface on a handle
3040 * @handle: handle on which the protocol shall be opened
3041 * @protocol: GUID of the protocol
3042 * @protocol_interface: interface implementing the protocol
3043 * @agent_handle: handle of the driver
3044 * @controller_handle: handle of the controller
3045 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01003046 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003047 * This function implements the OpenProtocol interface.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003048 *
Mario Six78a88f72018-07-10 08:40:17 +02003049 * See the Unified Extensible Firmware Interface (UEFI) specification for
3050 * details.
3051 *
3052 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003053 */
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02003054static efi_status_t EFIAPI efi_open_protocol
3055 (efi_handle_t handle, const efi_guid_t *protocol,
3056 void **protocol_interface, efi_handle_t agent_handle,
3057 efi_handle_t controller_handle, uint32_t attributes)
Alexander Grafbee91162016-03-04 01:09:59 +01003058{
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01003059 struct efi_handler *handler;
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02003060 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +01003061
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01003062 EFI_ENTRY("%p, %pUs, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01003063 protocol_interface, agent_handle, controller_handle,
3064 attributes);
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02003065
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02003066 if (!handle || !protocol ||
3067 (!protocol_interface && attributes !=
3068 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
3069 goto out;
3070 }
3071
3072 switch (attributes) {
3073 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
3074 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
3075 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
3076 break;
3077 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
3078 if (controller_handle == handle)
3079 goto out;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01003080 /* fall-through */
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02003081 case EFI_OPEN_PROTOCOL_BY_DRIVER:
3082 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01003083 /* Check that the controller handle is valid */
3084 if (!efi_search_obj(controller_handle))
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02003085 goto out;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01003086 /* fall-through */
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02003087 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01003088 /* Check that the agent handle is valid */
3089 if (!efi_search_obj(agent_handle))
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02003090 goto out;
3091 break;
3092 default:
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02003093 goto out;
3094 }
3095
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01003096 r = efi_search_protocol(handle, protocol, &handler);
Heinrich Schuchardte7c3cd62019-05-05 11:24:53 +02003097 switch (r) {
3098 case EFI_SUCCESS:
3099 break;
3100 case EFI_NOT_FOUND:
3101 r = EFI_UNSUPPORTED;
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01003102 goto out;
Heinrich Schuchardte7c3cd62019-05-05 11:24:53 +02003103 default:
3104 goto out;
3105 }
Alexander Grafbee91162016-03-04 01:09:59 +01003106
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01003107 r = efi_protocol_open(handler, protocol_interface, agent_handle,
3108 controller_handle, attributes);
Alexander Grafbee91162016-03-04 01:09:59 +01003109out:
3110 return EFI_EXIT(r);
3111}
3112
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003113/**
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003114 * efi_start_image() - call the entry point of an image
3115 * @image_handle: handle of the image
3116 * @exit_data_size: size of the buffer
3117 * @exit_data: buffer to receive the exit data of the called image
3118 *
3119 * This function implements the StartImage service.
3120 *
3121 * See the Unified Extensible Firmware Interface (UEFI) specification for
3122 * details.
3123 *
3124 * Return: status code
3125 */
3126efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
3127 efi_uintn_t *exit_data_size,
3128 u16 **exit_data)
3129{
3130 struct efi_loaded_image_obj *image_obj =
3131 (struct efi_loaded_image_obj *)image_handle;
3132 efi_status_t ret;
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003133 void *info;
3134 efi_handle_t parent_image = current_image;
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003135 efi_status_t exit_status;
3136 struct jmp_buf_data exit_jmp;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003137
3138 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
3139
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09003140 if (!efi_search_obj(image_handle))
3141 return EFI_EXIT(EFI_INVALID_PARAMETER);
3142
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003143 /* Check parameters */
Heinrich Schuchardt1d3e8dc2019-06-11 19:35:20 +02003144 if (image_obj->header.type != EFI_OBJECT_TYPE_LOADED_IMAGE)
3145 return EFI_EXIT(EFI_INVALID_PARAMETER);
3146
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09003147 if (image_obj->auth_status != EFI_IMAGE_AUTH_PASSED)
3148 return EFI_EXIT(EFI_SECURITY_VIOLATION);
3149
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003150 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
3151 &info, NULL, NULL,
3152 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3153 if (ret != EFI_SUCCESS)
3154 return EFI_EXIT(EFI_INVALID_PARAMETER);
3155
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003156 image_obj->exit_data_size = exit_data_size;
3157 image_obj->exit_data = exit_data;
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003158 image_obj->exit_status = &exit_status;
3159 image_obj->exit_jmp = &exit_jmp;
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003160
Masahisa Kojima8fc4e0b2021-08-13 16:12:40 +09003161 if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
3162 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION) {
Masahisa Kojimace3dbc52021-10-26 17:27:25 +09003163 ret = efi_tcg2_measure_efi_app_invocation(image_obj);
Masahisa Kojimaf9b51dc2021-12-07 14:15:33 +09003164 if (ret == EFI_SECURITY_VIOLATION) {
3165 /*
3166 * TCG2 Protocol is installed but no TPM device found,
3167 * this is not expected.
3168 */
3169 return EFI_EXIT(EFI_SECURITY_VIOLATION);
Masahisa Kojima8fc4e0b2021-08-13 16:12:40 +09003170 }
3171 }
3172 }
3173
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003174 /* call the image! */
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003175 if (setjmp(&exit_jmp)) {
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003176 /*
3177 * We called the entry point of the child image with EFI_CALL
3178 * in the lines below. The child image called the Exit() boot
3179 * service efi_exit() which executed the long jump that brought
3180 * us to the current line. This implies that the second half
3181 * of the EFI_CALL macro has not been executed.
3182 */
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +02003183#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003184 /*
3185 * efi_exit() called efi_restore_gd(). We have to undo this
3186 * otherwise __efi_entry_check() will put the wrong value into
3187 * app_gd.
3188 */
Heinrich Schuchardt4f7dc5f2020-05-27 01:58:30 +02003189 set_gd(app_gd);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003190#endif
3191 /*
3192 * To get ready to call EFI_EXIT below we have to execute the
3193 * missed out steps of EFI_CALL.
3194 */
3195 assert(__efi_entry_check());
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02003196 EFI_PRINT("%lu returned by started image\n",
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003197 (unsigned long)((uintptr_t)exit_status &
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02003198 ~EFI_ERROR_MASK));
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003199 current_image = parent_image;
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003200 return EFI_EXIT(exit_status);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003201 }
3202
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003203 current_image = image_handle;
Heinrich Schuchardtcd73aba2019-05-01 14:20:18 +02003204 image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +09003205 EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003206 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
3207
3208 /*
Heinrich Schuchardt55111c52020-01-10 22:06:54 +01003209 * Control is returned from a started UEFI image either by calling
3210 * Exit() (where exit data can be provided) or by simply returning from
3211 * the entry point. In the latter case call Exit() on behalf of the
3212 * image.
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003213 */
3214 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
3215}
3216
3217/**
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003218 * efi_delete_image() - delete loaded image from memory)
3219 *
3220 * @image_obj: handle of the loaded image
3221 * @loaded_image_protocol: loaded image protocol
3222 */
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02003223static efi_status_t efi_delete_image
3224 (struct efi_loaded_image_obj *image_obj,
3225 struct efi_loaded_image *loaded_image_protocol)
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003226{
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02003227 struct efi_object *efiobj;
3228 efi_status_t r, ret = EFI_SUCCESS;
3229
3230close_next:
3231 list_for_each_entry(efiobj, &efi_obj_list, link) {
3232 struct efi_handler *protocol;
3233
3234 list_for_each_entry(protocol, &efiobj->protocols, link) {
3235 struct efi_open_protocol_info_item *info;
3236
3237 list_for_each_entry(info, &protocol->open_infos, link) {
3238 if (info->info.agent_handle !=
3239 (efi_handle_t)image_obj)
3240 continue;
Heinrich Schuchardtef185762022-10-07 15:18:15 +02003241 r = efi_close_protocol(
3242 efiobj, &protocol->guid,
3243 info->info.agent_handle,
3244 info->info.controller_handle);
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02003245 if (r != EFI_SUCCESS)
3246 ret = r;
3247 /*
3248 * Closing protocols may results in further
3249 * items being deleted. To play it safe loop
3250 * over all elements again.
3251 */
3252 goto close_next;
3253 }
3254 }
3255 }
3256
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003257 efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
3258 efi_size_in_pages(loaded_image_protocol->image_size));
3259 efi_delete_handle(&image_obj->header);
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02003260
3261 return ret;
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003262}
3263
3264/**
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003265 * efi_unload_image() - unload an EFI image
3266 * @image_handle: handle of the image to be unloaded
3267 *
3268 * This function implements the UnloadImage service.
3269 *
3270 * See the Unified Extensible Firmware Interface (UEFI) specification for
3271 * details.
3272 *
3273 * Return: status code
3274 */
3275efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
3276{
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003277 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003278 struct efi_object *efiobj;
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003279 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003280
3281 EFI_ENTRY("%p", image_handle);
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003282
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003283 efiobj = efi_search_obj(image_handle);
3284 if (!efiobj) {
3285 ret = EFI_INVALID_PARAMETER;
3286 goto out;
3287 }
3288 /* Find the loaded image protocol */
3289 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
3290 (void **)&loaded_image_protocol,
3291 NULL, NULL,
3292 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3293 if (ret != EFI_SUCCESS) {
3294 ret = EFI_INVALID_PARAMETER;
3295 goto out;
3296 }
3297 switch (efiobj->type) {
3298 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3299 /* Call the unload function */
3300 if (!loaded_image_protocol->unload) {
3301 ret = EFI_UNSUPPORTED;
3302 goto out;
3303 }
3304 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
3305 if (ret != EFI_SUCCESS)
3306 goto out;
3307 break;
3308 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3309 break;
3310 default:
3311 ret = EFI_INVALID_PARAMETER;
3312 goto out;
3313 }
3314 efi_delete_image((struct efi_loaded_image_obj *)efiobj,
3315 loaded_image_protocol);
3316out:
3317 return EFI_EXIT(ret);
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003318}
3319
3320/**
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003321 * efi_update_exit_data() - fill exit data parameters of StartImage()
3322 *
Heinrich Schuchardt9ce91272019-07-14 11:25:06 +02003323 * @image_obj: image handle
3324 * @exit_data_size: size of the exit data buffer
3325 * @exit_data: buffer with data returned by UEFI payload
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003326 * Return: status code
3327 */
3328static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
3329 efi_uintn_t exit_data_size,
3330 u16 *exit_data)
3331{
3332 efi_status_t ret;
3333
3334 /*
3335 * If exit_data is not provided to StartImage(), exit_data_size must be
3336 * ignored.
3337 */
3338 if (!image_obj->exit_data)
3339 return EFI_SUCCESS;
3340 if (image_obj->exit_data_size)
3341 *image_obj->exit_data_size = exit_data_size;
3342 if (exit_data_size && exit_data) {
3343 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
3344 exit_data_size,
3345 (void **)image_obj->exit_data);
3346 if (ret != EFI_SUCCESS)
3347 return ret;
3348 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
3349 } else {
3350 image_obj->exit_data = NULL;
3351 }
3352 return EFI_SUCCESS;
3353}
3354
3355/**
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003356 * efi_exit() - leave an EFI application or driver
3357 * @image_handle: handle of the application or driver that is exiting
3358 * @exit_status: status code
3359 * @exit_data_size: size of the buffer in bytes
3360 * @exit_data: buffer with data describing an error
3361 *
3362 * This function implements the Exit service.
3363 *
3364 * See the Unified Extensible Firmware Interface (UEFI) specification for
3365 * details.
3366 *
3367 * Return: status code
3368 */
3369static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
3370 efi_status_t exit_status,
3371 efi_uintn_t exit_data_size,
3372 u16 *exit_data)
3373{
3374 /*
3375 * TODO: We should call the unload procedure of the loaded
3376 * image protocol.
3377 */
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003378 efi_status_t ret;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003379 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003380 struct efi_loaded_image_obj *image_obj =
3381 (struct efi_loaded_image_obj *)image_handle;
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003382 struct jmp_buf_data *exit_jmp;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003383
3384 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
3385 exit_data_size, exit_data);
3386
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003387 /* Check parameters */
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003388 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003389 (void **)&loaded_image_protocol,
3390 NULL, NULL,
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003391 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003392 if (ret != EFI_SUCCESS) {
3393 ret = EFI_INVALID_PARAMETER;
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003394 goto out;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003395 }
3396
3397 /* Unloading of unstarted images */
3398 switch (image_obj->header.type) {
3399 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3400 break;
3401 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3402 efi_delete_image(image_obj, loaded_image_protocol);
3403 ret = EFI_SUCCESS;
3404 goto out;
3405 default:
3406 /* Handle does not refer to loaded image */
3407 ret = EFI_INVALID_PARAMETER;
3408 goto out;
3409 }
3410 /* A started image can only be unloaded it is the last one started. */
3411 if (image_handle != current_image) {
3412 ret = EFI_INVALID_PARAMETER;
3413 goto out;
3414 }
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003415
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003416 /* Exit data is only foreseen in case of failure. */
3417 if (exit_status != EFI_SUCCESS) {
3418 ret = efi_update_exit_data(image_obj, exit_data_size,
3419 exit_data);
3420 /* Exiting has priority. Don't return error to caller. */
3421 if (ret != EFI_SUCCESS)
3422 EFI_PRINT("%s: out of memory\n", __func__);
3423 }
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003424 /* efi_delete_image() frees image_obj. Copy before the call. */
3425 exit_jmp = image_obj->exit_jmp;
3426 *image_obj->exit_status = exit_status;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003427 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
3428 exit_status != EFI_SUCCESS)
3429 efi_delete_image(image_obj, loaded_image_protocol);
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003430
Masahisa Kojima8fc4e0b2021-08-13 16:12:40 +09003431 if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
3432 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION) {
3433 ret = efi_tcg2_measure_efi_app_exit();
3434 if (ret != EFI_SUCCESS) {
3435 log_warning("tcg2 measurement fails(0x%lx)\n",
3436 ret);
3437 }
3438 }
3439 }
3440
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003441 /* Make sure entry/exit counts for EFI world cross-overs match */
3442 EFI_EXIT(exit_status);
3443
3444 /*
3445 * But longjmp out with the U-Boot gd, not the application's, as
3446 * the other end is a setjmp call inside EFI context.
3447 */
3448 efi_restore_gd();
3449
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003450 longjmp(exit_jmp, 1);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003451
3452 panic("EFI application exited");
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003453out:
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003454 return EFI_EXIT(ret);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003455}
3456
3457/**
Mario Six78a88f72018-07-10 08:40:17 +02003458 * efi_handle_protocol() - get interface of a protocol on a handle
3459 * @handle: handle on which the protocol shall be opened
3460 * @protocol: GUID of the protocol
3461 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003462 *
3463 * This function implements the HandleProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003464 *
Mario Six78a88f72018-07-10 08:40:17 +02003465 * See the Unified Extensible Firmware Interface (UEFI) specification for
3466 * details.
3467 *
3468 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003469 */
AKASHI Takahirob51ec632020-03-17 11:12:36 +09003470efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
3471 const efi_guid_t *protocol,
3472 void **protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01003473{
Heinrich Schuchardt755d42d2019-06-01 19:29:39 +02003474 return efi_open_protocol(handle, protocol, protocol_interface, efi_root,
xypron.glpk@gmx.de8e1d3292017-06-29 21:16:19 +02003475 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafbee91162016-03-04 01:09:59 +01003476}
3477
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003478/**
Mario Six78a88f72018-07-10 08:40:17 +02003479 * efi_bind_controller() - bind a single driver to a controller
3480 * @controller_handle: controller handle
3481 * @driver_image_handle: driver handle
3482 * @remain_device_path: remaining path
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003483 *
Mario Six78a88f72018-07-10 08:40:17 +02003484 * Return: status code
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003485 */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003486static efi_status_t efi_bind_controller(
3487 efi_handle_t controller_handle,
3488 efi_handle_t driver_image_handle,
3489 struct efi_device_path *remain_device_path)
3490{
3491 struct efi_driver_binding_protocol *binding_protocol;
3492 efi_status_t r;
3493
3494 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3495 &efi_guid_driver_binding_protocol,
3496 (void **)&binding_protocol,
3497 driver_image_handle, NULL,
3498 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3499 if (r != EFI_SUCCESS)
3500 return r;
3501 r = EFI_CALL(binding_protocol->supported(binding_protocol,
3502 controller_handle,
3503 remain_device_path));
3504 if (r == EFI_SUCCESS)
3505 r = EFI_CALL(binding_protocol->start(binding_protocol,
3506 controller_handle,
3507 remain_device_path));
Heinrich Schuchardtef185762022-10-07 15:18:15 +02003508 efi_close_protocol(driver_image_handle,
3509 &efi_guid_driver_binding_protocol,
3510 driver_image_handle, NULL);
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003511 return r;
3512}
3513
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003514/**
Mario Six78a88f72018-07-10 08:40:17 +02003515 * efi_connect_single_controller() - connect a single driver to a controller
3516 * @controller_handle: controller
3517 * @driver_image_handle: driver
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003518 * @remain_device_path: remaining path
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003519 *
Mario Six78a88f72018-07-10 08:40:17 +02003520 * Return: status code
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003521 */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003522static efi_status_t efi_connect_single_controller(
3523 efi_handle_t controller_handle,
3524 efi_handle_t *driver_image_handle,
3525 struct efi_device_path *remain_device_path)
3526{
3527 efi_handle_t *buffer;
3528 size_t count;
3529 size_t i;
3530 efi_status_t r;
3531 size_t connected = 0;
3532
3533 /* Get buffer with all handles with driver binding protocol */
3534 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3535 &efi_guid_driver_binding_protocol,
3536 NULL, &count, &buffer));
3537 if (r != EFI_SUCCESS)
3538 return r;
3539
Heinrich Schuchardt359a6992019-07-03 20:27:24 +02003540 /* Context Override */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003541 if (driver_image_handle) {
3542 for (; *driver_image_handle; ++driver_image_handle) {
3543 for (i = 0; i < count; ++i) {
3544 if (buffer[i] == *driver_image_handle) {
3545 buffer[i] = NULL;
3546 r = efi_bind_controller(
3547 controller_handle,
3548 *driver_image_handle,
3549 remain_device_path);
3550 /*
3551 * For drivers that do not support the
3552 * controller or are already connected
3553 * we receive an error code here.
3554 */
3555 if (r == EFI_SUCCESS)
3556 ++connected;
3557 }
3558 }
3559 }
3560 }
3561
3562 /*
3563 * TODO: Some overrides are not yet implemented:
3564 * - Platform Driver Override
3565 * - Driver Family Override Search
3566 * - Bus Specific Driver Override
3567 */
3568
3569 /* Driver Binding Search */
3570 for (i = 0; i < count; ++i) {
3571 if (buffer[i]) {
3572 r = efi_bind_controller(controller_handle,
3573 buffer[i],
3574 remain_device_path);
3575 if (r == EFI_SUCCESS)
3576 ++connected;
3577 }
3578 }
3579
3580 efi_free_pool(buffer);
3581 if (!connected)
3582 return EFI_NOT_FOUND;
3583 return EFI_SUCCESS;
3584}
3585
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003586/**
Mario Six78a88f72018-07-10 08:40:17 +02003587 * efi_connect_controller() - connect a controller to a driver
3588 * @controller_handle: handle of the controller
3589 * @driver_image_handle: handle of the driver
3590 * @remain_device_path: device path of a child controller
3591 * @recursive: true to connect all child controllers
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003592 *
3593 * This function implements the ConnectController service.
Mario Six78a88f72018-07-10 08:40:17 +02003594 *
3595 * See the Unified Extensible Firmware Interface (UEFI) specification for
3596 * details.
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003597 *
3598 * First all driver binding protocol handles are tried for binding drivers.
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003599 * Afterwards all handles that have opened a protocol of the controller
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003600 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3601 *
Mario Six78a88f72018-07-10 08:40:17 +02003602 * Return: status code
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003603 */
3604static efi_status_t EFIAPI efi_connect_controller(
3605 efi_handle_t controller_handle,
3606 efi_handle_t *driver_image_handle,
3607 struct efi_device_path *remain_device_path,
3608 bool recursive)
3609{
3610 efi_status_t r;
3611 efi_status_t ret = EFI_NOT_FOUND;
3612 struct efi_object *efiobj;
3613
Heinrich Schuchardtd1788362018-12-09 16:39:20 +01003614 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003615 remain_device_path, recursive);
3616
3617 efiobj = efi_search_obj(controller_handle);
3618 if (!efiobj) {
3619 ret = EFI_INVALID_PARAMETER;
3620 goto out;
3621 }
3622
3623 r = efi_connect_single_controller(controller_handle,
3624 driver_image_handle,
3625 remain_device_path);
3626 if (r == EFI_SUCCESS)
3627 ret = EFI_SUCCESS;
3628 if (recursive) {
3629 struct efi_handler *handler;
3630 struct efi_open_protocol_info_item *item;
3631
3632 list_for_each_entry(handler, &efiobj->protocols, link) {
3633 list_for_each_entry(item, &handler->open_infos, link) {
3634 if (item->info.attributes &
3635 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3636 r = EFI_CALL(efi_connect_controller(
3637 item->info.controller_handle,
3638 driver_image_handle,
3639 remain_device_path,
3640 recursive));
3641 if (r == EFI_SUCCESS)
3642 ret = EFI_SUCCESS;
3643 }
3644 }
3645 }
3646 }
Heinrich Schuchardt359a6992019-07-03 20:27:24 +02003647 /* Check for child controller specified by end node */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003648 if (ret != EFI_SUCCESS && remain_device_path &&
3649 remain_device_path->type == DEVICE_PATH_TYPE_END)
3650 ret = EFI_SUCCESS;
3651out:
3652 return EFI_EXIT(ret);
3653}
3654
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003655/**
Mario Six78a88f72018-07-10 08:40:17 +02003656 * efi_reinstall_protocol_interface() - reinstall protocol interface
3657 * @handle: handle on which the protocol shall be reinstalled
3658 * @protocol: GUID of the protocol to be installed
3659 * @old_interface: interface to be removed
3660 * @new_interface: interface to be installed
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003661 *
3662 * This function implements the ReinstallProtocolInterface service.
Mario Six78a88f72018-07-10 08:40:17 +02003663 *
3664 * See the Unified Extensible Firmware Interface (UEFI) specification for
3665 * details.
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003666 *
3667 * The old interface is uninstalled. The new interface is installed.
3668 * Drivers are connected.
3669 *
Mario Six78a88f72018-07-10 08:40:17 +02003670 * Return: status code
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003671 */
3672static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3673 efi_handle_t handle, const efi_guid_t *protocol,
3674 void *old_interface, void *new_interface)
3675{
3676 efi_status_t ret;
3677
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01003678 EFI_ENTRY("%p, %pUs, %p, %p", handle, protocol, old_interface,
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003679 new_interface);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02003680
3681 /* Uninstall protocol but do not delete handle */
3682 ret = efi_uninstall_protocol(handle, protocol, old_interface);
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003683 if (ret != EFI_SUCCESS)
3684 goto out;
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02003685
3686 /* Install the new protocol */
3687 ret = efi_add_protocol(handle, protocol, new_interface);
3688 /*
3689 * The UEFI spec does not specify what should happen to the handle
3690 * if in case of an error no protocol interface remains on the handle.
3691 * So let's do nothing here.
3692 */
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003693 if (ret != EFI_SUCCESS)
3694 goto out;
3695 /*
3696 * The returned status code has to be ignored.
3697 * Do not create an error if no suitable driver for the handle exists.
3698 */
3699 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3700out:
3701 return EFI_EXIT(ret);
3702}
3703
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003704/**
Mario Six78a88f72018-07-10 08:40:17 +02003705 * efi_get_child_controllers() - get all child controllers associated to a driver
3706 * @efiobj: handle of the controller
3707 * @driver_handle: handle of the driver
3708 * @number_of_children: number of child controllers
3709 * @child_handle_buffer: handles of the the child controllers
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003710 *
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003711 * The allocated buffer has to be freed with free().
3712 *
Mario Six78a88f72018-07-10 08:40:17 +02003713 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003714 */
3715static efi_status_t efi_get_child_controllers(
3716 struct efi_object *efiobj,
3717 efi_handle_t driver_handle,
3718 efi_uintn_t *number_of_children,
3719 efi_handle_t **child_handle_buffer)
3720{
3721 struct efi_handler *handler;
3722 struct efi_open_protocol_info_item *item;
3723 efi_uintn_t count = 0, i;
3724 bool duplicate;
3725
3726 /* Count all child controller associations */
3727 list_for_each_entry(handler, &efiobj->protocols, link) {
3728 list_for_each_entry(item, &handler->open_infos, link) {
3729 if (item->info.agent_handle == driver_handle &&
3730 item->info.attributes &
3731 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3732 ++count;
3733 }
3734 }
3735 /*
3736 * Create buffer. In case of duplicate child controller assignments
3737 * the buffer will be too large. But that does not harm.
3738 */
3739 *number_of_children = 0;
Heinrich Schuchardt1047c6e2020-07-07 04:21:26 +02003740 if (!count)
3741 return EFI_SUCCESS;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003742 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3743 if (!*child_handle_buffer)
3744 return EFI_OUT_OF_RESOURCES;
3745 /* Copy unique child handles */
3746 list_for_each_entry(handler, &efiobj->protocols, link) {
3747 list_for_each_entry(item, &handler->open_infos, link) {
3748 if (item->info.agent_handle == driver_handle &&
3749 item->info.attributes &
3750 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3751 /* Check this is a new child controller */
3752 duplicate = false;
3753 for (i = 0; i < *number_of_children; ++i) {
3754 if ((*child_handle_buffer)[i] ==
3755 item->info.controller_handle)
3756 duplicate = true;
3757 }
3758 /* Copy handle to buffer */
3759 if (!duplicate) {
3760 i = (*number_of_children)++;
3761 (*child_handle_buffer)[i] =
3762 item->info.controller_handle;
3763 }
3764 }
3765 }
3766 }
3767 return EFI_SUCCESS;
3768}
3769
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003770/**
Mario Six78a88f72018-07-10 08:40:17 +02003771 * efi_disconnect_controller() - disconnect a controller from a driver
3772 * @controller_handle: handle of the controller
3773 * @driver_image_handle: handle of the driver
3774 * @child_handle: handle of the child to destroy
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003775 *
3776 * This function implements the DisconnectController service.
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003777 *
Mario Six78a88f72018-07-10 08:40:17 +02003778 * See the Unified Extensible Firmware Interface (UEFI) specification for
3779 * details.
3780 *
3781 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003782 */
3783static efi_status_t EFIAPI efi_disconnect_controller(
3784 efi_handle_t controller_handle,
3785 efi_handle_t driver_image_handle,
3786 efi_handle_t child_handle)
3787{
3788 struct efi_driver_binding_protocol *binding_protocol;
3789 efi_handle_t *child_handle_buffer = NULL;
3790 size_t number_of_children = 0;
3791 efi_status_t r;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003792 struct efi_object *efiobj;
Heinrich Schuchardt314bed62020-10-28 18:45:47 +01003793 bool sole_child;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003794
3795 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3796 child_handle);
3797
3798 efiobj = efi_search_obj(controller_handle);
3799 if (!efiobj) {
3800 r = EFI_INVALID_PARAMETER;
3801 goto out;
3802 }
3803
3804 if (child_handle && !efi_search_obj(child_handle)) {
3805 r = EFI_INVALID_PARAMETER;
3806 goto out;
3807 }
3808
3809 /* If no driver handle is supplied, disconnect all drivers */
3810 if (!driver_image_handle) {
3811 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3812 goto out;
3813 }
3814
3815 /* Create list of child handles */
Heinrich Schuchardt314bed62020-10-28 18:45:47 +01003816 r = efi_get_child_controllers(efiobj,
3817 driver_image_handle,
3818 &number_of_children,
3819 &child_handle_buffer);
3820 if (r != EFI_SUCCESS)
3821 return r;
3822 sole_child = (number_of_children == 1);
3823
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003824 if (child_handle) {
3825 number_of_children = 1;
Heinrich Schuchardt314bed62020-10-28 18:45:47 +01003826 free(child_handle_buffer);
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003827 child_handle_buffer = &child_handle;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003828 }
3829
3830 /* Get the driver binding protocol */
3831 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3832 &efi_guid_driver_binding_protocol,
3833 (void **)&binding_protocol,
3834 driver_image_handle, NULL,
3835 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003836 if (r != EFI_SUCCESS) {
3837 r = EFI_INVALID_PARAMETER;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003838 goto out;
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003839 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003840 /* Remove the children */
3841 if (number_of_children) {
3842 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3843 controller_handle,
3844 number_of_children,
3845 child_handle_buffer));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003846 if (r != EFI_SUCCESS) {
3847 r = EFI_DEVICE_ERROR;
3848 goto out;
3849 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003850 }
3851 /* Remove the driver */
Heinrich Schuchardt314bed62020-10-28 18:45:47 +01003852 if (!child_handle || sole_child) {
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003853 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3854 controller_handle,
3855 0, NULL));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003856 if (r != EFI_SUCCESS) {
3857 r = EFI_DEVICE_ERROR;
3858 goto out;
3859 }
3860 }
Heinrich Schuchardtef185762022-10-07 15:18:15 +02003861 efi_close_protocol(driver_image_handle,
3862 &efi_guid_driver_binding_protocol,
3863 driver_image_handle, NULL);
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003864 r = EFI_SUCCESS;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003865out:
3866 if (!child_handle)
3867 free(child_handle_buffer);
3868 return EFI_EXIT(r);
3869}
3870
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003871static struct efi_boot_services efi_boot_services = {
Alexander Grafbee91162016-03-04 01:09:59 +01003872 .hdr = {
Heinrich Schuchardt112f2432018-06-28 12:45:27 +02003873 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3874 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt71c846a2018-06-28 12:45:29 +02003875 .headersize = sizeof(struct efi_boot_services),
Alexander Grafbee91162016-03-04 01:09:59 +01003876 },
3877 .raise_tpl = efi_raise_tpl,
3878 .restore_tpl = efi_restore_tpl,
3879 .allocate_pages = efi_allocate_pages_ext,
3880 .free_pages = efi_free_pages_ext,
3881 .get_memory_map = efi_get_memory_map_ext,
Stefan Brünsead12742016-10-09 22:17:18 +02003882 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns42417bc2016-10-09 22:17:26 +02003883 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +02003884 .create_event = efi_create_event_ext,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +02003885 .set_timer = efi_set_timer_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003886 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02003887 .signal_event = efi_signal_event_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003888 .close_event = efi_close_event,
3889 .check_event = efi_check_event,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01003890 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafbee91162016-03-04 01:09:59 +01003891 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardtcd534082017-11-06 21:17:45 +01003892 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafbee91162016-03-04 01:09:59 +01003893 .handle_protocol = efi_handle_protocol,
3894 .reserved = NULL,
3895 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02003896 .locate_handle = efi_locate_handle_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003897 .locate_device_path = efi_locate_device_path,
Alexander Graf488bf122016-08-19 01:23:24 +02003898 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003899 .load_image = efi_load_image,
3900 .start_image = efi_start_image,
Alexander Grafa86aeaf2016-05-20 23:28:23 +02003901 .exit = efi_exit,
Alexander Grafbee91162016-03-04 01:09:59 +01003902 .unload_image = efi_unload_image,
3903 .exit_boot_services = efi_exit_boot_services,
3904 .get_next_monotonic_count = efi_get_next_monotonic_count,
3905 .stall = efi_stall,
3906 .set_watchdog_timer = efi_set_watchdog_timer,
3907 .connect_controller = efi_connect_controller,
3908 .disconnect_controller = efi_disconnect_controller,
3909 .open_protocol = efi_open_protocol,
Heinrich Schuchardtef185762022-10-07 15:18:15 +02003910 .close_protocol = efi_close_protocol_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003911 .open_protocol_information = efi_open_protocol_information,
3912 .protocols_per_handle = efi_protocols_per_handle,
3913 .locate_handle_buffer = efi_locate_handle_buffer,
3914 .locate_protocol = efi_locate_protocol,
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01003915 .install_multiple_protocol_interfaces =
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03003916 efi_install_multiple_protocol_interfaces_ext,
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01003917 .uninstall_multiple_protocol_interfaces =
Ilias Apalodimas05c4c9e2022-10-06 16:08:46 +03003918 efi_uninstall_multiple_protocol_interfaces_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003919 .calculate_crc32 = efi_calculate_crc32,
3920 .copy_mem = efi_copy_mem,
3921 .set_mem = efi_set_mem,
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +01003922 .create_event_ex = efi_create_event_ex,
Alexander Grafbee91162016-03-04 01:09:59 +01003923};
3924
Simon Glass156ccbc2022-01-23 12:55:12 -07003925static u16 __efi_runtime_data firmware_vendor[] = u"Das U-Boot";
Alexander Grafbee91162016-03-04 01:09:59 +01003926
Alexander Graf3c63db92016-10-14 13:45:30 +02003927struct efi_system_table __efi_runtime_data systab = {
Alexander Grafbee91162016-03-04 01:09:59 +01003928 .hdr = {
3929 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
Heinrich Schuchardt112f2432018-06-28 12:45:27 +02003930 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt71c846a2018-06-28 12:45:29 +02003931 .headersize = sizeof(struct efi_system_table),
Alexander Grafbee91162016-03-04 01:09:59 +01003932 },
Heinrich Schuchardt0b386532018-06-28 12:45:30 +02003933 .fw_vendor = firmware_vendor,
3934 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
Heinrich Schuchardt3c783bf2019-06-15 14:51:06 +02003935 .runtime = &efi_runtime_services,
Alexander Grafbee91162016-03-04 01:09:59 +01003936 .nr_tables = 0,
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003937 .tables = NULL,
Alexander Grafbee91162016-03-04 01:09:59 +01003938};
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003939
3940/**
3941 * efi_initialize_system_table() - Initialize system table
3942 *
Heinrich Schuchardt04143592018-09-03 05:00:43 +02003943 * Return: status code
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003944 */
3945efi_status_t efi_initialize_system_table(void)
3946{
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003947 efi_status_t ret;
3948
3949 /* Allocate configuration table array */
3950 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3951 EFI_MAX_CONFIGURATION_TABLES *
3952 sizeof(struct efi_configuration_table),
3953 (void **)&systab.tables);
3954
Heinrich Schuchardt93148eb2019-06-29 02:00:16 +02003955 /*
3956 * These entries will be set to NULL in ExitBootServices(). To avoid
3957 * relocation in SetVirtualAddressMap(), set them dynamically.
3958 */
3959 systab.con_in = &efi_con_in;
3960 systab.con_out = &efi_con_out;
3961 systab.std_err = &efi_con_out;
3962 systab.boottime = &efi_boot_services;
3963
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003964 /* Set CRC32 field in table headers */
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003965 efi_update_table_header_crc32(&systab.hdr);
3966 efi_update_table_header_crc32(&efi_runtime_services.hdr);
3967 efi_update_table_header_crc32(&efi_boot_services.hdr);
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003968
3969 return ret;
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003970}