blob: eedc5f3954922e699626c8979fb9dfe13fefec85 [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafc15d9212016-03-04 01:09:59 +01002/*
Heinrich Schuchardtda8f9002019-07-03 20:27:24 +02003 * EFI application boot time services
Alexander Grafc15d9212016-03-04 01:09:59 +01004 *
Heinrich Schuchardtda8f9002019-07-03 20:27:24 +02005 * Copyright (c) 2016 Alexander Graf
Alexander Grafc15d9212016-03-04 01:09:59 +01006 */
7
Ilias Apalodimas4cc06322020-10-22 01:04:20 +03008#include <bootm.h>
Heinrich Schuchardt368ca642017-10-05 16:14:14 +02009#include <div64.h>
Ilias Apalodimasc539fb82020-10-22 01:04:21 +030010#include <dm/device.h>
11#include <dm/root.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010012#include <efi_loader.h>
Simon Glass8f3f7612019-11-14 12:57:42 -070013#include <irq_func.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010015#include <malloc.h>
Heinrich Schuchardt37587522019-05-01 20:07:04 +020016#include <pe.h>
Ilias Apalodimas4cc06322020-10-22 01:04:20 +030017#include <time.h>
Simon Glass48b6c6b2019-11-14 12:57:16 -070018#include <u-boot/crc.h>
Ilias Apalodimasc539fb82020-10-22 01:04:21 +030019#include <usb.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010020#include <watchdog.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060021#include <asm/global_data.h>
AKASHI Takahiro4cbba2b2021-07-20 14:57:02 +090022#include <asm/setjmp.h>
Ilias Apalodimas4cc06322020-10-22 01:04:20 +030023#include <linux/libfdt_env.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010024
25DECLARE_GLOBAL_DATA_PTR;
26
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +020027/* Task priority level */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +010028static efi_uintn_t efi_tpl = TPL_APPLICATION;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +020029
Alexander Grafc15d9212016-03-04 01:09:59 +010030/* This list contains all the EFI objects our payload has access to */
31LIST_HEAD(efi_obj_list);
32
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +010033/* List of all events */
Heinrich Schuchardt4429d872019-07-11 20:15:09 +020034__efi_runtime_data LIST_HEAD(efi_events);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +010035
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +020036/* List of queued events */
Bin Mengd89dea32023-04-05 20:15:17 +080037static LIST_HEAD(efi_event_queue);
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +020038
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +020039/* Flag to disable timer activity in ExitBootServices() */
40static bool timers_enabled = true;
41
Heinrich Schuchardt628dbd72020-11-12 21:26:28 +010042/* Flag used by the selftest to avoid detaching devices in ExitBootServices() */
43bool efi_st_keep_devices;
44
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +020045/* List of all events registered by RegisterProtocolNotify() */
Bin Mengd89dea32023-04-05 20:15:17 +080046static LIST_HEAD(efi_register_notify_events);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +020047
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +010048/* Handle of the currently executing image */
49static efi_handle_t current_image;
50
Heinrich Schuchardtf277d942020-09-10 12:22:54 +020051#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Alexander Grafc15d9212016-03-04 01:09:59 +010052/*
Heinrich Schuchardtf277d942020-09-10 12:22:54 +020053 * The "gd" pointer lives in a register on ARM and RISC-V that we declare
Alexander Grafc15d9212016-03-04 01:09:59 +010054 * fixed when compiling U-Boot. However, the payload does not know about that
55 * restriction so we need to manually swap its and our view of that register on
56 * EFI callback entry/exit.
57 */
Heinrich Schuchardt1a3732c2020-05-27 01:58:30 +020058static volatile gd_t *efi_gd, *app_gd;
Simon Glasscdfe6962016-09-25 15:27:35 -060059#endif
Alexander Grafc15d9212016-03-04 01:09:59 +010060
Ilias Apalodimasb09ecf12023-07-24 13:17:36 +030061static efi_status_t efi_uninstall_protocol
62 (efi_handle_t handle, const efi_guid_t *protocol,
Ilias Apalodimasc76eade2023-08-24 17:21:09 +030063 void *protocol_interface, bool preserve);
Ilias Apalodimasb09ecf12023-07-24 13:17:36 +030064
Heinrich Schuchardt72506232019-02-09 14:10:39 +010065/* 1 if inside U-Boot code, 0 if inside EFI payload code */
66static int entry_count = 1;
Rob Clarke7896c32017-07-27 08:04:19 -040067static int nesting_level;
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +010068/* GUID of the device tree table */
69const efi_guid_t efi_guid_fdt = EFI_FDT_GUID;
Heinrich Schuchardt760255f2018-01-11 08:16:02 +010070/* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
71const efi_guid_t efi_guid_driver_binding_protocol =
72 EFI_DRIVER_BINDING_PROTOCOL_GUID;
Rob Clark86789d52017-07-27 08:04:18 -040073
Heinrich Schuchardt672d99e2018-02-18 15:17:51 +010074/* event group ExitBootServices() invoked */
75const efi_guid_t efi_guid_event_group_exit_boot_services =
76 EFI_EVENT_GROUP_EXIT_BOOT_SERVICES;
Heinrich Schuchardt44772c42021-11-16 18:46:27 +010077/* event group before ExitBootServices() invoked */
78const efi_guid_t efi_guid_event_group_before_exit_boot_services =
79 EFI_EVENT_GROUP_BEFORE_EXIT_BOOT_SERVICES;
Heinrich Schuchardt672d99e2018-02-18 15:17:51 +010080/* event group SetVirtualAddressMap() invoked */
81const efi_guid_t efi_guid_event_group_virtual_address_change =
82 EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE;
83/* event group memory map changed */
84const efi_guid_t efi_guid_event_group_memory_map_change =
85 EFI_EVENT_GROUP_MEMORY_MAP_CHANGE;
86/* event group boot manager about to boot */
87const efi_guid_t efi_guid_event_group_ready_to_boot =
88 EFI_EVENT_GROUP_READY_TO_BOOT;
89/* event group ResetSystem() invoked (before ExitBootServices) */
90const efi_guid_t efi_guid_event_group_reset_system =
91 EFI_EVENT_GROUP_RESET_SYSTEM;
Masahisa Kojima1923f362023-11-10 13:25:39 +090092/* event group return to efibootmgr */
93const efi_guid_t efi_guid_event_group_return_to_efibootmgr =
94 EFI_EVENT_GROUP_RETURN_TO_EFIBOOTMGR;
Heinrich Schuchardt485956d2020-12-04 03:33:41 +010095/* GUIDs of the Load File and Load File2 protocols */
96const efi_guid_t efi_guid_load_file_protocol = EFI_LOAD_FILE_PROTOCOL_GUID;
97const efi_guid_t efi_guid_load_file2_protocol = EFI_LOAD_FILE2_PROTOCOL_GUID;
Masahisa Kojimacd1fe7d2021-10-26 17:27:24 +090098/* GUID of the SMBIOS table */
99const efi_guid_t smbios_guid = SMBIOS_TABLE_GUID;
Heinrich Schuchardt672d99e2018-02-18 15:17:51 +0100100
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100101static efi_status_t EFIAPI efi_disconnect_controller(
102 efi_handle_t controller_handle,
103 efi_handle_t driver_image_handle,
104 efi_handle_t child_handle);
Heinrich Schuchardte9943282018-01-11 08:16:04 +0100105
Ilias Apalodimas1e10d622023-06-20 09:19:28 +0300106static
107efi_status_t EFIAPI efi_connect_controller(efi_handle_t controller_handle,
108 efi_handle_t *driver_image_handle,
109 struct efi_device_path *remain_device_path,
110 bool recursive);
111
Rob Clark86789d52017-07-27 08:04:18 -0400112/* Called on every callback entry */
113int __efi_entry_check(void)
114{
115 int ret = entry_count++ == 0;
Heinrich Schuchardtf277d942020-09-10 12:22:54 +0200116#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Rob Clark86789d52017-07-27 08:04:18 -0400117 assert(efi_gd);
118 app_gd = gd;
Heinrich Schuchardt1a3732c2020-05-27 01:58:30 +0200119 set_gd(efi_gd);
Rob Clark86789d52017-07-27 08:04:18 -0400120#endif
121 return ret;
122}
123
124/* Called on every callback exit */
125int __efi_exit_check(void)
126{
127 int ret = --entry_count == 0;
Heinrich Schuchardtf277d942020-09-10 12:22:54 +0200128#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Heinrich Schuchardt1a3732c2020-05-27 01:58:30 +0200129 set_gd(app_gd);
Rob Clark86789d52017-07-27 08:04:18 -0400130#endif
131 return ret;
132}
133
Heinrich Schuchardtc5949412020-07-18 09:53:01 +0200134/**
135 * efi_save_gd() - save global data register
136 *
Heinrich Schuchardtf277d942020-09-10 12:22:54 +0200137 * On the ARM and RISC-V architectures gd is mapped to a fixed register.
Heinrich Schuchardtc5949412020-07-18 09:53:01 +0200138 * As this register may be overwritten by an EFI payload we save it here
139 * and restore it on every callback entered.
140 *
141 * This function is called after relocation from initr_reloc_global_data().
142 */
Alexander Grafc15d9212016-03-04 01:09:59 +0100143void efi_save_gd(void)
144{
Heinrich Schuchardtf277d942020-09-10 12:22:54 +0200145#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Alexander Grafc15d9212016-03-04 01:09:59 +0100146 efi_gd = gd;
Simon Glasscdfe6962016-09-25 15:27:35 -0600147#endif
Alexander Grafc15d9212016-03-04 01:09:59 +0100148}
149
Heinrich Schuchardtc5949412020-07-18 09:53:01 +0200150/**
151 * efi_restore_gd() - restore global data register
152 *
Heinrich Schuchardtf277d942020-09-10 12:22:54 +0200153 * On the ARM and RISC-V architectures gd is mapped to a fixed register.
Heinrich Schuchardtc5949412020-07-18 09:53:01 +0200154 * Restore it after returning from the UEFI world to the value saved via
155 * efi_save_gd().
Rob Clark86789d52017-07-27 08:04:18 -0400156 */
Alexander Grafc15d9212016-03-04 01:09:59 +0100157void efi_restore_gd(void)
158{
Heinrich Schuchardtf277d942020-09-10 12:22:54 +0200159#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Alexander Grafc15d9212016-03-04 01:09:59 +0100160 /* Only restore if we're already in EFI context */
161 if (!efi_gd)
162 return;
Heinrich Schuchardt1a3732c2020-05-27 01:58:30 +0200163 set_gd(efi_gd);
Simon Glasscdfe6962016-09-25 15:27:35 -0600164#endif
Alexander Grafc15d9212016-03-04 01:09:59 +0100165}
166
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200167/**
Mario Six8fac2912018-07-10 08:40:17 +0200168 * indent_string() - returns a string for indenting with two spaces per level
169 * @level: indent level
Heinrich Schuchardt091cf432018-01-24 19:21:36 +0100170 *
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200171 * A maximum of ten indent levels is supported. Higher indent levels will be
172 * truncated.
173 *
Mario Six8fac2912018-07-10 08:40:17 +0200174 * Return: A string for indenting with two spaces per level is
175 * returned.
Rob Clarke7896c32017-07-27 08:04:19 -0400176 */
177static const char *indent_string(int level)
178{
179 const char *indent = " ";
180 const int max = strlen(indent);
Heinrich Schuchardt91064592018-02-18 15:17:49 +0100181
Rob Clarke7896c32017-07-27 08:04:19 -0400182 level = min(max, level * 2);
183 return &indent[max - level];
184}
185
Heinrich Schuchardt4d664892017-08-18 17:45:16 +0200186const char *__efi_nesting(void)
187{
188 return indent_string(nesting_level);
189}
190
Rob Clarke7896c32017-07-27 08:04:19 -0400191const char *__efi_nesting_inc(void)
192{
193 return indent_string(nesting_level++);
194}
195
196const char *__efi_nesting_dec(void)
197{
198 return indent_string(--nesting_level);
199}
200
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200201/**
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +0200202 * efi_event_is_queued() - check if an event is queued
203 *
204 * @event: event
205 * Return: true if event is queued
206 */
207static bool efi_event_is_queued(struct efi_event *event)
208{
209 return !!event->queue_link.next;
210}
211
212/**
Ilias Apalodimasc76eade2023-08-24 17:21:09 +0300213 * efi_purge_handle() - Clean the deleted handle from the various lists
214 * @handle: handle to remove
215 *
216 * Return: status code
217 */
218static efi_status_t efi_purge_handle(efi_handle_t handle)
219{
220 struct efi_register_notify_event *item;
221
222 if (!list_empty(&handle->protocols))
223 return EFI_ACCESS_DENIED;
224 /* The handle is about to be freed. Remove it from events */
225 list_for_each_entry(item, &efi_register_notify_events, link) {
226 struct efi_protocol_notification *hitem, *hnext;
227
228 list_for_each_entry_safe(hitem, hnext, &item->handles, link) {
229 if (handle == hitem->handle) {
230 list_del(&hitem->link);
231 free(hitem);
232 }
233 }
234 }
235 /* The last protocol has been removed, delete the handle. */
236 list_del(&handle->link);
237 free(handle);
238
239 return EFI_SUCCESS;
240}
241
242/**
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +0200243 * efi_process_event_queue() - process event queue
244 */
245static void efi_process_event_queue(void)
246{
247 while (!list_empty(&efi_event_queue)) {
248 struct efi_event *event;
249 efi_uintn_t old_tpl;
250
251 event = list_first_entry(&efi_event_queue, struct efi_event,
252 queue_link);
253 if (efi_tpl >= event->notify_tpl)
254 return;
255 list_del(&event->queue_link);
256 event->queue_link.next = NULL;
257 event->queue_link.prev = NULL;
258 /* Events must be executed at the event's TPL */
259 old_tpl = efi_tpl;
260 efi_tpl = event->notify_tpl;
261 EFI_CALL_VOID(event->notify_function(event,
262 event->notify_context));
263 efi_tpl = old_tpl;
264 if (event->type == EVT_NOTIFY_SIGNAL)
265 event->is_signaled = 0;
266 }
267}
268
269/**
Mario Six8fac2912018-07-10 08:40:17 +0200270 * efi_queue_event() - queue an EFI event
271 * @event: event to signal
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200272 *
273 * This function queues the notification function of the event for future
274 * execution.
275 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200276 */
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +0200277static void efi_queue_event(struct efi_event *event)
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200278{
Heinrich Schuchardtec946902020-03-06 21:56:10 +0100279 struct efi_event *item;
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +0200280
281 if (!event->notify_function)
282 return;
283
284 if (!efi_event_is_queued(event)) {
285 /*
286 * Events must be notified in order of decreasing task priority
287 * level. Insert the new event accordingly.
288 */
289 list_for_each_entry(item, &efi_event_queue, queue_link) {
290 if (item->notify_tpl < event->notify_tpl) {
291 list_add_tail(&event->queue_link,
292 &item->queue_link);
293 event = NULL;
294 break;
295 }
296 }
297 if (event)
298 list_add_tail(&event->queue_link, &efi_event_queue);
Heinrich Schuchardt3ef4c852020-12-28 00:25:34 +0100299 efi_process_event_queue();
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200300 }
301}
302
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200303/**
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200304 * is_valid_tpl() - check if the task priority level is valid
305 *
306 * @tpl: TPL level to check
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200307 * Return: status code
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200308 */
Heinrich Schuchardt8126a1e2023-02-10 08:50:06 +0100309static efi_status_t is_valid_tpl(efi_uintn_t tpl)
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200310{
311 switch (tpl) {
312 case TPL_APPLICATION:
313 case TPL_CALLBACK:
314 case TPL_NOTIFY:
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200315 return EFI_SUCCESS;
316 default:
317 return EFI_INVALID_PARAMETER;
318 }
319}
320
321/**
Mario Six8fac2912018-07-10 08:40:17 +0200322 * efi_signal_event() - signal an EFI event
323 * @event: event to signal
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100324 *
Heinrich Schuchardt9de0fb72020-12-28 00:59:09 +0100325 * This function signals an event. If the event belongs to an event group, all
326 * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL,
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100327 * their notification function is queued.
328 *
329 * For the SignalEvent service see efi_signal_event_ext.
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100330 */
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +0200331void efi_signal_event(struct efi_event *event)
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100332{
Heinrich Schuchardt0b4de562019-06-06 01:51:50 +0200333 if (event->is_signaled)
334 return;
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100335 if (event->group) {
336 struct efi_event *evt;
337
338 /*
339 * The signaled state has to set before executing any
340 * notification function
341 */
342 list_for_each_entry(evt, &efi_events, link) {
343 if (!evt->group || guidcmp(evt->group, event->group))
344 continue;
345 if (evt->is_signaled)
346 continue;
347 evt->is_signaled = true;
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100348 }
349 list_for_each_entry(evt, &efi_events, link) {
350 if (!evt->group || guidcmp(evt->group, event->group))
351 continue;
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +0200352 efi_queue_event(evt);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100353 }
Heinrich Schuchardt66ddc2e2019-05-05 00:07:34 +0200354 } else {
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100355 event->is_signaled = true;
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +0200356 efi_queue_event(event);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100357 }
358}
359
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200360/**
Mario Six8fac2912018-07-10 08:40:17 +0200361 * efi_raise_tpl() - raise the task priority level
362 * @new_tpl: new value of the task priority level
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200363 *
364 * This function implements the RaiseTpl service.
Mario Six8fac2912018-07-10 08:40:17 +0200365 *
366 * See the Unified Extensible Firmware Interface (UEFI) specification for
367 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200368 *
Mario Six8fac2912018-07-10 08:40:17 +0200369 * Return: old value of the task priority level
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200370 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100371static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
Alexander Grafc15d9212016-03-04 01:09:59 +0100372{
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100373 efi_uintn_t old_tpl = efi_tpl;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200374
xypron.glpk@gmx.de48df2092017-07-18 20:17:19 +0200375 EFI_ENTRY("0x%zx", new_tpl);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200376
377 if (new_tpl < efi_tpl)
Heinrich Schuchardt952e2062019-05-05 11:56:23 +0200378 EFI_PRINT("WARNING: new_tpl < current_tpl in %s\n", __func__);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200379 efi_tpl = new_tpl;
380 if (efi_tpl > TPL_HIGH_LEVEL)
381 efi_tpl = TPL_HIGH_LEVEL;
382
383 EFI_EXIT(EFI_SUCCESS);
384 return old_tpl;
Alexander Grafc15d9212016-03-04 01:09:59 +0100385}
386
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200387/**
Mario Six8fac2912018-07-10 08:40:17 +0200388 * efi_restore_tpl() - lower the task priority level
389 * @old_tpl: value of the task priority level to be restored
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200390 *
391 * This function implements the RestoreTpl service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200392 *
Mario Six8fac2912018-07-10 08:40:17 +0200393 * See the Unified Extensible Firmware Interface (UEFI) specification for
394 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200395 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100396static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
Alexander Grafc15d9212016-03-04 01:09:59 +0100397{
xypron.glpk@gmx.de48df2092017-07-18 20:17:19 +0200398 EFI_ENTRY("0x%zx", old_tpl);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200399
400 if (old_tpl > efi_tpl)
Heinrich Schuchardt952e2062019-05-05 11:56:23 +0200401 EFI_PRINT("WARNING: old_tpl > current_tpl in %s\n", __func__);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200402 efi_tpl = old_tpl;
403 if (efi_tpl > TPL_HIGH_LEVEL)
404 efi_tpl = TPL_HIGH_LEVEL;
405
Heinrich Schuchardt59b20952018-03-24 18:40:21 +0100406 /*
407 * Lowering the TPL may have made queued events eligible for execution.
408 */
409 efi_timer_check();
410
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200411 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +0100412}
413
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200414/**
Mario Six8fac2912018-07-10 08:40:17 +0200415 * efi_allocate_pages_ext() - allocate memory pages
416 * @type: type of allocation to be performed
417 * @memory_type: usage type of the allocated memory
418 * @pages: number of pages to be allocated
419 * @memory: allocated memory
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200420 *
421 * This function implements the AllocatePages service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200422 *
Mario Six8fac2912018-07-10 08:40:17 +0200423 * See the Unified Extensible Firmware Interface (UEFI) specification for
424 * details.
425 *
426 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200427 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900428static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100429 efi_uintn_t pages,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900430 uint64_t *memory)
Alexander Grafc15d9212016-03-04 01:09:59 +0100431{
432 efi_status_t r;
433
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100434 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
Alexander Grafc15d9212016-03-04 01:09:59 +0100435 r = efi_allocate_pages(type, memory_type, pages, memory);
436 return EFI_EXIT(r);
437}
438
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200439/**
Mario Six8fac2912018-07-10 08:40:17 +0200440 * efi_free_pages_ext() - Free memory pages.
441 * @memory: start of the memory area to be freed
442 * @pages: number of pages to be freed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200443 *
444 * This function implements the FreePages service.
Mario Six8fac2912018-07-10 08:40:17 +0200445 *
446 * See the Unified Extensible Firmware Interface (UEFI) specification for
447 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200448 *
Mario Six8fac2912018-07-10 08:40:17 +0200449 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200450 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900451static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100452 efi_uintn_t pages)
Alexander Grafc15d9212016-03-04 01:09:59 +0100453{
454 efi_status_t r;
455
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900456 EFI_ENTRY("%llx, 0x%zx", memory, pages);
Alexander Grafc15d9212016-03-04 01:09:59 +0100457 r = efi_free_pages(memory, pages);
458 return EFI_EXIT(r);
459}
460
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200461/**
Mario Six8fac2912018-07-10 08:40:17 +0200462 * efi_get_memory_map_ext() - get map describing memory usage
463 * @memory_map_size: on entry the size, in bytes, of the memory map buffer,
464 * on exit the size of the copied memory map
465 * @memory_map: buffer to which the memory map is written
466 * @map_key: key for the memory map
467 * @descriptor_size: size of an individual memory descriptor
468 * @descriptor_version: version number of the memory descriptor structure
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200469 *
470 * This function implements the GetMemoryMap service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200471 *
Mario Six8fac2912018-07-10 08:40:17 +0200472 * See the Unified Extensible Firmware Interface (UEFI) specification for
473 * details.
474 *
475 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200476 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900477static efi_status_t EFIAPI efi_get_memory_map_ext(
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100478 efi_uintn_t *memory_map_size,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900479 struct efi_mem_desc *memory_map,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100480 efi_uintn_t *map_key,
481 efi_uintn_t *descriptor_size,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900482 uint32_t *descriptor_version)
Alexander Grafc15d9212016-03-04 01:09:59 +0100483{
484 efi_status_t r;
485
486 EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
487 map_key, descriptor_size, descriptor_version);
488 r = efi_get_memory_map(memory_map_size, memory_map, map_key,
489 descriptor_size, descriptor_version);
490 return EFI_EXIT(r);
491}
492
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200493/**
Mario Six8fac2912018-07-10 08:40:17 +0200494 * efi_allocate_pool_ext() - allocate memory from pool
495 * @pool_type: type of the pool from which memory is to be allocated
496 * @size: number of bytes to be allocated
497 * @buffer: allocated memory
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200498 *
499 * This function implements the AllocatePool service.
Mario Six8fac2912018-07-10 08:40:17 +0200500 *
501 * See the Unified Extensible Firmware Interface (UEFI) specification for
502 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200503 *
Mario Six8fac2912018-07-10 08:40:17 +0200504 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200505 */
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200506static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100507 efi_uintn_t size,
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200508 void **buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +0100509{
Alexander Graf1c34fa82016-03-24 01:37:37 +0100510 efi_status_t r;
511
Heinrich Schuchardte1e8a652022-02-03 22:21:51 +0100512 EFI_ENTRY("%d, %zu, %p", pool_type, size, buffer);
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200513 r = efi_allocate_pool(pool_type, size, buffer);
Alexander Graf1c34fa82016-03-24 01:37:37 +0100514 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +0100515}
516
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200517/**
Mario Six8fac2912018-07-10 08:40:17 +0200518 * efi_free_pool_ext() - free memory from pool
519 * @buffer: start of memory to be freed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200520 *
521 * This function implements the FreePool service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200522 *
Mario Six8fac2912018-07-10 08:40:17 +0200523 * See the Unified Extensible Firmware Interface (UEFI) specification for
524 * details.
525 *
526 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200527 */
Stefan Brüns67b67d92016-10-09 22:17:26 +0200528static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +0100529{
Alexander Graf1c34fa82016-03-24 01:37:37 +0100530 efi_status_t r;
531
532 EFI_ENTRY("%p", buffer);
Stefan Brüns67b67d92016-10-09 22:17:26 +0200533 r = efi_free_pool(buffer);
Alexander Graf1c34fa82016-03-24 01:37:37 +0100534 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +0100535}
536
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200537/**
Heinrich Schuchardt30cd0462019-05-01 09:42:39 +0200538 * efi_add_handle() - add a new handle to the object list
539 *
540 * @handle: handle to be added
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100541 *
Heinrich Schuchardt30cd0462019-05-01 09:42:39 +0200542 * The protocols list is initialized. The handle is added to the list of known
543 * UEFI objects.
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100544 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200545void efi_add_handle(efi_handle_t handle)
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100546{
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200547 if (!handle)
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100548 return;
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200549 INIT_LIST_HEAD(&handle->protocols);
550 list_add_tail(&handle->link, &efi_obj_list);
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100551}
552
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200553/**
Mario Six8fac2912018-07-10 08:40:17 +0200554 * efi_create_handle() - create handle
555 * @handle: new handle
Heinrich Schuchardteb6106e2017-10-26 19:25:49 +0200556 *
Mario Six8fac2912018-07-10 08:40:17 +0200557 * Return: status code
Heinrich Schuchardteb6106e2017-10-26 19:25:49 +0200558 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100559efi_status_t efi_create_handle(efi_handle_t *handle)
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200560{
561 struct efi_object *obj;
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200562
Heinrich Schuchardtae1d2062018-05-27 16:47:21 +0200563 obj = calloc(1, sizeof(struct efi_object));
564 if (!obj)
565 return EFI_OUT_OF_RESOURCES;
566
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100567 efi_add_handle(obj);
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200568 *handle = obj;
Heinrich Schuchardtae1d2062018-05-27 16:47:21 +0200569
570 return EFI_SUCCESS;
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200571}
572
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200573/**
Mario Six8fac2912018-07-10 08:40:17 +0200574 * efi_search_protocol() - find a protocol on a handle.
575 * @handle: handle
576 * @protocol_guid: GUID of the protocol
577 * @handler: reference to the protocol
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100578 *
Mario Six8fac2912018-07-10 08:40:17 +0200579 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100580 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100581efi_status_t efi_search_protocol(const efi_handle_t handle,
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100582 const efi_guid_t *protocol_guid,
583 struct efi_handler **handler)
584{
585 struct efi_object *efiobj;
586 struct list_head *lhandle;
587
588 if (!handle || !protocol_guid)
589 return EFI_INVALID_PARAMETER;
590 efiobj = efi_search_obj(handle);
591 if (!efiobj)
592 return EFI_INVALID_PARAMETER;
593 list_for_each(lhandle, &efiobj->protocols) {
594 struct efi_handler *protocol;
595
596 protocol = list_entry(lhandle, struct efi_handler, link);
Heinrich Schuchardt2a22db92022-03-09 19:56:23 +0100597 if (!guidcmp(&protocol->guid, protocol_guid)) {
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100598 if (handler)
599 *handler = protocol;
600 return EFI_SUCCESS;
601 }
602 }
603 return EFI_NOT_FOUND;
604}
605
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200606/**
Mario Six8fac2912018-07-10 08:40:17 +0200607 * efi_remove_protocol() - delete protocol from a handle
608 * @handle: handle from which the protocol shall be deleted
609 * @protocol: GUID of the protocol to be deleted
610 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100611 *
Mario Six8fac2912018-07-10 08:40:17 +0200612 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100613 */
Ilias Apalodimase2effb82023-06-19 14:14:03 +0300614static efi_status_t efi_remove_protocol(const efi_handle_t handle,
615 const efi_guid_t *protocol,
616 void *protocol_interface)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100617{
618 struct efi_handler *handler;
619 efi_status_t ret;
620
621 ret = efi_search_protocol(handle, protocol, &handler);
622 if (ret != EFI_SUCCESS)
623 return ret;
Heinrich Schuchardtb27594d2018-05-11 12:09:21 +0200624 if (handler->protocol_interface != protocol_interface)
Heinrich Schuchardtfdeb1f02019-05-10 20:06:48 +0200625 return EFI_NOT_FOUND;
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100626 list_del(&handler->link);
627 free(handler);
628 return EFI_SUCCESS;
629}
630
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200631/**
Mario Six8fac2912018-07-10 08:40:17 +0200632 * efi_remove_all_protocols() - delete all protocols from a handle
633 * @handle: handle from which the protocols shall be deleted
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100634 *
Mario Six8fac2912018-07-10 08:40:17 +0200635 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100636 */
Heinrich Schuchardt8126a1e2023-02-10 08:50:06 +0100637static efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100638{
639 struct efi_object *efiobj;
Heinrich Schuchardta84731d2018-01-11 08:15:55 +0100640 struct efi_handler *protocol;
641 struct efi_handler *pos;
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100642
643 efiobj = efi_search_obj(handle);
644 if (!efiobj)
645 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta84731d2018-01-11 08:15:55 +0100646 list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100647 efi_status_t ret;
648
Ilias Apalodimasb09ecf12023-07-24 13:17:36 +0300649 ret = efi_uninstall_protocol(handle, &protocol->guid,
Ilias Apalodimasc76eade2023-08-24 17:21:09 +0300650 protocol->protocol_interface, true);
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100651 if (ret != EFI_SUCCESS)
652 return ret;
653 }
654 return EFI_SUCCESS;
655}
656
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200657/**
Mario Six8fac2912018-07-10 08:40:17 +0200658 * efi_delete_handle() - delete handle
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100659 *
Heinrich Schuchardt41cc3c12019-07-14 11:05:34 +0200660 * @handle: handle to delete
Ilias Apalodimasb09ecf12023-07-24 13:17:36 +0300661 *
662 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100663 */
Ilias Apalodimasb09ecf12023-07-24 13:17:36 +0300664efi_status_t efi_delete_handle(efi_handle_t handle)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100665{
Etienne Carriereb20a42b2022-09-07 10:20:13 +0200666 efi_status_t ret;
667
668 ret = efi_remove_all_protocols(handle);
Ilias Apalodimasb09ecf12023-07-24 13:17:36 +0300669 if (ret != EFI_SUCCESS) {
670 log_err("Handle %p has protocols installed. Unable to delete\n", handle);
671 return ret;
Etienne Carriereb20a42b2022-09-07 10:20:13 +0200672 }
673
Ilias Apalodimasc76eade2023-08-24 17:21:09 +0300674 return efi_purge_handle(handle);
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100675}
676
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200677/**
Mario Six8fac2912018-07-10 08:40:17 +0200678 * efi_is_event() - check if a pointer is a valid event
679 * @event: pointer to check
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100680 *
Mario Six8fac2912018-07-10 08:40:17 +0200681 * Return: status code
Alexander Grafc15d9212016-03-04 01:09:59 +0100682 */
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100683static efi_status_t efi_is_event(const struct efi_event *event)
684{
685 const struct efi_event *evt;
686
687 if (!event)
688 return EFI_INVALID_PARAMETER;
689 list_for_each_entry(evt, &efi_events, link) {
690 if (evt == event)
691 return EFI_SUCCESS;
692 }
693 return EFI_INVALID_PARAMETER;
694}
Alexander Grafc15d9212016-03-04 01:09:59 +0100695
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200696/**
Mario Six8fac2912018-07-10 08:40:17 +0200697 * efi_create_event() - create an event
Heinrich Schuchardt41cc3c12019-07-14 11:05:34 +0200698 *
Mario Six8fac2912018-07-10 08:40:17 +0200699 * @type: type of the event to create
700 * @notify_tpl: task priority level of the event
701 * @notify_function: notification function of the event
702 * @notify_context: pointer passed to the notification function
703 * @group: event group
704 * @event: created event
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200705 *
706 * This function is used inside U-Boot code to create an event.
707 *
708 * For the API function implementing the CreateEvent service see
709 * efi_create_event_ext.
710 *
Mario Six8fac2912018-07-10 08:40:17 +0200711 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200712 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100713efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200714 void (EFIAPI *notify_function) (
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200715 struct efi_event *event,
716 void *context),
Masahisa Kojima787774a2023-11-10 13:25:38 +0900717 void *notify_context, const efi_guid_t *group,
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100718 struct efi_event **event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100719{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100720 struct efi_event *evt;
Heinrich Schuchardt4429d872019-07-11 20:15:09 +0200721 efi_status_t ret;
722 int pool_type;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200723
Jonathan Gray7758b212017-03-12 19:26:07 +1100724 if (event == NULL)
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200725 return EFI_INVALID_PARAMETER;
Jonathan Gray7758b212017-03-12 19:26:07 +1100726
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200727 switch (type) {
728 case 0:
729 case EVT_TIMER:
730 case EVT_NOTIFY_SIGNAL:
731 case EVT_TIMER | EVT_NOTIFY_SIGNAL:
732 case EVT_NOTIFY_WAIT:
733 case EVT_TIMER | EVT_NOTIFY_WAIT:
734 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
Heinrich Schuchardt4429d872019-07-11 20:15:09 +0200735 pool_type = EFI_BOOT_SERVICES_DATA;
736 break;
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200737 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
Heinrich Schuchardt4429d872019-07-11 20:15:09 +0200738 pool_type = EFI_RUNTIME_SERVICES_DATA;
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200739 break;
740 default:
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200741 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200742 }
Jonathan Gray7758b212017-03-12 19:26:07 +1100743
Heinrich Schuchardt3d83b732021-01-06 12:55:22 +0100744 /*
745 * The UEFI specification requires event notification levels to be
746 * > TPL_APPLICATION and <= TPL_HIGH_LEVEL.
747 *
748 * Parameter NotifyTpl should not be checked if it is not used.
749 */
AKASHI Takahiro3f3835d2018-08-10 15:36:32 +0900750 if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) &&
Heinrich Schuchardt3d83b732021-01-06 12:55:22 +0100751 (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS ||
752 notify_tpl == TPL_APPLICATION))
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200753 return EFI_INVALID_PARAMETER;
Jonathan Gray7758b212017-03-12 19:26:07 +1100754
Heinrich Schuchardt4429d872019-07-11 20:15:09 +0200755 ret = efi_allocate_pool(pool_type, sizeof(struct efi_event),
756 (void **)&evt);
757 if (ret != EFI_SUCCESS)
758 return ret;
759 memset(evt, 0, sizeof(struct efi_event));
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100760 evt->type = type;
761 evt->notify_tpl = notify_tpl;
762 evt->notify_function = notify_function;
763 evt->notify_context = notify_context;
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100764 evt->group = group;
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200765 /* Disable timers on boot up */
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100766 evt->trigger_next = -1ULL;
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100767 list_add_tail(&evt->link, &efi_events);
768 *event = evt;
769 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +0100770}
771
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200772/*
Mario Six8fac2912018-07-10 08:40:17 +0200773 * efi_create_event_ex() - create an event in a group
Heinrich Schuchardt8126a1e2023-02-10 08:50:06 +0100774 *
Mario Six8fac2912018-07-10 08:40:17 +0200775 * @type: type of the event to create
776 * @notify_tpl: task priority level of the event
777 * @notify_function: notification function of the event
778 * @notify_context: pointer passed to the notification function
779 * @event: created event
780 * @event_group: event group
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100781 *
782 * This function implements the CreateEventEx service.
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100783 *
Mario Six8fac2912018-07-10 08:40:17 +0200784 * See the Unified Extensible Firmware Interface (UEFI) specification for
785 * details.
786 *
787 * Return: status code
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100788 */
Heinrich Schuchardt8126a1e2023-02-10 08:50:06 +0100789static
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100790efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl,
791 void (EFIAPI *notify_function) (
792 struct efi_event *event,
793 void *context),
794 void *notify_context,
Masahisa Kojima787774a2023-11-10 13:25:38 +0900795 const efi_guid_t *event_group,
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100796 struct efi_event **event)
797{
Heinrich Schuchardtce664992019-05-04 10:12:50 +0200798 efi_status_t ret;
799
Heinrich Schuchardt282249d2022-01-16 14:15:31 +0100800 EFI_ENTRY("%d, 0x%zx, %p, %p, %pUs", type, notify_tpl, notify_function,
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100801 notify_context, event_group);
Heinrich Schuchardtce664992019-05-04 10:12:50 +0200802
803 /*
804 * The allowable input parameters are the same as in CreateEvent()
805 * except for the following two disallowed event types.
806 */
807 switch (type) {
808 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
809 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
810 ret = EFI_INVALID_PARAMETER;
811 goto out;
812 }
813
814 ret = efi_create_event(type, notify_tpl, notify_function,
815 notify_context, event_group, event);
816out:
817 return EFI_EXIT(ret);
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100818}
819
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200820/**
Mario Six8fac2912018-07-10 08:40:17 +0200821 * efi_create_event_ext() - create an event
822 * @type: type of the event to create
823 * @notify_tpl: task priority level of the event
824 * @notify_function: notification function of the event
825 * @notify_context: pointer passed to the notification function
826 * @event: created event
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200827 *
828 * This function implements the CreateEvent service.
Mario Six8fac2912018-07-10 08:40:17 +0200829 *
830 * See the Unified Extensible Firmware Interface (UEFI) specification for
831 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200832 *
Mario Six8fac2912018-07-10 08:40:17 +0200833 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200834 */
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200835static efi_status_t EFIAPI efi_create_event_ext(
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100836 uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200837 void (EFIAPI *notify_function) (
838 struct efi_event *event,
839 void *context),
840 void *notify_context, struct efi_event **event)
841{
842 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
843 notify_context);
844 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100845 notify_context, NULL, event));
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200846}
847
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200848/**
Mario Six8fac2912018-07-10 08:40:17 +0200849 * efi_timer_check() - check if a timer event has occurred
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200850 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200851 * Check if a timer event has occurred or a queued notification function should
852 * be called.
853 *
Alexander Grafc15d9212016-03-04 01:09:59 +0100854 * Our timers have to work without interrupts, so we check whenever keyboard
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200855 * input or disk accesses happen if enough time elapsed for them to fire.
Alexander Grafc15d9212016-03-04 01:09:59 +0100856 */
857void efi_timer_check(void)
858{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100859 struct efi_event *evt;
Alexander Grafc15d9212016-03-04 01:09:59 +0100860 u64 now = timer_get_us();
861
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100862 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +0200863 if (!timers_enabled)
864 continue;
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100865 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next)
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200866 continue;
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100867 switch (evt->trigger_type) {
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200868 case EFI_TIMER_RELATIVE:
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100869 evt->trigger_type = EFI_TIMER_STOP;
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200870 break;
871 case EFI_TIMER_PERIODIC:
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100872 evt->trigger_next += evt->trigger_time;
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200873 break;
874 default:
875 continue;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200876 }
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100877 evt->is_signaled = false;
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +0200878 efi_signal_event(evt);
Alexander Grafc15d9212016-03-04 01:09:59 +0100879 }
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +0200880 efi_process_event_queue();
Stefan Roese80877fa2022-09-02 14:10:46 +0200881 schedule();
Alexander Grafc15d9212016-03-04 01:09:59 +0100882}
883
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200884/**
Mario Six8fac2912018-07-10 08:40:17 +0200885 * efi_set_timer() - set the trigger time for a timer event or stop the event
886 * @event: event for which the timer is set
887 * @type: type of the timer
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200888 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200889 *
890 * This is the function for internal usage in U-Boot. For the API function
891 * implementing the SetTimer service see efi_set_timer_ext.
892 *
Mario Six8fac2912018-07-10 08:40:17 +0200893 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200894 */
xypron.glpk@gmx.de3ecc6bd2017-07-19 19:22:34 +0200895efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200896 uint64_t trigger_time)
Alexander Grafc15d9212016-03-04 01:09:59 +0100897{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100898 /* Check that the event is valid */
899 if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER))
900 return EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +0100901
xypron.glpk@gmx.de44c4be02017-07-18 20:17:23 +0200902 /*
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200903 * The parameter defines a multiple of 100 ns.
904 * We use multiples of 1000 ns. So divide by 10.
xypron.glpk@gmx.de44c4be02017-07-18 20:17:23 +0200905 */
Heinrich Schuchardt368ca642017-10-05 16:14:14 +0200906 do_div(trigger_time, 10);
Alexander Grafc15d9212016-03-04 01:09:59 +0100907
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100908 switch (type) {
909 case EFI_TIMER_STOP:
910 event->trigger_next = -1ULL;
911 break;
912 case EFI_TIMER_PERIODIC:
913 case EFI_TIMER_RELATIVE:
914 event->trigger_next = timer_get_us() + trigger_time;
915 break;
916 default:
917 return EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +0100918 }
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100919 event->trigger_type = type;
920 event->trigger_time = trigger_time;
921 event->is_signaled = false;
922 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +0100923}
924
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200925/**
Mario Six8fac2912018-07-10 08:40:17 +0200926 * efi_set_timer_ext() - Set the trigger time for a timer event or stop the
927 * event
928 * @event: event for which the timer is set
929 * @type: type of the timer
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200930 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200931 *
932 * This function implements the SetTimer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200933 *
Mario Six8fac2912018-07-10 08:40:17 +0200934 * See the Unified Extensible Firmware Interface (UEFI) specification for
935 * details.
936 *
937 *
938 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200939 */
xypron.glpk@gmx.de3ecc6bd2017-07-19 19:22:34 +0200940static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
941 enum efi_timer_delay type,
942 uint64_t trigger_time)
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200943{
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900944 EFI_ENTRY("%p, %d, %llx", event, type, trigger_time);
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200945 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
946}
947
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200948/**
Mario Six8fac2912018-07-10 08:40:17 +0200949 * efi_wait_for_event() - wait for events to be signaled
950 * @num_events: number of events to be waited for
951 * @event: events to be waited for
952 * @index: index of the event that was signaled
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200953 *
954 * This function implements the WaitForEvent service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200955 *
Mario Six8fac2912018-07-10 08:40:17 +0200956 * See the Unified Extensible Firmware Interface (UEFI) specification for
957 * details.
958 *
959 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200960 */
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100961static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200962 struct efi_event **event,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100963 efi_uintn_t *index)
Alexander Grafc15d9212016-03-04 01:09:59 +0100964{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100965 int i;
Alexander Grafc15d9212016-03-04 01:09:59 +0100966
Heinrich Schuchardte1e8a652022-02-03 22:21:51 +0100967 EFI_ENTRY("%zu, %p, %p", num_events, event, index);
Alexander Grafc15d9212016-03-04 01:09:59 +0100968
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200969 /* Check parameters */
970 if (!num_events || !event)
971 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200972 /* Check TPL */
973 if (efi_tpl != TPL_APPLICATION)
974 return EFI_EXIT(EFI_UNSUPPORTED);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200975 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100976 if (efi_is_event(event[i]) != EFI_SUCCESS)
977 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200978 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
979 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200980 if (!event[i]->is_signaled)
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +0200981 efi_queue_event(event[i]);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200982 }
983
984 /* Wait for signal */
985 for (;;) {
986 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200987 if (event[i]->is_signaled)
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200988 goto out;
989 }
990 /* Allow events to occur. */
991 efi_timer_check();
992 }
993
994out:
995 /*
996 * Reset the signal which is passed to the caller to allow periodic
997 * events to occur.
998 */
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200999 event[i]->is_signaled = false;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02001000 if (index)
1001 *index = i;
Alexander Grafc15d9212016-03-04 01:09:59 +01001002
1003 return EFI_EXIT(EFI_SUCCESS);
1004}
1005
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001006/**
Mario Six8fac2912018-07-10 08:40:17 +02001007 * efi_signal_event_ext() - signal an EFI event
1008 * @event: event to signal
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001009 *
1010 * This function implements the SignalEvent service.
Mario Six8fac2912018-07-10 08:40:17 +02001011 *
1012 * See the Unified Extensible Firmware Interface (UEFI) specification for
1013 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001014 *
1015 * This functions sets the signaled state of the event and queues the
1016 * notification function for execution.
1017 *
Mario Six8fac2912018-07-10 08:40:17 +02001018 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001019 */
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02001020static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +01001021{
1022 EFI_ENTRY("%p", event);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001023 if (efi_is_event(event) != EFI_SUCCESS)
1024 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02001025 efi_signal_event(event);
Alexander Grafc15d9212016-03-04 01:09:59 +01001026 return EFI_EXIT(EFI_SUCCESS);
1027}
1028
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001029/**
Mario Six8fac2912018-07-10 08:40:17 +02001030 * efi_close_event() - close an EFI event
1031 * @event: event to close
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001032 *
1033 * This function implements the CloseEvent service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001034 *
Mario Six8fac2912018-07-10 08:40:17 +02001035 * See the Unified Extensible Firmware Interface (UEFI) specification for
1036 * details.
1037 *
1038 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001039 */
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +02001040static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +01001041{
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001042 struct efi_register_notify_event *item, *next;
1043
Alexander Grafc15d9212016-03-04 01:09:59 +01001044 EFI_ENTRY("%p", event);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001045 if (efi_is_event(event) != EFI_SUCCESS)
1046 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001047
1048 /* Remove protocol notify registrations for the event */
1049 list_for_each_entry_safe(item, next, &efi_register_notify_events,
1050 link) {
1051 if (event == item->event) {
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001052 struct efi_protocol_notification *hitem, *hnext;
1053
1054 /* Remove signaled handles */
1055 list_for_each_entry_safe(hitem, hnext, &item->handles,
1056 link) {
1057 list_del(&hitem->link);
1058 free(hitem);
1059 }
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001060 list_del(&item->link);
1061 free(item);
1062 }
1063 }
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +02001064 /* Remove event from queue */
1065 if (efi_event_is_queued(event))
1066 list_del(&event->queue_link);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001067
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001068 list_del(&event->link);
Heinrich Schuchardt4429d872019-07-11 20:15:09 +02001069 efi_free_pool(event);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001070 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01001071}
1072
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001073/**
Mario Six8fac2912018-07-10 08:40:17 +02001074 * efi_check_event() - check if an event is signaled
1075 * @event: event to check
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001076 *
1077 * This function implements the CheckEvent service.
Mario Six8fac2912018-07-10 08:40:17 +02001078 *
1079 * See the Unified Extensible Firmware Interface (UEFI) specification for
1080 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001081 *
Mario Six8fac2912018-07-10 08:40:17 +02001082 * If an event is not signaled yet, the notification function is queued. The
1083 * signaled state is cleared.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001084 *
Mario Six8fac2912018-07-10 08:40:17 +02001085 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001086 */
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +02001087static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +01001088{
1089 EFI_ENTRY("%p", event);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02001090 efi_timer_check();
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001091 if (efi_is_event(event) != EFI_SUCCESS ||
1092 event->type & EVT_NOTIFY_SIGNAL)
1093 return EFI_EXIT(EFI_INVALID_PARAMETER);
1094 if (!event->is_signaled)
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02001095 efi_queue_event(event);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001096 if (event->is_signaled) {
1097 event->is_signaled = false;
1098 return EFI_EXIT(EFI_SUCCESS);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02001099 }
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001100 return EFI_EXIT(EFI_NOT_READY);
Alexander Grafc15d9212016-03-04 01:09:59 +01001101}
1102
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001103/**
Mario Six8fac2912018-07-10 08:40:17 +02001104 * efi_search_obj() - find the internal EFI object for a handle
1105 * @handle: handle to find
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +02001106 *
Mario Six8fac2912018-07-10 08:40:17 +02001107 * Return: EFI object
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +02001108 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001109struct efi_object *efi_search_obj(const efi_handle_t handle)
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +02001110{
Heinrich Schuchardt274cc872017-11-06 21:17:50 +01001111 struct efi_object *efiobj;
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +02001112
Heinrich Schuchardt5d8231b2019-05-05 10:37:51 +02001113 if (!handle)
1114 return NULL;
1115
Heinrich Schuchardt274cc872017-11-06 21:17:50 +01001116 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001117 if (efiobj == handle)
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +02001118 return efiobj;
1119 }
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +02001120 return NULL;
1121}
1122
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001123/**
Mario Six8fac2912018-07-10 08:40:17 +02001124 * efi_open_protocol_info_entry() - create open protocol info entry and add it
1125 * to a protocol
1126 * @handler: handler of a protocol
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001127 *
Mario Six8fac2912018-07-10 08:40:17 +02001128 * Return: open protocol info entry
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001129 */
1130static struct efi_open_protocol_info_entry *efi_create_open_info(
1131 struct efi_handler *handler)
1132{
1133 struct efi_open_protocol_info_item *item;
1134
1135 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
1136 if (!item)
1137 return NULL;
1138 /* Append the item to the open protocol info list. */
1139 list_add_tail(&item->link, &handler->open_infos);
1140
1141 return &item->info;
1142}
1143
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001144/**
Mario Six8fac2912018-07-10 08:40:17 +02001145 * efi_delete_open_info() - remove an open protocol info entry from a protocol
1146 * @item: open protocol info entry to delete
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001147 *
Mario Six8fac2912018-07-10 08:40:17 +02001148 * Return: status code
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001149 */
1150static efi_status_t efi_delete_open_info(
1151 struct efi_open_protocol_info_item *item)
1152{
1153 list_del(&item->link);
1154 free(item);
1155 return EFI_SUCCESS;
1156}
1157
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001158/**
Mario Six8fac2912018-07-10 08:40:17 +02001159 * efi_add_protocol() - install new protocol on a handle
1160 * @handle: handle on which the protocol shall be installed
1161 * @protocol: GUID of the protocol to be installed
1162 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001163 *
Mario Six8fac2912018-07-10 08:40:17 +02001164 * Return: status code
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001165 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001166efi_status_t efi_add_protocol(const efi_handle_t handle,
1167 const efi_guid_t *protocol,
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001168 void *protocol_interface)
1169{
1170 struct efi_object *efiobj;
1171 struct efi_handler *handler;
1172 efi_status_t ret;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001173 struct efi_register_notify_event *event;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001174
1175 efiobj = efi_search_obj(handle);
1176 if (!efiobj)
1177 return EFI_INVALID_PARAMETER;
1178 ret = efi_search_protocol(handle, protocol, NULL);
1179 if (ret != EFI_NOT_FOUND)
1180 return EFI_INVALID_PARAMETER;
1181 handler = calloc(1, sizeof(struct efi_handler));
1182 if (!handler)
1183 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt2a22db92022-03-09 19:56:23 +01001184 memcpy((void *)&handler->guid, protocol, sizeof(efi_guid_t));
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001185 handler->protocol_interface = protocol_interface;
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001186 INIT_LIST_HEAD(&handler->open_infos);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001187 list_add_tail(&handler->link, &efiobj->protocols);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001188
1189 /* Notify registered events */
1190 list_for_each_entry(event, &efi_register_notify_events, link) {
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001191 if (!guidcmp(protocol, &event->protocol)) {
1192 struct efi_protocol_notification *notif;
1193
1194 notif = calloc(1, sizeof(*notif));
1195 if (!notif) {
1196 list_del(&handler->link);
1197 free(handler);
1198 return EFI_OUT_OF_RESOURCES;
1199 }
1200 notif->handle = handle;
1201 list_add_tail(&notif->link, &event->handles);
Heinrich Schuchardtea0f6a82019-06-07 07:43:24 +02001202 event->event->is_signaled = false;
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02001203 efi_signal_event(event->event);
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001204 }
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001205 }
1206
Heinrich Schuchardt3d2abc32018-01-11 08:16:01 +01001207 if (!guidcmp(&efi_guid_device_path, protocol))
1208 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001209 return EFI_SUCCESS;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001210}
1211
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001212/**
Mario Six8fac2912018-07-10 08:40:17 +02001213 * efi_install_protocol_interface() - install protocol interface
1214 * @handle: handle on which the protocol shall be installed
1215 * @protocol: GUID of the protocol to be installed
1216 * @protocol_interface_type: type of the interface to be installed,
1217 * always EFI_NATIVE_INTERFACE
1218 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001219 *
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001220 * This function implements the InstallProtocolInterface service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001221 *
Mario Six8fac2912018-07-10 08:40:17 +02001222 * See the Unified Extensible Firmware Interface (UEFI) specification for
1223 * details.
1224 *
1225 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001226 */
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001227static efi_status_t EFIAPI efi_install_protocol_interface(
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02001228 efi_handle_t *handle, const efi_guid_t *protocol,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001229 int protocol_interface_type, void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01001230{
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001231 efi_status_t r;
1232
Heinrich Schuchardt282249d2022-01-16 14:15:31 +01001233 EFI_ENTRY("%p, %pUs, %d, %p", handle, protocol, protocol_interface_type,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001234 protocol_interface);
1235
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001236 if (!handle || !protocol ||
1237 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1238 r = EFI_INVALID_PARAMETER;
1239 goto out;
1240 }
1241
1242 /* Create new handle if requested. */
1243 if (!*handle) {
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +02001244 r = efi_create_handle(handle);
1245 if (r != EFI_SUCCESS)
1246 goto out;
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02001247 EFI_PRINT("new handle %p\n", *handle);
Heinrich Schuchardt50f02102017-10-26 19:25:43 +02001248 } else {
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02001249 EFI_PRINT("handle %p\n", *handle);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001250 }
Heinrich Schuchardt865d5f32017-10-26 19:25:54 +02001251 /* Add new protocol */
1252 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001253out:
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001254 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01001255}
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001256
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001257/**
Mario Six8fac2912018-07-10 08:40:17 +02001258 * efi_get_drivers() - get all drivers associated to a controller
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001259 * @handle: handle of the controller
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001260 * @protocol: protocol GUID (optional)
Mario Six8fac2912018-07-10 08:40:17 +02001261 * @number_of_drivers: number of child controllers
1262 * @driver_handle_buffer: handles of the the drivers
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001263 *
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001264 * The allocated buffer has to be freed with free().
1265 *
Mario Six8fac2912018-07-10 08:40:17 +02001266 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001267 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001268static efi_status_t efi_get_drivers(efi_handle_t handle,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001269 const efi_guid_t *protocol,
1270 efi_uintn_t *number_of_drivers,
1271 efi_handle_t **driver_handle_buffer)
1272{
1273 struct efi_handler *handler;
1274 struct efi_open_protocol_info_item *item;
1275 efi_uintn_t count = 0, i;
1276 bool duplicate;
1277
1278 /* Count all driver associations */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001279 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardt2a22db92022-03-09 19:56:23 +01001280 if (protocol && guidcmp(&handler->guid, protocol))
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001281 continue;
1282 list_for_each_entry(item, &handler->open_infos, link) {
1283 if (item->info.attributes &
1284 EFI_OPEN_PROTOCOL_BY_DRIVER)
1285 ++count;
1286 }
1287 }
Heinrich Schuchardt7416aef2019-06-02 01:43:33 +02001288 *number_of_drivers = 0;
1289 if (!count) {
1290 *driver_handle_buffer = NULL;
1291 return EFI_SUCCESS;
1292 }
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001293 /*
1294 * Create buffer. In case of duplicate driver assignments the buffer
1295 * will be too large. But that does not harm.
1296 */
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001297 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1298 if (!*driver_handle_buffer)
1299 return EFI_OUT_OF_RESOURCES;
1300 /* Collect unique driver handles */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001301 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardt2a22db92022-03-09 19:56:23 +01001302 if (protocol && guidcmp(&handler->guid, protocol))
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001303 continue;
1304 list_for_each_entry(item, &handler->open_infos, link) {
1305 if (item->info.attributes &
1306 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1307 /* Check this is a new driver */
1308 duplicate = false;
1309 for (i = 0; i < *number_of_drivers; ++i) {
1310 if ((*driver_handle_buffer)[i] ==
1311 item->info.agent_handle)
1312 duplicate = true;
1313 }
1314 /* Copy handle to buffer */
1315 if (!duplicate) {
1316 i = (*number_of_drivers)++;
1317 (*driver_handle_buffer)[i] =
1318 item->info.agent_handle;
1319 }
1320 }
1321 }
1322 }
1323 return EFI_SUCCESS;
1324}
1325
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001326/**
Mario Six8fac2912018-07-10 08:40:17 +02001327 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001328 * @handle: handle of the controller
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001329 * @protocol: protocol GUID (optional)
Mario Six8fac2912018-07-10 08:40:17 +02001330 * @child_handle: handle of the child to destroy
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001331 *
1332 * This function implements the DisconnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02001333 *
1334 * See the Unified Extensible Firmware Interface (UEFI) specification for
1335 * details.
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001336 *
Mario Six8fac2912018-07-10 08:40:17 +02001337 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001338 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001339static efi_status_t efi_disconnect_all_drivers
1340 (efi_handle_t handle,
1341 const efi_guid_t *protocol,
1342 efi_handle_t child_handle)
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001343{
Ilias Apalodimas8e315e92023-11-28 21:10:31 +02001344 efi_uintn_t number_of_drivers;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001345 efi_handle_t *driver_handle_buffer;
1346 efi_status_t r, ret;
1347
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001348 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001349 &driver_handle_buffer);
1350 if (ret != EFI_SUCCESS)
1351 return ret;
Heinrich Schuchardt7416aef2019-06-02 01:43:33 +02001352 if (!number_of_drivers)
1353 return EFI_SUCCESS;
Ilias Apalodimas1e10d622023-06-20 09:19:28 +03001354
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001355 while (number_of_drivers) {
Ilias Apalodimas8e315e92023-11-28 21:10:31 +02001356 r = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001357 handle,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001358 driver_handle_buffer[--number_of_drivers],
1359 child_handle));
Ilias Apalodimas1e10d622023-06-20 09:19:28 +03001360 if (r != EFI_SUCCESS)
Ilias Apalodimas8e315e92023-11-28 21:10:31 +02001361 ret = r;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001362 }
Ilias Apalodimas1e10d622023-06-20 09:19:28 +03001363
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001364 free(driver_handle_buffer);
1365 return ret;
1366}
1367
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001368/**
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001369 * efi_uninstall_protocol() - uninstall protocol interface
1370 *
Mario Six8fac2912018-07-10 08:40:17 +02001371 * @handle: handle from which the protocol shall be removed
1372 * @protocol: GUID of the protocol to be removed
1373 * @protocol_interface: interface to be removed
Ilias Apalodimasc76eade2023-08-24 17:21:09 +03001374 * @preserve: preserve or delete the handle and remove it from any
1375 * list it participates if no protocols remain
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001376 *
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001377 * This function DOES NOT delete a handle without installed protocol.
Mario Six8fac2912018-07-10 08:40:17 +02001378 *
1379 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001380 */
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001381static efi_status_t efi_uninstall_protocol
1382 (efi_handle_t handle, const efi_guid_t *protocol,
Ilias Apalodimasc76eade2023-08-24 17:21:09 +03001383 void *protocol_interface, bool preserve)
Alexander Grafc15d9212016-03-04 01:09:59 +01001384{
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001385 struct efi_handler *handler;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001386 struct efi_open_protocol_info_item *item;
1387 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001388 efi_status_t r;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001389
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001390 /* Find the protocol on the handle */
1391 r = efi_search_protocol(handle, protocol, &handler);
1392 if (r != EFI_SUCCESS)
1393 goto out;
Ilias Apalodimasac1abbe2023-06-20 09:19:30 +03001394 if (handler->protocol_interface != protocol_interface)
1395 return EFI_NOT_FOUND;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001396 /* Disconnect controllers */
Heinrich Schuchardtd822f862023-06-18 09:00:45 +02001397 r = efi_disconnect_all_drivers(handle, protocol, NULL);
Ilias Apalodimas106f0df2023-06-20 09:19:29 +03001398 if (r != EFI_SUCCESS) {
1399 r = EFI_ACCESS_DENIED;
Ilias Apalodimas8e315e92023-11-28 21:10:31 +02001400 /*
1401 * This will reconnect all controllers of the handle, even ones
1402 * that were not connected before. This can be done better
1403 * but we are following the EDKII implementation on this for
1404 * now
1405 */
1406 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
Ilias Apalodimas106f0df2023-06-20 09:19:29 +03001407 goto out;
1408 }
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001409 /* Close protocol */
1410 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1411 if (item->info.attributes ==
1412 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1413 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1414 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
Ilias Apalodimas106f0df2023-06-20 09:19:29 +03001415 efi_delete_open_info(item);
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001416 }
Ilias Apalodimas106f0df2023-06-20 09:19:29 +03001417 /* if agents didn't close the protocols properly */
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001418 if (!list_empty(&handler->open_infos)) {
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001419 r = EFI_ACCESS_DENIED;
Ilias Apalodimas106f0df2023-06-20 09:19:29 +03001420 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001421 goto out;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001422 }
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001423 r = efi_remove_protocol(handle, protocol, protocol_interface);
Ilias Apalodimasc76eade2023-08-24 17:21:09 +03001424 if (r != EFI_SUCCESS)
1425 return r;
1426 /*
1427 * We don't care about the return value here since the
1428 * handle might have more protocols installed
1429 */
1430 if (!preserve)
1431 efi_purge_handle(handle);
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001432out:
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001433 return r;
Alexander Grafc15d9212016-03-04 01:09:59 +01001434}
1435
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001436/**
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001437 * efi_uninstall_protocol_interface() - uninstall protocol interface
1438 * @handle: handle from which the protocol shall be removed
1439 * @protocol: GUID of the protocol to be removed
1440 * @protocol_interface: interface to be removed
1441 *
1442 * This function implements the UninstallProtocolInterface service.
1443 *
1444 * See the Unified Extensible Firmware Interface (UEFI) specification for
1445 * details.
1446 *
1447 * Return: status code
1448 */
1449static efi_status_t EFIAPI efi_uninstall_protocol_interface
1450 (efi_handle_t handle, const efi_guid_t *protocol,
1451 void *protocol_interface)
1452{
1453 efi_status_t ret;
1454
Heinrich Schuchardt282249d2022-01-16 14:15:31 +01001455 EFI_ENTRY("%p, %pUs, %p", handle, protocol, protocol_interface);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001456
Ilias Apalodimasc76eade2023-08-24 17:21:09 +03001457 ret = efi_uninstall_protocol(handle, protocol, protocol_interface, false);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001458 if (ret != EFI_SUCCESS)
1459 goto out;
1460
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001461out:
1462 return EFI_EXIT(ret);
1463}
1464
1465/**
Mario Six8fac2912018-07-10 08:40:17 +02001466 * efi_register_protocol_notify() - register an event for notification when a
1467 * protocol is installed.
1468 * @protocol: GUID of the protocol whose installation shall be notified
1469 * @event: event to be signaled upon installation of the protocol
1470 * @registration: key for retrieving the registration information
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001471 *
1472 * This function implements the RegisterProtocolNotify service.
1473 * See the Unified Extensible Firmware Interface (UEFI) specification
1474 * for details.
1475 *
Mario Six8fac2912018-07-10 08:40:17 +02001476 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001477 */
Jose Marinhoebb61ee2021-03-02 17:26:38 +00001478efi_status_t EFIAPI efi_register_protocol_notify(const efi_guid_t *protocol,
1479 struct efi_event *event,
1480 void **registration)
Alexander Grafc15d9212016-03-04 01:09:59 +01001481{
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001482 struct efi_register_notify_event *item;
1483 efi_status_t ret = EFI_SUCCESS;
1484
Heinrich Schuchardt282249d2022-01-16 14:15:31 +01001485 EFI_ENTRY("%pUs, %p, %p", protocol, event, registration);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001486
1487 if (!protocol || !event || !registration) {
1488 ret = EFI_INVALID_PARAMETER;
1489 goto out;
1490 }
1491
1492 item = calloc(1, sizeof(struct efi_register_notify_event));
1493 if (!item) {
1494 ret = EFI_OUT_OF_RESOURCES;
1495 goto out;
1496 }
1497
1498 item->event = event;
Sughosh Ganu196f66d2019-12-29 00:01:04 +05301499 guidcpy(&item->protocol, protocol);
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001500 INIT_LIST_HEAD(&item->handles);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001501
1502 list_add_tail(&item->link, &efi_register_notify_events);
1503
1504 *registration = item;
1505out:
1506 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001507}
1508
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001509/**
Mario Six8fac2912018-07-10 08:40:17 +02001510 * efi_search() - determine if an EFI handle implements a protocol
Heinrich Schuchardt41cc3c12019-07-14 11:05:34 +02001511 *
Mario Six8fac2912018-07-10 08:40:17 +02001512 * @search_type: selection criterion
1513 * @protocol: GUID of the protocol
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001514 * @handle: handle
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001515 *
1516 * See the documentation of the LocateHandle service in the UEFI specification.
1517 *
Mario Six8fac2912018-07-10 08:40:17 +02001518 * Return: 0 if the handle implements the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001519 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001520static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001521 const efi_guid_t *protocol, efi_handle_t handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01001522{
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001523 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01001524
1525 switch (search_type) {
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001526 case ALL_HANDLES:
Alexander Grafc15d9212016-03-04 01:09:59 +01001527 return 0;
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001528 case BY_PROTOCOL:
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001529 ret = efi_search_protocol(handle, protocol, NULL);
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001530 return (ret != EFI_SUCCESS);
1531 default:
1532 /* Invalid search type */
Alexander Grafc15d9212016-03-04 01:09:59 +01001533 return -1;
1534 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001535}
1536
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001537/**
Heinrich Schuchardteb616522019-05-29 07:46:33 +02001538 * efi_check_register_notify_event() - check if registration key is valid
1539 *
1540 * Check that a pointer is a valid registration key as returned by
1541 * RegisterProtocolNotify().
1542 *
1543 * @key: registration key
1544 * Return: valid registration key or NULL
1545 */
1546static struct efi_register_notify_event *efi_check_register_notify_event
1547 (void *key)
1548{
1549 struct efi_register_notify_event *event;
1550
1551 list_for_each_entry(event, &efi_register_notify_events, link) {
1552 if (event == (struct efi_register_notify_event *)key)
1553 return event;
1554 }
1555 return NULL;
1556}
1557
1558/**
Mario Six8fac2912018-07-10 08:40:17 +02001559 * efi_locate_handle() - locate handles implementing a protocol
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001560 *
1561 * @search_type: selection criterion
1562 * @protocol: GUID of the protocol
1563 * @search_key: registration key
1564 * @buffer_size: size of the buffer to receive the handles in bytes
1565 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001566 *
1567 * This function is meant for U-Boot internal calls. For the API implementation
1568 * of the LocateHandle service see efi_locate_handle_ext.
1569 *
Mario Six8fac2912018-07-10 08:40:17 +02001570 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001571 */
xypron.glpk@gmx.decab4dd52017-08-09 20:55:00 +02001572static efi_status_t efi_locate_handle(
Alexander Grafc15d9212016-03-04 01:09:59 +01001573 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001574 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001575 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01001576{
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001577 struct efi_object *efiobj;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001578 efi_uintn_t size = 0;
Heinrich Schuchardteb616522019-05-29 07:46:33 +02001579 struct efi_register_notify_event *event;
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001580 struct efi_protocol_notification *handle = NULL;
Alexander Grafc15d9212016-03-04 01:09:59 +01001581
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001582 /* Check parameters */
1583 switch (search_type) {
1584 case ALL_HANDLES:
1585 break;
1586 case BY_REGISTER_NOTIFY:
1587 if (!search_key)
1588 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001589 /* Check that the registration key is valid */
Heinrich Schuchardteb616522019-05-29 07:46:33 +02001590 event = efi_check_register_notify_event(search_key);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001591 if (!event)
1592 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001593 break;
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001594 case BY_PROTOCOL:
1595 if (!protocol)
1596 return EFI_INVALID_PARAMETER;
1597 break;
1598 default:
1599 return EFI_INVALID_PARAMETER;
1600 }
1601
Alexander Grafc15d9212016-03-04 01:09:59 +01001602 /* Count how much space we need */
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001603 if (search_type == BY_REGISTER_NOTIFY) {
1604 if (list_empty(&event->handles))
1605 return EFI_NOT_FOUND;
1606 handle = list_first_entry(&event->handles,
1607 struct efi_protocol_notification,
1608 link);
1609 efiobj = handle->handle;
1610 size += sizeof(void *);
1611 } else {
1612 list_for_each_entry(efiobj, &efi_obj_list, link) {
1613 if (!efi_search(search_type, protocol, efiobj))
1614 size += sizeof(void *);
1615 }
1616 if (size == 0)
1617 return EFI_NOT_FOUND;
Alexander Grafc15d9212016-03-04 01:09:59 +01001618 }
1619
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001620 if (!buffer_size)
1621 return EFI_INVALID_PARAMETER;
1622
Alexander Grafc15d9212016-03-04 01:09:59 +01001623 if (*buffer_size < size) {
1624 *buffer_size = size;
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001625 return EFI_BUFFER_TOO_SMALL;
Alexander Grafc15d9212016-03-04 01:09:59 +01001626 }
1627
Rob Clarkcdee3372017-08-06 14:10:07 -04001628 *buffer_size = size;
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001629
Heinrich Schuchardtc97f9472019-05-10 19:03:49 +02001630 /* The buffer size is sufficient but there is no buffer */
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001631 if (!buffer)
1632 return EFI_INVALID_PARAMETER;
Rob Clarkcdee3372017-08-06 14:10:07 -04001633
Alexander Grafc15d9212016-03-04 01:09:59 +01001634 /* Then fill the array */
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001635 if (search_type == BY_REGISTER_NOTIFY) {
1636 *buffer = efiobj;
1637 list_del(&handle->link);
1638 } else {
1639 list_for_each_entry(efiobj, &efi_obj_list, link) {
1640 if (!efi_search(search_type, protocol, efiobj))
1641 *buffer++ = efiobj;
1642 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001643 }
1644
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001645 return EFI_SUCCESS;
1646}
1647
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001648/**
Mario Six8fac2912018-07-10 08:40:17 +02001649 * efi_locate_handle_ext() - locate handles implementing a protocol.
1650 * @search_type: selection criterion
1651 * @protocol: GUID of the protocol
1652 * @search_key: registration key
1653 * @buffer_size: size of the buffer to receive the handles in bytes
1654 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001655 *
1656 * This function implements the LocateHandle service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001657 *
Mario Six8fac2912018-07-10 08:40:17 +02001658 * See the Unified Extensible Firmware Interface (UEFI) specification for
1659 * details.
1660 *
1661 * Return: 0 if the handle implements the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001662 */
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001663static efi_status_t EFIAPI efi_locate_handle_ext(
1664 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001665 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001666 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001667{
Heinrich Schuchardt282249d2022-01-16 14:15:31 +01001668 EFI_ENTRY("%d, %pUs, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001669 buffer_size, buffer);
1670
1671 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1672 buffer_size, buffer));
Alexander Grafc15d9212016-03-04 01:09:59 +01001673}
1674
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001675/**
Mario Six8fac2912018-07-10 08:40:17 +02001676 * efi_remove_configuration_table() - collapses configuration table entries,
1677 * removing index i
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001678 *
Mario Six8fac2912018-07-10 08:40:17 +02001679 * @i: index of the table entry to be removed
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001680 */
Alexander Graffe3366f2017-07-26 13:41:04 +02001681static void efi_remove_configuration_table(int i)
1682{
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001683 struct efi_configuration_table *this = &systab.tables[i];
1684 struct efi_configuration_table *next = &systab.tables[i + 1];
1685 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
Alexander Graffe3366f2017-07-26 13:41:04 +02001686
1687 memmove(this, next, (ulong)end - (ulong)next);
1688 systab.nr_tables--;
1689}
1690
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001691/**
Mario Six8fac2912018-07-10 08:40:17 +02001692 * efi_install_configuration_table() - adds, updates, or removes a
1693 * configuration table
1694 * @guid: GUID of the installed table
1695 * @table: table to be installed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001696 *
1697 * This function is used for internal calls. For the API implementation of the
1698 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1699 *
Mario Six8fac2912018-07-10 08:40:17 +02001700 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001701 */
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001702efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1703 void *table)
Alexander Grafc15d9212016-03-04 01:09:59 +01001704{
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001705 struct efi_event *evt;
Alexander Grafc15d9212016-03-04 01:09:59 +01001706 int i;
1707
Heinrich Schuchardt754ce102018-02-18 00:08:00 +01001708 if (!guid)
1709 return EFI_INVALID_PARAMETER;
1710
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001711 /* Check for GUID override */
Alexander Grafc15d9212016-03-04 01:09:59 +01001712 for (i = 0; i < systab.nr_tables; i++) {
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001713 if (!guidcmp(guid, &systab.tables[i].guid)) {
Alexander Graffe3366f2017-07-26 13:41:04 +02001714 if (table)
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001715 systab.tables[i].table = table;
Alexander Graffe3366f2017-07-26 13:41:04 +02001716 else
1717 efi_remove_configuration_table(i);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001718 goto out;
Alexander Grafc15d9212016-03-04 01:09:59 +01001719 }
1720 }
1721
Alexander Graffe3366f2017-07-26 13:41:04 +02001722 if (!table)
1723 return EFI_NOT_FOUND;
1724
Alexander Grafc15d9212016-03-04 01:09:59 +01001725 /* No override, check for overflow */
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001726 if (i >= EFI_MAX_CONFIGURATION_TABLES)
Alexander Grafc5c11632016-08-19 01:23:24 +02001727 return EFI_OUT_OF_RESOURCES;
Alexander Grafc15d9212016-03-04 01:09:59 +01001728
1729 /* Add a new entry */
Sughosh Ganu196f66d2019-12-29 00:01:04 +05301730 guidcpy(&systab.tables[i].guid, guid);
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001731 systab.tables[i].table = table;
Alexander Graf9982e672016-08-19 01:23:30 +02001732 systab.nr_tables = i + 1;
Alexander Grafc15d9212016-03-04 01:09:59 +01001733
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001734out:
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001735 /* systab.nr_tables may have changed. So we need to update the CRC32 */
Heinrich Schuchardtac2d4da2018-07-07 15:36:05 +02001736 efi_update_table_header_crc32(&systab.hdr);
1737
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001738 /* Notify that the configuration table was changed */
1739 list_for_each_entry(evt, &efi_events, link) {
1740 if (evt->group && !guidcmp(evt->group, guid)) {
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02001741 efi_signal_event(evt);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001742 break;
1743 }
1744 }
1745
Alexander Grafc5c11632016-08-19 01:23:24 +02001746 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +01001747}
1748
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001749/**
Mario Six8fac2912018-07-10 08:40:17 +02001750 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1751 * configuration table.
1752 * @guid: GUID of the installed table
1753 * @table: table to be installed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001754 *
1755 * This function implements the InstallConfigurationTable service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001756 *
Mario Six8fac2912018-07-10 08:40:17 +02001757 * See the Unified Extensible Firmware Interface (UEFI) specification for
1758 * details.
1759 *
1760 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001761 */
Masahisa Kojimabc38d772021-10-22 20:24:24 +09001762static efi_status_t
1763EFIAPI efi_install_configuration_table_ext(const efi_guid_t *guid,
1764 void *table)
Alexander Grafc5c11632016-08-19 01:23:24 +02001765{
Heinrich Schuchardt282249d2022-01-16 14:15:31 +01001766 EFI_ENTRY("%pUs, %p", guid, table);
Alexander Grafc5c11632016-08-19 01:23:24 +02001767 return EFI_EXIT(efi_install_configuration_table(guid, table));
1768}
1769
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001770/**
Mario Six8fac2912018-07-10 08:40:17 +02001771 * efi_setup_loaded_image() - initialize a loaded image
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001772 *
1773 * Initialize a loaded_image_info and loaded_image_info object with correct
Rob Clarkf8db9222017-09-13 18:05:33 -04001774 * protocols, boot-device, etc.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001775 *
Heinrich Schuchardt41cc3c12019-07-14 11:05:34 +02001776 * In case of an error \*handle_ptr and \*info_ptr are set to NULL and an error
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001777 * code is returned.
1778 *
1779 * @device_path: device path of the loaded image
1780 * @file_path: file path of the loaded image
1781 * @handle_ptr: handle of the loaded image
1782 * @info_ptr: loaded image protocol
1783 * Return: status code
Rob Clarkf8db9222017-09-13 18:05:33 -04001784 */
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001785efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1786 struct efi_device_path *file_path,
1787 struct efi_loaded_image_obj **handle_ptr,
1788 struct efi_loaded_image **info_ptr)
Rob Clarkf8db9222017-09-13 18:05:33 -04001789{
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001790 efi_status_t ret;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001791 struct efi_loaded_image *info = NULL;
1792 struct efi_loaded_image_obj *obj = NULL;
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001793 struct efi_device_path *dp;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001794
1795 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1796 *handle_ptr = NULL;
1797 *info_ptr = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001798
1799 info = calloc(1, sizeof(*info));
1800 if (!info)
1801 return EFI_OUT_OF_RESOURCES;
1802 obj = calloc(1, sizeof(*obj));
1803 if (!obj) {
1804 free(info);
1805 return EFI_OUT_OF_RESOURCES;
1806 }
Heinrich Schuchardtb27ced42019-05-01 14:20:18 +02001807 obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001808
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +01001809 /* Add internal object to object list */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001810 efi_add_handle(&obj->header);
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001811
Heinrich Schuchardtc47f8702018-07-05 08:17:58 +02001812 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001813 info->file_path = file_path;
Heinrich Schuchardt8a7e09d2018-08-26 15:31:52 +02001814 info->system_table = &systab;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001815
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001816 if (device_path) {
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +01001817 info->device_handle = efi_dp_find_obj(device_path, NULL, NULL);
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001818
Heinrich Schuchardtf8de0092024-05-24 14:54:26 +02001819 dp = efi_dp_concat(device_path, file_path, 0);
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001820 if (!dp) {
1821 ret = EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001822 goto failure;
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001823 }
1824 } else {
1825 dp = NULL;
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001826 }
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001827 ret = efi_add_protocol(&obj->header,
1828 &efi_guid_loaded_image_device_path, dp);
1829 if (ret != EFI_SUCCESS)
1830 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001831
1832 /*
1833 * When asking for the loaded_image interface, just
1834 * return handle which points to loaded_image_info
1835 */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001836 ret = efi_add_protocol(&obj->header,
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001837 &efi_guid_loaded_image, info);
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001838 if (ret != EFI_SUCCESS)
1839 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001840
Heinrich Schuchardtd20f5122019-03-19 18:58:58 +01001841 *info_ptr = info;
1842 *handle_ptr = obj;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001843
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001844 return ret;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001845failure:
1846 printf("ERROR: Failure to install protocols for loaded image\n");
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001847 efi_delete_handle(&obj->header);
1848 free(info);
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001849 return ret;
Rob Clarkf8db9222017-09-13 18:05:33 -04001850}
1851
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001852/**
Heinrich Schuchardt1d59a572020-12-04 03:02:03 +01001853 * efi_locate_device_path() - Get the device path and handle of an device
1854 * implementing a protocol
1855 * @protocol: GUID of the protocol
1856 * @device_path: device path
1857 * @device: handle of the device
1858 *
1859 * This function implements the LocateDevicePath service.
1860 *
1861 * See the Unified Extensible Firmware Interface (UEFI) specification for
1862 * details.
1863 *
1864 * Return: status code
1865 */
AKASHI Takahiro537a6932022-04-28 17:09:38 +09001866efi_status_t EFIAPI efi_locate_device_path(const efi_guid_t *protocol,
1867 struct efi_device_path **device_path,
1868 efi_handle_t *device)
Heinrich Schuchardt1d59a572020-12-04 03:02:03 +01001869{
1870 struct efi_device_path *dp;
1871 size_t i;
1872 struct efi_handler *handler;
1873 efi_handle_t *handles;
1874 size_t len, len_dp;
1875 size_t len_best = 0;
1876 efi_uintn_t no_handles;
1877 u8 *remainder;
1878 efi_status_t ret;
1879
Heinrich Schuchardt282249d2022-01-16 14:15:31 +01001880 EFI_ENTRY("%pUs, %p, %p", protocol, device_path, device);
Heinrich Schuchardt1d59a572020-12-04 03:02:03 +01001881
1882 if (!protocol || !device_path || !*device_path) {
1883 ret = EFI_INVALID_PARAMETER;
1884 goto out;
1885 }
1886
1887 /* Find end of device path */
1888 len = efi_dp_instance_size(*device_path);
1889
1890 /* Get all handles implementing the protocol */
1891 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
1892 &no_handles, &handles));
1893 if (ret != EFI_SUCCESS)
1894 goto out;
1895
1896 for (i = 0; i < no_handles; ++i) {
1897 /* Find the device path protocol */
1898 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
1899 &handler);
1900 if (ret != EFI_SUCCESS)
1901 continue;
1902 dp = (struct efi_device_path *)handler->protocol_interface;
1903 len_dp = efi_dp_instance_size(dp);
1904 /*
1905 * This handle can only be a better fit
1906 * if its device path length is longer than the best fit and
1907 * if its device path length is shorter of equal the searched
1908 * device path.
1909 */
1910 if (len_dp <= len_best || len_dp > len)
1911 continue;
1912 /* Check if dp is a subpath of device_path */
1913 if (memcmp(*device_path, dp, len_dp))
1914 continue;
1915 if (!device) {
1916 ret = EFI_INVALID_PARAMETER;
1917 goto out;
1918 }
1919 *device = handles[i];
1920 len_best = len_dp;
1921 }
1922 if (len_best) {
1923 remainder = (u8 *)*device_path + len_best;
1924 *device_path = (struct efi_device_path *)remainder;
1925 ret = EFI_SUCCESS;
1926 } else {
1927 ret = EFI_NOT_FOUND;
1928 }
1929out:
1930 return EFI_EXIT(ret);
1931}
1932
1933/**
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01001934 * efi_load_image_from_file() - load an image from file system
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001935 *
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001936 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1937 * callers obligation to update the memory type as needed.
1938 *
Heinrich Schuchardt471db442020-12-04 09:27:41 +01001939 * @file_path: the path of the image to load
1940 * @buffer: buffer containing the loaded image
1941 * @size: size of the loaded image
1942 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001943 */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +09001944static
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01001945efi_status_t efi_load_image_from_file(struct efi_device_path *file_path,
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001946 void **buffer, efi_uintn_t *size)
Rob Clark857a1222017-09-13 18:05:35 -04001947{
Rob Clark857a1222017-09-13 18:05:35 -04001948 struct efi_file_handle *f;
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01001949 efi_status_t ret;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001950 u64 addr;
Heinrich Schuchardt6b06e0d2018-04-03 22:37:11 +02001951 efi_uintn_t bs;
Rob Clark857a1222017-09-13 18:05:35 -04001952
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001953 /* Open file */
Rob Clark857a1222017-09-13 18:05:35 -04001954 f = efi_file_from_path(file_path);
1955 if (!f)
Heinrich Schuchardt6a41cf22019-06-11 19:00:56 +02001956 return EFI_NOT_FOUND;
Rob Clark857a1222017-09-13 18:05:35 -04001957
Ilias Apalodimas03d0d762021-03-25 21:55:16 +02001958 ret = efi_file_size(f, &bs);
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001959 if (ret != EFI_SUCCESS)
Rob Clark857a1222017-09-13 18:05:35 -04001960 goto error;
1961
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001962 /*
1963 * When reading the file we do not yet know if it contains an
1964 * application, a boottime driver, or a runtime driver. So here we
1965 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1966 * update the reservation according to the image type.
1967 */
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001968 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1969 EFI_BOOT_SERVICES_DATA,
1970 efi_size_in_pages(bs), &addr);
Rob Clark857a1222017-09-13 18:05:35 -04001971 if (ret != EFI_SUCCESS) {
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001972 ret = EFI_OUT_OF_RESOURCES;
1973 goto error;
Rob Clark857a1222017-09-13 18:05:35 -04001974 }
1975
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001976 /* Read file */
1977 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1978 if (ret != EFI_SUCCESS)
1979 efi_free_pages(addr, efi_size_in_pages(bs));
1980 *buffer = (void *)(uintptr_t)addr;
1981 *size = bs;
1982error:
1983 EFI_CALL(f->close(f));
Rob Clark857a1222017-09-13 18:05:35 -04001984 return ret;
1985}
1986
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001987/**
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01001988 * efi_load_image_from_path() - load an image using a file path
1989 *
1990 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1991 * callers obligation to update the memory type as needed.
1992 *
1993 * @boot_policy: true for request originating from the boot manager
1994 * @file_path: the path of the image to load
1995 * @buffer: buffer containing the loaded image
1996 * @size: size of the loaded image
1997 * Return: status code
1998 */
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01001999efi_status_t efi_load_image_from_path(bool boot_policy,
2000 struct efi_device_path *file_path,
2001 void **buffer, efi_uintn_t *size)
2002{
2003 efi_handle_t device;
2004 efi_status_t ret;
Heinrich Schuchardta1d82462022-02-26 12:05:30 +01002005 struct efi_device_path *dp, *rem;
Heinrich Schuchardt82608272020-12-06 13:00:15 +01002006 struct efi_load_file_protocol *load_file_protocol = NULL;
2007 efi_uintn_t buffer_size;
2008 uint64_t addr, pages;
2009 const efi_guid_t *guid;
Heinrich Schuchardt94d72672023-01-24 20:36:45 +01002010 struct efi_handler *handler;
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01002011
2012 /* In case of failure nothing is returned */
2013 *buffer = NULL;
2014 *size = 0;
2015
2016 dp = file_path;
Heinrich Schuchardta1d82462022-02-26 12:05:30 +01002017 device = efi_dp_find_obj(dp, NULL, &rem);
2018 ret = efi_search_protocol(device, &efi_simple_file_system_protocol_guid,
2019 NULL);
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01002020 if (ret == EFI_SUCCESS)
2021 return efi_load_image_from_file(file_path, buffer, size);
Heinrich Schuchardt82608272020-12-06 13:00:15 +01002022
Heinrich Schuchardta1d82462022-02-26 12:05:30 +01002023 ret = efi_search_protocol(device, &efi_guid_load_file_protocol, NULL);
Heinrich Schuchardt82608272020-12-06 13:00:15 +01002024 if (ret == EFI_SUCCESS) {
2025 guid = &efi_guid_load_file_protocol;
2026 } else if (!boot_policy) {
2027 guid = &efi_guid_load_file2_protocol;
Heinrich Schuchardta1d82462022-02-26 12:05:30 +01002028 ret = efi_search_protocol(device, guid, NULL);
Heinrich Schuchardt82608272020-12-06 13:00:15 +01002029 }
2030 if (ret != EFI_SUCCESS)
2031 return EFI_NOT_FOUND;
Heinrich Schuchardt94d72672023-01-24 20:36:45 +01002032 ret = efi_search_protocol(device, guid, &handler);
Heinrich Schuchardt82608272020-12-06 13:00:15 +01002033 if (ret != EFI_SUCCESS)
2034 return EFI_NOT_FOUND;
2035 buffer_size = 0;
Heinrich Schuchardt94d72672023-01-24 20:36:45 +01002036 load_file_protocol = handler->protocol_interface;
Heinrich Schuchardta1d82462022-02-26 12:05:30 +01002037 ret = EFI_CALL(load_file_protocol->load_file(
2038 load_file_protocol, rem, boot_policy,
2039 &buffer_size, NULL));
Heinrich Schuchardt82608272020-12-06 13:00:15 +01002040 if (ret != EFI_BUFFER_TOO_SMALL)
2041 goto out;
2042 pages = efi_size_in_pages(buffer_size);
2043 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, EFI_BOOT_SERVICES_DATA,
2044 pages, &addr);
2045 if (ret != EFI_SUCCESS) {
2046 ret = EFI_OUT_OF_RESOURCES;
2047 goto out;
2048 }
2049 ret = EFI_CALL(load_file_protocol->load_file(
Heinrich Schuchardta1d82462022-02-26 12:05:30 +01002050 load_file_protocol, rem, boot_policy,
Heinrich Schuchardt82608272020-12-06 13:00:15 +01002051 &buffer_size, (void *)(uintptr_t)addr));
2052 if (ret != EFI_SUCCESS)
2053 efi_free_pages(addr, pages);
2054out:
Heinrich Schuchardt5e394332022-10-07 15:18:15 +02002055 efi_close_protocol(device, guid, efi_root, NULL);
Heinrich Schuchardt82608272020-12-06 13:00:15 +01002056 if (ret == EFI_SUCCESS) {
2057 *buffer = (void *)(uintptr_t)addr;
2058 *size = buffer_size;
2059 }
2060
2061 return ret;
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01002062}
2063
2064/**
Mario Six8fac2912018-07-10 08:40:17 +02002065 * efi_load_image() - load an EFI image into memory
2066 * @boot_policy: true for request originating from the boot manager
2067 * @parent_image: the caller's image handle
2068 * @file_path: the path of the image to load
2069 * @source_buffer: memory location from which the image is installed
2070 * @source_size: size of the memory area from which the image is installed
2071 * @image_handle: handle for the newly installed image
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002072 *
2073 * This function implements the LoadImage service.
Mario Six8fac2912018-07-10 08:40:17 +02002074 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002075 * See the Unified Extensible Firmware Interface (UEFI) specification
2076 * for details.
2077 *
Mario Six8fac2912018-07-10 08:40:17 +02002078 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002079 */
AKASHI Takahirob0ad9052019-03-05 14:53:31 +09002080efi_status_t EFIAPI efi_load_image(bool boot_policy,
2081 efi_handle_t parent_image,
2082 struct efi_device_path *file_path,
2083 void *source_buffer,
2084 efi_uintn_t source_size,
2085 efi_handle_t *image_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01002086{
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01002087 struct efi_device_path *dp, *fp;
Tom Rini04c49062018-09-30 10:38:15 -04002088 struct efi_loaded_image *info = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02002089 struct efi_loaded_image_obj **image_obj =
2090 (struct efi_loaded_image_obj **)image_handle;
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01002091 efi_status_t ret;
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01002092 void *dest_buffer;
Alexander Grafc15d9212016-03-04 01:09:59 +01002093
Heinrich Schuchardte1e8a652022-02-03 22:21:51 +01002094 EFI_ENTRY("%d, %p, %pD, %p, %zu, %p", boot_policy, parent_image,
Alexander Grafc15d9212016-03-04 01:09:59 +01002095 file_path, source_buffer, source_size, image_handle);
Rob Clark857a1222017-09-13 18:05:35 -04002096
Heinrich Schuchardtb7b10112019-06-11 18:52:33 +02002097 if (!image_handle || (!source_buffer && !file_path) ||
2098 !efi_search_obj(parent_image) ||
2099 /* The parent image handle must refer to a loaded image */
2100 !parent_image->type) {
Heinrich Schuchardt2e0a7902019-05-05 16:55:06 +02002101 ret = EFI_INVALID_PARAMETER;
2102 goto error;
2103 }
Rob Clark857a1222017-09-13 18:05:35 -04002104
2105 if (!source_buffer) {
Heinrich Schuchardt471db442020-12-04 09:27:41 +01002106 ret = efi_load_image_from_path(boot_policy, file_path,
2107 &dest_buffer, &source_size);
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01002108 if (ret != EFI_SUCCESS)
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01002109 goto error;
Rob Clark857a1222017-09-13 18:05:35 -04002110 } else {
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01002111 dest_buffer = source_buffer;
Rob Clark857a1222017-09-13 18:05:35 -04002112 }
Heinrich Schuchardt28b39172019-04-20 19:24:43 +00002113 /* split file_path which contains both the device and file parts */
2114 efi_dp_split_file_path(file_path, &dp, &fp);
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01002115 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01002116 if (ret == EFI_SUCCESS)
AKASHI Takahiro0e104e32020-04-14 11:51:44 +09002117 ret = efi_load_pe(*image_obj, dest_buffer, source_size, info);
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01002118 if (!source_buffer)
2119 /* Release buffer to which file was loaded */
2120 efi_free_pages((uintptr_t)dest_buffer,
2121 efi_size_in_pages(source_size));
AKASHI Takahiro0e104e32020-04-14 11:51:44 +09002122 if (ret == EFI_SUCCESS || ret == EFI_SECURITY_VIOLATION) {
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01002123 info->system_table = &systab;
2124 info->parent_handle = parent_image;
2125 } else {
2126 /* The image is invalid. Release all associated resources. */
2127 efi_delete_handle(*image_handle);
2128 *image_handle = NULL;
2129 free(info);
2130 }
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01002131error:
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01002132 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002133}
2134
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002135/**
Alexander Graffa5246b2018-11-15 21:23:47 +01002136 * efi_exit_caches() - fix up caches for EFI payloads if necessary
2137 */
2138static void efi_exit_caches(void)
2139{
Heinrich Schuchardt149d5d42019-07-22 22:04:36 +02002140#if defined(CONFIG_EFI_GRUB_ARM32_WORKAROUND)
Alexander Graffa5246b2018-11-15 21:23:47 +01002141 /*
Heinrich Schuchardt149d5d42019-07-22 22:04:36 +02002142 * Boooting Linux via GRUB prior to version 2.04 fails on 32bit ARM if
2143 * caches are enabled.
2144 *
2145 * TODO:
2146 * According to the UEFI spec caches that can be managed via CP15
2147 * operations should be enabled. Caches requiring platform information
2148 * to manage should be disabled. This should not happen in
2149 * ExitBootServices() but before invoking any UEFI binary is invoked.
2150 *
2151 * We want to keep the current workaround while GRUB prior to version
2152 * 2.04 is still in use.
Alexander Graffa5246b2018-11-15 21:23:47 +01002153 */
Heinrich Schuchardt149d5d42019-07-22 22:04:36 +02002154 cleanup_before_linux();
Alexander Graffa5246b2018-11-15 21:23:47 +01002155#endif
2156}
2157
2158/**
Mario Six8fac2912018-07-10 08:40:17 +02002159 * efi_exit_boot_services() - stop all boot services
2160 * @image_handle: handle of the loaded image
2161 * @map_key: key of the memory map
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002162 *
2163 * This function implements the ExitBootServices service.
Mario Six8fac2912018-07-10 08:40:17 +02002164 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002165 * See the Unified Extensible Firmware Interface (UEFI) specification
2166 * for details.
2167 *
Mario Six8fac2912018-07-10 08:40:17 +02002168 * All timer events are disabled. For exit boot services events the
2169 * notification function is called. The boot services are disabled in the
2170 * system table.
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01002171 *
Mario Six8fac2912018-07-10 08:40:17 +02002172 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002173 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002174static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
Heinrich Schuchardt8bd4f412019-05-05 21:58:35 +02002175 efi_uintn_t map_key)
Alexander Grafc15d9212016-03-04 01:09:59 +01002176{
Heinrich Schuchardt4429d872019-07-11 20:15:09 +02002177 struct efi_event *evt, *next_event;
Heinrich Schuchardtafc33672019-06-11 20:05:40 +02002178 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02002179
Heinrich Schuchardt8bd4f412019-05-05 21:58:35 +02002180 EFI_ENTRY("%p, %zx", image_handle, map_key);
Alexander Grafc15d9212016-03-04 01:09:59 +01002181
Heinrich Schuchardt0f233c42018-07-02 12:53:55 +02002182 /* Check that the caller has read the current memory map */
Heinrich Schuchardtafc33672019-06-11 20:05:40 +02002183 if (map_key != efi_memory_map_key) {
2184 ret = EFI_INVALID_PARAMETER;
2185 goto out;
2186 }
Heinrich Schuchardt0f233c42018-07-02 12:53:55 +02002187
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01002188 /* Check if ExitBootServices has already been called */
2189 if (!systab.boottime)
Heinrich Schuchardtafc33672019-06-11 20:05:40 +02002190 goto out;
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01002191
Heinrich Schuchardt44772c42021-11-16 18:46:27 +01002192 /* Notify EFI_EVENT_GROUP_BEFORE_EXIT_BOOT_SERVICES event group. */
2193 list_for_each_entry(evt, &efi_events, link) {
2194 if (evt->group &&
2195 !guidcmp(evt->group,
2196 &efi_guid_event_group_before_exit_boot_services)) {
2197 efi_signal_event(evt);
2198 break;
2199 }
2200 }
2201
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02002202 /* Stop all timer related activities */
2203 timers_enabled = false;
2204
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01002205 /* Add related events to the event group */
2206 list_for_each_entry(evt, &efi_events, link) {
2207 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
2208 evt->group = &efi_guid_event_group_exit_boot_services;
2209 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02002210 /* Notify that ExitBootServices is invoked. */
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01002211 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01002212 if (evt->group &&
2213 !guidcmp(evt->group,
2214 &efi_guid_event_group_exit_boot_services)) {
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02002215 efi_signal_event(evt);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01002216 break;
2217 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02002218 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02002219
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02002220 /* Make sure that notification functions are not called anymore */
2221 efi_tpl = TPL_HIGH_LEVEL;
2222
Heinrich Schuchardt2ac62582019-06-20 15:25:48 +02002223 /* Notify variable services */
2224 efi_variables_boot_exit_notify();
Rob Clark15f3d742017-09-13 18:05:37 -04002225
Heinrich Schuchardt4429d872019-07-11 20:15:09 +02002226 /* Remove all events except EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE */
2227 list_for_each_entry_safe(evt, next_event, &efi_events, link) {
2228 if (evt->type != EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE)
2229 list_del(&evt->link);
2230 }
2231
Heinrich Schuchardt628dbd72020-11-12 21:26:28 +01002232 if (!efi_st_keep_devices) {
Tom Rini669ef7f2021-11-19 16:33:04 -05002233 bootm_disable_interrupts();
Heinrich Schuchardt20dbedb2020-12-27 15:33:09 +01002234 if (IS_ENABLED(CONFIG_USB_DEVICE))
Heinrich Schuchardt628dbd72020-11-12 21:26:28 +01002235 udc_disconnect();
2236 board_quiesce_devices();
2237 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
2238 }
Alexander Graf2ebeb442016-11-17 01:02:57 +01002239
Heinrich Schuchardt1943dbb2019-07-05 17:42:16 +02002240 /* Patch out unsupported runtime function */
2241 efi_runtime_detach();
2242
Alexander Graffa5246b2018-11-15 21:23:47 +01002243 /* Fix up caches for EFI payloads if necessary */
2244 efi_exit_caches();
2245
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02002246 /* Disable boot time services */
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01002247 systab.con_in_handle = NULL;
2248 systab.con_in = NULL;
2249 systab.con_out_handle = NULL;
2250 systab.con_out = NULL;
2251 systab.stderr_handle = NULL;
2252 systab.std_err = NULL;
2253 systab.boottime = NULL;
2254
2255 /* Recalculate CRC32 */
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02002256 efi_update_table_header_crc32(&systab.hdr);
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01002257
Alexander Grafc15d9212016-03-04 01:09:59 +01002258 /* Give the payload some time to boot */
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02002259 efi_set_watchdog(0);
Stefan Roese80877fa2022-09-02 14:10:46 +02002260 schedule();
Heinrich Schuchardtafc33672019-06-11 20:05:40 +02002261out:
Masahisa Kojima1ac19bb2021-08-13 16:12:41 +09002262 if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
2263 if (ret != EFI_SUCCESS)
2264 efi_tcg2_notify_exit_boot_services_failed();
2265 }
2266
Heinrich Schuchardtafc33672019-06-11 20:05:40 +02002267 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002268}
2269
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002270/**
Mario Six8fac2912018-07-10 08:40:17 +02002271 * efi_get_next_monotonic_count() - get next value of the counter
2272 * @count: returned value of the counter
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002273 *
2274 * This function implements the NextMonotonicCount service.
Mario Six8fac2912018-07-10 08:40:17 +02002275 *
2276 * See the Unified Extensible Firmware Interface (UEFI) specification for
2277 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002278 *
Mario Six8fac2912018-07-10 08:40:17 +02002279 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002280 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002281static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
2282{
Heinrich Schuchardt91064592018-02-18 15:17:49 +01002283 static uint64_t mono;
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02002284 efi_status_t ret;
Heinrich Schuchardt91064592018-02-18 15:17:49 +01002285
Alexander Grafc15d9212016-03-04 01:09:59 +01002286 EFI_ENTRY("%p", count);
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02002287 if (!count) {
2288 ret = EFI_INVALID_PARAMETER;
2289 goto out;
2290 }
Alexander Grafc15d9212016-03-04 01:09:59 +01002291 *count = mono++;
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02002292 ret = EFI_SUCCESS;
2293out:
2294 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002295}
2296
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002297/**
Mario Six8fac2912018-07-10 08:40:17 +02002298 * efi_stall() - sleep
2299 * @microseconds: period to sleep in microseconds
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002300 *
Mario Six8fac2912018-07-10 08:40:17 +02002301 * This function implements the Stall service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002302 *
Mario Six8fac2912018-07-10 08:40:17 +02002303 * See the Unified Extensible Firmware Interface (UEFI) specification for
2304 * details.
2305 *
2306 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002307 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002308static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
2309{
Heinrich Schuchardt9912c032019-06-02 21:12:17 +02002310 u64 end_tick;
2311
Alexander Grafc15d9212016-03-04 01:09:59 +01002312 EFI_ENTRY("%ld", microseconds);
Heinrich Schuchardt9912c032019-06-02 21:12:17 +02002313
2314 end_tick = get_ticks() + usec_to_tick(microseconds);
2315 while (get_ticks() < end_tick)
2316 efi_timer_check();
2317
Alexander Grafc15d9212016-03-04 01:09:59 +01002318 return EFI_EXIT(EFI_SUCCESS);
2319}
2320
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002321/**
Mario Six8fac2912018-07-10 08:40:17 +02002322 * efi_set_watchdog_timer() - reset the watchdog timer
2323 * @timeout: seconds before reset by watchdog
2324 * @watchdog_code: code to be logged when resetting
2325 * @data_size: size of buffer in bytes
2326 * @watchdog_data: buffer with data describing the reset reason
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002327 *
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02002328 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002329 *
Mario Six8fac2912018-07-10 08:40:17 +02002330 * See the Unified Extensible Firmware Interface (UEFI) specification for
2331 * details.
2332 *
2333 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002334 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002335static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
2336 uint64_t watchdog_code,
2337 unsigned long data_size,
2338 uint16_t *watchdog_data)
2339{
Masahiro Yamadac7570a32018-08-06 20:47:40 +09002340 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
Alexander Grafc15d9212016-03-04 01:09:59 +01002341 data_size, watchdog_data);
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02002342 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafc15d9212016-03-04 01:09:59 +01002343}
2344
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002345/**
Mario Six8fac2912018-07-10 08:40:17 +02002346 * efi_close_protocol() - close a protocol
2347 * @handle: handle on which the protocol shall be closed
2348 * @protocol: GUID of the protocol to close
2349 * @agent_handle: handle of the driver
2350 * @controller_handle: handle of the controller
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002351 *
Heinrich Schuchardt5e394332022-10-07 15:18:15 +02002352 * This is the function implementing the CloseProtocol service is for internal
2353 * usage in U-Boot. For API usage wrapper efi_close_protocol_ext() is provided.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002354 *
Mario Six8fac2912018-07-10 08:40:17 +02002355 * See the Unified Extensible Firmware Interface (UEFI) specification for
2356 * details.
2357 *
2358 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002359 */
Heinrich Schuchardt5e394332022-10-07 15:18:15 +02002360efi_status_t efi_close_protocol(efi_handle_t handle, const efi_guid_t *protocol,
2361 efi_handle_t agent_handle,
2362 efi_handle_t controller_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01002363{
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002364 struct efi_handler *handler;
2365 struct efi_open_protocol_info_item *item;
2366 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt5e394332022-10-07 15:18:15 +02002367 efi_status_t ret;
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002368
Heinrich Schuchardt5d8231b2019-05-05 10:37:51 +02002369 if (!efi_search_obj(agent_handle) ||
Heinrich Schuchardt5e394332022-10-07 15:18:15 +02002370 (controller_handle && !efi_search_obj(controller_handle)))
2371 return EFI_INVALID_PARAMETER;
2372 ret = efi_search_protocol(handle, protocol, &handler);
2373 if (ret != EFI_SUCCESS)
2374 return ret;
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002375
Heinrich Schuchardt5e394332022-10-07 15:18:15 +02002376 ret = EFI_NOT_FOUND;
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002377 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2378 if (item->info.agent_handle == agent_handle &&
2379 item->info.controller_handle == controller_handle) {
2380 efi_delete_open_info(item);
Heinrich Schuchardt5e394332022-10-07 15:18:15 +02002381 ret = EFI_SUCCESS;
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002382 }
2383 }
Heinrich Schuchardt5e394332022-10-07 15:18:15 +02002384
2385 return ret;
2386}
2387
2388/**
2389 * efi_close_protocol_ext() - close a protocol
2390 * @handle: handle on which the protocol shall be closed
2391 * @protocol: GUID of the protocol to close
2392 * @agent_handle: handle of the driver
2393 * @controller_handle: handle of the controller
2394 *
2395 * This function implements the CloseProtocol service.
2396 *
2397 * See the Unified Extensible Firmware Interface (UEFI) specification for
2398 * details.
2399 *
2400 * Return: status code
2401 */
2402static efi_status_t EFIAPI
2403efi_close_protocol_ext(efi_handle_t handle, const efi_guid_t *protocol,
2404 efi_handle_t agent_handle,
2405 efi_handle_t controller_handle)
2406{
2407 efi_status_t ret;
2408
2409 EFI_ENTRY("%p, %pUs, %p, %p", handle, protocol, agent_handle,
2410 controller_handle);
2411
2412 ret = efi_close_protocol(handle, protocol,
2413 agent_handle, controller_handle);
2414
2415 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002416}
2417
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002418/**
Mario Six8fac2912018-07-10 08:40:17 +02002419 * efi_open_protocol_information() - provide information about then open status
2420 * of a protocol on a handle
2421 * @handle: handle for which the information shall be retrieved
2422 * @protocol: GUID of the protocol
2423 * @entry_buffer: buffer to receive the open protocol information
2424 * @entry_count: number of entries available in the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002425 *
2426 * This function implements the OpenProtocolInformation service.
Mario Six8fac2912018-07-10 08:40:17 +02002427 *
2428 * See the Unified Extensible Firmware Interface (UEFI) specification for
2429 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002430 *
Mario Six8fac2912018-07-10 08:40:17 +02002431 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002432 */
Heinrich Schuchardt91064592018-02-18 15:17:49 +01002433static efi_status_t EFIAPI efi_open_protocol_information(
2434 efi_handle_t handle, const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002435 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002436 efi_uintn_t *entry_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01002437{
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002438 unsigned long buffer_size;
2439 unsigned long count;
2440 struct efi_handler *handler;
2441 struct efi_open_protocol_info_item *item;
2442 efi_status_t r;
2443
Heinrich Schuchardt282249d2022-01-16 14:15:31 +01002444 EFI_ENTRY("%p, %pUs, %p, %p", handle, protocol, entry_buffer,
Alexander Grafc15d9212016-03-04 01:09:59 +01002445 entry_count);
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002446
2447 /* Check parameters */
2448 if (!entry_buffer) {
2449 r = EFI_INVALID_PARAMETER;
2450 goto out;
2451 }
2452 r = efi_search_protocol(handle, protocol, &handler);
2453 if (r != EFI_SUCCESS)
2454 goto out;
2455
2456 /* Count entries */
2457 count = 0;
2458 list_for_each_entry(item, &handler->open_infos, link) {
2459 if (item->info.open_count)
2460 ++count;
2461 }
2462 *entry_count = count;
2463 *entry_buffer = NULL;
2464 if (!count) {
2465 r = EFI_SUCCESS;
2466 goto out;
2467 }
2468
2469 /* Copy entries */
2470 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002471 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002472 (void **)entry_buffer);
2473 if (r != EFI_SUCCESS)
2474 goto out;
2475 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2476 if (item->info.open_count)
2477 (*entry_buffer)[--count] = item->info;
2478 }
2479out:
2480 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002481}
2482
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002483/**
Mario Six8fac2912018-07-10 08:40:17 +02002484 * efi_protocols_per_handle() - get protocols installed on a handle
2485 * @handle: handle for which the information is retrieved
2486 * @protocol_buffer: buffer with protocol GUIDs
2487 * @protocol_buffer_count: number of entries in the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002488 *
2489 * This function implements the ProtocolsPerHandleService.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002490 *
Mario Six8fac2912018-07-10 08:40:17 +02002491 * See the Unified Extensible Firmware Interface (UEFI) specification for
2492 * details.
2493 *
2494 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002495 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002496static efi_status_t EFIAPI efi_protocols_per_handle(
2497 efi_handle_t handle, efi_guid_t ***protocol_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002498 efi_uintn_t *protocol_buffer_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01002499{
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002500 unsigned long buffer_size;
2501 struct efi_object *efiobj;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002502 struct list_head *protocol_handle;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002503 efi_status_t r;
2504
Alexander Grafc15d9212016-03-04 01:09:59 +01002505 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2506 protocol_buffer_count);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002507
2508 if (!handle || !protocol_buffer || !protocol_buffer_count)
2509 return EFI_EXIT(EFI_INVALID_PARAMETER);
2510
2511 *protocol_buffer = NULL;
Rob Clarkd51b8ca2017-07-20 07:59:39 -04002512 *protocol_buffer_count = 0;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002513
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002514 efiobj = efi_search_obj(handle);
2515 if (!efiobj)
2516 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002517
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002518 /* Count protocols */
2519 list_for_each(protocol_handle, &efiobj->protocols) {
2520 ++*protocol_buffer_count;
2521 }
2522
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02002523 /* Copy GUIDs */
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002524 if (*protocol_buffer_count) {
2525 size_t j = 0;
2526
2527 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002528 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002529 (void **)protocol_buffer);
2530 if (r != EFI_SUCCESS)
2531 return EFI_EXIT(r);
2532 list_for_each(protocol_handle, &efiobj->protocols) {
2533 struct efi_handler *protocol;
2534
2535 protocol = list_entry(protocol_handle,
2536 struct efi_handler, link);
Heinrich Schuchardt2a22db92022-03-09 19:56:23 +01002537 (*protocol_buffer)[j] = (void *)&protocol->guid;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002538 ++j;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002539 }
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002540 }
2541
2542 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002543}
2544
Masahisa Kojimac5ff0a02022-09-12 17:33:50 +09002545efi_status_t efi_locate_handle_buffer_int(enum efi_locate_search_type search_type,
2546 const efi_guid_t *protocol, void *search_key,
2547 efi_uintn_t *no_handles, efi_handle_t **buffer)
2548{
2549 efi_status_t r;
2550 efi_uintn_t buffer_size = 0;
2551
2552 if (!no_handles || !buffer) {
2553 r = EFI_INVALID_PARAMETER;
2554 goto out;
2555 }
2556 *no_handles = 0;
2557 *buffer = NULL;
2558 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2559 *buffer);
2560 if (r != EFI_BUFFER_TOO_SMALL)
2561 goto out;
2562 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
2563 (void **)buffer);
2564 if (r != EFI_SUCCESS)
2565 goto out;
2566 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2567 *buffer);
2568 if (r == EFI_SUCCESS)
2569 *no_handles = buffer_size / sizeof(efi_handle_t);
2570out:
2571 return r;
2572}
2573
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002574/**
Mario Six8fac2912018-07-10 08:40:17 +02002575 * efi_locate_handle_buffer() - locate handles implementing a protocol
2576 * @search_type: selection criterion
2577 * @protocol: GUID of the protocol
2578 * @search_key: registration key
2579 * @no_handles: number of returned handles
2580 * @buffer: buffer with the returned handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002581 *
2582 * This function implements the LocateHandleBuffer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002583 *
Mario Six8fac2912018-07-10 08:40:17 +02002584 * See the Unified Extensible Firmware Interface (UEFI) specification for
2585 * details.
2586 *
2587 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002588 */
AKASHI Takahirod99b1b32020-03-17 11:12:36 +09002589efi_status_t EFIAPI efi_locate_handle_buffer(
Alexander Grafc15d9212016-03-04 01:09:59 +01002590 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002591 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002592 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01002593{
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002594 efi_status_t r;
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002595
Heinrich Schuchardt282249d2022-01-16 14:15:31 +01002596 EFI_ENTRY("%d, %pUs, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafc15d9212016-03-04 01:09:59 +01002597 no_handles, buffer);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002598
Masahisa Kojimac5ff0a02022-09-12 17:33:50 +09002599 r = efi_locate_handle_buffer_int(search_type, protocol, search_key,
2600 no_handles, buffer);
2601
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002602 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002603}
2604
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002605/**
Mario Six8fac2912018-07-10 08:40:17 +02002606 * efi_locate_protocol() - find an interface implementing a protocol
2607 * @protocol: GUID of the protocol
2608 * @registration: registration key passed to the notification function
2609 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002610 *
2611 * This function implements the LocateProtocol service.
Mario Six8fac2912018-07-10 08:40:17 +02002612 *
2613 * See the Unified Extensible Firmware Interface (UEFI) specification for
2614 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002615 *
Mario Six8fac2912018-07-10 08:40:17 +02002616 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002617 */
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002618static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002619 void *registration,
2620 void **protocol_interface)
2621{
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002622 struct efi_handler *handler;
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002623 efi_status_t ret;
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002624 struct efi_object *efiobj;
Alexander Grafc15d9212016-03-04 01:09:59 +01002625
Heinrich Schuchardt282249d2022-01-16 14:15:31 +01002626 EFI_ENTRY("%pUs, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002627
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002628 /*
2629 * The UEFI spec explicitly requires a protocol even if a registration
2630 * key is provided. This differs from the logic in LocateHandle().
2631 */
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002632 if (!protocol || !protocol_interface)
2633 return EFI_EXIT(EFI_INVALID_PARAMETER);
2634
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002635 if (registration) {
2636 struct efi_register_notify_event *event;
2637 struct efi_protocol_notification *handle;
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002638
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002639 event = efi_check_register_notify_event(registration);
2640 if (!event)
2641 return EFI_EXIT(EFI_INVALID_PARAMETER);
2642 /*
2643 * The UEFI spec requires to return EFI_NOT_FOUND if no
2644 * protocol instance matches protocol and registration.
2645 * So let's do the same for a mismatch between protocol and
2646 * registration.
2647 */
2648 if (guidcmp(&event->protocol, protocol))
2649 goto not_found;
2650 if (list_empty(&event->handles))
2651 goto not_found;
2652 handle = list_first_entry(&event->handles,
2653 struct efi_protocol_notification,
2654 link);
2655 efiobj = handle->handle;
2656 list_del(&handle->link);
2657 free(handle);
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02002658 ret = efi_search_protocol(efiobj, protocol, &handler);
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002659 if (ret == EFI_SUCCESS)
2660 goto found;
2661 } else {
2662 list_for_each_entry(efiobj, &efi_obj_list, link) {
2663 ret = efi_search_protocol(efiobj, protocol, &handler);
2664 if (ret == EFI_SUCCESS)
2665 goto found;
Alexander Grafc15d9212016-03-04 01:09:59 +01002666 }
2667 }
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002668not_found:
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002669 *protocol_interface = NULL;
Alexander Grafc15d9212016-03-04 01:09:59 +01002670 return EFI_EXIT(EFI_NOT_FOUND);
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002671found:
2672 *protocol_interface = handler->protocol_interface;
2673 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002674}
2675
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002676/**
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002677 * efi_install_multiple_protocol_interfaces_int() - Install multiple protocol
Mario Six8fac2912018-07-10 08:40:17 +02002678 * interfaces
2679 * @handle: handle on which the protocol interfaces shall be installed
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002680 * @argptr: va_list of args
Mario Six8fac2912018-07-10 08:40:17 +02002681 *
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002682 * Core functionality of efi_install_multiple_protocol_interfaces
2683 * Must not be called directly
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002684 *
Mario Six8fac2912018-07-10 08:40:17 +02002685 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002686 */
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002687static efi_status_t EFIAPI
2688efi_install_multiple_protocol_interfaces_int(efi_handle_t *handle,
2689 efi_va_list argptr)
Alexander Grafc15d9212016-03-04 01:09:59 +01002690{
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002691 const efi_guid_t *protocol;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002692 void *protocol_interface;
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002693 efi_handle_t old_handle;
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002694 efi_status_t ret = EFI_SUCCESS;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002695 int i = 0;
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002696 efi_va_list argptr_copy;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002697
2698 if (!handle)
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002699 return EFI_INVALID_PARAMETER;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002700
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002701 efi_va_copy(argptr_copy, argptr);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002702 for (;;) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002703 protocol = efi_va_arg(argptr, efi_guid_t*);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002704 if (!protocol)
2705 break;
Alexander Graf404a7c82018-06-18 17:23:05 +02002706 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002707 /* Check that a device path has not been installed before */
2708 if (!guidcmp(protocol, &efi_guid_device_path)) {
2709 struct efi_device_path *dp = protocol_interface;
2710
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002711 ret = EFI_CALL(efi_locate_device_path(protocol, &dp,
2712 &old_handle));
2713 if (ret == EFI_SUCCESS &&
Heinrich Schuchardt29344972019-05-20 19:55:18 +00002714 dp->type == DEVICE_PATH_TYPE_END) {
2715 EFI_PRINT("Path %pD already installed\n",
2716 protocol_interface);
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002717 ret = EFI_ALREADY_STARTED;
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002718 break;
2719 }
2720 }
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002721 ret = EFI_CALL(efi_install_protocol_interface(handle, protocol,
2722 EFI_NATIVE_INTERFACE,
2723 protocol_interface));
2724 if (ret != EFI_SUCCESS)
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002725 break;
2726 i++;
2727 }
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002728 if (ret == EFI_SUCCESS)
2729 goto out;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002730
Heinrich Schuchardtec47f3e2017-10-26 19:25:42 +02002731 /* If an error occurred undo all changes. */
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002732 for (; i; --i) {
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002733 protocol = efi_va_arg(argptr_copy, efi_guid_t*);
2734 protocol_interface = efi_va_arg(argptr_copy, void*);
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002735 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01002736 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002737 }
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002738
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002739out:
2740 efi_va_end(argptr_copy);
2741 return ret;
2742
Alexander Grafc15d9212016-03-04 01:09:59 +01002743}
2744
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002745/**
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002746 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2747 * interfaces
2748 * @handle: handle on which the protocol interfaces shall be installed
Mario Six8fac2912018-07-10 08:40:17 +02002749 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2750 * interfaces
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002751 *
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002752 *
2753 * This is the function for internal usage in U-Boot. For the API function
2754 * implementing the InstallMultipleProtocol service see
2755 * efi_install_multiple_protocol_interfaces_ext()
2756 *
2757 * Return: status code
2758 */
2759efi_status_t EFIAPI
2760efi_install_multiple_protocol_interfaces(efi_handle_t *handle, ...)
2761{
2762 efi_status_t ret;
2763 efi_va_list argptr;
2764
2765 efi_va_start(argptr, handle);
2766 ret = efi_install_multiple_protocol_interfaces_int(handle, argptr);
2767 efi_va_end(argptr);
2768 return ret;
2769}
2770
2771/**
2772 * efi_install_multiple_protocol_interfaces_ext() - Install multiple protocol
2773 * interfaces
2774 * @handle: handle on which the protocol interfaces shall be installed
2775 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2776 * interfaces
2777 *
2778 * This function implements the MultipleProtocolInterfaces service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002779 *
Mario Six8fac2912018-07-10 08:40:17 +02002780 * See the Unified Extensible Firmware Interface (UEFI) specification for
2781 * details.
2782 *
2783 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002784 */
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002785static efi_status_t EFIAPI
2786efi_install_multiple_protocol_interfaces_ext(efi_handle_t *handle, ...)
Alexander Grafc15d9212016-03-04 01:09:59 +01002787{
2788 EFI_ENTRY("%p", handle);
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002789 efi_status_t ret;
Alexander Graf404a7c82018-06-18 17:23:05 +02002790 efi_va_list argptr;
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002791
2792 efi_va_start(argptr, handle);
2793 ret = efi_install_multiple_protocol_interfaces_int(handle, argptr);
2794 efi_va_end(argptr);
2795 return EFI_EXIT(ret);
2796}
2797
2798/**
2799 * efi_uninstall_multiple_protocol_interfaces_int() - wrapper for uninstall
2800 * multiple protocol
2801 * interfaces
2802 * @handle: handle from which the protocol interfaces shall be removed
2803 * @argptr: va_list of args
2804 *
2805 * Core functionality of efi_uninstall_multiple_protocol_interfaces
2806 * Must not be called directly
2807 *
2808 * Return: status code
2809 */
2810static efi_status_t EFIAPI
2811efi_uninstall_multiple_protocol_interfaces_int(efi_handle_t handle,
2812 efi_va_list argptr)
2813{
Ilias Apalodimasc76eade2023-08-24 17:21:09 +03002814 const efi_guid_t *protocol, *next_protocol;
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002815 void *protocol_interface;
Ilias Apalodimas3b820bc2022-11-10 10:21:24 +02002816 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002817 size_t i = 0;
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002818 efi_va_list argptr_copy;
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002819
2820 if (!handle)
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002821 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002822
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002823 efi_va_copy(argptr_copy, argptr);
Ilias Apalodimasc76eade2023-08-24 17:21:09 +03002824 protocol = efi_va_arg(argptr, efi_guid_t*);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002825 for (;;) {
Ilias Apalodimasc76eade2023-08-24 17:21:09 +03002826 /*
2827 * If efi_uninstall_protocol() fails we need to be able to
2828 * reinstall the previously uninstalled protocols on the same
2829 * handle.
2830 * Instead of calling efi_uninstall_protocol(...,..., false)
2831 * and potentially removing the handle, only allow the handle
2832 * removal on the last protocol that we requested to uninstall.
2833 * That way we can preserve the handle in case the latter fails
2834 */
2835 bool preserve = true;
2836
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002837 if (!protocol)
2838 break;
Alexander Graf404a7c82018-06-18 17:23:05 +02002839 protocol_interface = efi_va_arg(argptr, void*);
Ilias Apalodimasc76eade2023-08-24 17:21:09 +03002840 next_protocol = efi_va_arg(argptr, efi_guid_t*);
2841 if (!next_protocol)
2842 preserve = false;
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002843 ret = efi_uninstall_protocol(handle, protocol,
Ilias Apalodimasc76eade2023-08-24 17:21:09 +03002844 protocol_interface, preserve);
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002845 if (ret != EFI_SUCCESS)
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002846 break;
2847 i++;
Ilias Apalodimasc76eade2023-08-24 17:21:09 +03002848 protocol = next_protocol;
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002849 }
Ilias Apalodimasc76eade2023-08-24 17:21:09 +03002850 if (ret == EFI_SUCCESS)
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002851 goto out;
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002852
2853 /* If an error occurred undo all changes. */
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002854 for (; i; --i) {
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002855 protocol = efi_va_arg(argptr_copy, efi_guid_t*);
2856 protocol_interface = efi_va_arg(argptr_copy, void*);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002857 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2858 EFI_NATIVE_INTERFACE,
2859 protocol_interface));
2860 }
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002861 /*
2862 * If any errors are generated while the protocol interfaces are being
2863 * uninstalled, then the protocols uninstalled prior to the error will
2864 * be reinstalled using InstallProtocolInterface() and the status code
2865 * EFI_INVALID_PARAMETER is returned.
2866 */
2867 ret = EFI_INVALID_PARAMETER;
2868
2869out:
2870 efi_va_end(argptr_copy);
2871 return ret;
2872}
2873
2874/**
2875 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2876 * interfaces
2877 * @handle: handle from which the protocol interfaces shall be removed
2878 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2879 * interfaces
2880 *
2881 * This function implements the UninstallMultipleProtocolInterfaces service.
2882 *
2883 * This is the function for internal usage in U-Boot. For the API function
2884 * implementing the UninstallMultipleProtocolInterfaces service see
2885 * efi_uninstall_multiple_protocol_interfaces_ext()
2886 *
2887 * Return: status code
2888 */
2889efi_status_t EFIAPI
2890efi_uninstall_multiple_protocol_interfaces(efi_handle_t handle, ...)
2891{
2892 efi_status_t ret;
2893 efi_va_list argptr;
2894
2895 efi_va_start(argptr, handle);
2896 ret = efi_uninstall_multiple_protocol_interfaces_int(handle, argptr);
Alexander Graf404a7c82018-06-18 17:23:05 +02002897 efi_va_end(argptr);
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002898 return ret;
2899}
2900
2901/**
2902 * efi_uninstall_multiple_protocol_interfaces_ext() - uninstall multiple protocol
2903 * interfaces
2904 * @handle: handle from which the protocol interfaces shall be removed
2905 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2906 * interfaces
2907 *
2908 * This function implements the UninstallMultipleProtocolInterfaces service.
2909 *
2910 * See the Unified Extensible Firmware Interface (UEFI) specification for
2911 * details.
2912 *
2913 * Return: status code
2914 */
2915static efi_status_t EFIAPI
2916efi_uninstall_multiple_protocol_interfaces_ext(efi_handle_t handle, ...)
2917{
2918 EFI_ENTRY("%p", handle);
2919 efi_status_t ret;
2920 efi_va_list argptr;
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002921
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03002922 efi_va_start(argptr, handle);
2923 ret = efi_uninstall_multiple_protocol_interfaces_int(handle, argptr);
2924 efi_va_end(argptr);
2925 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002926}
2927
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002928/**
Mario Six8fac2912018-07-10 08:40:17 +02002929 * efi_calculate_crc32() - calculate cyclic redundancy code
2930 * @data: buffer with data
2931 * @data_size: size of buffer in bytes
2932 * @crc32_p: cyclic redundancy code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002933 *
2934 * This function implements the CalculateCrc32 service.
Mario Six8fac2912018-07-10 08:40:17 +02002935 *
2936 * See the Unified Extensible Firmware Interface (UEFI) specification for
2937 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002938 *
Mario Six8fac2912018-07-10 08:40:17 +02002939 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002940 */
Heinrich Schuchardtf2725582018-07-07 15:36:04 +02002941static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2942 efi_uintn_t data_size,
2943 u32 *crc32_p)
Alexander Grafc15d9212016-03-04 01:09:59 +01002944{
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002945 efi_status_t ret = EFI_SUCCESS;
2946
Heinrich Schuchardtf2725582018-07-07 15:36:04 +02002947 EFI_ENTRY("%p, %zu", data, data_size);
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002948 if (!data || !data_size || !crc32_p) {
2949 ret = EFI_INVALID_PARAMETER;
2950 goto out;
2951 }
Alexander Grafc15d9212016-03-04 01:09:59 +01002952 *crc32_p = crc32(0, data, data_size);
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002953out:
2954 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002955}
2956
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002957/**
Mario Six8fac2912018-07-10 08:40:17 +02002958 * efi_copy_mem() - copy memory
2959 * @destination: destination of the copy operation
2960 * @source: source of the copy operation
2961 * @length: number of bytes to copy
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002962 *
2963 * This function implements the CopyMem service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002964 *
Mario Six8fac2912018-07-10 08:40:17 +02002965 * See the Unified Extensible Firmware Interface (UEFI) specification for
2966 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002967 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002968static void EFIAPI efi_copy_mem(void *destination, const void *source,
2969 size_t length)
Alexander Grafc15d9212016-03-04 01:09:59 +01002970{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002971 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Heinrich Schuchardtefba6ba2019-01-09 21:41:13 +01002972 memmove(destination, source, length);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002973 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002974}
2975
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002976/**
Mario Six8fac2912018-07-10 08:40:17 +02002977 * efi_set_mem() - Fill memory with a byte value.
2978 * @buffer: buffer to fill
2979 * @size: size of buffer in bytes
2980 * @value: byte to copy to the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002981 *
2982 * This function implements the SetMem service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002983 *
Mario Six8fac2912018-07-10 08:40:17 +02002984 * See the Unified Extensible Firmware Interface (UEFI) specification for
2985 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002986 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002987static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafc15d9212016-03-04 01:09:59 +01002988{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002989 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafc15d9212016-03-04 01:09:59 +01002990 memset(buffer, value, size);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002991 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002992}
2993
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002994/**
Mario Six8fac2912018-07-10 08:40:17 +02002995 * efi_protocol_open() - open protocol interface on a handle
2996 * @handler: handler of a protocol
2997 * @protocol_interface: interface implementing the protocol
2998 * @agent_handle: handle of the driver
2999 * @controller_handle: handle of the controller
3000 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003001 *
Mario Six8fac2912018-07-10 08:40:17 +02003002 * Return: status code
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003003 */
Heinrich Schuchardt9c89d142020-01-10 12:33:59 +01003004efi_status_t efi_protocol_open(
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003005 struct efi_handler *handler,
3006 void **protocol_interface, void *agent_handle,
3007 void *controller_handle, uint32_t attributes)
3008{
3009 struct efi_open_protocol_info_item *item;
3010 struct efi_open_protocol_info_entry *match = NULL;
3011 bool opened_by_driver = false;
3012 bool opened_exclusive = false;
3013
3014 /* If there is no agent, only return the interface */
3015 if (!agent_handle)
3016 goto out;
3017
3018 /* For TEST_PROTOCOL ignore interface attribute */
3019 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
3020 *protocol_interface = NULL;
3021
3022 /*
3023 * Check if the protocol is already opened by a driver with the same
3024 * attributes or opened exclusively
3025 */
3026 list_for_each_entry(item, &handler->open_infos, link) {
3027 if (item->info.agent_handle == agent_handle) {
3028 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
3029 (item->info.attributes == attributes))
3030 return EFI_ALREADY_STARTED;
Heinrich Schuchardtda433d52019-05-30 14:16:31 +02003031 } else {
3032 if (item->info.attributes &
3033 EFI_OPEN_PROTOCOL_BY_DRIVER)
3034 opened_by_driver = true;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003035 }
3036 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
3037 opened_exclusive = true;
3038 }
3039
3040 /* Only one controller can open the protocol exclusively */
Heinrich Schuchardtda433d52019-05-30 14:16:31 +02003041 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
3042 if (opened_exclusive)
3043 return EFI_ACCESS_DENIED;
3044 } else if (attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
3045 if (opened_exclusive || opened_by_driver)
3046 return EFI_ACCESS_DENIED;
3047 }
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003048
3049 /* Prepare exclusive opening */
3050 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
3051 /* Try to disconnect controllers */
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02003052disconnect_next:
3053 opened_by_driver = false;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003054 list_for_each_entry(item, &handler->open_infos, link) {
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02003055 efi_status_t ret;
3056
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003057 if (item->info.attributes ==
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02003058 EFI_OPEN_PROTOCOL_BY_DRIVER) {
3059 ret = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003060 item->info.controller_handle,
3061 item->info.agent_handle,
3062 NULL));
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02003063 if (ret == EFI_SUCCESS)
3064 /*
3065 * Child controllers may have been
3066 * removed from the open_infos list. So
3067 * let's restart the loop.
3068 */
3069 goto disconnect_next;
3070 else
3071 opened_by_driver = true;
3072 }
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003073 }
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02003074 /* Only one driver can be connected */
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003075 if (opened_by_driver)
3076 return EFI_ACCESS_DENIED;
3077 }
3078
3079 /* Find existing entry */
3080 list_for_each_entry(item, &handler->open_infos, link) {
3081 if (item->info.agent_handle == agent_handle &&
Heinrich Schuchardt7d69fc32019-06-01 20:15:10 +02003082 item->info.controller_handle == controller_handle &&
3083 item->info.attributes == attributes)
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003084 match = &item->info;
3085 }
3086 /* None found, create one */
3087 if (!match) {
3088 match = efi_create_open_info(handler);
3089 if (!match)
3090 return EFI_OUT_OF_RESOURCES;
3091 }
3092
3093 match->agent_handle = agent_handle;
3094 match->controller_handle = controller_handle;
3095 match->attributes = attributes;
3096 match->open_count++;
3097
3098out:
3099 /* For TEST_PROTOCOL ignore interface attribute. */
3100 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
3101 *protocol_interface = handler->protocol_interface;
3102
3103 return EFI_SUCCESS;
3104}
3105
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003106/**
Mario Six8fac2912018-07-10 08:40:17 +02003107 * efi_open_protocol() - open protocol interface on a handle
3108 * @handle: handle on which the protocol shall be opened
3109 * @protocol: GUID of the protocol
3110 * @protocol_interface: interface implementing the protocol
3111 * @agent_handle: handle of the driver
3112 * @controller_handle: handle of the controller
3113 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003114 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003115 * This function implements the OpenProtocol interface.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003116 *
Mario Six8fac2912018-07-10 08:40:17 +02003117 * See the Unified Extensible Firmware Interface (UEFI) specification for
3118 * details.
3119 *
3120 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003121 */
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02003122static efi_status_t EFIAPI efi_open_protocol
3123 (efi_handle_t handle, const efi_guid_t *protocol,
3124 void **protocol_interface, efi_handle_t agent_handle,
3125 efi_handle_t controller_handle, uint32_t attributes)
Alexander Grafc15d9212016-03-04 01:09:59 +01003126{
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01003127 struct efi_handler *handler;
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02003128 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +01003129
Heinrich Schuchardt282249d2022-01-16 14:15:31 +01003130 EFI_ENTRY("%p, %pUs, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01003131 protocol_interface, agent_handle, controller_handle,
3132 attributes);
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02003133
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02003134 if (!handle || !protocol ||
3135 (!protocol_interface && attributes !=
3136 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02003137 goto out;
3138 }
3139
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02003140 switch (attributes) {
3141 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
3142 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
3143 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
3144 break;
3145 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
3146 if (controller_handle == handle)
3147 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003148 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02003149 case EFI_OPEN_PROTOCOL_BY_DRIVER:
3150 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003151 /* Check that the controller handle is valid */
3152 if (!efi_search_obj(controller_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02003153 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003154 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02003155 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003156 /* Check that the agent handle is valid */
3157 if (!efi_search_obj(agent_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02003158 goto out;
3159 break;
3160 default:
3161 goto out;
3162 }
3163
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01003164 r = efi_search_protocol(handle, protocol, &handler);
Heinrich Schuchardtb673e4b2019-05-05 11:24:53 +02003165 switch (r) {
3166 case EFI_SUCCESS:
3167 break;
3168 case EFI_NOT_FOUND:
3169 r = EFI_UNSUPPORTED;
3170 goto out;
3171 default:
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01003172 goto out;
Heinrich Schuchardtb673e4b2019-05-05 11:24:53 +02003173 }
Alexander Grafc15d9212016-03-04 01:09:59 +01003174
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01003175 r = efi_protocol_open(handler, protocol_interface, agent_handle,
3176 controller_handle, attributes);
Alexander Grafc15d9212016-03-04 01:09:59 +01003177out:
3178 return EFI_EXIT(r);
3179}
3180
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003181/**
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003182 * efi_start_image() - call the entry point of an image
3183 * @image_handle: handle of the image
3184 * @exit_data_size: size of the buffer
3185 * @exit_data: buffer to receive the exit data of the called image
3186 *
3187 * This function implements the StartImage service.
3188 *
3189 * See the Unified Extensible Firmware Interface (UEFI) specification for
3190 * details.
3191 *
3192 * Return: status code
3193 */
3194efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
3195 efi_uintn_t *exit_data_size,
3196 u16 **exit_data)
3197{
3198 struct efi_loaded_image_obj *image_obj =
3199 (struct efi_loaded_image_obj *)image_handle;
3200 efi_status_t ret;
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003201 void *info;
3202 efi_handle_t parent_image = current_image;
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003203 efi_status_t exit_status;
3204 struct jmp_buf_data exit_jmp;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003205
3206 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
3207
AKASHI Takahiro0e104e32020-04-14 11:51:44 +09003208 if (!efi_search_obj(image_handle))
3209 return EFI_EXIT(EFI_INVALID_PARAMETER);
3210
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003211 /* Check parameters */
Heinrich Schuchardtff94bca2019-06-11 19:35:20 +02003212 if (image_obj->header.type != EFI_OBJECT_TYPE_LOADED_IMAGE)
3213 return EFI_EXIT(EFI_INVALID_PARAMETER);
3214
AKASHI Takahiro0e104e32020-04-14 11:51:44 +09003215 if (image_obj->auth_status != EFI_IMAGE_AUTH_PASSED)
3216 return EFI_EXIT(EFI_SECURITY_VIOLATION);
3217
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003218 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
3219 &info, NULL, NULL,
3220 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3221 if (ret != EFI_SUCCESS)
3222 return EFI_EXIT(EFI_INVALID_PARAMETER);
3223
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003224 image_obj->exit_data_size = exit_data_size;
3225 image_obj->exit_data = exit_data;
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003226 image_obj->exit_status = &exit_status;
3227 image_obj->exit_jmp = &exit_jmp;
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003228
Masahisa Kojima8173cd42021-08-13 16:12:40 +09003229 if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
3230 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION) {
Masahisa Kojima6460c3e2021-10-26 17:27:25 +09003231 ret = efi_tcg2_measure_efi_app_invocation(image_obj);
Masahisa Kojima38155ea2021-12-07 14:15:33 +09003232 if (ret == EFI_SECURITY_VIOLATION) {
3233 /*
3234 * TCG2 Protocol is installed but no TPM device found,
3235 * this is not expected.
3236 */
3237 return EFI_EXIT(EFI_SECURITY_VIOLATION);
Masahisa Kojima8173cd42021-08-13 16:12:40 +09003238 }
3239 }
3240 }
3241
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003242 /* call the image! */
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003243 if (setjmp(&exit_jmp)) {
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003244 /*
3245 * We called the entry point of the child image with EFI_CALL
3246 * in the lines below. The child image called the Exit() boot
3247 * service efi_exit() which executed the long jump that brought
3248 * us to the current line. This implies that the second half
3249 * of the EFI_CALL macro has not been executed.
3250 */
Heinrich Schuchardtf277d942020-09-10 12:22:54 +02003251#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003252 /*
3253 * efi_exit() called efi_restore_gd(). We have to undo this
3254 * otherwise __efi_entry_check() will put the wrong value into
3255 * app_gd.
3256 */
Heinrich Schuchardt1a3732c2020-05-27 01:58:30 +02003257 set_gd(app_gd);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003258#endif
3259 /*
3260 * To get ready to call EFI_EXIT below we have to execute the
3261 * missed out steps of EFI_CALL.
3262 */
3263 assert(__efi_entry_check());
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02003264 EFI_PRINT("%lu returned by started image\n",
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003265 (unsigned long)((uintptr_t)exit_status &
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02003266 ~EFI_ERROR_MASK));
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003267 current_image = parent_image;
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003268 return EFI_EXIT(exit_status);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003269 }
3270
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003271 current_image = image_handle;
Heinrich Schuchardtb27ced42019-05-01 14:20:18 +02003272 image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +09003273 EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003274 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
3275
3276 /*
Heinrich Schuchardtb7bc28d2020-01-10 22:06:54 +01003277 * Control is returned from a started UEFI image either by calling
3278 * Exit() (where exit data can be provided) or by simply returning from
3279 * the entry point. In the latter case call Exit() on behalf of the
3280 * image.
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003281 */
3282 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
3283}
3284
3285/**
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003286 * efi_delete_image() - delete loaded image from memory)
3287 *
3288 * @image_obj: handle of the loaded image
3289 * @loaded_image_protocol: loaded image protocol
3290 */
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02003291static efi_status_t efi_delete_image
3292 (struct efi_loaded_image_obj *image_obj,
3293 struct efi_loaded_image *loaded_image_protocol)
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003294{
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02003295 struct efi_object *efiobj;
3296 efi_status_t r, ret = EFI_SUCCESS;
3297
3298close_next:
3299 list_for_each_entry(efiobj, &efi_obj_list, link) {
3300 struct efi_handler *protocol;
3301
3302 list_for_each_entry(protocol, &efiobj->protocols, link) {
3303 struct efi_open_protocol_info_item *info;
3304
3305 list_for_each_entry(info, &protocol->open_infos, link) {
3306 if (info->info.agent_handle !=
3307 (efi_handle_t)image_obj)
3308 continue;
Heinrich Schuchardt5e394332022-10-07 15:18:15 +02003309 r = efi_close_protocol(
3310 efiobj, &protocol->guid,
3311 info->info.agent_handle,
3312 info->info.controller_handle);
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02003313 if (r != EFI_SUCCESS)
3314 ret = r;
3315 /*
3316 * Closing protocols may results in further
3317 * items being deleted. To play it safe loop
3318 * over all elements again.
3319 */
3320 goto close_next;
3321 }
3322 }
3323 }
3324
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003325 efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
3326 efi_size_in_pages(loaded_image_protocol->image_size));
3327 efi_delete_handle(&image_obj->header);
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02003328
3329 return ret;
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003330}
3331
3332/**
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02003333 * efi_unload_image() - unload an EFI image
3334 * @image_handle: handle of the image to be unloaded
3335 *
3336 * This function implements the UnloadImage service.
3337 *
3338 * See the Unified Extensible Firmware Interface (UEFI) specification for
3339 * details.
3340 *
3341 * Return: status code
3342 */
3343efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
3344{
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003345 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02003346 struct efi_object *efiobj;
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003347 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02003348
3349 EFI_ENTRY("%p", image_handle);
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02003350
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003351 efiobj = efi_search_obj(image_handle);
3352 if (!efiobj) {
3353 ret = EFI_INVALID_PARAMETER;
3354 goto out;
3355 }
3356 /* Find the loaded image protocol */
3357 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
3358 (void **)&loaded_image_protocol,
3359 NULL, NULL,
3360 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3361 if (ret != EFI_SUCCESS) {
3362 ret = EFI_INVALID_PARAMETER;
3363 goto out;
3364 }
3365 switch (efiobj->type) {
3366 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3367 /* Call the unload function */
3368 if (!loaded_image_protocol->unload) {
3369 ret = EFI_UNSUPPORTED;
3370 goto out;
3371 }
3372 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
3373 if (ret != EFI_SUCCESS)
3374 goto out;
3375 break;
3376 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3377 break;
3378 default:
3379 ret = EFI_INVALID_PARAMETER;
3380 goto out;
3381 }
3382 efi_delete_image((struct efi_loaded_image_obj *)efiobj,
3383 loaded_image_protocol);
3384out:
3385 return EFI_EXIT(ret);
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02003386}
3387
3388/**
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003389 * efi_update_exit_data() - fill exit data parameters of StartImage()
3390 *
Heinrich Schuchardt74c25292019-07-14 11:25:06 +02003391 * @image_obj: image handle
3392 * @exit_data_size: size of the exit data buffer
3393 * @exit_data: buffer with data returned by UEFI payload
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003394 * Return: status code
3395 */
3396static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
3397 efi_uintn_t exit_data_size,
3398 u16 *exit_data)
3399{
3400 efi_status_t ret;
3401
3402 /*
3403 * If exit_data is not provided to StartImage(), exit_data_size must be
3404 * ignored.
3405 */
3406 if (!image_obj->exit_data)
3407 return EFI_SUCCESS;
3408 if (image_obj->exit_data_size)
3409 *image_obj->exit_data_size = exit_data_size;
3410 if (exit_data_size && exit_data) {
3411 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
3412 exit_data_size,
3413 (void **)image_obj->exit_data);
3414 if (ret != EFI_SUCCESS)
3415 return ret;
3416 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
3417 } else {
3418 image_obj->exit_data = NULL;
3419 }
3420 return EFI_SUCCESS;
3421}
3422
3423/**
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003424 * efi_exit() - leave an EFI application or driver
3425 * @image_handle: handle of the application or driver that is exiting
3426 * @exit_status: status code
3427 * @exit_data_size: size of the buffer in bytes
3428 * @exit_data: buffer with data describing an error
3429 *
3430 * This function implements the Exit service.
3431 *
3432 * See the Unified Extensible Firmware Interface (UEFI) specification for
3433 * details.
3434 *
3435 * Return: status code
3436 */
3437static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
3438 efi_status_t exit_status,
3439 efi_uintn_t exit_data_size,
3440 u16 *exit_data)
3441{
3442 /*
3443 * TODO: We should call the unload procedure of the loaded
3444 * image protocol.
3445 */
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003446 efi_status_t ret;
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003447 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003448 struct efi_loaded_image_obj *image_obj =
3449 (struct efi_loaded_image_obj *)image_handle;
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003450 struct jmp_buf_data *exit_jmp;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003451
3452 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
3453 exit_data_size, exit_data);
3454
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003455 /* Check parameters */
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003456 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003457 (void **)&loaded_image_protocol,
3458 NULL, NULL,
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003459 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003460 if (ret != EFI_SUCCESS) {
3461 ret = EFI_INVALID_PARAMETER;
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003462 goto out;
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003463 }
3464
3465 /* Unloading of unstarted images */
3466 switch (image_obj->header.type) {
3467 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3468 break;
3469 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3470 efi_delete_image(image_obj, loaded_image_protocol);
3471 ret = EFI_SUCCESS;
3472 goto out;
3473 default:
3474 /* Handle does not refer to loaded image */
3475 ret = EFI_INVALID_PARAMETER;
3476 goto out;
3477 }
3478 /* A started image can only be unloaded it is the last one started. */
3479 if (image_handle != current_image) {
3480 ret = EFI_INVALID_PARAMETER;
3481 goto out;
3482 }
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003483
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003484 /* Exit data is only foreseen in case of failure. */
3485 if (exit_status != EFI_SUCCESS) {
3486 ret = efi_update_exit_data(image_obj, exit_data_size,
3487 exit_data);
3488 /* Exiting has priority. Don't return error to caller. */
3489 if (ret != EFI_SUCCESS)
3490 EFI_PRINT("%s: out of memory\n", __func__);
3491 }
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003492 /* efi_delete_image() frees image_obj. Copy before the call. */
3493 exit_jmp = image_obj->exit_jmp;
3494 *image_obj->exit_status = exit_status;
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003495 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
3496 exit_status != EFI_SUCCESS)
3497 efi_delete_image(image_obj, loaded_image_protocol);
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003498
Masahisa Kojima8173cd42021-08-13 16:12:40 +09003499 if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
3500 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION) {
3501 ret = efi_tcg2_measure_efi_app_exit();
3502 if (ret != EFI_SUCCESS) {
3503 log_warning("tcg2 measurement fails(0x%lx)\n",
3504 ret);
3505 }
3506 }
3507 }
3508
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003509 /* Make sure entry/exit counts for EFI world cross-overs match */
3510 EFI_EXIT(exit_status);
3511
3512 /*
3513 * But longjmp out with the U-Boot gd, not the application's, as
3514 * the other end is a setjmp call inside EFI context.
3515 */
3516 efi_restore_gd();
3517
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003518 longjmp(exit_jmp, 1);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003519
3520 panic("EFI application exited");
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003521out:
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003522 return EFI_EXIT(ret);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003523}
3524
3525/**
Mario Six8fac2912018-07-10 08:40:17 +02003526 * efi_handle_protocol() - get interface of a protocol on a handle
3527 * @handle: handle on which the protocol shall be opened
3528 * @protocol: GUID of the protocol
3529 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003530 *
3531 * This function implements the HandleProtocol service.
Mario Six8fac2912018-07-10 08:40:17 +02003532 *
3533 * See the Unified Extensible Firmware Interface (UEFI) specification for
3534 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003535 *
Mario Six8fac2912018-07-10 08:40:17 +02003536 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003537 */
AKASHI Takahirod99b1b32020-03-17 11:12:36 +09003538efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
3539 const efi_guid_t *protocol,
3540 void **protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01003541{
Heinrich Schuchardtef096152019-06-01 19:29:39 +02003542 return efi_open_protocol(handle, protocol, protocol_interface, efi_root,
xypron.glpk@gmx.de1bf5d872017-06-29 21:16:19 +02003543 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafc15d9212016-03-04 01:09:59 +01003544}
3545
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003546/**
Mario Six8fac2912018-07-10 08:40:17 +02003547 * efi_bind_controller() - bind a single driver to a controller
3548 * @controller_handle: controller handle
3549 * @driver_image_handle: driver handle
3550 * @remain_device_path: remaining path
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003551 *
Mario Six8fac2912018-07-10 08:40:17 +02003552 * Return: status code
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003553 */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003554static efi_status_t efi_bind_controller(
3555 efi_handle_t controller_handle,
3556 efi_handle_t driver_image_handle,
3557 struct efi_device_path *remain_device_path)
3558{
3559 struct efi_driver_binding_protocol *binding_protocol;
3560 efi_status_t r;
3561
3562 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3563 &efi_guid_driver_binding_protocol,
3564 (void **)&binding_protocol,
3565 driver_image_handle, NULL,
3566 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3567 if (r != EFI_SUCCESS)
3568 return r;
3569 r = EFI_CALL(binding_protocol->supported(binding_protocol,
3570 controller_handle,
3571 remain_device_path));
3572 if (r == EFI_SUCCESS)
3573 r = EFI_CALL(binding_protocol->start(binding_protocol,
3574 controller_handle,
3575 remain_device_path));
Heinrich Schuchardt5e394332022-10-07 15:18:15 +02003576 efi_close_protocol(driver_image_handle,
3577 &efi_guid_driver_binding_protocol,
3578 driver_image_handle, NULL);
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003579 return r;
3580}
3581
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003582/**
Mario Six8fac2912018-07-10 08:40:17 +02003583 * efi_connect_single_controller() - connect a single driver to a controller
3584 * @controller_handle: controller
3585 * @driver_image_handle: driver
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003586 * @remain_device_path: remaining path
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003587 *
Mario Six8fac2912018-07-10 08:40:17 +02003588 * Return: status code
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003589 */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003590static efi_status_t efi_connect_single_controller(
3591 efi_handle_t controller_handle,
3592 efi_handle_t *driver_image_handle,
3593 struct efi_device_path *remain_device_path)
3594{
3595 efi_handle_t *buffer;
3596 size_t count;
3597 size_t i;
3598 efi_status_t r;
3599 size_t connected = 0;
3600
3601 /* Get buffer with all handles with driver binding protocol */
3602 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3603 &efi_guid_driver_binding_protocol,
3604 NULL, &count, &buffer));
3605 if (r != EFI_SUCCESS)
3606 return r;
3607
Heinrich Schuchardtda8f9002019-07-03 20:27:24 +02003608 /* Context Override */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003609 if (driver_image_handle) {
3610 for (; *driver_image_handle; ++driver_image_handle) {
3611 for (i = 0; i < count; ++i) {
3612 if (buffer[i] == *driver_image_handle) {
3613 buffer[i] = NULL;
3614 r = efi_bind_controller(
3615 controller_handle,
3616 *driver_image_handle,
3617 remain_device_path);
3618 /*
3619 * For drivers that do not support the
3620 * controller or are already connected
3621 * we receive an error code here.
3622 */
3623 if (r == EFI_SUCCESS)
3624 ++connected;
3625 }
3626 }
3627 }
3628 }
3629
3630 /*
3631 * TODO: Some overrides are not yet implemented:
3632 * - Platform Driver Override
3633 * - Driver Family Override Search
3634 * - Bus Specific Driver Override
3635 */
3636
3637 /* Driver Binding Search */
3638 for (i = 0; i < count; ++i) {
3639 if (buffer[i]) {
3640 r = efi_bind_controller(controller_handle,
3641 buffer[i],
3642 remain_device_path);
3643 if (r == EFI_SUCCESS)
3644 ++connected;
3645 }
3646 }
3647
3648 efi_free_pool(buffer);
3649 if (!connected)
3650 return EFI_NOT_FOUND;
3651 return EFI_SUCCESS;
3652}
3653
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003654/**
Mario Six8fac2912018-07-10 08:40:17 +02003655 * efi_connect_controller() - connect a controller to a driver
3656 * @controller_handle: handle of the controller
3657 * @driver_image_handle: handle of the driver
3658 * @remain_device_path: device path of a child controller
3659 * @recursive: true to connect all child controllers
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003660 *
3661 * This function implements the ConnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02003662 *
3663 * See the Unified Extensible Firmware Interface (UEFI) specification for
3664 * details.
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003665 *
3666 * First all driver binding protocol handles are tried for binding drivers.
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003667 * Afterwards all handles that have opened a protocol of the controller
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003668 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3669 *
Mario Six8fac2912018-07-10 08:40:17 +02003670 * Return: status code
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003671 */
3672static efi_status_t EFIAPI efi_connect_controller(
3673 efi_handle_t controller_handle,
3674 efi_handle_t *driver_image_handle,
3675 struct efi_device_path *remain_device_path,
3676 bool recursive)
3677{
3678 efi_status_t r;
3679 efi_status_t ret = EFI_NOT_FOUND;
3680 struct efi_object *efiobj;
3681
Heinrich Schuchardt7c89fb02018-12-09 16:39:20 +01003682 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003683 remain_device_path, recursive);
3684
3685 efiobj = efi_search_obj(controller_handle);
3686 if (!efiobj) {
3687 ret = EFI_INVALID_PARAMETER;
3688 goto out;
3689 }
3690
3691 r = efi_connect_single_controller(controller_handle,
3692 driver_image_handle,
3693 remain_device_path);
3694 if (r == EFI_SUCCESS)
3695 ret = EFI_SUCCESS;
3696 if (recursive) {
3697 struct efi_handler *handler;
3698 struct efi_open_protocol_info_item *item;
3699
3700 list_for_each_entry(handler, &efiobj->protocols, link) {
3701 list_for_each_entry(item, &handler->open_infos, link) {
3702 if (item->info.attributes &
3703 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3704 r = EFI_CALL(efi_connect_controller(
3705 item->info.controller_handle,
3706 driver_image_handle,
3707 remain_device_path,
3708 recursive));
3709 if (r == EFI_SUCCESS)
3710 ret = EFI_SUCCESS;
3711 }
3712 }
3713 }
3714 }
Heinrich Schuchardtda8f9002019-07-03 20:27:24 +02003715 /* Check for child controller specified by end node */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003716 if (ret != EFI_SUCCESS && remain_device_path &&
3717 remain_device_path->type == DEVICE_PATH_TYPE_END)
3718 ret = EFI_SUCCESS;
3719out:
3720 return EFI_EXIT(ret);
3721}
3722
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003723/**
Mario Six8fac2912018-07-10 08:40:17 +02003724 * efi_reinstall_protocol_interface() - reinstall protocol interface
3725 * @handle: handle on which the protocol shall be reinstalled
3726 * @protocol: GUID of the protocol to be installed
3727 * @old_interface: interface to be removed
3728 * @new_interface: interface to be installed
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003729 *
3730 * This function implements the ReinstallProtocolInterface service.
Mario Six8fac2912018-07-10 08:40:17 +02003731 *
3732 * See the Unified Extensible Firmware Interface (UEFI) specification for
3733 * details.
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003734 *
3735 * The old interface is uninstalled. The new interface is installed.
3736 * Drivers are connected.
3737 *
Mario Six8fac2912018-07-10 08:40:17 +02003738 * Return: status code
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003739 */
3740static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3741 efi_handle_t handle, const efi_guid_t *protocol,
3742 void *old_interface, void *new_interface)
3743{
3744 efi_status_t ret;
3745
Heinrich Schuchardt282249d2022-01-16 14:15:31 +01003746 EFI_ENTRY("%p, %pUs, %p, %p", handle, protocol, old_interface,
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003747 new_interface);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02003748
3749 /* Uninstall protocol but do not delete handle */
Ilias Apalodimasc76eade2023-08-24 17:21:09 +03003750 ret = efi_uninstall_protocol(handle, protocol, old_interface, true);
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003751 if (ret != EFI_SUCCESS)
3752 goto out;
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02003753
3754 /* Install the new protocol */
3755 ret = efi_add_protocol(handle, protocol, new_interface);
3756 /*
3757 * The UEFI spec does not specify what should happen to the handle
3758 * if in case of an error no protocol interface remains on the handle.
3759 * So let's do nothing here.
3760 */
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003761 if (ret != EFI_SUCCESS)
3762 goto out;
3763 /*
3764 * The returned status code has to be ignored.
3765 * Do not create an error if no suitable driver for the handle exists.
3766 */
3767 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3768out:
3769 return EFI_EXIT(ret);
3770}
3771
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003772/**
Mario Six8fac2912018-07-10 08:40:17 +02003773 * efi_get_child_controllers() - get all child controllers associated to a driver
3774 * @efiobj: handle of the controller
3775 * @driver_handle: handle of the driver
3776 * @number_of_children: number of child controllers
3777 * @child_handle_buffer: handles of the the child controllers
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003778 *
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003779 * The allocated buffer has to be freed with free().
3780 *
Mario Six8fac2912018-07-10 08:40:17 +02003781 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003782 */
3783static efi_status_t efi_get_child_controllers(
3784 struct efi_object *efiobj,
3785 efi_handle_t driver_handle,
3786 efi_uintn_t *number_of_children,
3787 efi_handle_t **child_handle_buffer)
3788{
3789 struct efi_handler *handler;
3790 struct efi_open_protocol_info_item *item;
3791 efi_uintn_t count = 0, i;
3792 bool duplicate;
3793
3794 /* Count all child controller associations */
3795 list_for_each_entry(handler, &efiobj->protocols, link) {
3796 list_for_each_entry(item, &handler->open_infos, link) {
3797 if (item->info.agent_handle == driver_handle &&
3798 item->info.attributes &
3799 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3800 ++count;
3801 }
3802 }
3803 /*
3804 * Create buffer. In case of duplicate child controller assignments
3805 * the buffer will be too large. But that does not harm.
3806 */
3807 *number_of_children = 0;
Heinrich Schuchardt0f321b62020-07-07 04:21:26 +02003808 if (!count)
3809 return EFI_SUCCESS;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003810 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3811 if (!*child_handle_buffer)
3812 return EFI_OUT_OF_RESOURCES;
3813 /* Copy unique child handles */
3814 list_for_each_entry(handler, &efiobj->protocols, link) {
3815 list_for_each_entry(item, &handler->open_infos, link) {
3816 if (item->info.agent_handle == driver_handle &&
3817 item->info.attributes &
3818 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3819 /* Check this is a new child controller */
3820 duplicate = false;
3821 for (i = 0; i < *number_of_children; ++i) {
3822 if ((*child_handle_buffer)[i] ==
3823 item->info.controller_handle)
3824 duplicate = true;
3825 }
3826 /* Copy handle to buffer */
3827 if (!duplicate) {
3828 i = (*number_of_children)++;
3829 (*child_handle_buffer)[i] =
3830 item->info.controller_handle;
3831 }
3832 }
3833 }
3834 }
3835 return EFI_SUCCESS;
3836}
3837
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003838/**
Mario Six8fac2912018-07-10 08:40:17 +02003839 * efi_disconnect_controller() - disconnect a controller from a driver
3840 * @controller_handle: handle of the controller
3841 * @driver_image_handle: handle of the driver
3842 * @child_handle: handle of the child to destroy
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003843 *
3844 * This function implements the DisconnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02003845 *
3846 * See the Unified Extensible Firmware Interface (UEFI) specification for
3847 * details.
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003848 *
Mario Six8fac2912018-07-10 08:40:17 +02003849 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003850 */
3851static efi_status_t EFIAPI efi_disconnect_controller(
3852 efi_handle_t controller_handle,
3853 efi_handle_t driver_image_handle,
3854 efi_handle_t child_handle)
3855{
3856 struct efi_driver_binding_protocol *binding_protocol;
3857 efi_handle_t *child_handle_buffer = NULL;
3858 size_t number_of_children = 0;
3859 efi_status_t r;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003860 struct efi_object *efiobj;
Heinrich Schuchardtc7ce4042020-10-28 18:45:47 +01003861 bool sole_child;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003862
3863 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3864 child_handle);
3865
3866 efiobj = efi_search_obj(controller_handle);
3867 if (!efiobj) {
3868 r = EFI_INVALID_PARAMETER;
3869 goto out;
3870 }
3871
3872 if (child_handle && !efi_search_obj(child_handle)) {
3873 r = EFI_INVALID_PARAMETER;
3874 goto out;
3875 }
3876
3877 /* If no driver handle is supplied, disconnect all drivers */
3878 if (!driver_image_handle) {
3879 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3880 goto out;
3881 }
3882
3883 /* Create list of child handles */
Heinrich Schuchardtc7ce4042020-10-28 18:45:47 +01003884 r = efi_get_child_controllers(efiobj,
3885 driver_image_handle,
3886 &number_of_children,
3887 &child_handle_buffer);
3888 if (r != EFI_SUCCESS)
3889 return r;
3890 sole_child = (number_of_children == 1);
3891
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003892 if (child_handle) {
3893 number_of_children = 1;
Heinrich Schuchardtc7ce4042020-10-28 18:45:47 +01003894 free(child_handle_buffer);
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003895 child_handle_buffer = &child_handle;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003896 }
3897
3898 /* Get the driver binding protocol */
3899 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3900 &efi_guid_driver_binding_protocol,
3901 (void **)&binding_protocol,
3902 driver_image_handle, NULL,
3903 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt79622842019-09-13 18:20:40 +02003904 if (r != EFI_SUCCESS) {
3905 r = EFI_INVALID_PARAMETER;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003906 goto out;
Heinrich Schuchardt79622842019-09-13 18:20:40 +02003907 }
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003908 /* Remove the children */
3909 if (number_of_children) {
3910 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3911 controller_handle,
3912 number_of_children,
3913 child_handle_buffer));
Heinrich Schuchardt79622842019-09-13 18:20:40 +02003914 if (r != EFI_SUCCESS) {
3915 r = EFI_DEVICE_ERROR;
3916 goto out;
3917 }
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003918 }
3919 /* Remove the driver */
Heinrich Schuchardtc7ce4042020-10-28 18:45:47 +01003920 if (!child_handle || sole_child) {
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003921 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3922 controller_handle,
3923 0, NULL));
Heinrich Schuchardt79622842019-09-13 18:20:40 +02003924 if (r != EFI_SUCCESS) {
3925 r = EFI_DEVICE_ERROR;
3926 goto out;
3927 }
3928 }
Heinrich Schuchardt5e394332022-10-07 15:18:15 +02003929 efi_close_protocol(driver_image_handle,
3930 &efi_guid_driver_binding_protocol,
3931 driver_image_handle, NULL);
Heinrich Schuchardt79622842019-09-13 18:20:40 +02003932 r = EFI_SUCCESS;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003933out:
3934 if (!child_handle)
3935 free(child_handle_buffer);
3936 return EFI_EXIT(r);
3937}
3938
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003939static struct efi_boot_services efi_boot_services = {
Alexander Grafc15d9212016-03-04 01:09:59 +01003940 .hdr = {
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +02003941 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3942 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +02003943 .headersize = sizeof(struct efi_boot_services),
Alexander Grafc15d9212016-03-04 01:09:59 +01003944 },
3945 .raise_tpl = efi_raise_tpl,
3946 .restore_tpl = efi_restore_tpl,
3947 .allocate_pages = efi_allocate_pages_ext,
3948 .free_pages = efi_free_pages_ext,
3949 .get_memory_map = efi_get_memory_map_ext,
Stefan Brüns5a09aef2016-10-09 22:17:18 +02003950 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns67b67d92016-10-09 22:17:26 +02003951 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +02003952 .create_event = efi_create_event_ext,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +02003953 .set_timer = efi_set_timer_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003954 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02003955 .signal_event = efi_signal_event_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003956 .close_event = efi_close_event,
3957 .check_event = efi_check_event,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01003958 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01003959 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01003960 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01003961 .handle_protocol = efi_handle_protocol,
3962 .reserved = NULL,
3963 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02003964 .locate_handle = efi_locate_handle_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003965 .locate_device_path = efi_locate_device_path,
Alexander Grafc5c11632016-08-19 01:23:24 +02003966 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003967 .load_image = efi_load_image,
3968 .start_image = efi_start_image,
Alexander Graf988c0662016-05-20 23:28:23 +02003969 .exit = efi_exit,
Alexander Grafc15d9212016-03-04 01:09:59 +01003970 .unload_image = efi_unload_image,
3971 .exit_boot_services = efi_exit_boot_services,
3972 .get_next_monotonic_count = efi_get_next_monotonic_count,
3973 .stall = efi_stall,
3974 .set_watchdog_timer = efi_set_watchdog_timer,
3975 .connect_controller = efi_connect_controller,
3976 .disconnect_controller = efi_disconnect_controller,
3977 .open_protocol = efi_open_protocol,
Heinrich Schuchardt5e394332022-10-07 15:18:15 +02003978 .close_protocol = efi_close_protocol_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003979 .open_protocol_information = efi_open_protocol_information,
3980 .protocols_per_handle = efi_protocols_per_handle,
3981 .locate_handle_buffer = efi_locate_handle_buffer,
3982 .locate_protocol = efi_locate_protocol,
Heinrich Schuchardt91064592018-02-18 15:17:49 +01003983 .install_multiple_protocol_interfaces =
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03003984 efi_install_multiple_protocol_interfaces_ext,
Heinrich Schuchardt91064592018-02-18 15:17:49 +01003985 .uninstall_multiple_protocol_interfaces =
Ilias Apalodimas8ac0ebe2022-10-06 16:08:46 +03003986 efi_uninstall_multiple_protocol_interfaces_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003987 .calculate_crc32 = efi_calculate_crc32,
3988 .copy_mem = efi_copy_mem,
3989 .set_mem = efi_set_mem,
Heinrich Schuchardt717c4582018-02-04 23:05:13 +01003990 .create_event_ex = efi_create_event_ex,
Alexander Grafc15d9212016-03-04 01:09:59 +01003991};
3992
Simon Glass90975372022-01-23 12:55:12 -07003993static u16 __efi_runtime_data firmware_vendor[] = u"Das U-Boot";
Alexander Grafc15d9212016-03-04 01:09:59 +01003994
Alexander Graf393dd912016-10-14 13:45:30 +02003995struct efi_system_table __efi_runtime_data systab = {
Alexander Grafc15d9212016-03-04 01:09:59 +01003996 .hdr = {
3997 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +02003998 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +02003999 .headersize = sizeof(struct efi_system_table),
Alexander Grafc15d9212016-03-04 01:09:59 +01004000 },
Heinrich Schuchardt27685f72018-06-28 12:45:30 +02004001 .fw_vendor = firmware_vendor,
4002 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
Heinrich Schuchardt372b8932019-06-15 14:51:06 +02004003 .runtime = &efi_runtime_services,
Alexander Grafc15d9212016-03-04 01:09:59 +01004004 .nr_tables = 0,
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02004005 .tables = NULL,
Alexander Grafc15d9212016-03-04 01:09:59 +01004006};
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02004007
4008/**
4009 * efi_initialize_system_table() - Initialize system table
4010 *
Heinrich Schuchardt7b4b2a22018-09-03 05:00:43 +02004011 * Return: status code
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02004012 */
4013efi_status_t efi_initialize_system_table(void)
4014{
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02004015 efi_status_t ret;
4016
4017 /* Allocate configuration table array */
4018 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
4019 EFI_MAX_CONFIGURATION_TABLES *
4020 sizeof(struct efi_configuration_table),
4021 (void **)&systab.tables);
4022
Heinrich Schuchardt98f89362019-06-29 02:00:16 +02004023 /*
4024 * These entries will be set to NULL in ExitBootServices(). To avoid
4025 * relocation in SetVirtualAddressMap(), set them dynamically.
4026 */
Heinrich Schuchardted647682023-01-04 05:56:09 +01004027 systab.con_in_handle = efi_root;
Heinrich Schuchardt98f89362019-06-29 02:00:16 +02004028 systab.con_in = &efi_con_in;
Heinrich Schuchardted647682023-01-04 05:56:09 +01004029 systab.con_out_handle = efi_root;
Heinrich Schuchardt98f89362019-06-29 02:00:16 +02004030 systab.con_out = &efi_con_out;
Heinrich Schuchardted647682023-01-04 05:56:09 +01004031 systab.stderr_handle = efi_root;
Heinrich Schuchardt98f89362019-06-29 02:00:16 +02004032 systab.std_err = &efi_con_out;
4033 systab.boottime = &efi_boot_services;
4034
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02004035 /* Set CRC32 field in table headers */
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02004036 efi_update_table_header_crc32(&systab.hdr);
4037 efi_update_table_header_crc32(&efi_runtime_services.hdr);
4038 efi_update_table_header_crc32(&efi_boot_services.hdr);
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02004039
4040 return ret;
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02004041}