blob: 37b9c68b6e97f5b9500f512b6af1583cfa7c0580 [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 Schuchardtf5a2a932017-11-06 21:17:48 +0100470 EFI_ENTRY("%d, %zd, %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);
555 if (!guidcmp(protocol->guid, protocol_guid)) {
556 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 Schuchardt678e03a2017-12-04 18:03:02 +0100607 ret = efi_remove_protocol(handle, protocol->guid,
608 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{
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200622 if (!handle)
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100623 return;
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200624 efi_remove_all_protocols(handle);
625 list_del(&handle->link);
626 free(handle);
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100627}
628
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200629/**
Mario Six78a88f72018-07-10 08:40:17 +0200630 * efi_is_event() - check if a pointer is a valid event
631 * @event: pointer to check
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100632 *
Mario Six78a88f72018-07-10 08:40:17 +0200633 * Return: status code
Alexander Grafbee91162016-03-04 01:09:59 +0100634 */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100635static efi_status_t efi_is_event(const struct efi_event *event)
636{
637 const struct efi_event *evt;
638
639 if (!event)
640 return EFI_INVALID_PARAMETER;
641 list_for_each_entry(evt, &efi_events, link) {
642 if (evt == event)
643 return EFI_SUCCESS;
644 }
645 return EFI_INVALID_PARAMETER;
646}
Alexander Grafbee91162016-03-04 01:09:59 +0100647
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200648/**
Mario Six78a88f72018-07-10 08:40:17 +0200649 * efi_create_event() - create an event
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +0200650 *
Mario Six78a88f72018-07-10 08:40:17 +0200651 * @type: type of the event to create
652 * @notify_tpl: task priority level of the event
653 * @notify_function: notification function of the event
654 * @notify_context: pointer passed to the notification function
655 * @group: event group
656 * @event: created event
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200657 *
658 * This function is used inside U-Boot code to create an event.
659 *
660 * For the API function implementing the CreateEvent service see
661 * efi_create_event_ext.
662 *
Mario Six78a88f72018-07-10 08:40:17 +0200663 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200664 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100665efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200666 void (EFIAPI *notify_function) (
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200667 struct efi_event *event,
668 void *context),
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100669 void *notify_context, efi_guid_t *group,
670 struct efi_event **event)
Alexander Grafbee91162016-03-04 01:09:59 +0100671{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100672 struct efi_event *evt;
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200673 efi_status_t ret;
674 int pool_type;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200675
Jonathan Graya95343b2017-03-12 19:26:07 +1100676 if (event == NULL)
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200677 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100678
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200679 switch (type) {
680 case 0:
681 case EVT_TIMER:
682 case EVT_NOTIFY_SIGNAL:
683 case EVT_TIMER | EVT_NOTIFY_SIGNAL:
684 case EVT_NOTIFY_WAIT:
685 case EVT_TIMER | EVT_NOTIFY_WAIT:
686 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200687 pool_type = EFI_BOOT_SERVICES_DATA;
688 break;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200689 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200690 pool_type = EFI_RUNTIME_SERVICES_DATA;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200691 break;
692 default:
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200693 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200694 }
Jonathan Graya95343b2017-03-12 19:26:07 +1100695
Heinrich Schuchardt2cfb68f2021-01-06 12:55:22 +0100696 /*
697 * The UEFI specification requires event notification levels to be
698 * > TPL_APPLICATION and <= TPL_HIGH_LEVEL.
699 *
700 * Parameter NotifyTpl should not be checked if it is not used.
701 */
AKASHI Takahiro3748ed92018-08-10 15:36:32 +0900702 if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) &&
Heinrich Schuchardt2cfb68f2021-01-06 12:55:22 +0100703 (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS ||
704 notify_tpl == TPL_APPLICATION))
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200705 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100706
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200707 ret = efi_allocate_pool(pool_type, sizeof(struct efi_event),
708 (void **)&evt);
709 if (ret != EFI_SUCCESS)
710 return ret;
711 memset(evt, 0, sizeof(struct efi_event));
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100712 evt->type = type;
713 evt->notify_tpl = notify_tpl;
714 evt->notify_function = notify_function;
715 evt->notify_context = notify_context;
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100716 evt->group = group;
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200717 /* Disable timers on boot up */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100718 evt->trigger_next = -1ULL;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100719 list_add_tail(&evt->link, &efi_events);
720 *event = evt;
721 return EFI_SUCCESS;
Alexander Grafbee91162016-03-04 01:09:59 +0100722}
723
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200724/*
Mario Six78a88f72018-07-10 08:40:17 +0200725 * efi_create_event_ex() - create an event in a group
726 * @type: type of the event to create
727 * @notify_tpl: task priority level of the event
728 * @notify_function: notification function of the event
729 * @notify_context: pointer passed to the notification function
730 * @event: created event
731 * @event_group: event group
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100732 *
733 * This function implements the CreateEventEx service.
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100734 *
Mario Six78a88f72018-07-10 08:40:17 +0200735 * See the Unified Extensible Firmware Interface (UEFI) specification for
736 * details.
737 *
738 * Return: status code
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100739 */
740efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl,
741 void (EFIAPI *notify_function) (
742 struct efi_event *event,
743 void *context),
744 void *notify_context,
745 efi_guid_t *event_group,
746 struct efi_event **event)
747{
Heinrich Schuchardt18845122019-05-04 10:12:50 +0200748 efi_status_t ret;
749
Heinrich Schuchardtce00a742022-01-16 14:15:31 +0100750 EFI_ENTRY("%d, 0x%zx, %p, %p, %pUs", type, notify_tpl, notify_function,
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100751 notify_context, event_group);
Heinrich Schuchardt18845122019-05-04 10:12:50 +0200752
753 /*
754 * The allowable input parameters are the same as in CreateEvent()
755 * except for the following two disallowed event types.
756 */
757 switch (type) {
758 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
759 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
760 ret = EFI_INVALID_PARAMETER;
761 goto out;
762 }
763
764 ret = efi_create_event(type, notify_tpl, notify_function,
765 notify_context, event_group, event);
766out:
767 return EFI_EXIT(ret);
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100768}
769
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200770/**
Mario Six78a88f72018-07-10 08:40:17 +0200771 * efi_create_event_ext() - create an event
772 * @type: type of the event to create
773 * @notify_tpl: task priority level of the event
774 * @notify_function: notification function of the event
775 * @notify_context: pointer passed to the notification function
776 * @event: created event
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200777 *
778 * This function implements the CreateEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200779 *
Mario Six78a88f72018-07-10 08:40:17 +0200780 * See the Unified Extensible Firmware Interface (UEFI) specification for
781 * details.
782 *
783 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200784 */
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200785static efi_status_t EFIAPI efi_create_event_ext(
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100786 uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200787 void (EFIAPI *notify_function) (
788 struct efi_event *event,
789 void *context),
790 void *notify_context, struct efi_event **event)
791{
792 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
793 notify_context);
794 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100795 notify_context, NULL, event));
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200796}
797
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200798/**
Mario Six78a88f72018-07-10 08:40:17 +0200799 * efi_timer_check() - check if a timer event has occurred
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200800 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200801 * Check if a timer event has occurred or a queued notification function should
802 * be called.
803 *
Alexander Grafbee91162016-03-04 01:09:59 +0100804 * Our timers have to work without interrupts, so we check whenever keyboard
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200805 * input or disk accesses happen if enough time elapsed for them to fire.
Alexander Grafbee91162016-03-04 01:09:59 +0100806 */
807void efi_timer_check(void)
808{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100809 struct efi_event *evt;
Alexander Grafbee91162016-03-04 01:09:59 +0100810 u64 now = timer_get_us();
811
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100812 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200813 if (!timers_enabled)
814 continue;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100815 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next)
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200816 continue;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100817 switch (evt->trigger_type) {
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200818 case EFI_TIMER_RELATIVE:
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100819 evt->trigger_type = EFI_TIMER_STOP;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200820 break;
821 case EFI_TIMER_PERIODIC:
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100822 evt->trigger_next += evt->trigger_time;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200823 break;
824 default:
825 continue;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200826 }
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100827 evt->is_signaled = false;
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200828 efi_signal_event(evt);
Alexander Grafbee91162016-03-04 01:09:59 +0100829 }
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200830 efi_process_event_queue();
Alexander Grafbee91162016-03-04 01:09:59 +0100831 WATCHDOG_RESET();
832}
833
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200834/**
Mario Six78a88f72018-07-10 08:40:17 +0200835 * efi_set_timer() - set the trigger time for a timer event or stop the event
836 * @event: event for which the timer is set
837 * @type: type of the timer
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200838 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200839 *
840 * This is the function for internal usage in U-Boot. For the API function
841 * implementing the SetTimer service see efi_set_timer_ext.
842 *
Mario Six78a88f72018-07-10 08:40:17 +0200843 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200844 */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200845efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200846 uint64_t trigger_time)
Alexander Grafbee91162016-03-04 01:09:59 +0100847{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100848 /* Check that the event is valid */
849 if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER))
850 return EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +0100851
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200852 /*
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200853 * The parameter defines a multiple of 100 ns.
854 * We use multiples of 1000 ns. So divide by 10.
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200855 */
Heinrich Schuchardt7d963322017-10-05 16:14:14 +0200856 do_div(trigger_time, 10);
Alexander Grafbee91162016-03-04 01:09:59 +0100857
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100858 switch (type) {
859 case EFI_TIMER_STOP:
860 event->trigger_next = -1ULL;
861 break;
862 case EFI_TIMER_PERIODIC:
863 case EFI_TIMER_RELATIVE:
864 event->trigger_next = timer_get_us() + trigger_time;
865 break;
866 default:
867 return EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +0100868 }
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100869 event->trigger_type = type;
870 event->trigger_time = trigger_time;
871 event->is_signaled = false;
872 return EFI_SUCCESS;
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200873}
874
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200875/**
Mario Six78a88f72018-07-10 08:40:17 +0200876 * efi_set_timer_ext() - Set the trigger time for a timer event or stop the
877 * event
878 * @event: event for which the timer is set
879 * @type: type of the timer
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200880 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200881 *
882 * This function implements the SetTimer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200883 *
Mario Six78a88f72018-07-10 08:40:17 +0200884 * See the Unified Extensible Firmware Interface (UEFI) specification for
885 * details.
886 *
887 *
888 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200889 */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200890static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
891 enum efi_timer_delay type,
892 uint64_t trigger_time)
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200893{
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900894 EFI_ENTRY("%p, %d, %llx", event, type, trigger_time);
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200895 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
Alexander Grafbee91162016-03-04 01:09:59 +0100896}
897
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200898/**
Mario Six78a88f72018-07-10 08:40:17 +0200899 * efi_wait_for_event() - wait for events to be signaled
900 * @num_events: number of events to be waited for
901 * @event: events to be waited for
902 * @index: index of the event that was signaled
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200903 *
904 * This function implements the WaitForEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200905 *
Mario Six78a88f72018-07-10 08:40:17 +0200906 * See the Unified Extensible Firmware Interface (UEFI) specification for
907 * details.
908 *
909 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200910 */
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100911static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200912 struct efi_event **event,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100913 efi_uintn_t *index)
Alexander Grafbee91162016-03-04 01:09:59 +0100914{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100915 int i;
Alexander Grafbee91162016-03-04 01:09:59 +0100916
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100917 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
Alexander Grafbee91162016-03-04 01:09:59 +0100918
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200919 /* Check parameters */
920 if (!num_events || !event)
921 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200922 /* Check TPL */
923 if (efi_tpl != TPL_APPLICATION)
924 return EFI_EXIT(EFI_UNSUPPORTED);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200925 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100926 if (efi_is_event(event[i]) != EFI_SUCCESS)
927 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200928 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
929 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200930 if (!event[i]->is_signaled)
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200931 efi_queue_event(event[i]);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200932 }
933
934 /* Wait for signal */
935 for (;;) {
936 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200937 if (event[i]->is_signaled)
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200938 goto out;
939 }
940 /* Allow events to occur. */
941 efi_timer_check();
942 }
943
944out:
945 /*
946 * Reset the signal which is passed to the caller to allow periodic
947 * events to occur.
948 */
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200949 event[i]->is_signaled = false;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200950 if (index)
951 *index = i;
Alexander Grafbee91162016-03-04 01:09:59 +0100952
953 return EFI_EXIT(EFI_SUCCESS);
954}
955
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200956/**
Mario Six78a88f72018-07-10 08:40:17 +0200957 * efi_signal_event_ext() - signal an EFI event
958 * @event: event to signal
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200959 *
960 * This function implements the SignalEvent service.
Mario Six78a88f72018-07-10 08:40:17 +0200961 *
962 * See the Unified Extensible Firmware Interface (UEFI) specification for
963 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200964 *
965 * This functions sets the signaled state of the event and queues the
966 * notification function for execution.
967 *
Mario Six78a88f72018-07-10 08:40:17 +0200968 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200969 */
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200970static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100971{
972 EFI_ENTRY("%p", event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100973 if (efi_is_event(event) != EFI_SUCCESS)
974 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200975 efi_signal_event(event);
Alexander Grafbee91162016-03-04 01:09:59 +0100976 return EFI_EXIT(EFI_SUCCESS);
977}
978
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200979/**
Mario Six78a88f72018-07-10 08:40:17 +0200980 * efi_close_event() - close an EFI event
981 * @event: event to close
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200982 *
983 * This function implements the CloseEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200984 *
Mario Six78a88f72018-07-10 08:40:17 +0200985 * See the Unified Extensible Firmware Interface (UEFI) specification for
986 * details.
987 *
988 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200989 */
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200990static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100991{
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200992 struct efi_register_notify_event *item, *next;
993
Alexander Grafbee91162016-03-04 01:09:59 +0100994 EFI_ENTRY("%p", event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100995 if (efi_is_event(event) != EFI_SUCCESS)
996 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200997
998 /* Remove protocol notify registrations for the event */
999 list_for_each_entry_safe(item, next, &efi_register_notify_events,
1000 link) {
1001 if (event == item->event) {
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001002 struct efi_protocol_notification *hitem, *hnext;
1003
1004 /* Remove signaled handles */
1005 list_for_each_entry_safe(hitem, hnext, &item->handles,
1006 link) {
1007 list_del(&hitem->link);
1008 free(hitem);
1009 }
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001010 list_del(&item->link);
1011 free(item);
1012 }
1013 }
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +02001014 /* Remove event from queue */
1015 if (efi_event_is_queued(event))
1016 list_del(&event->queue_link);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001017
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001018 list_del(&event->link);
Heinrich Schuchardt14b40482019-07-11 20:15:09 +02001019 efi_free_pool(event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001020 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01001021}
1022
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001023/**
Mario Six78a88f72018-07-10 08:40:17 +02001024 * efi_check_event() - check if an event is signaled
1025 * @event: event to check
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001026 *
1027 * This function implements the CheckEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001028 *
Mario Six78a88f72018-07-10 08:40:17 +02001029 * See the Unified Extensible Firmware Interface (UEFI) specification for
1030 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001031 *
Mario Six78a88f72018-07-10 08:40:17 +02001032 * If an event is not signaled yet, the notification function is queued. The
1033 * signaled state is cleared.
1034 *
1035 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001036 */
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +02001037static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +01001038{
1039 EFI_ENTRY("%p", event);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02001040 efi_timer_check();
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001041 if (efi_is_event(event) != EFI_SUCCESS ||
1042 event->type & EVT_NOTIFY_SIGNAL)
1043 return EFI_EXIT(EFI_INVALID_PARAMETER);
1044 if (!event->is_signaled)
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001045 efi_queue_event(event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001046 if (event->is_signaled) {
1047 event->is_signaled = false;
1048 return EFI_EXIT(EFI_SUCCESS);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02001049 }
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001050 return EFI_EXIT(EFI_NOT_READY);
Alexander Grafbee91162016-03-04 01:09:59 +01001051}
1052
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001053/**
Mario Six78a88f72018-07-10 08:40:17 +02001054 * efi_search_obj() - find the internal EFI object for a handle
1055 * @handle: handle to find
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001056 *
Mario Six78a88f72018-07-10 08:40:17 +02001057 * Return: EFI object
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001058 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01001059struct efi_object *efi_search_obj(const efi_handle_t handle)
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001060{
Heinrich Schuchardt1b681532017-11-06 21:17:50 +01001061 struct efi_object *efiobj;
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001062
Heinrich Schuchardtec163fa2019-05-05 10:37:51 +02001063 if (!handle)
1064 return NULL;
1065
Heinrich Schuchardt1b681532017-11-06 21:17:50 +01001066 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001067 if (efiobj == handle)
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001068 return efiobj;
1069 }
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001070 return NULL;
1071}
1072
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001073/**
Mario Six78a88f72018-07-10 08:40:17 +02001074 * efi_open_protocol_info_entry() - create open protocol info entry and add it
1075 * to a protocol
1076 * @handler: handler of a protocol
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001077 *
Mario Six78a88f72018-07-10 08:40:17 +02001078 * Return: open protocol info entry
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001079 */
1080static struct efi_open_protocol_info_entry *efi_create_open_info(
1081 struct efi_handler *handler)
1082{
1083 struct efi_open_protocol_info_item *item;
1084
1085 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
1086 if (!item)
1087 return NULL;
1088 /* Append the item to the open protocol info list. */
1089 list_add_tail(&item->link, &handler->open_infos);
1090
1091 return &item->info;
1092}
1093
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001094/**
Mario Six78a88f72018-07-10 08:40:17 +02001095 * efi_delete_open_info() - remove an open protocol info entry from a protocol
1096 * @item: open protocol info entry to delete
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001097 *
Mario Six78a88f72018-07-10 08:40:17 +02001098 * Return: status code
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001099 */
1100static efi_status_t efi_delete_open_info(
1101 struct efi_open_protocol_info_item *item)
1102{
1103 list_del(&item->link);
1104 free(item);
1105 return EFI_SUCCESS;
1106}
1107
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001108/**
Mario Six78a88f72018-07-10 08:40:17 +02001109 * efi_add_protocol() - install new protocol on a handle
1110 * @handle: handle on which the protocol shall be installed
1111 * @protocol: GUID of the protocol to be installed
1112 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001113 *
Mario Six78a88f72018-07-10 08:40:17 +02001114 * Return: status code
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001115 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01001116efi_status_t efi_add_protocol(const efi_handle_t handle,
1117 const efi_guid_t *protocol,
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001118 void *protocol_interface)
1119{
1120 struct efi_object *efiobj;
1121 struct efi_handler *handler;
1122 efi_status_t ret;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001123 struct efi_register_notify_event *event;
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001124
1125 efiobj = efi_search_obj(handle);
1126 if (!efiobj)
1127 return EFI_INVALID_PARAMETER;
1128 ret = efi_search_protocol(handle, protocol, NULL);
1129 if (ret != EFI_NOT_FOUND)
1130 return EFI_INVALID_PARAMETER;
1131 handler = calloc(1, sizeof(struct efi_handler));
1132 if (!handler)
1133 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001134 handler->guid = protocol;
1135 handler->protocol_interface = protocol_interface;
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001136 INIT_LIST_HEAD(&handler->open_infos);
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001137 list_add_tail(&handler->link, &efiobj->protocols);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001138
1139 /* Notify registered events */
1140 list_for_each_entry(event, &efi_register_notify_events, link) {
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001141 if (!guidcmp(protocol, &event->protocol)) {
1142 struct efi_protocol_notification *notif;
1143
1144 notif = calloc(1, sizeof(*notif));
1145 if (!notif) {
1146 list_del(&handler->link);
1147 free(handler);
1148 return EFI_OUT_OF_RESOURCES;
1149 }
1150 notif->handle = handle;
1151 list_add_tail(&notif->link, &event->handles);
Heinrich Schuchardtdaa3f842019-06-07 07:43:24 +02001152 event->event->is_signaled = false;
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001153 efi_signal_event(event->event);
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001154 }
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001155 }
1156
Heinrich Schuchardtd5504142018-01-11 08:16:01 +01001157 if (!guidcmp(&efi_guid_device_path, protocol))
1158 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001159 return EFI_SUCCESS;
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001160}
1161
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001162/**
Mario Six78a88f72018-07-10 08:40:17 +02001163 * efi_install_protocol_interface() - install protocol interface
1164 * @handle: handle on which the protocol shall be installed
1165 * @protocol: GUID of the protocol to be installed
1166 * @protocol_interface_type: type of the interface to be installed,
1167 * always EFI_NATIVE_INTERFACE
1168 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001169 *
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001170 * This function implements the InstallProtocolInterface service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001171 *
Mario Six78a88f72018-07-10 08:40:17 +02001172 * See the Unified Extensible Firmware Interface (UEFI) specification for
1173 * details.
1174 *
1175 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001176 */
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001177static efi_status_t EFIAPI efi_install_protocol_interface(
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02001178 efi_handle_t *handle, const efi_guid_t *protocol,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001179 int protocol_interface_type, void *protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01001180{
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001181 efi_status_t r;
1182
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01001183 EFI_ENTRY("%p, %pUs, %d, %p", handle, protocol, protocol_interface_type,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001184 protocol_interface);
1185
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001186 if (!handle || !protocol ||
1187 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1188 r = EFI_INVALID_PARAMETER;
1189 goto out;
1190 }
1191
1192 /* Create new handle if requested. */
1193 if (!*handle) {
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +02001194 r = efi_create_handle(handle);
1195 if (r != EFI_SUCCESS)
1196 goto out;
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02001197 EFI_PRINT("new handle %p\n", *handle);
Heinrich Schuchardtaf1408e2017-10-26 19:25:43 +02001198 } else {
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02001199 EFI_PRINT("handle %p\n", *handle);
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001200 }
Heinrich Schuchardt12025302017-10-26 19:25:54 +02001201 /* Add new protocol */
1202 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001203out:
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001204 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01001205}
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001206
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001207/**
Mario Six78a88f72018-07-10 08:40:17 +02001208 * efi_get_drivers() - get all drivers associated to a controller
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001209 * @handle: handle of the controller
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001210 * @protocol: protocol GUID (optional)
Mario Six78a88f72018-07-10 08:40:17 +02001211 * @number_of_drivers: number of child controllers
1212 * @driver_handle_buffer: handles of the the drivers
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001213 *
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001214 * The allocated buffer has to be freed with free().
1215 *
Mario Six78a88f72018-07-10 08:40:17 +02001216 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001217 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001218static efi_status_t efi_get_drivers(efi_handle_t handle,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001219 const efi_guid_t *protocol,
1220 efi_uintn_t *number_of_drivers,
1221 efi_handle_t **driver_handle_buffer)
1222{
1223 struct efi_handler *handler;
1224 struct efi_open_protocol_info_item *item;
1225 efi_uintn_t count = 0, i;
1226 bool duplicate;
1227
1228 /* Count all driver associations */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001229 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001230 if (protocol && guidcmp(handler->guid, protocol))
1231 continue;
1232 list_for_each_entry(item, &handler->open_infos, link) {
1233 if (item->info.attributes &
1234 EFI_OPEN_PROTOCOL_BY_DRIVER)
1235 ++count;
1236 }
1237 }
Heinrich Schuchardt66ca24a2019-06-02 01:43:33 +02001238 *number_of_drivers = 0;
1239 if (!count) {
1240 *driver_handle_buffer = NULL;
1241 return EFI_SUCCESS;
1242 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001243 /*
1244 * Create buffer. In case of duplicate driver assignments the buffer
1245 * will be too large. But that does not harm.
1246 */
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001247 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1248 if (!*driver_handle_buffer)
1249 return EFI_OUT_OF_RESOURCES;
1250 /* Collect unique driver handles */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001251 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001252 if (protocol && guidcmp(handler->guid, protocol))
1253 continue;
1254 list_for_each_entry(item, &handler->open_infos, link) {
1255 if (item->info.attributes &
1256 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1257 /* Check this is a new driver */
1258 duplicate = false;
1259 for (i = 0; i < *number_of_drivers; ++i) {
1260 if ((*driver_handle_buffer)[i] ==
1261 item->info.agent_handle)
1262 duplicate = true;
1263 }
1264 /* Copy handle to buffer */
1265 if (!duplicate) {
1266 i = (*number_of_drivers)++;
1267 (*driver_handle_buffer)[i] =
1268 item->info.agent_handle;
1269 }
1270 }
1271 }
1272 }
1273 return EFI_SUCCESS;
1274}
1275
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001276/**
Mario Six78a88f72018-07-10 08:40:17 +02001277 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001278 * @handle: handle of the controller
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001279 * @protocol: protocol GUID (optional)
Mario Six78a88f72018-07-10 08:40:17 +02001280 * @child_handle: handle of the child to destroy
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001281 *
1282 * This function implements the DisconnectController service.
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001283 *
Mario Six78a88f72018-07-10 08:40:17 +02001284 * See the Unified Extensible Firmware Interface (UEFI) specification for
1285 * details.
1286 *
1287 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001288 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001289static efi_status_t efi_disconnect_all_drivers
1290 (efi_handle_t handle,
1291 const efi_guid_t *protocol,
1292 efi_handle_t child_handle)
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001293{
1294 efi_uintn_t number_of_drivers;
1295 efi_handle_t *driver_handle_buffer;
1296 efi_status_t r, ret;
1297
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001298 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001299 &driver_handle_buffer);
1300 if (ret != EFI_SUCCESS)
1301 return ret;
Heinrich Schuchardt66ca24a2019-06-02 01:43:33 +02001302 if (!number_of_drivers)
1303 return EFI_SUCCESS;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001304 ret = EFI_NOT_FOUND;
1305 while (number_of_drivers) {
1306 r = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001307 handle,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001308 driver_handle_buffer[--number_of_drivers],
1309 child_handle));
1310 if (r == EFI_SUCCESS)
1311 ret = r;
1312 }
1313 free(driver_handle_buffer);
1314 return ret;
1315}
1316
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001317/**
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001318 * efi_uninstall_protocol() - uninstall protocol interface
1319 *
Mario Six78a88f72018-07-10 08:40:17 +02001320 * @handle: handle from which the protocol shall be removed
1321 * @protocol: GUID of the protocol to be removed
1322 * @protocol_interface: interface to be removed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001323 *
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001324 * This function DOES NOT delete a handle without installed protocol.
Mario Six78a88f72018-07-10 08:40:17 +02001325 *
1326 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001327 */
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001328static efi_status_t efi_uninstall_protocol
1329 (efi_handle_t handle, const efi_guid_t *protocol,
1330 void *protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01001331{
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001332 struct efi_object *efiobj;
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001333 struct efi_handler *handler;
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001334 struct efi_open_protocol_info_item *item;
1335 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001336 efi_status_t r;
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001337
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001338 /* Check handle */
1339 efiobj = efi_search_obj(handle);
1340 if (!efiobj) {
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001341 r = EFI_INVALID_PARAMETER;
1342 goto out;
1343 }
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001344 /* Find the protocol on the handle */
1345 r = efi_search_protocol(handle, protocol, &handler);
1346 if (r != EFI_SUCCESS)
1347 goto out;
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001348 /* Disconnect controllers */
1349 efi_disconnect_all_drivers(efiobj, protocol, NULL);
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001350 /* Close protocol */
1351 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1352 if (item->info.attributes ==
1353 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1354 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1355 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1356 list_del(&item->link);
1357 }
1358 if (!list_empty(&handler->open_infos)) {
1359 r = EFI_ACCESS_DENIED;
1360 goto out;
1361 }
1362 r = efi_remove_protocol(handle, protocol, protocol_interface);
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001363out:
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001364 return r;
1365}
1366
1367/**
1368 * efi_uninstall_protocol_interface() - uninstall protocol interface
1369 * @handle: handle from which the protocol shall be removed
1370 * @protocol: GUID of the protocol to be removed
1371 * @protocol_interface: interface to be removed
1372 *
1373 * This function implements the UninstallProtocolInterface service.
1374 *
1375 * See the Unified Extensible Firmware Interface (UEFI) specification for
1376 * details.
1377 *
1378 * Return: status code
1379 */
1380static efi_status_t EFIAPI efi_uninstall_protocol_interface
1381 (efi_handle_t handle, const efi_guid_t *protocol,
1382 void *protocol_interface)
1383{
1384 efi_status_t ret;
1385
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01001386 EFI_ENTRY("%p, %pUs, %p", handle, protocol, protocol_interface);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001387
1388 ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1389 if (ret != EFI_SUCCESS)
1390 goto out;
1391
1392 /* If the last protocol has been removed, delete the handle. */
1393 if (list_empty(&handle->protocols)) {
1394 list_del(&handle->link);
1395 free(handle);
1396 }
1397out:
1398 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001399}
1400
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001401/**
Mario Six78a88f72018-07-10 08:40:17 +02001402 * efi_register_protocol_notify() - register an event for notification when a
1403 * protocol is installed.
1404 * @protocol: GUID of the protocol whose installation shall be notified
1405 * @event: event to be signaled upon installation of the protocol
1406 * @registration: key for retrieving the registration information
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001407 *
1408 * This function implements the RegisterProtocolNotify service.
1409 * See the Unified Extensible Firmware Interface (UEFI) specification
1410 * for details.
1411 *
Mario Six78a88f72018-07-10 08:40:17 +02001412 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001413 */
Jose Marinho64a8aae2021-03-02 17:26:38 +00001414efi_status_t EFIAPI efi_register_protocol_notify(const efi_guid_t *protocol,
1415 struct efi_event *event,
1416 void **registration)
Alexander Grafbee91162016-03-04 01:09:59 +01001417{
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001418 struct efi_register_notify_event *item;
1419 efi_status_t ret = EFI_SUCCESS;
1420
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01001421 EFI_ENTRY("%pUs, %p, %p", protocol, event, registration);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001422
1423 if (!protocol || !event || !registration) {
1424 ret = EFI_INVALID_PARAMETER;
1425 goto out;
1426 }
1427
1428 item = calloc(1, sizeof(struct efi_register_notify_event));
1429 if (!item) {
1430 ret = EFI_OUT_OF_RESOURCES;
1431 goto out;
1432 }
1433
1434 item->event = event;
Sughosh Ganu61e42d92019-12-29 00:01:04 +05301435 guidcpy(&item->protocol, protocol);
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001436 INIT_LIST_HEAD(&item->handles);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001437
1438 list_add_tail(&item->link, &efi_register_notify_events);
1439
1440 *registration = item;
1441out:
1442 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001443}
1444
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001445/**
Mario Six78a88f72018-07-10 08:40:17 +02001446 * efi_search() - determine if an EFI handle implements a protocol
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +02001447 *
Mario Six78a88f72018-07-10 08:40:17 +02001448 * @search_type: selection criterion
1449 * @protocol: GUID of the protocol
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001450 * @handle: handle
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001451 *
1452 * See the documentation of the LocateHandle service in the UEFI specification.
1453 *
Mario Six78a88f72018-07-10 08:40:17 +02001454 * Return: 0 if the handle implements the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001455 */
Alexander Grafbee91162016-03-04 01:09:59 +01001456static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001457 const efi_guid_t *protocol, efi_handle_t handle)
Alexander Grafbee91162016-03-04 01:09:59 +01001458{
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +02001459 efi_status_t ret;
Alexander Grafbee91162016-03-04 01:09:59 +01001460
1461 switch (search_type) {
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +01001462 case ALL_HANDLES:
Alexander Grafbee91162016-03-04 01:09:59 +01001463 return 0;
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +01001464 case BY_PROTOCOL:
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001465 ret = efi_search_protocol(handle, protocol, NULL);
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +02001466 return (ret != EFI_SUCCESS);
1467 default:
1468 /* Invalid search type */
Alexander Grafbee91162016-03-04 01:09:59 +01001469 return -1;
1470 }
Alexander Grafbee91162016-03-04 01:09:59 +01001471}
1472
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001473/**
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001474 * efi_check_register_notify_event() - check if registration key is valid
1475 *
1476 * Check that a pointer is a valid registration key as returned by
1477 * RegisterProtocolNotify().
1478 *
1479 * @key: registration key
1480 * Return: valid registration key or NULL
1481 */
1482static struct efi_register_notify_event *efi_check_register_notify_event
1483 (void *key)
1484{
1485 struct efi_register_notify_event *event;
1486
1487 list_for_each_entry(event, &efi_register_notify_events, link) {
1488 if (event == (struct efi_register_notify_event *)key)
1489 return event;
1490 }
1491 return NULL;
1492}
1493
1494/**
Mario Six78a88f72018-07-10 08:40:17 +02001495 * efi_locate_handle() - locate handles implementing a protocol
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001496 *
1497 * @search_type: selection criterion
1498 * @protocol: GUID of the protocol
1499 * @search_key: registration key
1500 * @buffer_size: size of the buffer to receive the handles in bytes
1501 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001502 *
1503 * This function is meant for U-Boot internal calls. For the API implementation
1504 * of the LocateHandle service see efi_locate_handle_ext.
1505 *
Mario Six78a88f72018-07-10 08:40:17 +02001506 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001507 */
xypron.glpk@gmx.deebf199b2017-08-09 20:55:00 +02001508static efi_status_t efi_locate_handle(
Alexander Grafbee91162016-03-04 01:09:59 +01001509 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001510 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001511 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafbee91162016-03-04 01:09:59 +01001512{
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001513 struct efi_object *efiobj;
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001514 efi_uintn_t size = 0;
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001515 struct efi_register_notify_event *event;
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001516 struct efi_protocol_notification *handle = NULL;
Alexander Grafbee91162016-03-04 01:09:59 +01001517
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001518 /* Check parameters */
1519 switch (search_type) {
1520 case ALL_HANDLES:
1521 break;
1522 case BY_REGISTER_NOTIFY:
1523 if (!search_key)
1524 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001525 /* Check that the registration key is valid */
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001526 event = efi_check_register_notify_event(search_key);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001527 if (!event)
1528 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001529 break;
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001530 case BY_PROTOCOL:
1531 if (!protocol)
1532 return EFI_INVALID_PARAMETER;
1533 break;
1534 default:
1535 return EFI_INVALID_PARAMETER;
1536 }
1537
Alexander Grafbee91162016-03-04 01:09:59 +01001538 /* Count how much space we need */
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001539 if (search_type == BY_REGISTER_NOTIFY) {
1540 if (list_empty(&event->handles))
1541 return EFI_NOT_FOUND;
1542 handle = list_first_entry(&event->handles,
1543 struct efi_protocol_notification,
1544 link);
1545 efiobj = handle->handle;
1546 size += sizeof(void *);
1547 } else {
1548 list_for_each_entry(efiobj, &efi_obj_list, link) {
1549 if (!efi_search(search_type, protocol, efiobj))
1550 size += sizeof(void *);
1551 }
1552 if (size == 0)
1553 return EFI_NOT_FOUND;
Alexander Grafbee91162016-03-04 01:09:59 +01001554 }
1555
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001556 if (!buffer_size)
1557 return EFI_INVALID_PARAMETER;
1558
Alexander Grafbee91162016-03-04 01:09:59 +01001559 if (*buffer_size < size) {
1560 *buffer_size = size;
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001561 return EFI_BUFFER_TOO_SMALL;
Alexander Grafbee91162016-03-04 01:09:59 +01001562 }
1563
Rob Clark796a78c2017-08-06 14:10:07 -04001564 *buffer_size = size;
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001565
Heinrich Schuchardt0a843192019-05-10 19:03:49 +02001566 /* The buffer size is sufficient but there is no buffer */
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001567 if (!buffer)
1568 return EFI_INVALID_PARAMETER;
Rob Clark796a78c2017-08-06 14:10:07 -04001569
Alexander Grafbee91162016-03-04 01:09:59 +01001570 /* Then fill the array */
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001571 if (search_type == BY_REGISTER_NOTIFY) {
1572 *buffer = efiobj;
1573 list_del(&handle->link);
1574 } else {
1575 list_for_each_entry(efiobj, &efi_obj_list, link) {
1576 if (!efi_search(search_type, protocol, efiobj))
1577 *buffer++ = efiobj;
1578 }
Alexander Grafbee91162016-03-04 01:09:59 +01001579 }
1580
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001581 return EFI_SUCCESS;
1582}
1583
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001584/**
Mario Six78a88f72018-07-10 08:40:17 +02001585 * efi_locate_handle_ext() - locate handles implementing a protocol.
1586 * @search_type: selection criterion
1587 * @protocol: GUID of the protocol
1588 * @search_key: registration key
1589 * @buffer_size: size of the buffer to receive the handles in bytes
1590 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001591 *
1592 * This function implements the LocateHandle service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001593 *
Mario Six78a88f72018-07-10 08:40:17 +02001594 * See the Unified Extensible Firmware Interface (UEFI) specification for
1595 * details.
1596 *
1597 * Return: 0 if the handle implements the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001598 */
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001599static efi_status_t EFIAPI efi_locate_handle_ext(
1600 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001601 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001602 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001603{
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01001604 EFI_ENTRY("%d, %pUs, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001605 buffer_size, buffer);
1606
1607 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1608 buffer_size, buffer));
Alexander Grafbee91162016-03-04 01:09:59 +01001609}
1610
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001611/**
Mario Six78a88f72018-07-10 08:40:17 +02001612 * efi_remove_configuration_table() - collapses configuration table entries,
1613 * removing index i
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001614 *
Mario Six78a88f72018-07-10 08:40:17 +02001615 * @i: index of the table entry to be removed
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001616 */
Alexander Grafd98cdf62017-07-26 13:41:04 +02001617static void efi_remove_configuration_table(int i)
1618{
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001619 struct efi_configuration_table *this = &systab.tables[i];
1620 struct efi_configuration_table *next = &systab.tables[i + 1];
1621 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
Alexander Grafd98cdf62017-07-26 13:41:04 +02001622
1623 memmove(this, next, (ulong)end - (ulong)next);
1624 systab.nr_tables--;
1625}
1626
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001627/**
Mario Six78a88f72018-07-10 08:40:17 +02001628 * efi_install_configuration_table() - adds, updates, or removes a
1629 * configuration table
1630 * @guid: GUID of the installed table
1631 * @table: table to be installed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001632 *
1633 * This function is used for internal calls. For the API implementation of the
1634 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1635 *
Mario Six78a88f72018-07-10 08:40:17 +02001636 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001637 */
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01001638efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1639 void *table)
Alexander Grafbee91162016-03-04 01:09:59 +01001640{
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001641 struct efi_event *evt;
Alexander Grafbee91162016-03-04 01:09:59 +01001642 int i;
1643
Heinrich Schuchardteb68b4e2018-02-18 00:08:00 +01001644 if (!guid)
1645 return EFI_INVALID_PARAMETER;
1646
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001647 /* Check for GUID override */
Alexander Grafbee91162016-03-04 01:09:59 +01001648 for (i = 0; i < systab.nr_tables; i++) {
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001649 if (!guidcmp(guid, &systab.tables[i].guid)) {
Alexander Grafd98cdf62017-07-26 13:41:04 +02001650 if (table)
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001651 systab.tables[i].table = table;
Alexander Grafd98cdf62017-07-26 13:41:04 +02001652 else
1653 efi_remove_configuration_table(i);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001654 goto out;
Alexander Grafbee91162016-03-04 01:09:59 +01001655 }
1656 }
1657
Alexander Grafd98cdf62017-07-26 13:41:04 +02001658 if (!table)
1659 return EFI_NOT_FOUND;
1660
Alexander Grafbee91162016-03-04 01:09:59 +01001661 /* No override, check for overflow */
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001662 if (i >= EFI_MAX_CONFIGURATION_TABLES)
Alexander Graf488bf122016-08-19 01:23:24 +02001663 return EFI_OUT_OF_RESOURCES;
Alexander Grafbee91162016-03-04 01:09:59 +01001664
1665 /* Add a new entry */
Sughosh Ganu61e42d92019-12-29 00:01:04 +05301666 guidcpy(&systab.tables[i].guid, guid);
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001667 systab.tables[i].table = table;
Alexander Grafaba5e912016-08-19 01:23:30 +02001668 systab.nr_tables = i + 1;
Alexander Grafbee91162016-03-04 01:09:59 +01001669
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001670out:
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001671 /* systab.nr_tables may have changed. So we need to update the CRC32 */
Heinrich Schuchardt55d8ee32018-07-07 15:36:05 +02001672 efi_update_table_header_crc32(&systab.hdr);
1673
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001674 /* Notify that the configuration table was changed */
1675 list_for_each_entry(evt, &efi_events, link) {
1676 if (evt->group && !guidcmp(evt->group, guid)) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001677 efi_signal_event(evt);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001678 break;
1679 }
1680 }
1681
Alexander Graf488bf122016-08-19 01:23:24 +02001682 return EFI_SUCCESS;
1683}
1684
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001685/**
Mario Six78a88f72018-07-10 08:40:17 +02001686 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1687 * configuration table.
1688 * @guid: GUID of the installed table
1689 * @table: table to be installed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001690 *
1691 * This function implements the InstallConfigurationTable service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001692 *
Mario Six78a88f72018-07-10 08:40:17 +02001693 * See the Unified Extensible Firmware Interface (UEFI) specification for
1694 * details.
1695 *
1696 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001697 */
Masahisa Kojimaf86352e2021-10-22 20:24:24 +09001698static efi_status_t
1699EFIAPI efi_install_configuration_table_ext(const efi_guid_t *guid,
1700 void *table)
Alexander Graf488bf122016-08-19 01:23:24 +02001701{
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01001702 EFI_ENTRY("%pUs, %p", guid, table);
Alexander Graf488bf122016-08-19 01:23:24 +02001703 return EFI_EXIT(efi_install_configuration_table(guid, table));
Alexander Grafbee91162016-03-04 01:09:59 +01001704}
1705
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001706/**
Mario Six78a88f72018-07-10 08:40:17 +02001707 * efi_setup_loaded_image() - initialize a loaded image
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001708 *
1709 * Initialize a loaded_image_info and loaded_image_info object with correct
Rob Clark95c55532017-09-13 18:05:33 -04001710 * protocols, boot-device, etc.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001711 *
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +02001712 * In case of an error \*handle_ptr and \*info_ptr are set to NULL and an error
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001713 * code is returned.
1714 *
1715 * @device_path: device path of the loaded image
1716 * @file_path: file path of the loaded image
1717 * @handle_ptr: handle of the loaded image
1718 * @info_ptr: loaded image protocol
1719 * Return: status code
Rob Clark95c55532017-09-13 18:05:33 -04001720 */
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001721efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1722 struct efi_device_path *file_path,
1723 struct efi_loaded_image_obj **handle_ptr,
1724 struct efi_loaded_image **info_ptr)
Rob Clark95c55532017-09-13 18:05:33 -04001725{
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001726 efi_status_t ret;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001727 struct efi_loaded_image *info = NULL;
1728 struct efi_loaded_image_obj *obj = NULL;
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001729 struct efi_device_path *dp;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001730
1731 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1732 *handle_ptr = NULL;
1733 *info_ptr = NULL;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001734
1735 info = calloc(1, sizeof(*info));
1736 if (!info)
1737 return EFI_OUT_OF_RESOURCES;
1738 obj = calloc(1, sizeof(*obj));
1739 if (!obj) {
1740 free(info);
1741 return EFI_OUT_OF_RESOURCES;
1742 }
Heinrich Schuchardtcd73aba2019-05-01 14:20:18 +02001743 obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001744
Heinrich Schuchardt44549d62017-11-26 14:05:23 +01001745 /* Add internal object to object list */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +02001746 efi_add_handle(&obj->header);
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001747
Heinrich Schuchardt95147312018-07-05 08:17:58 +02001748 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
Rob Clark95c55532017-09-13 18:05:33 -04001749 info->file_path = file_path;
Heinrich Schuchardt7e1effc2018-08-26 15:31:52 +02001750 info->system_table = &systab;
Rob Clark95c55532017-09-13 18:05:33 -04001751
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001752 if (device_path) {
1753 info->device_handle = efi_dp_find_obj(device_path, NULL);
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001754
1755 dp = efi_dp_append(device_path, file_path);
1756 if (!dp) {
1757 ret = EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001758 goto failure;
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001759 }
1760 } else {
1761 dp = NULL;
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001762 }
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001763 ret = efi_add_protocol(&obj->header,
1764 &efi_guid_loaded_image_device_path, dp);
1765 if (ret != EFI_SUCCESS)
1766 goto failure;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001767
1768 /*
1769 * When asking for the loaded_image interface, just
1770 * return handle which points to loaded_image_info
1771 */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +02001772 ret = efi_add_protocol(&obj->header,
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001773 &efi_guid_loaded_image, info);
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001774 if (ret != EFI_SUCCESS)
1775 goto failure;
1776
Heinrich Schuchardtd5974af2019-03-19 18:58:58 +01001777 *info_ptr = info;
1778 *handle_ptr = obj;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001779
Heinrich Schuchardt56d92882017-12-04 18:03:01 +01001780 return ret;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001781failure:
1782 printf("ERROR: Failure to install protocols for loaded image\n");
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001783 efi_delete_handle(&obj->header);
1784 free(info);
Heinrich Schuchardt56d92882017-12-04 18:03:01 +01001785 return ret;
Rob Clark95c55532017-09-13 18:05:33 -04001786}
1787
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001788/**
Heinrich Schuchardt0e9d2d72020-12-04 03:02:03 +01001789 * efi_locate_device_path() - Get the device path and handle of an device
1790 * implementing a protocol
1791 * @protocol: GUID of the protocol
1792 * @device_path: device path
1793 * @device: handle of the device
1794 *
1795 * This function implements the LocateDevicePath service.
1796 *
1797 * See the Unified Extensible Firmware Interface (UEFI) specification for
1798 * details.
1799 *
1800 * Return: status code
1801 */
1802static efi_status_t EFIAPI efi_locate_device_path(
1803 const efi_guid_t *protocol,
1804 struct efi_device_path **device_path,
1805 efi_handle_t *device)
1806{
1807 struct efi_device_path *dp;
1808 size_t i;
1809 struct efi_handler *handler;
1810 efi_handle_t *handles;
1811 size_t len, len_dp;
1812 size_t len_best = 0;
1813 efi_uintn_t no_handles;
1814 u8 *remainder;
1815 efi_status_t ret;
1816
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01001817 EFI_ENTRY("%pUs, %p, %p", protocol, device_path, device);
Heinrich Schuchardt0e9d2d72020-12-04 03:02:03 +01001818
1819 if (!protocol || !device_path || !*device_path) {
1820 ret = EFI_INVALID_PARAMETER;
1821 goto out;
1822 }
1823
1824 /* Find end of device path */
1825 len = efi_dp_instance_size(*device_path);
1826
1827 /* Get all handles implementing the protocol */
1828 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
1829 &no_handles, &handles));
1830 if (ret != EFI_SUCCESS)
1831 goto out;
1832
1833 for (i = 0; i < no_handles; ++i) {
1834 /* Find the device path protocol */
1835 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
1836 &handler);
1837 if (ret != EFI_SUCCESS)
1838 continue;
1839 dp = (struct efi_device_path *)handler->protocol_interface;
1840 len_dp = efi_dp_instance_size(dp);
1841 /*
1842 * This handle can only be a better fit
1843 * if its device path length is longer than the best fit and
1844 * if its device path length is shorter of equal the searched
1845 * device path.
1846 */
1847 if (len_dp <= len_best || len_dp > len)
1848 continue;
1849 /* Check if dp is a subpath of device_path */
1850 if (memcmp(*device_path, dp, len_dp))
1851 continue;
1852 if (!device) {
1853 ret = EFI_INVALID_PARAMETER;
1854 goto out;
1855 }
1856 *device = handles[i];
1857 len_best = len_dp;
1858 }
1859 if (len_best) {
1860 remainder = (u8 *)*device_path + len_best;
1861 *device_path = (struct efi_device_path *)remainder;
1862 ret = EFI_SUCCESS;
1863 } else {
1864 ret = EFI_NOT_FOUND;
1865 }
1866out:
1867 return EFI_EXIT(ret);
1868}
1869
1870/**
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001871 * efi_load_image_from_file() - load an image from file system
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001872 *
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001873 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1874 * callers obligation to update the memory type as needed.
1875 *
Heinrich Schuchardtc06c55b2020-12-04 09:27:41 +01001876 * @file_path: the path of the image to load
1877 * @buffer: buffer containing the loaded image
1878 * @size: size of the loaded image
1879 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001880 */
AKASHI Takahiro6b95b382019-04-19 12:22:35 +09001881static
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001882efi_status_t efi_load_image_from_file(struct efi_device_path *file_path,
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001883 void **buffer, efi_uintn_t *size)
Rob Clark838ee4b2017-09-13 18:05:35 -04001884{
Rob Clark838ee4b2017-09-13 18:05:35 -04001885 struct efi_file_handle *f;
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001886 efi_status_t ret;
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001887 u64 addr;
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +02001888 efi_uintn_t bs;
Rob Clark838ee4b2017-09-13 18:05:35 -04001889
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001890 /* Open file */
Rob Clark838ee4b2017-09-13 18:05:35 -04001891 f = efi_file_from_path(file_path);
1892 if (!f)
Heinrich Schuchardt20000032019-06-11 19:00:56 +02001893 return EFI_NOT_FOUND;
Rob Clark838ee4b2017-09-13 18:05:35 -04001894
Ilias Apalodimasac30aad2021-03-25 21:55:16 +02001895 ret = efi_file_size(f, &bs);
Rob Clark838ee4b2017-09-13 18:05:35 -04001896 if (ret != EFI_SUCCESS)
1897 goto error;
1898
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001899 /*
1900 * When reading the file we do not yet know if it contains an
1901 * application, a boottime driver, or a runtime driver. So here we
1902 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1903 * update the reservation according to the image type.
1904 */
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001905 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1906 EFI_BOOT_SERVICES_DATA,
1907 efi_size_in_pages(bs), &addr);
Rob Clark838ee4b2017-09-13 18:05:35 -04001908 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001909 ret = EFI_OUT_OF_RESOURCES;
1910 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04001911 }
1912
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001913 /* Read file */
1914 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1915 if (ret != EFI_SUCCESS)
1916 efi_free_pages(addr, efi_size_in_pages(bs));
1917 *buffer = (void *)(uintptr_t)addr;
1918 *size = bs;
1919error:
1920 EFI_CALL(f->close(f));
Rob Clark838ee4b2017-09-13 18:05:35 -04001921 return ret;
1922}
1923
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001924/**
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001925 * efi_load_image_from_path() - load an image using a file path
1926 *
1927 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1928 * callers obligation to update the memory type as needed.
1929 *
1930 * @boot_policy: true for request originating from the boot manager
1931 * @file_path: the path of the image to load
1932 * @buffer: buffer containing the loaded image
1933 * @size: size of the loaded image
1934 * Return: status code
1935 */
1936static
1937efi_status_t efi_load_image_from_path(bool boot_policy,
1938 struct efi_device_path *file_path,
1939 void **buffer, efi_uintn_t *size)
1940{
1941 efi_handle_t device;
1942 efi_status_t ret;
1943 struct efi_device_path *dp;
Heinrich Schuchardt3da0b282020-12-06 13:00:15 +01001944 struct efi_load_file_protocol *load_file_protocol = NULL;
1945 efi_uintn_t buffer_size;
1946 uint64_t addr, pages;
1947 const efi_guid_t *guid;
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001948
1949 /* In case of failure nothing is returned */
1950 *buffer = NULL;
1951 *size = 0;
1952
1953 dp = file_path;
1954 ret = EFI_CALL(efi_locate_device_path(
1955 &efi_simple_file_system_protocol_guid, &dp, &device));
1956 if (ret == EFI_SUCCESS)
1957 return efi_load_image_from_file(file_path, buffer, size);
Heinrich Schuchardt3da0b282020-12-06 13:00:15 +01001958
1959 ret = EFI_CALL(efi_locate_device_path(
1960 &efi_guid_load_file_protocol, &dp, &device));
1961 if (ret == EFI_SUCCESS) {
1962 guid = &efi_guid_load_file_protocol;
1963 } else if (!boot_policy) {
1964 guid = &efi_guid_load_file2_protocol;
1965 ret = EFI_CALL(efi_locate_device_path(guid, &dp, &device));
1966 }
1967 if (ret != EFI_SUCCESS)
1968 return EFI_NOT_FOUND;
1969 ret = EFI_CALL(efi_handle_protocol(device, guid,
1970 (void **)&load_file_protocol));
1971 if (ret != EFI_SUCCESS)
1972 return EFI_NOT_FOUND;
1973 buffer_size = 0;
1974 ret = load_file_protocol->load_file(load_file_protocol, dp,
1975 boot_policy, &buffer_size,
1976 NULL);
1977 if (ret != EFI_BUFFER_TOO_SMALL)
1978 goto out;
1979 pages = efi_size_in_pages(buffer_size);
1980 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, EFI_BOOT_SERVICES_DATA,
1981 pages, &addr);
1982 if (ret != EFI_SUCCESS) {
1983 ret = EFI_OUT_OF_RESOURCES;
1984 goto out;
1985 }
1986 ret = EFI_CALL(load_file_protocol->load_file(
1987 load_file_protocol, dp, boot_policy,
1988 &buffer_size, (void *)(uintptr_t)addr));
1989 if (ret != EFI_SUCCESS)
1990 efi_free_pages(addr, pages);
1991out:
Heinrich Schuchardt6e8c28c2021-01-20 22:57:46 +01001992 EFI_CALL(efi_close_protocol(device, guid, efi_root, NULL));
Heinrich Schuchardt3da0b282020-12-06 13:00:15 +01001993 if (ret == EFI_SUCCESS) {
1994 *buffer = (void *)(uintptr_t)addr;
1995 *size = buffer_size;
1996 }
1997
1998 return ret;
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001999}
2000
2001/**
Mario Six78a88f72018-07-10 08:40:17 +02002002 * efi_load_image() - load an EFI image into memory
2003 * @boot_policy: true for request originating from the boot manager
2004 * @parent_image: the caller's image handle
2005 * @file_path: the path of the image to load
2006 * @source_buffer: memory location from which the image is installed
2007 * @source_size: size of the memory area from which the image is installed
2008 * @image_handle: handle for the newly installed image
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002009 *
2010 * This function implements the LoadImage service.
Mario Six78a88f72018-07-10 08:40:17 +02002011 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002012 * See the Unified Extensible Firmware Interface (UEFI) specification
2013 * for details.
2014 *
Mario Six78a88f72018-07-10 08:40:17 +02002015 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002016 */
AKASHI Takahirod7e0b012019-03-05 14:53:31 +09002017efi_status_t EFIAPI efi_load_image(bool boot_policy,
2018 efi_handle_t parent_image,
2019 struct efi_device_path *file_path,
2020 void *source_buffer,
2021 efi_uintn_t source_size,
2022 efi_handle_t *image_handle)
Alexander Grafbee91162016-03-04 01:09:59 +01002023{
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01002024 struct efi_device_path *dp, *fp;
Tom Rini1c3b2f42018-09-30 10:38:15 -04002025 struct efi_loaded_image *info = NULL;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02002026 struct efi_loaded_image_obj **image_obj =
2027 (struct efi_loaded_image_obj **)image_handle;
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01002028 efi_status_t ret;
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002029 void *dest_buffer;
Alexander Grafbee91162016-03-04 01:09:59 +01002030
Heinrich Schuchardt7fb96a12018-04-03 22:29:30 +02002031 EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
Alexander Grafbee91162016-03-04 01:09:59 +01002032 file_path, source_buffer, source_size, image_handle);
Rob Clark838ee4b2017-09-13 18:05:35 -04002033
Heinrich Schuchardte4afcb22019-06-11 18:52:33 +02002034 if (!image_handle || (!source_buffer && !file_path) ||
2035 !efi_search_obj(parent_image) ||
2036 /* The parent image handle must refer to a loaded image */
2037 !parent_image->type) {
Heinrich Schuchardt84a918e2019-05-05 16:55:06 +02002038 ret = EFI_INVALID_PARAMETER;
2039 goto error;
2040 }
Heinrich Schuchardt28a4fd42018-03-07 02:40:51 +01002041
Rob Clark838ee4b2017-09-13 18:05:35 -04002042 if (!source_buffer) {
Heinrich Schuchardtc06c55b2020-12-04 09:27:41 +01002043 ret = efi_load_image_from_path(boot_policy, file_path,
2044 &dest_buffer, &source_size);
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01002045 if (ret != EFI_SUCCESS)
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01002046 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04002047 } else {
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002048 dest_buffer = source_buffer;
Rob Clark838ee4b2017-09-13 18:05:35 -04002049 }
Heinrich Schuchardt1e15a9c2019-04-20 19:24:43 +00002050 /* split file_path which contains both the device and file parts */
2051 efi_dp_split_file_path(file_path, &dp, &fp);
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01002052 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002053 if (ret == EFI_SUCCESS)
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09002054 ret = efi_load_pe(*image_obj, dest_buffer, source_size, info);
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002055 if (!source_buffer)
2056 /* Release buffer to which file was loaded */
2057 efi_free_pages((uintptr_t)dest_buffer,
2058 efi_size_in_pages(source_size));
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09002059 if (ret == EFI_SUCCESS || ret == EFI_SECURITY_VIOLATION) {
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002060 info->system_table = &systab;
2061 info->parent_handle = parent_image;
2062 } else {
2063 /* The image is invalid. Release all associated resources. */
2064 efi_delete_handle(*image_handle);
2065 *image_handle = NULL;
2066 free(info);
2067 }
Heinrich Schuchardt28a4fd42018-03-07 02:40:51 +01002068error:
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01002069 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002070}
2071
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002072/**
Alexander Graff31239a2018-11-15 21:23:47 +01002073 * efi_exit_caches() - fix up caches for EFI payloads if necessary
2074 */
2075static void efi_exit_caches(void)
2076{
Heinrich Schuchardt6f3badb2019-07-22 22:04:36 +02002077#if defined(CONFIG_EFI_GRUB_ARM32_WORKAROUND)
Alexander Graff31239a2018-11-15 21:23:47 +01002078 /*
Heinrich Schuchardt6f3badb2019-07-22 22:04:36 +02002079 * Boooting Linux via GRUB prior to version 2.04 fails on 32bit ARM if
2080 * caches are enabled.
2081 *
2082 * TODO:
2083 * According to the UEFI spec caches that can be managed via CP15
2084 * operations should be enabled. Caches requiring platform information
2085 * to manage should be disabled. This should not happen in
2086 * ExitBootServices() but before invoking any UEFI binary is invoked.
2087 *
2088 * We want to keep the current workaround while GRUB prior to version
2089 * 2.04 is still in use.
Alexander Graff31239a2018-11-15 21:23:47 +01002090 */
Heinrich Schuchardt6f3badb2019-07-22 22:04:36 +02002091 cleanup_before_linux();
Alexander Graff31239a2018-11-15 21:23:47 +01002092#endif
2093}
2094
2095/**
Mario Six78a88f72018-07-10 08:40:17 +02002096 * efi_exit_boot_services() - stop all boot services
2097 * @image_handle: handle of the loaded image
2098 * @map_key: key of the memory map
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002099 *
2100 * This function implements the ExitBootServices service.
Mario Six78a88f72018-07-10 08:40:17 +02002101 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002102 * See the Unified Extensible Firmware Interface (UEFI) specification
2103 * for details.
2104 *
Mario Six78a88f72018-07-10 08:40:17 +02002105 * All timer events are disabled. For exit boot services events the
2106 * notification function is called. The boot services are disabled in the
2107 * system table.
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002108 *
Mario Six78a88f72018-07-10 08:40:17 +02002109 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002110 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002111static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
Heinrich Schuchardtb015ab52019-05-05 21:58:35 +02002112 efi_uintn_t map_key)
Alexander Grafbee91162016-03-04 01:09:59 +01002113{
Heinrich Schuchardt14b40482019-07-11 20:15:09 +02002114 struct efi_event *evt, *next_event;
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002115 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02002116
Heinrich Schuchardtb015ab52019-05-05 21:58:35 +02002117 EFI_ENTRY("%p, %zx", image_handle, map_key);
Alexander Grafbee91162016-03-04 01:09:59 +01002118
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +02002119 /* Check that the caller has read the current memory map */
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002120 if (map_key != efi_memory_map_key) {
2121 ret = EFI_INVALID_PARAMETER;
2122 goto out;
2123 }
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +02002124
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002125 /* Check if ExitBootServices has already been called */
2126 if (!systab.boottime)
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002127 goto out;
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002128
Heinrich Schuchardt43eaf5b2021-11-16 18:46:27 +01002129 /* Notify EFI_EVENT_GROUP_BEFORE_EXIT_BOOT_SERVICES event group. */
2130 list_for_each_entry(evt, &efi_events, link) {
2131 if (evt->group &&
2132 !guidcmp(evt->group,
2133 &efi_guid_event_group_before_exit_boot_services)) {
2134 efi_signal_event(evt);
2135 break;
2136 }
2137 }
2138
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02002139 /* Stop all timer related activities */
2140 timers_enabled = false;
2141
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01002142 /* Add related events to the event group */
2143 list_for_each_entry(evt, &efi_events, link) {
2144 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
2145 evt->group = &efi_guid_event_group_exit_boot_services;
2146 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02002147 /* Notify that ExitBootServices is invoked. */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01002148 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01002149 if (evt->group &&
2150 !guidcmp(evt->group,
2151 &efi_guid_event_group_exit_boot_services)) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02002152 efi_signal_event(evt);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01002153 break;
2154 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02002155 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02002156
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02002157 /* Make sure that notification functions are not called anymore */
2158 efi_tpl = TPL_HIGH_LEVEL;
2159
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +02002160 /* Notify variable services */
2161 efi_variables_boot_exit_notify();
Rob Clarkad644e72017-09-13 18:05:37 -04002162
Heinrich Schuchardt14b40482019-07-11 20:15:09 +02002163 /* Remove all events except EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE */
2164 list_for_each_entry_safe(evt, next_event, &efi_events, link) {
2165 if (evt->type != EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE)
2166 list_del(&evt->link);
2167 }
2168
Heinrich Schuchardtfccd3d92020-11-12 21:26:28 +01002169 if (!efi_st_keep_devices) {
Tom Rini3f73e792021-11-19 16:33:04 -05002170 bootm_disable_interrupts();
Heinrich Schuchardtdb6288d2020-12-27 15:33:09 +01002171 if (IS_ENABLED(CONFIG_USB_DEVICE))
Heinrich Schuchardtfccd3d92020-11-12 21:26:28 +01002172 udc_disconnect();
2173 board_quiesce_devices();
2174 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
2175 }
Alexander Grafb7b84102016-11-17 01:02:57 +01002176
Heinrich Schuchardt7f951042019-07-05 17:42:16 +02002177 /* Patch out unsupported runtime function */
2178 efi_runtime_detach();
2179
Alexander Graff31239a2018-11-15 21:23:47 +01002180 /* Fix up caches for EFI payloads if necessary */
2181 efi_exit_caches();
2182
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02002183 /* Disable boot time services */
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002184 systab.con_in_handle = NULL;
2185 systab.con_in = NULL;
2186 systab.con_out_handle = NULL;
2187 systab.con_out = NULL;
2188 systab.stderr_handle = NULL;
2189 systab.std_err = NULL;
2190 systab.boottime = NULL;
2191
2192 /* Recalculate CRC32 */
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02002193 efi_update_table_header_crc32(&systab.hdr);
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002194
Alexander Grafbee91162016-03-04 01:09:59 +01002195 /* Give the payload some time to boot */
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002196 efi_set_watchdog(0);
Alexander Grafbee91162016-03-04 01:09:59 +01002197 WATCHDOG_RESET();
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002198out:
Masahisa Kojimafdff03e2021-08-13 16:12:41 +09002199 if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
2200 if (ret != EFI_SUCCESS)
2201 efi_tcg2_notify_exit_boot_services_failed();
2202 }
2203
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002204 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002205}
2206
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002207/**
Mario Six78a88f72018-07-10 08:40:17 +02002208 * efi_get_next_monotonic_count() - get next value of the counter
2209 * @count: returned value of the counter
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002210 *
2211 * This function implements the NextMonotonicCount service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002212 *
Mario Six78a88f72018-07-10 08:40:17 +02002213 * See the Unified Extensible Firmware Interface (UEFI) specification for
2214 * details.
2215 *
2216 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002217 */
Alexander Grafbee91162016-03-04 01:09:59 +01002218static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
2219{
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002220 static uint64_t mono;
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02002221 efi_status_t ret;
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002222
Alexander Grafbee91162016-03-04 01:09:59 +01002223 EFI_ENTRY("%p", count);
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02002224 if (!count) {
2225 ret = EFI_INVALID_PARAMETER;
2226 goto out;
2227 }
Alexander Grafbee91162016-03-04 01:09:59 +01002228 *count = mono++;
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02002229 ret = EFI_SUCCESS;
2230out:
2231 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002232}
2233
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002234/**
Mario Six78a88f72018-07-10 08:40:17 +02002235 * efi_stall() - sleep
2236 * @microseconds: period to sleep in microseconds
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002237 *
Mario Six78a88f72018-07-10 08:40:17 +02002238 * This function implements the Stall service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002239 *
Mario Six78a88f72018-07-10 08:40:17 +02002240 * See the Unified Extensible Firmware Interface (UEFI) specification for
2241 * details.
2242 *
2243 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002244 */
Alexander Grafbee91162016-03-04 01:09:59 +01002245static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
2246{
Heinrich Schuchardt22f23db2019-06-02 21:12:17 +02002247 u64 end_tick;
2248
Alexander Grafbee91162016-03-04 01:09:59 +01002249 EFI_ENTRY("%ld", microseconds);
Heinrich Schuchardt22f23db2019-06-02 21:12:17 +02002250
2251 end_tick = get_ticks() + usec_to_tick(microseconds);
2252 while (get_ticks() < end_tick)
2253 efi_timer_check();
2254
Alexander Grafbee91162016-03-04 01:09:59 +01002255 return EFI_EXIT(EFI_SUCCESS);
2256}
2257
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002258/**
Mario Six78a88f72018-07-10 08:40:17 +02002259 * efi_set_watchdog_timer() - reset the watchdog timer
2260 * @timeout: seconds before reset by watchdog
2261 * @watchdog_code: code to be logged when resetting
2262 * @data_size: size of buffer in bytes
2263 * @watchdog_data: buffer with data describing the reset reason
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002264 *
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002265 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002266 *
Mario Six78a88f72018-07-10 08:40:17 +02002267 * See the Unified Extensible Firmware Interface (UEFI) specification for
2268 * details.
2269 *
2270 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002271 */
Alexander Grafbee91162016-03-04 01:09:59 +01002272static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
2273 uint64_t watchdog_code,
2274 unsigned long data_size,
2275 uint16_t *watchdog_data)
2276{
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09002277 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
Alexander Grafbee91162016-03-04 01:09:59 +01002278 data_size, watchdog_data);
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002279 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafbee91162016-03-04 01:09:59 +01002280}
2281
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002282/**
Mario Six78a88f72018-07-10 08:40:17 +02002283 * efi_close_protocol() - close a protocol
2284 * @handle: handle on which the protocol shall be closed
2285 * @protocol: GUID of the protocol to close
2286 * @agent_handle: handle of the driver
2287 * @controller_handle: handle of the controller
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002288 *
2289 * This function implements the CloseProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002290 *
Mario Six78a88f72018-07-10 08:40:17 +02002291 * See the Unified Extensible Firmware Interface (UEFI) specification for
2292 * details.
2293 *
2294 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002295 */
AKASHI Takahirob51ec632020-03-17 11:12:36 +09002296efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
2297 const efi_guid_t *protocol,
2298 efi_handle_t agent_handle,
2299 efi_handle_t controller_handle)
Alexander Grafbee91162016-03-04 01:09:59 +01002300{
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002301 struct efi_handler *handler;
2302 struct efi_open_protocol_info_item *item;
2303 struct efi_open_protocol_info_item *pos;
2304 efi_status_t r;
2305
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01002306 EFI_ENTRY("%p, %pUs, %p, %p", handle, protocol, agent_handle,
Alexander Grafbee91162016-03-04 01:09:59 +01002307 controller_handle);
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002308
Heinrich Schuchardtec163fa2019-05-05 10:37:51 +02002309 if (!efi_search_obj(agent_handle) ||
2310 (controller_handle && !efi_search_obj(controller_handle))) {
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002311 r = EFI_INVALID_PARAMETER;
2312 goto out;
2313 }
2314 r = efi_search_protocol(handle, protocol, &handler);
2315 if (r != EFI_SUCCESS)
2316 goto out;
2317
2318 r = EFI_NOT_FOUND;
2319 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2320 if (item->info.agent_handle == agent_handle &&
2321 item->info.controller_handle == controller_handle) {
2322 efi_delete_open_info(item);
2323 r = EFI_SUCCESS;
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002324 }
2325 }
2326out:
2327 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002328}
2329
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002330/**
Mario Six78a88f72018-07-10 08:40:17 +02002331 * efi_open_protocol_information() - provide information about then open status
2332 * of a protocol on a handle
2333 * @handle: handle for which the information shall be retrieved
2334 * @protocol: GUID of the protocol
2335 * @entry_buffer: buffer to receive the open protocol information
2336 * @entry_count: number of entries available in the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002337 *
2338 * This function implements the OpenProtocolInformation service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002339 *
Mario Six78a88f72018-07-10 08:40:17 +02002340 * See the Unified Extensible Firmware Interface (UEFI) specification for
2341 * details.
2342 *
2343 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002344 */
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002345static efi_status_t EFIAPI efi_open_protocol_information(
2346 efi_handle_t handle, const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002347 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002348 efi_uintn_t *entry_count)
Alexander Grafbee91162016-03-04 01:09:59 +01002349{
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002350 unsigned long buffer_size;
2351 unsigned long count;
2352 struct efi_handler *handler;
2353 struct efi_open_protocol_info_item *item;
2354 efi_status_t r;
2355
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01002356 EFI_ENTRY("%p, %pUs, %p, %p", handle, protocol, entry_buffer,
Alexander Grafbee91162016-03-04 01:09:59 +01002357 entry_count);
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002358
2359 /* Check parameters */
2360 if (!entry_buffer) {
2361 r = EFI_INVALID_PARAMETER;
2362 goto out;
2363 }
2364 r = efi_search_protocol(handle, protocol, &handler);
2365 if (r != EFI_SUCCESS)
2366 goto out;
2367
2368 /* Count entries */
2369 count = 0;
2370 list_for_each_entry(item, &handler->open_infos, link) {
2371 if (item->info.open_count)
2372 ++count;
2373 }
2374 *entry_count = count;
2375 *entry_buffer = NULL;
2376 if (!count) {
2377 r = EFI_SUCCESS;
2378 goto out;
2379 }
2380
2381 /* Copy entries */
2382 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002383 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002384 (void **)entry_buffer);
2385 if (r != EFI_SUCCESS)
2386 goto out;
2387 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2388 if (item->info.open_count)
2389 (*entry_buffer)[--count] = item->info;
2390 }
2391out:
2392 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002393}
2394
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002395/**
Mario Six78a88f72018-07-10 08:40:17 +02002396 * efi_protocols_per_handle() - get protocols installed on a handle
2397 * @handle: handle for which the information is retrieved
2398 * @protocol_buffer: buffer with protocol GUIDs
2399 * @protocol_buffer_count: number of entries in the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002400 *
2401 * This function implements the ProtocolsPerHandleService.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002402 *
Mario Six78a88f72018-07-10 08:40:17 +02002403 * See the Unified Extensible Firmware Interface (UEFI) specification for
2404 * details.
2405 *
2406 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002407 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002408static efi_status_t EFIAPI efi_protocols_per_handle(
2409 efi_handle_t handle, efi_guid_t ***protocol_buffer,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002410 efi_uintn_t *protocol_buffer_count)
Alexander Grafbee91162016-03-04 01:09:59 +01002411{
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002412 unsigned long buffer_size;
2413 struct efi_object *efiobj;
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002414 struct list_head *protocol_handle;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002415 efi_status_t r;
2416
Alexander Grafbee91162016-03-04 01:09:59 +01002417 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2418 protocol_buffer_count);
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002419
2420 if (!handle || !protocol_buffer || !protocol_buffer_count)
2421 return EFI_EXIT(EFI_INVALID_PARAMETER);
2422
2423 *protocol_buffer = NULL;
Rob Clark661c8322017-07-20 07:59:39 -04002424 *protocol_buffer_count = 0;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002425
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002426 efiobj = efi_search_obj(handle);
2427 if (!efiobj)
2428 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002429
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002430 /* Count protocols */
2431 list_for_each(protocol_handle, &efiobj->protocols) {
2432 ++*protocol_buffer_count;
2433 }
2434
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02002435 /* Copy GUIDs */
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002436 if (*protocol_buffer_count) {
2437 size_t j = 0;
2438
2439 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002440 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002441 (void **)protocol_buffer);
2442 if (r != EFI_SUCCESS)
2443 return EFI_EXIT(r);
2444 list_for_each(protocol_handle, &efiobj->protocols) {
2445 struct efi_handler *protocol;
2446
2447 protocol = list_entry(protocol_handle,
2448 struct efi_handler, link);
2449 (*protocol_buffer)[j] = (void *)protocol->guid;
2450 ++j;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002451 }
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002452 }
2453
2454 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002455}
2456
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002457/**
Mario Six78a88f72018-07-10 08:40:17 +02002458 * efi_locate_handle_buffer() - locate handles implementing a protocol
2459 * @search_type: selection criterion
2460 * @protocol: GUID of the protocol
2461 * @search_key: registration key
2462 * @no_handles: number of returned handles
2463 * @buffer: buffer with the returned handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002464 *
2465 * This function implements the LocateHandleBuffer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002466 *
Mario Six78a88f72018-07-10 08:40:17 +02002467 * See the Unified Extensible Firmware Interface (UEFI) specification for
2468 * details.
2469 *
2470 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002471 */
AKASHI Takahirob51ec632020-03-17 11:12:36 +09002472efi_status_t EFIAPI efi_locate_handle_buffer(
Alexander Grafbee91162016-03-04 01:09:59 +01002473 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002474 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002475 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafbee91162016-03-04 01:09:59 +01002476{
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002477 efi_status_t r;
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002478 efi_uintn_t buffer_size = 0;
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002479
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01002480 EFI_ENTRY("%d, %pUs, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafbee91162016-03-04 01:09:59 +01002481 no_handles, buffer);
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002482
2483 if (!no_handles || !buffer) {
2484 r = EFI_INVALID_PARAMETER;
2485 goto out;
2486 }
2487 *no_handles = 0;
2488 *buffer = NULL;
2489 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2490 *buffer);
2491 if (r != EFI_BUFFER_TOO_SMALL)
2492 goto out;
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002493 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002494 (void **)buffer);
2495 if (r != EFI_SUCCESS)
2496 goto out;
2497 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2498 *buffer);
2499 if (r == EFI_SUCCESS)
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002500 *no_handles = buffer_size / sizeof(efi_handle_t);
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002501out:
2502 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002503}
2504
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002505/**
Mario Six78a88f72018-07-10 08:40:17 +02002506 * efi_locate_protocol() - find an interface implementing a protocol
2507 * @protocol: GUID of the protocol
2508 * @registration: registration key passed to the notification function
2509 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002510 *
2511 * This function implements the LocateProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002512 *
Mario Six78a88f72018-07-10 08:40:17 +02002513 * See the Unified Extensible Firmware Interface (UEFI) specification for
2514 * details.
2515 *
2516 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002517 */
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002518static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002519 void *registration,
2520 void **protocol_interface)
2521{
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002522 struct efi_handler *handler;
Heinrich Schuchardt9172cd92017-10-26 19:25:57 +02002523 efi_status_t ret;
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002524 struct efi_object *efiobj;
Alexander Grafbee91162016-03-04 01:09:59 +01002525
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01002526 EFI_ENTRY("%pUs, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002527
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002528 /*
2529 * The UEFI spec explicitly requires a protocol even if a registration
2530 * key is provided. This differs from the logic in LocateHandle().
2531 */
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002532 if (!protocol || !protocol_interface)
2533 return EFI_EXIT(EFI_INVALID_PARAMETER);
2534
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002535 if (registration) {
2536 struct efi_register_notify_event *event;
2537 struct efi_protocol_notification *handle;
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002538
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002539 event = efi_check_register_notify_event(registration);
2540 if (!event)
2541 return EFI_EXIT(EFI_INVALID_PARAMETER);
2542 /*
2543 * The UEFI spec requires to return EFI_NOT_FOUND if no
2544 * protocol instance matches protocol and registration.
2545 * So let's do the same for a mismatch between protocol and
2546 * registration.
2547 */
2548 if (guidcmp(&event->protocol, protocol))
2549 goto not_found;
2550 if (list_empty(&event->handles))
2551 goto not_found;
2552 handle = list_first_entry(&event->handles,
2553 struct efi_protocol_notification,
2554 link);
2555 efiobj = handle->handle;
2556 list_del(&handle->link);
2557 free(handle);
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02002558 ret = efi_search_protocol(efiobj, protocol, &handler);
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002559 if (ret == EFI_SUCCESS)
2560 goto found;
2561 } else {
2562 list_for_each_entry(efiobj, &efi_obj_list, link) {
2563 ret = efi_search_protocol(efiobj, protocol, &handler);
2564 if (ret == EFI_SUCCESS)
2565 goto found;
Alexander Grafbee91162016-03-04 01:09:59 +01002566 }
2567 }
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002568not_found:
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002569 *protocol_interface = NULL;
Alexander Grafbee91162016-03-04 01:09:59 +01002570 return EFI_EXIT(EFI_NOT_FOUND);
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002571found:
2572 *protocol_interface = handler->protocol_interface;
2573 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002574}
2575
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002576/**
Mario Six78a88f72018-07-10 08:40:17 +02002577 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2578 * interfaces
2579 * @handle: handle on which the protocol interfaces shall be installed
2580 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2581 * interfaces
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002582 *
2583 * This function implements the MultipleProtocolInterfaces service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002584 *
Mario Six78a88f72018-07-10 08:40:17 +02002585 * See the Unified Extensible Firmware Interface (UEFI) specification for
2586 * details.
2587 *
2588 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002589 */
Heinrich Schuchardt7657ae12019-04-12 06:59:49 +02002590efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002591 (efi_handle_t *handle, ...)
Alexander Grafbee91162016-03-04 01:09:59 +01002592{
2593 EFI_ENTRY("%p", handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002594
Alexander Grafbeb077a2018-06-18 17:23:05 +02002595 efi_va_list argptr;
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002596 const efi_guid_t *protocol;
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002597 void *protocol_interface;
Heinrich Schuchardt226cddb2019-05-16 21:54:04 +02002598 efi_handle_t old_handle;
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002599 efi_status_t r = EFI_SUCCESS;
2600 int i = 0;
2601
2602 if (!handle)
2603 return EFI_EXIT(EFI_INVALID_PARAMETER);
2604
Alexander Grafbeb077a2018-06-18 17:23:05 +02002605 efi_va_start(argptr, handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002606 for (;;) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002607 protocol = efi_va_arg(argptr, efi_guid_t*);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002608 if (!protocol)
2609 break;
Alexander Grafbeb077a2018-06-18 17:23:05 +02002610 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt226cddb2019-05-16 21:54:04 +02002611 /* Check that a device path has not been installed before */
2612 if (!guidcmp(protocol, &efi_guid_device_path)) {
2613 struct efi_device_path *dp = protocol_interface;
2614
2615 r = EFI_CALL(efi_locate_device_path(protocol, &dp,
2616 &old_handle));
Heinrich Schuchardt20562892019-05-20 19:55:18 +00002617 if (r == EFI_SUCCESS &&
2618 dp->type == DEVICE_PATH_TYPE_END) {
2619 EFI_PRINT("Path %pD already installed\n",
2620 protocol_interface);
Heinrich Schuchardt226cddb2019-05-16 21:54:04 +02002621 r = EFI_ALREADY_STARTED;
2622 break;
2623 }
2624 }
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01002625 r = EFI_CALL(efi_install_protocol_interface(
2626 handle, protocol,
2627 EFI_NATIVE_INTERFACE,
2628 protocol_interface));
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002629 if (r != EFI_SUCCESS)
2630 break;
2631 i++;
2632 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002633 efi_va_end(argptr);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002634 if (r == EFI_SUCCESS)
2635 return EFI_EXIT(r);
2636
Heinrich Schuchardt62471e42017-10-26 19:25:42 +02002637 /* If an error occurred undo all changes. */
Alexander Grafbeb077a2018-06-18 17:23:05 +02002638 efi_va_start(argptr, handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002639 for (; i; --i) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002640 protocol = efi_va_arg(argptr, efi_guid_t*);
2641 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002642 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
Heinrich Schuchardtcd534082017-11-06 21:17:45 +01002643 protocol_interface));
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002644 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002645 efi_va_end(argptr);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002646
2647 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002648}
2649
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002650/**
Mario Six78a88f72018-07-10 08:40:17 +02002651 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2652 * interfaces
2653 * @handle: handle from which the protocol interfaces shall be removed
2654 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2655 * interfaces
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002656 *
2657 * This function implements the UninstallMultipleProtocolInterfaces service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002658 *
Mario Six78a88f72018-07-10 08:40:17 +02002659 * See the Unified Extensible Firmware Interface (UEFI) specification for
2660 * details.
2661 *
2662 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002663 */
Alexander Grafbee91162016-03-04 01:09:59 +01002664static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002665 efi_handle_t handle, ...)
Alexander Grafbee91162016-03-04 01:09:59 +01002666{
2667 EFI_ENTRY("%p", handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002668
Alexander Grafbeb077a2018-06-18 17:23:05 +02002669 efi_va_list argptr;
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002670 const efi_guid_t *protocol;
2671 void *protocol_interface;
2672 efi_status_t r = EFI_SUCCESS;
2673 size_t i = 0;
2674
2675 if (!handle)
2676 return EFI_EXIT(EFI_INVALID_PARAMETER);
2677
Alexander Grafbeb077a2018-06-18 17:23:05 +02002678 efi_va_start(argptr, handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002679 for (;;) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002680 protocol = efi_va_arg(argptr, efi_guid_t*);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002681 if (!protocol)
2682 break;
Alexander Grafbeb077a2018-06-18 17:23:05 +02002683 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02002684 r = efi_uninstall_protocol(handle, protocol,
2685 protocol_interface);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002686 if (r != EFI_SUCCESS)
2687 break;
2688 i++;
2689 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002690 efi_va_end(argptr);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02002691 if (r == EFI_SUCCESS) {
2692 /* If the last protocol has been removed, delete the handle. */
2693 if (list_empty(&handle->protocols)) {
2694 list_del(&handle->link);
2695 free(handle);
2696 }
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002697 return EFI_EXIT(r);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02002698 }
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002699
2700 /* If an error occurred undo all changes. */
Alexander Grafbeb077a2018-06-18 17:23:05 +02002701 efi_va_start(argptr, handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002702 for (; i; --i) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002703 protocol = efi_va_arg(argptr, efi_guid_t*);
2704 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002705 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2706 EFI_NATIVE_INTERFACE,
2707 protocol_interface));
2708 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002709 efi_va_end(argptr);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002710
Heinrich Schuchardte2373022018-09-24 19:57:27 +02002711 /* In case of an error always return EFI_INVALID_PARAMETER */
2712 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafbee91162016-03-04 01:09:59 +01002713}
2714
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002715/**
Mario Six78a88f72018-07-10 08:40:17 +02002716 * efi_calculate_crc32() - calculate cyclic redundancy code
2717 * @data: buffer with data
2718 * @data_size: size of buffer in bytes
2719 * @crc32_p: cyclic redundancy code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002720 *
2721 * This function implements the CalculateCrc32 service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002722 *
Mario Six78a88f72018-07-10 08:40:17 +02002723 * See the Unified Extensible Firmware Interface (UEFI) specification for
2724 * details.
2725 *
2726 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002727 */
Heinrich Schuchardt8aa83602018-07-07 15:36:04 +02002728static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2729 efi_uintn_t data_size,
2730 u32 *crc32_p)
Alexander Grafbee91162016-03-04 01:09:59 +01002731{
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002732 efi_status_t ret = EFI_SUCCESS;
2733
Heinrich Schuchardt8aa83602018-07-07 15:36:04 +02002734 EFI_ENTRY("%p, %zu", data, data_size);
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002735 if (!data || !data_size || !crc32_p) {
2736 ret = EFI_INVALID_PARAMETER;
2737 goto out;
2738 }
Alexander Grafbee91162016-03-04 01:09:59 +01002739 *crc32_p = crc32(0, data, data_size);
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002740out:
2741 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002742}
2743
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002744/**
Mario Six78a88f72018-07-10 08:40:17 +02002745 * efi_copy_mem() - copy memory
2746 * @destination: destination of the copy operation
2747 * @source: source of the copy operation
2748 * @length: number of bytes to copy
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002749 *
2750 * This function implements the CopyMem service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002751 *
Mario Six78a88f72018-07-10 08:40:17 +02002752 * See the Unified Extensible Firmware Interface (UEFI) specification for
2753 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002754 */
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002755static void EFIAPI efi_copy_mem(void *destination, const void *source,
2756 size_t length)
Alexander Grafbee91162016-03-04 01:09:59 +01002757{
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002758 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Heinrich Schuchardt0bc81a72019-01-09 21:41:13 +01002759 memmove(destination, source, length);
Heinrich Schuchardtf7c78172017-10-05 16:35:51 +02002760 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002761}
2762
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002763/**
Mario Six78a88f72018-07-10 08:40:17 +02002764 * efi_set_mem() - Fill memory with a byte value.
2765 * @buffer: buffer to fill
2766 * @size: size of buffer in bytes
2767 * @value: byte to copy to the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002768 *
2769 * This function implements the SetMem service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002770 *
Mario Six78a88f72018-07-10 08:40:17 +02002771 * See the Unified Extensible Firmware Interface (UEFI) specification for
2772 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002773 */
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002774static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafbee91162016-03-04 01:09:59 +01002775{
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002776 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafbee91162016-03-04 01:09:59 +01002777 memset(buffer, value, size);
Heinrich Schuchardtf7c78172017-10-05 16:35:51 +02002778 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002779}
2780
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002781/**
Mario Six78a88f72018-07-10 08:40:17 +02002782 * efi_protocol_open() - open protocol interface on a handle
2783 * @handler: handler of a protocol
2784 * @protocol_interface: interface implementing the protocol
2785 * @agent_handle: handle of the driver
2786 * @controller_handle: handle of the controller
2787 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002788 *
Mario Six78a88f72018-07-10 08:40:17 +02002789 * Return: status code
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002790 */
Heinrich Schuchardtf9ad2402020-01-10 12:33:59 +01002791efi_status_t efi_protocol_open(
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002792 struct efi_handler *handler,
2793 void **protocol_interface, void *agent_handle,
2794 void *controller_handle, uint32_t attributes)
2795{
2796 struct efi_open_protocol_info_item *item;
2797 struct efi_open_protocol_info_entry *match = NULL;
2798 bool opened_by_driver = false;
2799 bool opened_exclusive = false;
2800
2801 /* If there is no agent, only return the interface */
2802 if (!agent_handle)
2803 goto out;
2804
2805 /* For TEST_PROTOCOL ignore interface attribute */
2806 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2807 *protocol_interface = NULL;
2808
2809 /*
2810 * Check if the protocol is already opened by a driver with the same
2811 * attributes or opened exclusively
2812 */
2813 list_for_each_entry(item, &handler->open_infos, link) {
2814 if (item->info.agent_handle == agent_handle) {
2815 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2816 (item->info.attributes == attributes))
2817 return EFI_ALREADY_STARTED;
Heinrich Schuchardt399a39e2019-05-30 14:16:31 +02002818 } else {
2819 if (item->info.attributes &
2820 EFI_OPEN_PROTOCOL_BY_DRIVER)
2821 opened_by_driver = true;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002822 }
2823 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2824 opened_exclusive = true;
2825 }
2826
2827 /* Only one controller can open the protocol exclusively */
Heinrich Schuchardt399a39e2019-05-30 14:16:31 +02002828 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2829 if (opened_exclusive)
2830 return EFI_ACCESS_DENIED;
2831 } else if (attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
2832 if (opened_exclusive || opened_by_driver)
2833 return EFI_ACCESS_DENIED;
2834 }
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002835
2836 /* Prepare exclusive opening */
2837 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2838 /* Try to disconnect controllers */
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002839disconnect_next:
2840 opened_by_driver = false;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002841 list_for_each_entry(item, &handler->open_infos, link) {
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002842 efi_status_t ret;
2843
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002844 if (item->info.attributes ==
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002845 EFI_OPEN_PROTOCOL_BY_DRIVER) {
2846 ret = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002847 item->info.controller_handle,
2848 item->info.agent_handle,
2849 NULL));
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002850 if (ret == EFI_SUCCESS)
2851 /*
2852 * Child controllers may have been
2853 * removed from the open_infos list. So
2854 * let's restart the loop.
2855 */
2856 goto disconnect_next;
2857 else
2858 opened_by_driver = true;
2859 }
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002860 }
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002861 /* Only one driver can be connected */
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002862 if (opened_by_driver)
2863 return EFI_ACCESS_DENIED;
2864 }
2865
2866 /* Find existing entry */
2867 list_for_each_entry(item, &handler->open_infos, link) {
2868 if (item->info.agent_handle == agent_handle &&
Heinrich Schuchardtb4863ba2019-06-01 20:15:10 +02002869 item->info.controller_handle == controller_handle &&
2870 item->info.attributes == attributes)
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002871 match = &item->info;
2872 }
2873 /* None found, create one */
2874 if (!match) {
2875 match = efi_create_open_info(handler);
2876 if (!match)
2877 return EFI_OUT_OF_RESOURCES;
2878 }
2879
2880 match->agent_handle = agent_handle;
2881 match->controller_handle = controller_handle;
2882 match->attributes = attributes;
2883 match->open_count++;
2884
2885out:
2886 /* For TEST_PROTOCOL ignore interface attribute. */
2887 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2888 *protocol_interface = handler->protocol_interface;
2889
2890 return EFI_SUCCESS;
2891}
2892
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002893/**
Mario Six78a88f72018-07-10 08:40:17 +02002894 * efi_open_protocol() - open protocol interface on a handle
2895 * @handle: handle on which the protocol shall be opened
2896 * @protocol: GUID of the protocol
2897 * @protocol_interface: interface implementing the protocol
2898 * @agent_handle: handle of the driver
2899 * @controller_handle: handle of the controller
2900 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002901 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002902 * This function implements the OpenProtocol interface.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002903 *
Mario Six78a88f72018-07-10 08:40:17 +02002904 * See the Unified Extensible Firmware Interface (UEFI) specification for
2905 * details.
2906 *
2907 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002908 */
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002909static efi_status_t EFIAPI efi_open_protocol
2910 (efi_handle_t handle, const efi_guid_t *protocol,
2911 void **protocol_interface, efi_handle_t agent_handle,
2912 efi_handle_t controller_handle, uint32_t attributes)
Alexander Grafbee91162016-03-04 01:09:59 +01002913{
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01002914 struct efi_handler *handler;
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002915 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +01002916
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01002917 EFI_ENTRY("%p, %pUs, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002918 protocol_interface, agent_handle, controller_handle,
2919 attributes);
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02002920
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002921 if (!handle || !protocol ||
2922 (!protocol_interface && attributes !=
2923 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
2924 goto out;
2925 }
2926
2927 switch (attributes) {
2928 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2929 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2930 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2931 break;
2932 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2933 if (controller_handle == handle)
2934 goto out;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002935 /* fall-through */
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002936 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2937 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002938 /* Check that the controller handle is valid */
2939 if (!efi_search_obj(controller_handle))
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002940 goto out;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002941 /* fall-through */
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002942 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002943 /* Check that the agent handle is valid */
2944 if (!efi_search_obj(agent_handle))
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002945 goto out;
2946 break;
2947 default:
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02002948 goto out;
2949 }
2950
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01002951 r = efi_search_protocol(handle, protocol, &handler);
Heinrich Schuchardte7c3cd62019-05-05 11:24:53 +02002952 switch (r) {
2953 case EFI_SUCCESS:
2954 break;
2955 case EFI_NOT_FOUND:
2956 r = EFI_UNSUPPORTED;
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01002957 goto out;
Heinrich Schuchardte7c3cd62019-05-05 11:24:53 +02002958 default:
2959 goto out;
2960 }
Alexander Grafbee91162016-03-04 01:09:59 +01002961
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002962 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2963 controller_handle, attributes);
Alexander Grafbee91162016-03-04 01:09:59 +01002964out:
2965 return EFI_EXIT(r);
2966}
2967
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002968/**
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002969 * efi_start_image() - call the entry point of an image
2970 * @image_handle: handle of the image
2971 * @exit_data_size: size of the buffer
2972 * @exit_data: buffer to receive the exit data of the called image
2973 *
2974 * This function implements the StartImage service.
2975 *
2976 * See the Unified Extensible Firmware Interface (UEFI) specification for
2977 * details.
2978 *
2979 * Return: status code
2980 */
2981efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
2982 efi_uintn_t *exit_data_size,
2983 u16 **exit_data)
2984{
2985 struct efi_loaded_image_obj *image_obj =
2986 (struct efi_loaded_image_obj *)image_handle;
2987 efi_status_t ret;
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002988 void *info;
2989 efi_handle_t parent_image = current_image;
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01002990 efi_status_t exit_status;
2991 struct jmp_buf_data exit_jmp;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002992
2993 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
2994
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09002995 if (!efi_search_obj(image_handle))
2996 return EFI_EXIT(EFI_INVALID_PARAMETER);
2997
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002998 /* Check parameters */
Heinrich Schuchardt1d3e8dc2019-06-11 19:35:20 +02002999 if (image_obj->header.type != EFI_OBJECT_TYPE_LOADED_IMAGE)
3000 return EFI_EXIT(EFI_INVALID_PARAMETER);
3001
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09003002 if (image_obj->auth_status != EFI_IMAGE_AUTH_PASSED)
3003 return EFI_EXIT(EFI_SECURITY_VIOLATION);
3004
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003005 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
3006 &info, NULL, NULL,
3007 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3008 if (ret != EFI_SUCCESS)
3009 return EFI_EXIT(EFI_INVALID_PARAMETER);
3010
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003011 image_obj->exit_data_size = exit_data_size;
3012 image_obj->exit_data = exit_data;
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003013 image_obj->exit_status = &exit_status;
3014 image_obj->exit_jmp = &exit_jmp;
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003015
Masahisa Kojima8fc4e0b2021-08-13 16:12:40 +09003016 if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
3017 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION) {
Masahisa Kojimace3dbc52021-10-26 17:27:25 +09003018 ret = efi_tcg2_measure_efi_app_invocation(image_obj);
Masahisa Kojimaf9b51dc2021-12-07 14:15:33 +09003019 if (ret == EFI_SECURITY_VIOLATION) {
3020 /*
3021 * TCG2 Protocol is installed but no TPM device found,
3022 * this is not expected.
3023 */
3024 return EFI_EXIT(EFI_SECURITY_VIOLATION);
Masahisa Kojima8fc4e0b2021-08-13 16:12:40 +09003025 }
3026 }
3027 }
3028
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003029 /* call the image! */
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003030 if (setjmp(&exit_jmp)) {
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003031 /*
3032 * We called the entry point of the child image with EFI_CALL
3033 * in the lines below. The child image called the Exit() boot
3034 * service efi_exit() which executed the long jump that brought
3035 * us to the current line. This implies that the second half
3036 * of the EFI_CALL macro has not been executed.
3037 */
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +02003038#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003039 /*
3040 * efi_exit() called efi_restore_gd(). We have to undo this
3041 * otherwise __efi_entry_check() will put the wrong value into
3042 * app_gd.
3043 */
Heinrich Schuchardt4f7dc5f2020-05-27 01:58:30 +02003044 set_gd(app_gd);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003045#endif
3046 /*
3047 * To get ready to call EFI_EXIT below we have to execute the
3048 * missed out steps of EFI_CALL.
3049 */
3050 assert(__efi_entry_check());
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02003051 EFI_PRINT("%lu returned by started image\n",
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003052 (unsigned long)((uintptr_t)exit_status &
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02003053 ~EFI_ERROR_MASK));
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003054 current_image = parent_image;
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003055 return EFI_EXIT(exit_status);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003056 }
3057
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003058 current_image = image_handle;
Heinrich Schuchardtcd73aba2019-05-01 14:20:18 +02003059 image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +09003060 EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003061 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
3062
3063 /*
Heinrich Schuchardt55111c52020-01-10 22:06:54 +01003064 * Control is returned from a started UEFI image either by calling
3065 * Exit() (where exit data can be provided) or by simply returning from
3066 * the entry point. In the latter case call Exit() on behalf of the
3067 * image.
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003068 */
3069 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
3070}
3071
3072/**
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003073 * efi_delete_image() - delete loaded image from memory)
3074 *
3075 * @image_obj: handle of the loaded image
3076 * @loaded_image_protocol: loaded image protocol
3077 */
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02003078static efi_status_t efi_delete_image
3079 (struct efi_loaded_image_obj *image_obj,
3080 struct efi_loaded_image *loaded_image_protocol)
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003081{
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02003082 struct efi_object *efiobj;
3083 efi_status_t r, ret = EFI_SUCCESS;
3084
3085close_next:
3086 list_for_each_entry(efiobj, &efi_obj_list, link) {
3087 struct efi_handler *protocol;
3088
3089 list_for_each_entry(protocol, &efiobj->protocols, link) {
3090 struct efi_open_protocol_info_item *info;
3091
3092 list_for_each_entry(info, &protocol->open_infos, link) {
3093 if (info->info.agent_handle !=
3094 (efi_handle_t)image_obj)
3095 continue;
3096 r = EFI_CALL(efi_close_protocol
3097 (efiobj, protocol->guid,
3098 info->info.agent_handle,
3099 info->info.controller_handle
3100 ));
3101 if (r != EFI_SUCCESS)
3102 ret = r;
3103 /*
3104 * Closing protocols may results in further
3105 * items being deleted. To play it safe loop
3106 * over all elements again.
3107 */
3108 goto close_next;
3109 }
3110 }
3111 }
3112
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003113 efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
3114 efi_size_in_pages(loaded_image_protocol->image_size));
3115 efi_delete_handle(&image_obj->header);
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02003116
3117 return ret;
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003118}
3119
3120/**
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003121 * efi_unload_image() - unload an EFI image
3122 * @image_handle: handle of the image to be unloaded
3123 *
3124 * This function implements the UnloadImage service.
3125 *
3126 * See the Unified Extensible Firmware Interface (UEFI) specification for
3127 * details.
3128 *
3129 * Return: status code
3130 */
3131efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
3132{
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003133 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003134 struct efi_object *efiobj;
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003135 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003136
3137 EFI_ENTRY("%p", image_handle);
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003138
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003139 efiobj = efi_search_obj(image_handle);
3140 if (!efiobj) {
3141 ret = EFI_INVALID_PARAMETER;
3142 goto out;
3143 }
3144 /* Find the loaded image protocol */
3145 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
3146 (void **)&loaded_image_protocol,
3147 NULL, NULL,
3148 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3149 if (ret != EFI_SUCCESS) {
3150 ret = EFI_INVALID_PARAMETER;
3151 goto out;
3152 }
3153 switch (efiobj->type) {
3154 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3155 /* Call the unload function */
3156 if (!loaded_image_protocol->unload) {
3157 ret = EFI_UNSUPPORTED;
3158 goto out;
3159 }
3160 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
3161 if (ret != EFI_SUCCESS)
3162 goto out;
3163 break;
3164 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3165 break;
3166 default:
3167 ret = EFI_INVALID_PARAMETER;
3168 goto out;
3169 }
3170 efi_delete_image((struct efi_loaded_image_obj *)efiobj,
3171 loaded_image_protocol);
3172out:
3173 return EFI_EXIT(ret);
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003174}
3175
3176/**
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003177 * efi_update_exit_data() - fill exit data parameters of StartImage()
3178 *
Heinrich Schuchardt9ce91272019-07-14 11:25:06 +02003179 * @image_obj: image handle
3180 * @exit_data_size: size of the exit data buffer
3181 * @exit_data: buffer with data returned by UEFI payload
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003182 * Return: status code
3183 */
3184static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
3185 efi_uintn_t exit_data_size,
3186 u16 *exit_data)
3187{
3188 efi_status_t ret;
3189
3190 /*
3191 * If exit_data is not provided to StartImage(), exit_data_size must be
3192 * ignored.
3193 */
3194 if (!image_obj->exit_data)
3195 return EFI_SUCCESS;
3196 if (image_obj->exit_data_size)
3197 *image_obj->exit_data_size = exit_data_size;
3198 if (exit_data_size && exit_data) {
3199 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
3200 exit_data_size,
3201 (void **)image_obj->exit_data);
3202 if (ret != EFI_SUCCESS)
3203 return ret;
3204 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
3205 } else {
3206 image_obj->exit_data = NULL;
3207 }
3208 return EFI_SUCCESS;
3209}
3210
3211/**
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003212 * efi_exit() - leave an EFI application or driver
3213 * @image_handle: handle of the application or driver that is exiting
3214 * @exit_status: status code
3215 * @exit_data_size: size of the buffer in bytes
3216 * @exit_data: buffer with data describing an error
3217 *
3218 * This function implements the Exit service.
3219 *
3220 * See the Unified Extensible Firmware Interface (UEFI) specification for
3221 * details.
3222 *
3223 * Return: status code
3224 */
3225static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
3226 efi_status_t exit_status,
3227 efi_uintn_t exit_data_size,
3228 u16 *exit_data)
3229{
3230 /*
3231 * TODO: We should call the unload procedure of the loaded
3232 * image protocol.
3233 */
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003234 efi_status_t ret;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003235 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003236 struct efi_loaded_image_obj *image_obj =
3237 (struct efi_loaded_image_obj *)image_handle;
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003238 struct jmp_buf_data *exit_jmp;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003239
3240 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
3241 exit_data_size, exit_data);
3242
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003243 /* Check parameters */
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003244 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003245 (void **)&loaded_image_protocol,
3246 NULL, NULL,
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003247 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003248 if (ret != EFI_SUCCESS) {
3249 ret = EFI_INVALID_PARAMETER;
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003250 goto out;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003251 }
3252
3253 /* Unloading of unstarted images */
3254 switch (image_obj->header.type) {
3255 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3256 break;
3257 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3258 efi_delete_image(image_obj, loaded_image_protocol);
3259 ret = EFI_SUCCESS;
3260 goto out;
3261 default:
3262 /* Handle does not refer to loaded image */
3263 ret = EFI_INVALID_PARAMETER;
3264 goto out;
3265 }
3266 /* A started image can only be unloaded it is the last one started. */
3267 if (image_handle != current_image) {
3268 ret = EFI_INVALID_PARAMETER;
3269 goto out;
3270 }
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003271
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003272 /* Exit data is only foreseen in case of failure. */
3273 if (exit_status != EFI_SUCCESS) {
3274 ret = efi_update_exit_data(image_obj, exit_data_size,
3275 exit_data);
3276 /* Exiting has priority. Don't return error to caller. */
3277 if (ret != EFI_SUCCESS)
3278 EFI_PRINT("%s: out of memory\n", __func__);
3279 }
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003280 /* efi_delete_image() frees image_obj. Copy before the call. */
3281 exit_jmp = image_obj->exit_jmp;
3282 *image_obj->exit_status = exit_status;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003283 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
3284 exit_status != EFI_SUCCESS)
3285 efi_delete_image(image_obj, loaded_image_protocol);
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003286
Masahisa Kojima8fc4e0b2021-08-13 16:12:40 +09003287 if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
3288 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION) {
3289 ret = efi_tcg2_measure_efi_app_exit();
3290 if (ret != EFI_SUCCESS) {
3291 log_warning("tcg2 measurement fails(0x%lx)\n",
3292 ret);
3293 }
3294 }
3295 }
3296
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003297 /* Make sure entry/exit counts for EFI world cross-overs match */
3298 EFI_EXIT(exit_status);
3299
3300 /*
3301 * But longjmp out with the U-Boot gd, not the application's, as
3302 * the other end is a setjmp call inside EFI context.
3303 */
3304 efi_restore_gd();
3305
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003306 longjmp(exit_jmp, 1);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003307
3308 panic("EFI application exited");
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003309out:
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003310 return EFI_EXIT(ret);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003311}
3312
3313/**
Mario Six78a88f72018-07-10 08:40:17 +02003314 * efi_handle_protocol() - get interface of a protocol on a handle
3315 * @handle: handle on which the protocol shall be opened
3316 * @protocol: GUID of the protocol
3317 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003318 *
3319 * This function implements the HandleProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003320 *
Mario Six78a88f72018-07-10 08:40:17 +02003321 * See the Unified Extensible Firmware Interface (UEFI) specification for
3322 * details.
3323 *
3324 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003325 */
AKASHI Takahirob51ec632020-03-17 11:12:36 +09003326efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
3327 const efi_guid_t *protocol,
3328 void **protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01003329{
Heinrich Schuchardt755d42d2019-06-01 19:29:39 +02003330 return efi_open_protocol(handle, protocol, protocol_interface, efi_root,
xypron.glpk@gmx.de8e1d3292017-06-29 21:16:19 +02003331 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafbee91162016-03-04 01:09:59 +01003332}
3333
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003334/**
Mario Six78a88f72018-07-10 08:40:17 +02003335 * efi_bind_controller() - bind a single driver to a controller
3336 * @controller_handle: controller handle
3337 * @driver_image_handle: driver handle
3338 * @remain_device_path: remaining path
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003339 *
Mario Six78a88f72018-07-10 08:40:17 +02003340 * Return: status code
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003341 */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003342static efi_status_t efi_bind_controller(
3343 efi_handle_t controller_handle,
3344 efi_handle_t driver_image_handle,
3345 struct efi_device_path *remain_device_path)
3346{
3347 struct efi_driver_binding_protocol *binding_protocol;
3348 efi_status_t r;
3349
3350 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3351 &efi_guid_driver_binding_protocol,
3352 (void **)&binding_protocol,
3353 driver_image_handle, NULL,
3354 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3355 if (r != EFI_SUCCESS)
3356 return r;
3357 r = EFI_CALL(binding_protocol->supported(binding_protocol,
3358 controller_handle,
3359 remain_device_path));
3360 if (r == EFI_SUCCESS)
3361 r = EFI_CALL(binding_protocol->start(binding_protocol,
3362 controller_handle,
3363 remain_device_path));
3364 EFI_CALL(efi_close_protocol(driver_image_handle,
3365 &efi_guid_driver_binding_protocol,
3366 driver_image_handle, NULL));
3367 return r;
3368}
3369
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003370/**
Mario Six78a88f72018-07-10 08:40:17 +02003371 * efi_connect_single_controller() - connect a single driver to a controller
3372 * @controller_handle: controller
3373 * @driver_image_handle: driver
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003374 * @remain_device_path: remaining path
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003375 *
Mario Six78a88f72018-07-10 08:40:17 +02003376 * Return: status code
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003377 */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003378static efi_status_t efi_connect_single_controller(
3379 efi_handle_t controller_handle,
3380 efi_handle_t *driver_image_handle,
3381 struct efi_device_path *remain_device_path)
3382{
3383 efi_handle_t *buffer;
3384 size_t count;
3385 size_t i;
3386 efi_status_t r;
3387 size_t connected = 0;
3388
3389 /* Get buffer with all handles with driver binding protocol */
3390 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3391 &efi_guid_driver_binding_protocol,
3392 NULL, &count, &buffer));
3393 if (r != EFI_SUCCESS)
3394 return r;
3395
Heinrich Schuchardt359a6992019-07-03 20:27:24 +02003396 /* Context Override */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003397 if (driver_image_handle) {
3398 for (; *driver_image_handle; ++driver_image_handle) {
3399 for (i = 0; i < count; ++i) {
3400 if (buffer[i] == *driver_image_handle) {
3401 buffer[i] = NULL;
3402 r = efi_bind_controller(
3403 controller_handle,
3404 *driver_image_handle,
3405 remain_device_path);
3406 /*
3407 * For drivers that do not support the
3408 * controller or are already connected
3409 * we receive an error code here.
3410 */
3411 if (r == EFI_SUCCESS)
3412 ++connected;
3413 }
3414 }
3415 }
3416 }
3417
3418 /*
3419 * TODO: Some overrides are not yet implemented:
3420 * - Platform Driver Override
3421 * - Driver Family Override Search
3422 * - Bus Specific Driver Override
3423 */
3424
3425 /* Driver Binding Search */
3426 for (i = 0; i < count; ++i) {
3427 if (buffer[i]) {
3428 r = efi_bind_controller(controller_handle,
3429 buffer[i],
3430 remain_device_path);
3431 if (r == EFI_SUCCESS)
3432 ++connected;
3433 }
3434 }
3435
3436 efi_free_pool(buffer);
3437 if (!connected)
3438 return EFI_NOT_FOUND;
3439 return EFI_SUCCESS;
3440}
3441
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003442/**
Mario Six78a88f72018-07-10 08:40:17 +02003443 * efi_connect_controller() - connect a controller to a driver
3444 * @controller_handle: handle of the controller
3445 * @driver_image_handle: handle of the driver
3446 * @remain_device_path: device path of a child controller
3447 * @recursive: true to connect all child controllers
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003448 *
3449 * This function implements the ConnectController service.
Mario Six78a88f72018-07-10 08:40:17 +02003450 *
3451 * See the Unified Extensible Firmware Interface (UEFI) specification for
3452 * details.
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003453 *
3454 * First all driver binding protocol handles are tried for binding drivers.
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003455 * Afterwards all handles that have opened a protocol of the controller
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003456 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3457 *
Mario Six78a88f72018-07-10 08:40:17 +02003458 * Return: status code
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003459 */
3460static efi_status_t EFIAPI efi_connect_controller(
3461 efi_handle_t controller_handle,
3462 efi_handle_t *driver_image_handle,
3463 struct efi_device_path *remain_device_path,
3464 bool recursive)
3465{
3466 efi_status_t r;
3467 efi_status_t ret = EFI_NOT_FOUND;
3468 struct efi_object *efiobj;
3469
Heinrich Schuchardtd1788362018-12-09 16:39:20 +01003470 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003471 remain_device_path, recursive);
3472
3473 efiobj = efi_search_obj(controller_handle);
3474 if (!efiobj) {
3475 ret = EFI_INVALID_PARAMETER;
3476 goto out;
3477 }
3478
3479 r = efi_connect_single_controller(controller_handle,
3480 driver_image_handle,
3481 remain_device_path);
3482 if (r == EFI_SUCCESS)
3483 ret = EFI_SUCCESS;
3484 if (recursive) {
3485 struct efi_handler *handler;
3486 struct efi_open_protocol_info_item *item;
3487
3488 list_for_each_entry(handler, &efiobj->protocols, link) {
3489 list_for_each_entry(item, &handler->open_infos, link) {
3490 if (item->info.attributes &
3491 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3492 r = EFI_CALL(efi_connect_controller(
3493 item->info.controller_handle,
3494 driver_image_handle,
3495 remain_device_path,
3496 recursive));
3497 if (r == EFI_SUCCESS)
3498 ret = EFI_SUCCESS;
3499 }
3500 }
3501 }
3502 }
Heinrich Schuchardt359a6992019-07-03 20:27:24 +02003503 /* Check for child controller specified by end node */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003504 if (ret != EFI_SUCCESS && remain_device_path &&
3505 remain_device_path->type == DEVICE_PATH_TYPE_END)
3506 ret = EFI_SUCCESS;
3507out:
3508 return EFI_EXIT(ret);
3509}
3510
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003511/**
Mario Six78a88f72018-07-10 08:40:17 +02003512 * efi_reinstall_protocol_interface() - reinstall protocol interface
3513 * @handle: handle on which the protocol shall be reinstalled
3514 * @protocol: GUID of the protocol to be installed
3515 * @old_interface: interface to be removed
3516 * @new_interface: interface to be installed
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003517 *
3518 * This function implements the ReinstallProtocolInterface service.
Mario Six78a88f72018-07-10 08:40:17 +02003519 *
3520 * See the Unified Extensible Firmware Interface (UEFI) specification for
3521 * details.
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003522 *
3523 * The old interface is uninstalled. The new interface is installed.
3524 * Drivers are connected.
3525 *
Mario Six78a88f72018-07-10 08:40:17 +02003526 * Return: status code
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003527 */
3528static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3529 efi_handle_t handle, const efi_guid_t *protocol,
3530 void *old_interface, void *new_interface)
3531{
3532 efi_status_t ret;
3533
Heinrich Schuchardtce00a742022-01-16 14:15:31 +01003534 EFI_ENTRY("%p, %pUs, %p, %p", handle, protocol, old_interface,
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003535 new_interface);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02003536
3537 /* Uninstall protocol but do not delete handle */
3538 ret = efi_uninstall_protocol(handle, protocol, old_interface);
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003539 if (ret != EFI_SUCCESS)
3540 goto out;
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02003541
3542 /* Install the new protocol */
3543 ret = efi_add_protocol(handle, protocol, new_interface);
3544 /*
3545 * The UEFI spec does not specify what should happen to the handle
3546 * if in case of an error no protocol interface remains on the handle.
3547 * So let's do nothing here.
3548 */
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003549 if (ret != EFI_SUCCESS)
3550 goto out;
3551 /*
3552 * The returned status code has to be ignored.
3553 * Do not create an error if no suitable driver for the handle exists.
3554 */
3555 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3556out:
3557 return EFI_EXIT(ret);
3558}
3559
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003560/**
Mario Six78a88f72018-07-10 08:40:17 +02003561 * efi_get_child_controllers() - get all child controllers associated to a driver
3562 * @efiobj: handle of the controller
3563 * @driver_handle: handle of the driver
3564 * @number_of_children: number of child controllers
3565 * @child_handle_buffer: handles of the the child controllers
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003566 *
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003567 * The allocated buffer has to be freed with free().
3568 *
Mario Six78a88f72018-07-10 08:40:17 +02003569 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003570 */
3571static efi_status_t efi_get_child_controllers(
3572 struct efi_object *efiobj,
3573 efi_handle_t driver_handle,
3574 efi_uintn_t *number_of_children,
3575 efi_handle_t **child_handle_buffer)
3576{
3577 struct efi_handler *handler;
3578 struct efi_open_protocol_info_item *item;
3579 efi_uintn_t count = 0, i;
3580 bool duplicate;
3581
3582 /* Count all child controller associations */
3583 list_for_each_entry(handler, &efiobj->protocols, link) {
3584 list_for_each_entry(item, &handler->open_infos, link) {
3585 if (item->info.agent_handle == driver_handle &&
3586 item->info.attributes &
3587 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3588 ++count;
3589 }
3590 }
3591 /*
3592 * Create buffer. In case of duplicate child controller assignments
3593 * the buffer will be too large. But that does not harm.
3594 */
3595 *number_of_children = 0;
Heinrich Schuchardt1047c6e2020-07-07 04:21:26 +02003596 if (!count)
3597 return EFI_SUCCESS;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003598 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3599 if (!*child_handle_buffer)
3600 return EFI_OUT_OF_RESOURCES;
3601 /* Copy unique child handles */
3602 list_for_each_entry(handler, &efiobj->protocols, link) {
3603 list_for_each_entry(item, &handler->open_infos, link) {
3604 if (item->info.agent_handle == driver_handle &&
3605 item->info.attributes &
3606 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3607 /* Check this is a new child controller */
3608 duplicate = false;
3609 for (i = 0; i < *number_of_children; ++i) {
3610 if ((*child_handle_buffer)[i] ==
3611 item->info.controller_handle)
3612 duplicate = true;
3613 }
3614 /* Copy handle to buffer */
3615 if (!duplicate) {
3616 i = (*number_of_children)++;
3617 (*child_handle_buffer)[i] =
3618 item->info.controller_handle;
3619 }
3620 }
3621 }
3622 }
3623 return EFI_SUCCESS;
3624}
3625
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003626/**
Mario Six78a88f72018-07-10 08:40:17 +02003627 * efi_disconnect_controller() - disconnect a controller from a driver
3628 * @controller_handle: handle of the controller
3629 * @driver_image_handle: handle of the driver
3630 * @child_handle: handle of the child to destroy
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003631 *
3632 * This function implements the DisconnectController service.
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003633 *
Mario Six78a88f72018-07-10 08:40:17 +02003634 * See the Unified Extensible Firmware Interface (UEFI) specification for
3635 * details.
3636 *
3637 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003638 */
3639static efi_status_t EFIAPI efi_disconnect_controller(
3640 efi_handle_t controller_handle,
3641 efi_handle_t driver_image_handle,
3642 efi_handle_t child_handle)
3643{
3644 struct efi_driver_binding_protocol *binding_protocol;
3645 efi_handle_t *child_handle_buffer = NULL;
3646 size_t number_of_children = 0;
3647 efi_status_t r;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003648 struct efi_object *efiobj;
Heinrich Schuchardt314bed62020-10-28 18:45:47 +01003649 bool sole_child;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003650
3651 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3652 child_handle);
3653
3654 efiobj = efi_search_obj(controller_handle);
3655 if (!efiobj) {
3656 r = EFI_INVALID_PARAMETER;
3657 goto out;
3658 }
3659
3660 if (child_handle && !efi_search_obj(child_handle)) {
3661 r = EFI_INVALID_PARAMETER;
3662 goto out;
3663 }
3664
3665 /* If no driver handle is supplied, disconnect all drivers */
3666 if (!driver_image_handle) {
3667 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3668 goto out;
3669 }
3670
3671 /* Create list of child handles */
Heinrich Schuchardt314bed62020-10-28 18:45:47 +01003672 r = efi_get_child_controllers(efiobj,
3673 driver_image_handle,
3674 &number_of_children,
3675 &child_handle_buffer);
3676 if (r != EFI_SUCCESS)
3677 return r;
3678 sole_child = (number_of_children == 1);
3679
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003680 if (child_handle) {
3681 number_of_children = 1;
Heinrich Schuchardt314bed62020-10-28 18:45:47 +01003682 free(child_handle_buffer);
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003683 child_handle_buffer = &child_handle;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003684 }
3685
3686 /* Get the driver binding protocol */
3687 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3688 &efi_guid_driver_binding_protocol,
3689 (void **)&binding_protocol,
3690 driver_image_handle, NULL,
3691 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003692 if (r != EFI_SUCCESS) {
3693 r = EFI_INVALID_PARAMETER;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003694 goto out;
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003695 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003696 /* Remove the children */
3697 if (number_of_children) {
3698 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3699 controller_handle,
3700 number_of_children,
3701 child_handle_buffer));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003702 if (r != EFI_SUCCESS) {
3703 r = EFI_DEVICE_ERROR;
3704 goto out;
3705 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003706 }
3707 /* Remove the driver */
Heinrich Schuchardt314bed62020-10-28 18:45:47 +01003708 if (!child_handle || sole_child) {
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003709 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3710 controller_handle,
3711 0, NULL));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003712 if (r != EFI_SUCCESS) {
3713 r = EFI_DEVICE_ERROR;
3714 goto out;
3715 }
3716 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003717 EFI_CALL(efi_close_protocol(driver_image_handle,
3718 &efi_guid_driver_binding_protocol,
3719 driver_image_handle, NULL));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003720 r = EFI_SUCCESS;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003721out:
3722 if (!child_handle)
3723 free(child_handle_buffer);
3724 return EFI_EXIT(r);
3725}
3726
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003727static struct efi_boot_services efi_boot_services = {
Alexander Grafbee91162016-03-04 01:09:59 +01003728 .hdr = {
Heinrich Schuchardt112f2432018-06-28 12:45:27 +02003729 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3730 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt71c846a2018-06-28 12:45:29 +02003731 .headersize = sizeof(struct efi_boot_services),
Alexander Grafbee91162016-03-04 01:09:59 +01003732 },
3733 .raise_tpl = efi_raise_tpl,
3734 .restore_tpl = efi_restore_tpl,
3735 .allocate_pages = efi_allocate_pages_ext,
3736 .free_pages = efi_free_pages_ext,
3737 .get_memory_map = efi_get_memory_map_ext,
Stefan Brünsead12742016-10-09 22:17:18 +02003738 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns42417bc2016-10-09 22:17:26 +02003739 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +02003740 .create_event = efi_create_event_ext,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +02003741 .set_timer = efi_set_timer_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003742 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02003743 .signal_event = efi_signal_event_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003744 .close_event = efi_close_event,
3745 .check_event = efi_check_event,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01003746 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafbee91162016-03-04 01:09:59 +01003747 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardtcd534082017-11-06 21:17:45 +01003748 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafbee91162016-03-04 01:09:59 +01003749 .handle_protocol = efi_handle_protocol,
3750 .reserved = NULL,
3751 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02003752 .locate_handle = efi_locate_handle_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003753 .locate_device_path = efi_locate_device_path,
Alexander Graf488bf122016-08-19 01:23:24 +02003754 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003755 .load_image = efi_load_image,
3756 .start_image = efi_start_image,
Alexander Grafa86aeaf2016-05-20 23:28:23 +02003757 .exit = efi_exit,
Alexander Grafbee91162016-03-04 01:09:59 +01003758 .unload_image = efi_unload_image,
3759 .exit_boot_services = efi_exit_boot_services,
3760 .get_next_monotonic_count = efi_get_next_monotonic_count,
3761 .stall = efi_stall,
3762 .set_watchdog_timer = efi_set_watchdog_timer,
3763 .connect_controller = efi_connect_controller,
3764 .disconnect_controller = efi_disconnect_controller,
3765 .open_protocol = efi_open_protocol,
3766 .close_protocol = efi_close_protocol,
3767 .open_protocol_information = efi_open_protocol_information,
3768 .protocols_per_handle = efi_protocols_per_handle,
3769 .locate_handle_buffer = efi_locate_handle_buffer,
3770 .locate_protocol = efi_locate_protocol,
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01003771 .install_multiple_protocol_interfaces =
3772 efi_install_multiple_protocol_interfaces,
3773 .uninstall_multiple_protocol_interfaces =
3774 efi_uninstall_multiple_protocol_interfaces,
Alexander Grafbee91162016-03-04 01:09:59 +01003775 .calculate_crc32 = efi_calculate_crc32,
3776 .copy_mem = efi_copy_mem,
3777 .set_mem = efi_set_mem,
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +01003778 .create_event_ex = efi_create_event_ex,
Alexander Grafbee91162016-03-04 01:09:59 +01003779};
3780
Heinrich Schuchardt0b386532018-06-28 12:45:30 +02003781static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
Alexander Grafbee91162016-03-04 01:09:59 +01003782
Alexander Graf3c63db92016-10-14 13:45:30 +02003783struct efi_system_table __efi_runtime_data systab = {
Alexander Grafbee91162016-03-04 01:09:59 +01003784 .hdr = {
3785 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
Heinrich Schuchardt112f2432018-06-28 12:45:27 +02003786 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt71c846a2018-06-28 12:45:29 +02003787 .headersize = sizeof(struct efi_system_table),
Alexander Grafbee91162016-03-04 01:09:59 +01003788 },
Heinrich Schuchardt0b386532018-06-28 12:45:30 +02003789 .fw_vendor = firmware_vendor,
3790 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
Heinrich Schuchardt3c783bf2019-06-15 14:51:06 +02003791 .runtime = &efi_runtime_services,
Alexander Grafbee91162016-03-04 01:09:59 +01003792 .nr_tables = 0,
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003793 .tables = NULL,
Alexander Grafbee91162016-03-04 01:09:59 +01003794};
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003795
3796/**
3797 * efi_initialize_system_table() - Initialize system table
3798 *
Heinrich Schuchardt04143592018-09-03 05:00:43 +02003799 * Return: status code
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003800 */
3801efi_status_t efi_initialize_system_table(void)
3802{
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003803 efi_status_t ret;
3804
3805 /* Allocate configuration table array */
3806 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3807 EFI_MAX_CONFIGURATION_TABLES *
3808 sizeof(struct efi_configuration_table),
3809 (void **)&systab.tables);
3810
Heinrich Schuchardt93148eb2019-06-29 02:00:16 +02003811 /*
3812 * These entries will be set to NULL in ExitBootServices(). To avoid
3813 * relocation in SetVirtualAddressMap(), set them dynamically.
3814 */
3815 systab.con_in = &efi_con_in;
3816 systab.con_out = &efi_con_out;
3817 systab.std_err = &efi_con_out;
3818 systab.boottime = &efi_boot_services;
3819
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003820 /* Set CRC32 field in table headers */
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003821 efi_update_table_header_crc32(&systab.hdr);
3822 efi_update_table_header_crc32(&efi_runtime_services.hdr);
3823 efi_update_table_header_crc32(&efi_boot_services.hdr);
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003824
3825 return ret;
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003826}