blob: f0283b539e46ce1b27eabac7997193dd863b89d5 [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
Alexander Grafc15d9212016-03-04 01:09:59 +01008#include <common.h>
Ilias Apalodimas4cc06322020-10-22 01:04:20 +03009#include <bootm.h>
Heinrich Schuchardt368ca642017-10-05 16:14:14 +020010#include <div64.h>
Ilias Apalodimasc539fb82020-10-22 01:04:21 +030011#include <dm/device.h>
12#include <dm/root.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010013#include <efi_loader.h>
Simon Glass8f3f7612019-11-14 12:57:42 -070014#include <irq_func.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010016#include <malloc.h>
Heinrich Schuchardt37587522019-05-01 20:07:04 +020017#include <pe.h>
Ilias Apalodimas4cc06322020-10-22 01:04:20 +030018#include <time.h>
Simon Glass48b6c6b2019-11-14 12:57:16 -070019#include <u-boot/crc.h>
Ilias Apalodimasc539fb82020-10-22 01:04:21 +030020#include <usb.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010021#include <watchdog.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060022#include <asm/global_data.h>
AKASHI Takahiro4cbba2b2021-07-20 14:57:02 +090023#include <asm/setjmp.h>
Ilias Apalodimas4cc06322020-10-22 01:04:20 +030024#include <linux/libfdt_env.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010025
26DECLARE_GLOBAL_DATA_PTR;
27
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +020028/* Task priority level */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +010029static efi_uintn_t efi_tpl = TPL_APPLICATION;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +020030
Alexander Grafc15d9212016-03-04 01:09:59 +010031/* This list contains all the EFI objects our payload has access to */
32LIST_HEAD(efi_obj_list);
33
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +010034/* List of all events */
Heinrich Schuchardt4429d872019-07-11 20:15:09 +020035__efi_runtime_data LIST_HEAD(efi_events);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +010036
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +020037/* List of queued events */
38LIST_HEAD(efi_event_queue);
39
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +020040/* Flag to disable timer activity in ExitBootServices() */
41static bool timers_enabled = true;
42
Heinrich Schuchardt628dbd72020-11-12 21:26:28 +010043/* Flag used by the selftest to avoid detaching devices in ExitBootServices() */
44bool efi_st_keep_devices;
45
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +020046/* List of all events registered by RegisterProtocolNotify() */
47LIST_HEAD(efi_register_notify_events);
48
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +010049/* Handle of the currently executing image */
50static efi_handle_t current_image;
51
Heinrich Schuchardtf277d942020-09-10 12:22:54 +020052#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Alexander Grafc15d9212016-03-04 01:09:59 +010053/*
Heinrich Schuchardtf277d942020-09-10 12:22:54 +020054 * The "gd" pointer lives in a register on ARM and RISC-V that we declare
Alexander Grafc15d9212016-03-04 01:09:59 +010055 * fixed when compiling U-Boot. However, the payload does not know about that
56 * restriction so we need to manually swap its and our view of that register on
57 * EFI callback entry/exit.
58 */
Heinrich Schuchardt1a3732c2020-05-27 01:58:30 +020059static volatile gd_t *efi_gd, *app_gd;
Simon Glasscdfe6962016-09-25 15:27:35 -060060#endif
Alexander Grafc15d9212016-03-04 01:09:59 +010061
Heinrich Schuchardt72506232019-02-09 14:10:39 +010062/* 1 if inside U-Boot code, 0 if inside EFI payload code */
63static int entry_count = 1;
Rob Clarke7896c32017-07-27 08:04:19 -040064static int nesting_level;
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +010065/* GUID of the device tree table */
66const efi_guid_t efi_guid_fdt = EFI_FDT_GUID;
Heinrich Schuchardt760255f2018-01-11 08:16:02 +010067/* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
68const efi_guid_t efi_guid_driver_binding_protocol =
69 EFI_DRIVER_BINDING_PROTOCOL_GUID;
Rob Clark86789d52017-07-27 08:04:18 -040070
Heinrich Schuchardt672d99e2018-02-18 15:17:51 +010071/* event group ExitBootServices() invoked */
72const efi_guid_t efi_guid_event_group_exit_boot_services =
73 EFI_EVENT_GROUP_EXIT_BOOT_SERVICES;
74/* event group SetVirtualAddressMap() invoked */
75const efi_guid_t efi_guid_event_group_virtual_address_change =
76 EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE;
77/* event group memory map changed */
78const efi_guid_t efi_guid_event_group_memory_map_change =
79 EFI_EVENT_GROUP_MEMORY_MAP_CHANGE;
80/* event group boot manager about to boot */
81const efi_guid_t efi_guid_event_group_ready_to_boot =
82 EFI_EVENT_GROUP_READY_TO_BOOT;
83/* event group ResetSystem() invoked (before ExitBootServices) */
84const efi_guid_t efi_guid_event_group_reset_system =
85 EFI_EVENT_GROUP_RESET_SYSTEM;
Heinrich Schuchardt485956d2020-12-04 03:33:41 +010086/* GUIDs of the Load File and Load File2 protocols */
87const efi_guid_t efi_guid_load_file_protocol = EFI_LOAD_FILE_PROTOCOL_GUID;
88const efi_guid_t efi_guid_load_file2_protocol = EFI_LOAD_FILE2_PROTOCOL_GUID;
Heinrich Schuchardt672d99e2018-02-18 15:17:51 +010089
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +010090static efi_status_t EFIAPI efi_disconnect_controller(
91 efi_handle_t controller_handle,
92 efi_handle_t driver_image_handle,
93 efi_handle_t child_handle);
Heinrich Schuchardte9943282018-01-11 08:16:04 +010094
Rob Clark86789d52017-07-27 08:04:18 -040095/* Called on every callback entry */
96int __efi_entry_check(void)
97{
98 int ret = entry_count++ == 0;
Heinrich Schuchardtf277d942020-09-10 12:22:54 +020099#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Rob Clark86789d52017-07-27 08:04:18 -0400100 assert(efi_gd);
101 app_gd = gd;
Heinrich Schuchardt1a3732c2020-05-27 01:58:30 +0200102 set_gd(efi_gd);
Rob Clark86789d52017-07-27 08:04:18 -0400103#endif
104 return ret;
105}
106
107/* Called on every callback exit */
108int __efi_exit_check(void)
109{
110 int ret = --entry_count == 0;
Heinrich Schuchardtf277d942020-09-10 12:22:54 +0200111#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Heinrich Schuchardt1a3732c2020-05-27 01:58:30 +0200112 set_gd(app_gd);
Rob Clark86789d52017-07-27 08:04:18 -0400113#endif
114 return ret;
115}
116
Heinrich Schuchardtc5949412020-07-18 09:53:01 +0200117/**
118 * efi_save_gd() - save global data register
119 *
Heinrich Schuchardtf277d942020-09-10 12:22:54 +0200120 * On the ARM and RISC-V architectures gd is mapped to a fixed register.
Heinrich Schuchardtc5949412020-07-18 09:53:01 +0200121 * As this register may be overwritten by an EFI payload we save it here
122 * and restore it on every callback entered.
123 *
124 * This function is called after relocation from initr_reloc_global_data().
125 */
Alexander Grafc15d9212016-03-04 01:09:59 +0100126void efi_save_gd(void)
127{
Heinrich Schuchardtf277d942020-09-10 12:22:54 +0200128#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Alexander Grafc15d9212016-03-04 01:09:59 +0100129 efi_gd = gd;
Simon Glasscdfe6962016-09-25 15:27:35 -0600130#endif
Alexander Grafc15d9212016-03-04 01:09:59 +0100131}
132
Heinrich Schuchardtc5949412020-07-18 09:53:01 +0200133/**
134 * efi_restore_gd() - restore global data register
135 *
Heinrich Schuchardtf277d942020-09-10 12:22:54 +0200136 * On the ARM and RISC-V architectures gd is mapped to a fixed register.
Heinrich Schuchardtc5949412020-07-18 09:53:01 +0200137 * Restore it after returning from the UEFI world to the value saved via
138 * efi_save_gd().
Rob Clark86789d52017-07-27 08:04:18 -0400139 */
Alexander Grafc15d9212016-03-04 01:09:59 +0100140void efi_restore_gd(void)
141{
Heinrich Schuchardtf277d942020-09-10 12:22:54 +0200142#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Alexander Grafc15d9212016-03-04 01:09:59 +0100143 /* Only restore if we're already in EFI context */
144 if (!efi_gd)
145 return;
Heinrich Schuchardt1a3732c2020-05-27 01:58:30 +0200146 set_gd(efi_gd);
Simon Glasscdfe6962016-09-25 15:27:35 -0600147#endif
Alexander Grafc15d9212016-03-04 01:09:59 +0100148}
149
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200150/**
Mario Six8fac2912018-07-10 08:40:17 +0200151 * indent_string() - returns a string for indenting with two spaces per level
152 * @level: indent level
Heinrich Schuchardt091cf432018-01-24 19:21:36 +0100153 *
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200154 * A maximum of ten indent levels is supported. Higher indent levels will be
155 * truncated.
156 *
Mario Six8fac2912018-07-10 08:40:17 +0200157 * Return: A string for indenting with two spaces per level is
158 * returned.
Rob Clarke7896c32017-07-27 08:04:19 -0400159 */
160static const char *indent_string(int level)
161{
162 const char *indent = " ";
163 const int max = strlen(indent);
Heinrich Schuchardt91064592018-02-18 15:17:49 +0100164
Rob Clarke7896c32017-07-27 08:04:19 -0400165 level = min(max, level * 2);
166 return &indent[max - level];
167}
168
Heinrich Schuchardt4d664892017-08-18 17:45:16 +0200169const char *__efi_nesting(void)
170{
171 return indent_string(nesting_level);
172}
173
Rob Clarke7896c32017-07-27 08:04:19 -0400174const char *__efi_nesting_inc(void)
175{
176 return indent_string(nesting_level++);
177}
178
179const char *__efi_nesting_dec(void)
180{
181 return indent_string(--nesting_level);
182}
183
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200184/**
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +0200185 * efi_event_is_queued() - check if an event is queued
186 *
187 * @event: event
188 * Return: true if event is queued
189 */
190static bool efi_event_is_queued(struct efi_event *event)
191{
192 return !!event->queue_link.next;
193}
194
195/**
196 * efi_process_event_queue() - process event queue
197 */
198static void efi_process_event_queue(void)
199{
200 while (!list_empty(&efi_event_queue)) {
201 struct efi_event *event;
202 efi_uintn_t old_tpl;
203
204 event = list_first_entry(&efi_event_queue, struct efi_event,
205 queue_link);
206 if (efi_tpl >= event->notify_tpl)
207 return;
208 list_del(&event->queue_link);
209 event->queue_link.next = NULL;
210 event->queue_link.prev = NULL;
211 /* Events must be executed at the event's TPL */
212 old_tpl = efi_tpl;
213 efi_tpl = event->notify_tpl;
214 EFI_CALL_VOID(event->notify_function(event,
215 event->notify_context));
216 efi_tpl = old_tpl;
217 if (event->type == EVT_NOTIFY_SIGNAL)
218 event->is_signaled = 0;
219 }
220}
221
222/**
Mario Six8fac2912018-07-10 08:40:17 +0200223 * efi_queue_event() - queue an EFI event
224 * @event: event to signal
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200225 *
226 * This function queues the notification function of the event for future
227 * execution.
228 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200229 */
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +0200230static void efi_queue_event(struct efi_event *event)
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200231{
Heinrich Schuchardtec946902020-03-06 21:56:10 +0100232 struct efi_event *item;
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +0200233
234 if (!event->notify_function)
235 return;
236
237 if (!efi_event_is_queued(event)) {
238 /*
239 * Events must be notified in order of decreasing task priority
240 * level. Insert the new event accordingly.
241 */
242 list_for_each_entry(item, &efi_event_queue, queue_link) {
243 if (item->notify_tpl < event->notify_tpl) {
244 list_add_tail(&event->queue_link,
245 &item->queue_link);
246 event = NULL;
247 break;
248 }
249 }
250 if (event)
251 list_add_tail(&event->queue_link, &efi_event_queue);
Heinrich Schuchardt3ef4c852020-12-28 00:25:34 +0100252 efi_process_event_queue();
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200253 }
254}
255
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200256/**
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200257 * is_valid_tpl() - check if the task priority level is valid
258 *
259 * @tpl: TPL level to check
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200260 * Return: status code
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200261 */
262efi_status_t is_valid_tpl(efi_uintn_t tpl)
263{
264 switch (tpl) {
265 case TPL_APPLICATION:
266 case TPL_CALLBACK:
267 case TPL_NOTIFY:
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200268 return EFI_SUCCESS;
269 default:
270 return EFI_INVALID_PARAMETER;
271 }
272}
273
274/**
Mario Six8fac2912018-07-10 08:40:17 +0200275 * efi_signal_event() - signal an EFI event
276 * @event: event to signal
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100277 *
Heinrich Schuchardt9de0fb72020-12-28 00:59:09 +0100278 * This function signals an event. If the event belongs to an event group, all
279 * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL,
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100280 * their notification function is queued.
281 *
282 * For the SignalEvent service see efi_signal_event_ext.
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100283 */
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +0200284void efi_signal_event(struct efi_event *event)
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100285{
Heinrich Schuchardt0b4de562019-06-06 01:51:50 +0200286 if (event->is_signaled)
287 return;
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100288 if (event->group) {
289 struct efi_event *evt;
290
291 /*
292 * The signaled state has to set before executing any
293 * notification function
294 */
295 list_for_each_entry(evt, &efi_events, link) {
296 if (!evt->group || guidcmp(evt->group, event->group))
297 continue;
298 if (evt->is_signaled)
299 continue;
300 evt->is_signaled = true;
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100301 }
302 list_for_each_entry(evt, &efi_events, link) {
303 if (!evt->group || guidcmp(evt->group, event->group))
304 continue;
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +0200305 efi_queue_event(evt);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100306 }
Heinrich Schuchardt66ddc2e2019-05-05 00:07:34 +0200307 } else {
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100308 event->is_signaled = true;
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +0200309 efi_queue_event(event);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100310 }
311}
312
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200313/**
Mario Six8fac2912018-07-10 08:40:17 +0200314 * efi_raise_tpl() - raise the task priority level
315 * @new_tpl: new value of the task priority level
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200316 *
317 * This function implements the RaiseTpl service.
Mario Six8fac2912018-07-10 08:40:17 +0200318 *
319 * See the Unified Extensible Firmware Interface (UEFI) specification for
320 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200321 *
Mario Six8fac2912018-07-10 08:40:17 +0200322 * Return: old value of the task priority level
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200323 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100324static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
Alexander Grafc15d9212016-03-04 01:09:59 +0100325{
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100326 efi_uintn_t old_tpl = efi_tpl;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200327
xypron.glpk@gmx.de48df2092017-07-18 20:17:19 +0200328 EFI_ENTRY("0x%zx", new_tpl);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200329
330 if (new_tpl < efi_tpl)
Heinrich Schuchardt952e2062019-05-05 11:56:23 +0200331 EFI_PRINT("WARNING: new_tpl < current_tpl in %s\n", __func__);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200332 efi_tpl = new_tpl;
333 if (efi_tpl > TPL_HIGH_LEVEL)
334 efi_tpl = TPL_HIGH_LEVEL;
335
336 EFI_EXIT(EFI_SUCCESS);
337 return old_tpl;
Alexander Grafc15d9212016-03-04 01:09:59 +0100338}
339
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200340/**
Mario Six8fac2912018-07-10 08:40:17 +0200341 * efi_restore_tpl() - lower the task priority level
342 * @old_tpl: value of the task priority level to be restored
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200343 *
344 * This function implements the RestoreTpl service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200345 *
Mario Six8fac2912018-07-10 08:40:17 +0200346 * See the Unified Extensible Firmware Interface (UEFI) specification for
347 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200348 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100349static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
Alexander Grafc15d9212016-03-04 01:09:59 +0100350{
xypron.glpk@gmx.de48df2092017-07-18 20:17:19 +0200351 EFI_ENTRY("0x%zx", old_tpl);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200352
353 if (old_tpl > efi_tpl)
Heinrich Schuchardt952e2062019-05-05 11:56:23 +0200354 EFI_PRINT("WARNING: old_tpl > current_tpl in %s\n", __func__);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200355 efi_tpl = old_tpl;
356 if (efi_tpl > TPL_HIGH_LEVEL)
357 efi_tpl = TPL_HIGH_LEVEL;
358
Heinrich Schuchardt59b20952018-03-24 18:40:21 +0100359 /*
360 * Lowering the TPL may have made queued events eligible for execution.
361 */
362 efi_timer_check();
363
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200364 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +0100365}
366
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200367/**
Mario Six8fac2912018-07-10 08:40:17 +0200368 * efi_allocate_pages_ext() - allocate memory pages
369 * @type: type of allocation to be performed
370 * @memory_type: usage type of the allocated memory
371 * @pages: number of pages to be allocated
372 * @memory: allocated memory
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200373 *
374 * This function implements the AllocatePages service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200375 *
Mario Six8fac2912018-07-10 08:40:17 +0200376 * See the Unified Extensible Firmware Interface (UEFI) specification for
377 * details.
378 *
379 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200380 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900381static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100382 efi_uintn_t pages,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900383 uint64_t *memory)
Alexander Grafc15d9212016-03-04 01:09:59 +0100384{
385 efi_status_t r;
386
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100387 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
Alexander Grafc15d9212016-03-04 01:09:59 +0100388 r = efi_allocate_pages(type, memory_type, pages, memory);
389 return EFI_EXIT(r);
390}
391
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200392/**
Mario Six8fac2912018-07-10 08:40:17 +0200393 * efi_free_pages_ext() - Free memory pages.
394 * @memory: start of the memory area to be freed
395 * @pages: number of pages to be freed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200396 *
397 * This function implements the FreePages service.
Mario Six8fac2912018-07-10 08:40:17 +0200398 *
399 * See the Unified Extensible Firmware Interface (UEFI) specification for
400 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200401 *
Mario Six8fac2912018-07-10 08:40:17 +0200402 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200403 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900404static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100405 efi_uintn_t pages)
Alexander Grafc15d9212016-03-04 01:09:59 +0100406{
407 efi_status_t r;
408
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900409 EFI_ENTRY("%llx, 0x%zx", memory, pages);
Alexander Grafc15d9212016-03-04 01:09:59 +0100410 r = efi_free_pages(memory, pages);
411 return EFI_EXIT(r);
412}
413
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200414/**
Mario Six8fac2912018-07-10 08:40:17 +0200415 * efi_get_memory_map_ext() - get map describing memory usage
416 * @memory_map_size: on entry the size, in bytes, of the memory map buffer,
417 * on exit the size of the copied memory map
418 * @memory_map: buffer to which the memory map is written
419 * @map_key: key for the memory map
420 * @descriptor_size: size of an individual memory descriptor
421 * @descriptor_version: version number of the memory descriptor structure
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200422 *
423 * This function implements the GetMemoryMap service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200424 *
Mario Six8fac2912018-07-10 08:40:17 +0200425 * See the Unified Extensible Firmware Interface (UEFI) specification for
426 * details.
427 *
428 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200429 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900430static efi_status_t EFIAPI efi_get_memory_map_ext(
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100431 efi_uintn_t *memory_map_size,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900432 struct efi_mem_desc *memory_map,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100433 efi_uintn_t *map_key,
434 efi_uintn_t *descriptor_size,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900435 uint32_t *descriptor_version)
Alexander Grafc15d9212016-03-04 01:09:59 +0100436{
437 efi_status_t r;
438
439 EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
440 map_key, descriptor_size, descriptor_version);
441 r = efi_get_memory_map(memory_map_size, memory_map, map_key,
442 descriptor_size, descriptor_version);
443 return EFI_EXIT(r);
444}
445
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200446/**
Mario Six8fac2912018-07-10 08:40:17 +0200447 * efi_allocate_pool_ext() - allocate memory from pool
448 * @pool_type: type of the pool from which memory is to be allocated
449 * @size: number of bytes to be allocated
450 * @buffer: allocated memory
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200451 *
452 * This function implements the AllocatePool service.
Mario Six8fac2912018-07-10 08:40:17 +0200453 *
454 * See the Unified Extensible Firmware Interface (UEFI) specification for
455 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200456 *
Mario Six8fac2912018-07-10 08:40:17 +0200457 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200458 */
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200459static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100460 efi_uintn_t size,
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200461 void **buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +0100462{
Alexander Graf1c34fa82016-03-24 01:37:37 +0100463 efi_status_t r;
464
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100465 EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200466 r = efi_allocate_pool(pool_type, size, buffer);
Alexander Graf1c34fa82016-03-24 01:37:37 +0100467 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +0100468}
469
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200470/**
Mario Six8fac2912018-07-10 08:40:17 +0200471 * efi_free_pool_ext() - free memory from pool
472 * @buffer: start of memory to be freed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200473 *
474 * This function implements the FreePool service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200475 *
Mario Six8fac2912018-07-10 08:40:17 +0200476 * See the Unified Extensible Firmware Interface (UEFI) specification for
477 * details.
478 *
479 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200480 */
Stefan Brüns67b67d92016-10-09 22:17:26 +0200481static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +0100482{
Alexander Graf1c34fa82016-03-24 01:37:37 +0100483 efi_status_t r;
484
485 EFI_ENTRY("%p", buffer);
Stefan Brüns67b67d92016-10-09 22:17:26 +0200486 r = efi_free_pool(buffer);
Alexander Graf1c34fa82016-03-24 01:37:37 +0100487 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +0100488}
489
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200490/**
Heinrich Schuchardt30cd0462019-05-01 09:42:39 +0200491 * efi_add_handle() - add a new handle to the object list
492 *
493 * @handle: handle to be added
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100494 *
Heinrich Schuchardt30cd0462019-05-01 09:42:39 +0200495 * The protocols list is initialized. The handle is added to the list of known
496 * UEFI objects.
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100497 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200498void efi_add_handle(efi_handle_t handle)
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100499{
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200500 if (!handle)
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100501 return;
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200502 INIT_LIST_HEAD(&handle->protocols);
503 list_add_tail(&handle->link, &efi_obj_list);
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100504}
505
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200506/**
Mario Six8fac2912018-07-10 08:40:17 +0200507 * efi_create_handle() - create handle
508 * @handle: new handle
Heinrich Schuchardteb6106e2017-10-26 19:25:49 +0200509 *
Mario Six8fac2912018-07-10 08:40:17 +0200510 * Return: status code
Heinrich Schuchardteb6106e2017-10-26 19:25:49 +0200511 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100512efi_status_t efi_create_handle(efi_handle_t *handle)
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200513{
514 struct efi_object *obj;
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200515
Heinrich Schuchardtae1d2062018-05-27 16:47:21 +0200516 obj = calloc(1, sizeof(struct efi_object));
517 if (!obj)
518 return EFI_OUT_OF_RESOURCES;
519
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100520 efi_add_handle(obj);
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200521 *handle = obj;
Heinrich Schuchardtae1d2062018-05-27 16:47:21 +0200522
523 return EFI_SUCCESS;
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200524}
525
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200526/**
Mario Six8fac2912018-07-10 08:40:17 +0200527 * efi_search_protocol() - find a protocol on a handle.
528 * @handle: handle
529 * @protocol_guid: GUID of the protocol
530 * @handler: reference to the protocol
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100531 *
Mario Six8fac2912018-07-10 08:40:17 +0200532 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100533 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100534efi_status_t efi_search_protocol(const efi_handle_t handle,
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100535 const efi_guid_t *protocol_guid,
536 struct efi_handler **handler)
537{
538 struct efi_object *efiobj;
539 struct list_head *lhandle;
540
541 if (!handle || !protocol_guid)
542 return EFI_INVALID_PARAMETER;
543 efiobj = efi_search_obj(handle);
544 if (!efiobj)
545 return EFI_INVALID_PARAMETER;
546 list_for_each(lhandle, &efiobj->protocols) {
547 struct efi_handler *protocol;
548
549 protocol = list_entry(lhandle, struct efi_handler, link);
550 if (!guidcmp(protocol->guid, protocol_guid)) {
551 if (handler)
552 *handler = protocol;
553 return EFI_SUCCESS;
554 }
555 }
556 return EFI_NOT_FOUND;
557}
558
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200559/**
Mario Six8fac2912018-07-10 08:40:17 +0200560 * efi_remove_protocol() - delete protocol from a handle
561 * @handle: handle from which the protocol shall be deleted
562 * @protocol: GUID of the protocol to be deleted
563 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100564 *
Mario Six8fac2912018-07-10 08:40:17 +0200565 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100566 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100567efi_status_t efi_remove_protocol(const efi_handle_t handle,
568 const efi_guid_t *protocol,
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100569 void *protocol_interface)
570{
571 struct efi_handler *handler;
572 efi_status_t ret;
573
574 ret = efi_search_protocol(handle, protocol, &handler);
575 if (ret != EFI_SUCCESS)
576 return ret;
Heinrich Schuchardtb27594d2018-05-11 12:09:21 +0200577 if (handler->protocol_interface != protocol_interface)
Heinrich Schuchardtfdeb1f02019-05-10 20:06:48 +0200578 return EFI_NOT_FOUND;
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100579 list_del(&handler->link);
580 free(handler);
581 return EFI_SUCCESS;
582}
583
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200584/**
Mario Six8fac2912018-07-10 08:40:17 +0200585 * efi_remove_all_protocols() - delete all protocols from a handle
586 * @handle: handle from which the protocols shall be deleted
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100587 *
Mario Six8fac2912018-07-10 08:40:17 +0200588 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100589 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100590efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100591{
592 struct efi_object *efiobj;
Heinrich Schuchardta84731d2018-01-11 08:15:55 +0100593 struct efi_handler *protocol;
594 struct efi_handler *pos;
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100595
596 efiobj = efi_search_obj(handle);
597 if (!efiobj)
598 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta84731d2018-01-11 08:15:55 +0100599 list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100600 efi_status_t ret;
601
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100602 ret = efi_remove_protocol(handle, protocol->guid,
603 protocol->protocol_interface);
604 if (ret != EFI_SUCCESS)
605 return ret;
606 }
607 return EFI_SUCCESS;
608}
609
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200610/**
Mario Six8fac2912018-07-10 08:40:17 +0200611 * efi_delete_handle() - delete handle
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100612 *
Heinrich Schuchardt41cc3c12019-07-14 11:05:34 +0200613 * @handle: handle to delete
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100614 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200615void efi_delete_handle(efi_handle_t handle)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100616{
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200617 if (!handle)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100618 return;
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200619 efi_remove_all_protocols(handle);
620 list_del(&handle->link);
621 free(handle);
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100622}
623
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200624/**
Mario Six8fac2912018-07-10 08:40:17 +0200625 * efi_is_event() - check if a pointer is a valid event
626 * @event: pointer to check
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100627 *
Mario Six8fac2912018-07-10 08:40:17 +0200628 * Return: status code
Alexander Grafc15d9212016-03-04 01:09:59 +0100629 */
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100630static efi_status_t efi_is_event(const struct efi_event *event)
631{
632 const struct efi_event *evt;
633
634 if (!event)
635 return EFI_INVALID_PARAMETER;
636 list_for_each_entry(evt, &efi_events, link) {
637 if (evt == event)
638 return EFI_SUCCESS;
639 }
640 return EFI_INVALID_PARAMETER;
641}
Alexander Grafc15d9212016-03-04 01:09:59 +0100642
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200643/**
Mario Six8fac2912018-07-10 08:40:17 +0200644 * efi_create_event() - create an event
Heinrich Schuchardt41cc3c12019-07-14 11:05:34 +0200645 *
Mario Six8fac2912018-07-10 08:40:17 +0200646 * @type: type of the event to create
647 * @notify_tpl: task priority level of the event
648 * @notify_function: notification function of the event
649 * @notify_context: pointer passed to the notification function
650 * @group: event group
651 * @event: created event
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200652 *
653 * This function is used inside U-Boot code to create an event.
654 *
655 * For the API function implementing the CreateEvent service see
656 * efi_create_event_ext.
657 *
Mario Six8fac2912018-07-10 08:40:17 +0200658 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200659 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100660efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200661 void (EFIAPI *notify_function) (
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200662 struct efi_event *event,
663 void *context),
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100664 void *notify_context, efi_guid_t *group,
665 struct efi_event **event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100666{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100667 struct efi_event *evt;
Heinrich Schuchardt4429d872019-07-11 20:15:09 +0200668 efi_status_t ret;
669 int pool_type;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200670
Jonathan Gray7758b212017-03-12 19:26:07 +1100671 if (event == NULL)
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200672 return EFI_INVALID_PARAMETER;
Jonathan Gray7758b212017-03-12 19:26:07 +1100673
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200674 switch (type) {
675 case 0:
676 case EVT_TIMER:
677 case EVT_NOTIFY_SIGNAL:
678 case EVT_TIMER | EVT_NOTIFY_SIGNAL:
679 case EVT_NOTIFY_WAIT:
680 case EVT_TIMER | EVT_NOTIFY_WAIT:
681 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
Heinrich Schuchardt4429d872019-07-11 20:15:09 +0200682 pool_type = EFI_BOOT_SERVICES_DATA;
683 break;
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200684 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
Heinrich Schuchardt4429d872019-07-11 20:15:09 +0200685 pool_type = EFI_RUNTIME_SERVICES_DATA;
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200686 break;
687 default:
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200688 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200689 }
Jonathan Gray7758b212017-03-12 19:26:07 +1100690
Heinrich Schuchardt3d83b732021-01-06 12:55:22 +0100691 /*
692 * The UEFI specification requires event notification levels to be
693 * > TPL_APPLICATION and <= TPL_HIGH_LEVEL.
694 *
695 * Parameter NotifyTpl should not be checked if it is not used.
696 */
AKASHI Takahiro3f3835d2018-08-10 15:36:32 +0900697 if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) &&
Heinrich Schuchardt3d83b732021-01-06 12:55:22 +0100698 (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS ||
699 notify_tpl == TPL_APPLICATION))
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200700 return EFI_INVALID_PARAMETER;
Jonathan Gray7758b212017-03-12 19:26:07 +1100701
Heinrich Schuchardt4429d872019-07-11 20:15:09 +0200702 ret = efi_allocate_pool(pool_type, sizeof(struct efi_event),
703 (void **)&evt);
704 if (ret != EFI_SUCCESS)
705 return ret;
706 memset(evt, 0, sizeof(struct efi_event));
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100707 evt->type = type;
708 evt->notify_tpl = notify_tpl;
709 evt->notify_function = notify_function;
710 evt->notify_context = notify_context;
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100711 evt->group = group;
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200712 /* Disable timers on boot up */
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100713 evt->trigger_next = -1ULL;
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100714 list_add_tail(&evt->link, &efi_events);
715 *event = evt;
716 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +0100717}
718
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200719/*
Mario Six8fac2912018-07-10 08:40:17 +0200720 * efi_create_event_ex() - create an event in a group
721 * @type: type of the event to create
722 * @notify_tpl: task priority level of the event
723 * @notify_function: notification function of the event
724 * @notify_context: pointer passed to the notification function
725 * @event: created event
726 * @event_group: event group
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100727 *
728 * This function implements the CreateEventEx service.
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100729 *
Mario Six8fac2912018-07-10 08:40:17 +0200730 * See the Unified Extensible Firmware Interface (UEFI) specification for
731 * details.
732 *
733 * Return: status code
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100734 */
735efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl,
736 void (EFIAPI *notify_function) (
737 struct efi_event *event,
738 void *context),
739 void *notify_context,
740 efi_guid_t *event_group,
741 struct efi_event **event)
742{
Heinrich Schuchardtce664992019-05-04 10:12:50 +0200743 efi_status_t ret;
744
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100745 EFI_ENTRY("%d, 0x%zx, %p, %p, %pUl", type, notify_tpl, notify_function,
746 notify_context, event_group);
Heinrich Schuchardtce664992019-05-04 10:12:50 +0200747
748 /*
749 * The allowable input parameters are the same as in CreateEvent()
750 * except for the following two disallowed event types.
751 */
752 switch (type) {
753 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
754 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
755 ret = EFI_INVALID_PARAMETER;
756 goto out;
757 }
758
759 ret = efi_create_event(type, notify_tpl, notify_function,
760 notify_context, event_group, event);
761out:
762 return EFI_EXIT(ret);
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100763}
764
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200765/**
Mario Six8fac2912018-07-10 08:40:17 +0200766 * efi_create_event_ext() - create an event
767 * @type: type of the event to create
768 * @notify_tpl: task priority level of the event
769 * @notify_function: notification function of the event
770 * @notify_context: pointer passed to the notification function
771 * @event: created event
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200772 *
773 * This function implements the CreateEvent service.
Mario Six8fac2912018-07-10 08:40:17 +0200774 *
775 * See the Unified Extensible Firmware Interface (UEFI) specification for
776 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200777 *
Mario Six8fac2912018-07-10 08:40:17 +0200778 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200779 */
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200780static efi_status_t EFIAPI efi_create_event_ext(
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100781 uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200782 void (EFIAPI *notify_function) (
783 struct efi_event *event,
784 void *context),
785 void *notify_context, struct efi_event **event)
786{
787 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
788 notify_context);
789 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100790 notify_context, NULL, event));
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200791}
792
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200793/**
Mario Six8fac2912018-07-10 08:40:17 +0200794 * efi_timer_check() - check if a timer event has occurred
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200795 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200796 * Check if a timer event has occurred or a queued notification function should
797 * be called.
798 *
Alexander Grafc15d9212016-03-04 01:09:59 +0100799 * Our timers have to work without interrupts, so we check whenever keyboard
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200800 * input or disk accesses happen if enough time elapsed for them to fire.
Alexander Grafc15d9212016-03-04 01:09:59 +0100801 */
802void efi_timer_check(void)
803{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100804 struct efi_event *evt;
Alexander Grafc15d9212016-03-04 01:09:59 +0100805 u64 now = timer_get_us();
806
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100807 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +0200808 if (!timers_enabled)
809 continue;
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100810 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next)
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200811 continue;
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100812 switch (evt->trigger_type) {
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200813 case EFI_TIMER_RELATIVE:
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100814 evt->trigger_type = EFI_TIMER_STOP;
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200815 break;
816 case EFI_TIMER_PERIODIC:
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100817 evt->trigger_next += evt->trigger_time;
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200818 break;
819 default:
820 continue;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200821 }
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100822 evt->is_signaled = false;
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +0200823 efi_signal_event(evt);
Alexander Grafc15d9212016-03-04 01:09:59 +0100824 }
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +0200825 efi_process_event_queue();
Alexander Grafc15d9212016-03-04 01:09:59 +0100826 WATCHDOG_RESET();
827}
828
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200829/**
Mario Six8fac2912018-07-10 08:40:17 +0200830 * efi_set_timer() - set the trigger time for a timer event or stop the event
831 * @event: event for which the timer is set
832 * @type: type of the timer
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200833 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200834 *
835 * This is the function for internal usage in U-Boot. For the API function
836 * implementing the SetTimer service see efi_set_timer_ext.
837 *
Mario Six8fac2912018-07-10 08:40:17 +0200838 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200839 */
xypron.glpk@gmx.de3ecc6bd2017-07-19 19:22:34 +0200840efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200841 uint64_t trigger_time)
Alexander Grafc15d9212016-03-04 01:09:59 +0100842{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100843 /* Check that the event is valid */
844 if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER))
845 return EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +0100846
xypron.glpk@gmx.de44c4be02017-07-18 20:17:23 +0200847 /*
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200848 * The parameter defines a multiple of 100 ns.
849 * We use multiples of 1000 ns. So divide by 10.
xypron.glpk@gmx.de44c4be02017-07-18 20:17:23 +0200850 */
Heinrich Schuchardt368ca642017-10-05 16:14:14 +0200851 do_div(trigger_time, 10);
Alexander Grafc15d9212016-03-04 01:09:59 +0100852
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100853 switch (type) {
854 case EFI_TIMER_STOP:
855 event->trigger_next = -1ULL;
856 break;
857 case EFI_TIMER_PERIODIC:
858 case EFI_TIMER_RELATIVE:
859 event->trigger_next = timer_get_us() + trigger_time;
860 break;
861 default:
862 return EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +0100863 }
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100864 event->trigger_type = type;
865 event->trigger_time = trigger_time;
866 event->is_signaled = false;
867 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +0100868}
869
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200870/**
Mario Six8fac2912018-07-10 08:40:17 +0200871 * efi_set_timer_ext() - Set the trigger time for a timer event or stop the
872 * event
873 * @event: event for which the timer is set
874 * @type: type of the timer
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200875 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200876 *
877 * This function implements the SetTimer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200878 *
Mario Six8fac2912018-07-10 08:40:17 +0200879 * See the Unified Extensible Firmware Interface (UEFI) specification for
880 * details.
881 *
882 *
883 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200884 */
xypron.glpk@gmx.de3ecc6bd2017-07-19 19:22:34 +0200885static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
886 enum efi_timer_delay type,
887 uint64_t trigger_time)
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200888{
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900889 EFI_ENTRY("%p, %d, %llx", event, type, trigger_time);
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200890 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
891}
892
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200893/**
Mario Six8fac2912018-07-10 08:40:17 +0200894 * efi_wait_for_event() - wait for events to be signaled
895 * @num_events: number of events to be waited for
896 * @event: events to be waited for
897 * @index: index of the event that was signaled
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200898 *
899 * This function implements the WaitForEvent service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200900 *
Mario Six8fac2912018-07-10 08:40:17 +0200901 * See the Unified Extensible Firmware Interface (UEFI) specification for
902 * details.
903 *
904 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200905 */
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100906static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200907 struct efi_event **event,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100908 efi_uintn_t *index)
Alexander Grafc15d9212016-03-04 01:09:59 +0100909{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100910 int i;
Alexander Grafc15d9212016-03-04 01:09:59 +0100911
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100912 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
Alexander Grafc15d9212016-03-04 01:09:59 +0100913
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200914 /* Check parameters */
915 if (!num_events || !event)
916 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200917 /* Check TPL */
918 if (efi_tpl != TPL_APPLICATION)
919 return EFI_EXIT(EFI_UNSUPPORTED);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200920 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100921 if (efi_is_event(event[i]) != EFI_SUCCESS)
922 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200923 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
924 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200925 if (!event[i]->is_signaled)
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +0200926 efi_queue_event(event[i]);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200927 }
928
929 /* Wait for signal */
930 for (;;) {
931 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200932 if (event[i]->is_signaled)
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200933 goto out;
934 }
935 /* Allow events to occur. */
936 efi_timer_check();
937 }
938
939out:
940 /*
941 * Reset the signal which is passed to the caller to allow periodic
942 * events to occur.
943 */
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200944 event[i]->is_signaled = false;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200945 if (index)
946 *index = i;
Alexander Grafc15d9212016-03-04 01:09:59 +0100947
948 return EFI_EXIT(EFI_SUCCESS);
949}
950
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200951/**
Mario Six8fac2912018-07-10 08:40:17 +0200952 * efi_signal_event_ext() - signal an EFI event
953 * @event: event to signal
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200954 *
955 * This function implements the SignalEvent service.
Mario Six8fac2912018-07-10 08:40:17 +0200956 *
957 * See the Unified Extensible Firmware Interface (UEFI) specification for
958 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200959 *
960 * This functions sets the signaled state of the event and queues the
961 * notification function for execution.
962 *
Mario Six8fac2912018-07-10 08:40:17 +0200963 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200964 */
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200965static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100966{
967 EFI_ENTRY("%p", event);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100968 if (efi_is_event(event) != EFI_SUCCESS)
969 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +0200970 efi_signal_event(event);
Alexander Grafc15d9212016-03-04 01:09:59 +0100971 return EFI_EXIT(EFI_SUCCESS);
972}
973
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200974/**
Mario Six8fac2912018-07-10 08:40:17 +0200975 * efi_close_event() - close an EFI event
976 * @event: event to close
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200977 *
978 * This function implements the CloseEvent service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200979 *
Mario Six8fac2912018-07-10 08:40:17 +0200980 * See the Unified Extensible Firmware Interface (UEFI) specification for
981 * details.
982 *
983 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200984 */
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200985static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100986{
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +0200987 struct efi_register_notify_event *item, *next;
988
Alexander Grafc15d9212016-03-04 01:09:59 +0100989 EFI_ENTRY("%p", event);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100990 if (efi_is_event(event) != EFI_SUCCESS)
991 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +0200992
993 /* Remove protocol notify registrations for the event */
994 list_for_each_entry_safe(item, next, &efi_register_notify_events,
995 link) {
996 if (event == item->event) {
Heinrich Schuchardtd375e752019-05-21 18:19:01 +0200997 struct efi_protocol_notification *hitem, *hnext;
998
999 /* Remove signaled handles */
1000 list_for_each_entry_safe(hitem, hnext, &item->handles,
1001 link) {
1002 list_del(&hitem->link);
1003 free(hitem);
1004 }
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001005 list_del(&item->link);
1006 free(item);
1007 }
1008 }
Heinrich Schuchardt35c0cf62019-06-05 21:00:39 +02001009 /* Remove event from queue */
1010 if (efi_event_is_queued(event))
1011 list_del(&event->queue_link);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001012
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001013 list_del(&event->link);
Heinrich Schuchardt4429d872019-07-11 20:15:09 +02001014 efi_free_pool(event);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001015 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01001016}
1017
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001018/**
Mario Six8fac2912018-07-10 08:40:17 +02001019 * efi_check_event() - check if an event is signaled
1020 * @event: event to check
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001021 *
1022 * This function implements the CheckEvent service.
Mario Six8fac2912018-07-10 08:40:17 +02001023 *
1024 * See the Unified Extensible Firmware Interface (UEFI) specification for
1025 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001026 *
Mario Six8fac2912018-07-10 08:40:17 +02001027 * If an event is not signaled yet, the notification function is queued. The
1028 * signaled state is cleared.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001029 *
Mario Six8fac2912018-07-10 08:40:17 +02001030 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001031 */
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +02001032static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +01001033{
1034 EFI_ENTRY("%p", event);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02001035 efi_timer_check();
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001036 if (efi_is_event(event) != EFI_SUCCESS ||
1037 event->type & EVT_NOTIFY_SIGNAL)
1038 return EFI_EXIT(EFI_INVALID_PARAMETER);
1039 if (!event->is_signaled)
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02001040 efi_queue_event(event);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001041 if (event->is_signaled) {
1042 event->is_signaled = false;
1043 return EFI_EXIT(EFI_SUCCESS);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02001044 }
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001045 return EFI_EXIT(EFI_NOT_READY);
Alexander Grafc15d9212016-03-04 01:09:59 +01001046}
1047
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001048/**
Mario Six8fac2912018-07-10 08:40:17 +02001049 * efi_search_obj() - find the internal EFI object for a handle
1050 * @handle: handle to find
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +02001051 *
Mario Six8fac2912018-07-10 08:40:17 +02001052 * Return: EFI object
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +02001053 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001054struct efi_object *efi_search_obj(const efi_handle_t handle)
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +02001055{
Heinrich Schuchardt274cc872017-11-06 21:17:50 +01001056 struct efi_object *efiobj;
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +02001057
Heinrich Schuchardt5d8231b2019-05-05 10:37:51 +02001058 if (!handle)
1059 return NULL;
1060
Heinrich Schuchardt274cc872017-11-06 21:17:50 +01001061 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001062 if (efiobj == handle)
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +02001063 return efiobj;
1064 }
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +02001065 return NULL;
1066}
1067
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001068/**
Mario Six8fac2912018-07-10 08:40:17 +02001069 * efi_open_protocol_info_entry() - create open protocol info entry and add it
1070 * to a protocol
1071 * @handler: handler of a protocol
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001072 *
Mario Six8fac2912018-07-10 08:40:17 +02001073 * Return: open protocol info entry
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001074 */
1075static struct efi_open_protocol_info_entry *efi_create_open_info(
1076 struct efi_handler *handler)
1077{
1078 struct efi_open_protocol_info_item *item;
1079
1080 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
1081 if (!item)
1082 return NULL;
1083 /* Append the item to the open protocol info list. */
1084 list_add_tail(&item->link, &handler->open_infos);
1085
1086 return &item->info;
1087}
1088
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001089/**
Mario Six8fac2912018-07-10 08:40:17 +02001090 * efi_delete_open_info() - remove an open protocol info entry from a protocol
1091 * @item: open protocol info entry to delete
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001092 *
Mario Six8fac2912018-07-10 08:40:17 +02001093 * Return: status code
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001094 */
1095static efi_status_t efi_delete_open_info(
1096 struct efi_open_protocol_info_item *item)
1097{
1098 list_del(&item->link);
1099 free(item);
1100 return EFI_SUCCESS;
1101}
1102
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001103/**
Mario Six8fac2912018-07-10 08:40:17 +02001104 * efi_add_protocol() - install new protocol on a handle
1105 * @handle: handle on which the protocol shall be installed
1106 * @protocol: GUID of the protocol to be installed
1107 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001108 *
Mario Six8fac2912018-07-10 08:40:17 +02001109 * Return: status code
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001110 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001111efi_status_t efi_add_protocol(const efi_handle_t handle,
1112 const efi_guid_t *protocol,
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001113 void *protocol_interface)
1114{
1115 struct efi_object *efiobj;
1116 struct efi_handler *handler;
1117 efi_status_t ret;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001118 struct efi_register_notify_event *event;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001119
1120 efiobj = efi_search_obj(handle);
1121 if (!efiobj)
1122 return EFI_INVALID_PARAMETER;
1123 ret = efi_search_protocol(handle, protocol, NULL);
1124 if (ret != EFI_NOT_FOUND)
1125 return EFI_INVALID_PARAMETER;
1126 handler = calloc(1, sizeof(struct efi_handler));
1127 if (!handler)
1128 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001129 handler->guid = protocol;
1130 handler->protocol_interface = protocol_interface;
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001131 INIT_LIST_HEAD(&handler->open_infos);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001132 list_add_tail(&handler->link, &efiobj->protocols);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001133
1134 /* Notify registered events */
1135 list_for_each_entry(event, &efi_register_notify_events, link) {
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001136 if (!guidcmp(protocol, &event->protocol)) {
1137 struct efi_protocol_notification *notif;
1138
1139 notif = calloc(1, sizeof(*notif));
1140 if (!notif) {
1141 list_del(&handler->link);
1142 free(handler);
1143 return EFI_OUT_OF_RESOURCES;
1144 }
1145 notif->handle = handle;
1146 list_add_tail(&notif->link, &event->handles);
Heinrich Schuchardtea0f6a82019-06-07 07:43:24 +02001147 event->event->is_signaled = false;
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02001148 efi_signal_event(event->event);
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001149 }
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001150 }
1151
Heinrich Schuchardt3d2abc32018-01-11 08:16:01 +01001152 if (!guidcmp(&efi_guid_device_path, protocol))
1153 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001154 return EFI_SUCCESS;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001155}
1156
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001157/**
Mario Six8fac2912018-07-10 08:40:17 +02001158 * efi_install_protocol_interface() - install protocol interface
1159 * @handle: handle on which the protocol shall be installed
1160 * @protocol: GUID of the protocol to be installed
1161 * @protocol_interface_type: type of the interface to be installed,
1162 * always EFI_NATIVE_INTERFACE
1163 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001164 *
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001165 * This function implements the InstallProtocolInterface service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001166 *
Mario Six8fac2912018-07-10 08:40:17 +02001167 * See the Unified Extensible Firmware Interface (UEFI) specification for
1168 * details.
1169 *
1170 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001171 */
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001172static efi_status_t EFIAPI efi_install_protocol_interface(
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02001173 efi_handle_t *handle, const efi_guid_t *protocol,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001174 int protocol_interface_type, void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01001175{
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001176 efi_status_t r;
1177
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001178 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
1179 protocol_interface);
1180
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001181 if (!handle || !protocol ||
1182 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1183 r = EFI_INVALID_PARAMETER;
1184 goto out;
1185 }
1186
1187 /* Create new handle if requested. */
1188 if (!*handle) {
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +02001189 r = efi_create_handle(handle);
1190 if (r != EFI_SUCCESS)
1191 goto out;
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02001192 EFI_PRINT("new handle %p\n", *handle);
Heinrich Schuchardt50f02102017-10-26 19:25:43 +02001193 } else {
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02001194 EFI_PRINT("handle %p\n", *handle);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001195 }
Heinrich Schuchardt865d5f32017-10-26 19:25:54 +02001196 /* Add new protocol */
1197 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001198out:
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001199 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01001200}
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001201
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001202/**
Mario Six8fac2912018-07-10 08:40:17 +02001203 * efi_get_drivers() - get all drivers associated to a controller
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001204 * @handle: handle of the controller
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001205 * @protocol: protocol GUID (optional)
Mario Six8fac2912018-07-10 08:40:17 +02001206 * @number_of_drivers: number of child controllers
1207 * @driver_handle_buffer: handles of the the drivers
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001208 *
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001209 * The allocated buffer has to be freed with free().
1210 *
Mario Six8fac2912018-07-10 08:40:17 +02001211 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001212 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001213static efi_status_t efi_get_drivers(efi_handle_t handle,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001214 const efi_guid_t *protocol,
1215 efi_uintn_t *number_of_drivers,
1216 efi_handle_t **driver_handle_buffer)
1217{
1218 struct efi_handler *handler;
1219 struct efi_open_protocol_info_item *item;
1220 efi_uintn_t count = 0, i;
1221 bool duplicate;
1222
1223 /* Count all driver associations */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001224 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001225 if (protocol && guidcmp(handler->guid, protocol))
1226 continue;
1227 list_for_each_entry(item, &handler->open_infos, link) {
1228 if (item->info.attributes &
1229 EFI_OPEN_PROTOCOL_BY_DRIVER)
1230 ++count;
1231 }
1232 }
Heinrich Schuchardt7416aef2019-06-02 01:43:33 +02001233 *number_of_drivers = 0;
1234 if (!count) {
1235 *driver_handle_buffer = NULL;
1236 return EFI_SUCCESS;
1237 }
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001238 /*
1239 * Create buffer. In case of duplicate driver assignments the buffer
1240 * will be too large. But that does not harm.
1241 */
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001242 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1243 if (!*driver_handle_buffer)
1244 return EFI_OUT_OF_RESOURCES;
1245 /* Collect unique driver handles */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001246 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001247 if (protocol && guidcmp(handler->guid, protocol))
1248 continue;
1249 list_for_each_entry(item, &handler->open_infos, link) {
1250 if (item->info.attributes &
1251 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1252 /* Check this is a new driver */
1253 duplicate = false;
1254 for (i = 0; i < *number_of_drivers; ++i) {
1255 if ((*driver_handle_buffer)[i] ==
1256 item->info.agent_handle)
1257 duplicate = true;
1258 }
1259 /* Copy handle to buffer */
1260 if (!duplicate) {
1261 i = (*number_of_drivers)++;
1262 (*driver_handle_buffer)[i] =
1263 item->info.agent_handle;
1264 }
1265 }
1266 }
1267 }
1268 return EFI_SUCCESS;
1269}
1270
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001271/**
Mario Six8fac2912018-07-10 08:40:17 +02001272 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001273 * @handle: handle of the controller
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001274 * @protocol: protocol GUID (optional)
Mario Six8fac2912018-07-10 08:40:17 +02001275 * @child_handle: handle of the child to destroy
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001276 *
1277 * This function implements the DisconnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02001278 *
1279 * See the Unified Extensible Firmware Interface (UEFI) specification for
1280 * details.
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001281 *
Mario Six8fac2912018-07-10 08:40:17 +02001282 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001283 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001284static efi_status_t efi_disconnect_all_drivers
1285 (efi_handle_t handle,
1286 const efi_guid_t *protocol,
1287 efi_handle_t child_handle)
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001288{
1289 efi_uintn_t number_of_drivers;
1290 efi_handle_t *driver_handle_buffer;
1291 efi_status_t r, ret;
1292
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001293 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001294 &driver_handle_buffer);
1295 if (ret != EFI_SUCCESS)
1296 return ret;
Heinrich Schuchardt7416aef2019-06-02 01:43:33 +02001297 if (!number_of_drivers)
1298 return EFI_SUCCESS;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001299 ret = EFI_NOT_FOUND;
1300 while (number_of_drivers) {
1301 r = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001302 handle,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001303 driver_handle_buffer[--number_of_drivers],
1304 child_handle));
1305 if (r == EFI_SUCCESS)
1306 ret = r;
1307 }
1308 free(driver_handle_buffer);
1309 return ret;
1310}
1311
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001312/**
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001313 * efi_uninstall_protocol() - uninstall protocol interface
1314 *
Mario Six8fac2912018-07-10 08:40:17 +02001315 * @handle: handle from which the protocol shall be removed
1316 * @protocol: GUID of the protocol to be removed
1317 * @protocol_interface: interface to be removed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001318 *
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001319 * This function DOES NOT delete a handle without installed protocol.
Mario Six8fac2912018-07-10 08:40:17 +02001320 *
1321 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001322 */
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001323static efi_status_t efi_uninstall_protocol
1324 (efi_handle_t handle, const efi_guid_t *protocol,
1325 void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01001326{
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001327 struct efi_object *efiobj;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001328 struct efi_handler *handler;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001329 struct efi_open_protocol_info_item *item;
1330 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001331 efi_status_t r;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001332
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001333 /* Check handle */
1334 efiobj = efi_search_obj(handle);
1335 if (!efiobj) {
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001336 r = EFI_INVALID_PARAMETER;
1337 goto out;
1338 }
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001339 /* Find the protocol on the handle */
1340 r = efi_search_protocol(handle, protocol, &handler);
1341 if (r != EFI_SUCCESS)
1342 goto out;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001343 /* Disconnect controllers */
1344 efi_disconnect_all_drivers(efiobj, protocol, NULL);
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001345 /* Close protocol */
1346 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1347 if (item->info.attributes ==
1348 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1349 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1350 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1351 list_del(&item->link);
1352 }
1353 if (!list_empty(&handler->open_infos)) {
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001354 r = EFI_ACCESS_DENIED;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001355 goto out;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001356 }
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001357 r = efi_remove_protocol(handle, protocol, protocol_interface);
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001358out:
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001359 return r;
Alexander Grafc15d9212016-03-04 01:09:59 +01001360}
1361
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001362/**
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001363 * efi_uninstall_protocol_interface() - uninstall protocol interface
1364 * @handle: handle from which the protocol shall be removed
1365 * @protocol: GUID of the protocol to be removed
1366 * @protocol_interface: interface to be removed
1367 *
1368 * This function implements the UninstallProtocolInterface service.
1369 *
1370 * See the Unified Extensible Firmware Interface (UEFI) specification for
1371 * details.
1372 *
1373 * Return: status code
1374 */
1375static efi_status_t EFIAPI efi_uninstall_protocol_interface
1376 (efi_handle_t handle, const efi_guid_t *protocol,
1377 void *protocol_interface)
1378{
1379 efi_status_t ret;
1380
1381 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1382
1383 ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1384 if (ret != EFI_SUCCESS)
1385 goto out;
1386
1387 /* If the last protocol has been removed, delete the handle. */
1388 if (list_empty(&handle->protocols)) {
1389 list_del(&handle->link);
1390 free(handle);
1391 }
1392out:
1393 return EFI_EXIT(ret);
1394}
1395
1396/**
Mario Six8fac2912018-07-10 08:40:17 +02001397 * efi_register_protocol_notify() - register an event for notification when a
1398 * protocol is installed.
1399 * @protocol: GUID of the protocol whose installation shall be notified
1400 * @event: event to be signaled upon installation of the protocol
1401 * @registration: key for retrieving the registration information
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001402 *
1403 * This function implements the RegisterProtocolNotify service.
1404 * See the Unified Extensible Firmware Interface (UEFI) specification
1405 * for details.
1406 *
Mario Six8fac2912018-07-10 08:40:17 +02001407 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001408 */
Jose Marinhoebb61ee2021-03-02 17:26:38 +00001409efi_status_t EFIAPI efi_register_protocol_notify(const efi_guid_t *protocol,
1410 struct efi_event *event,
1411 void **registration)
Alexander Grafc15d9212016-03-04 01:09:59 +01001412{
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001413 struct efi_register_notify_event *item;
1414 efi_status_t ret = EFI_SUCCESS;
1415
Rob Clark238f88c2017-09-13 18:05:41 -04001416 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001417
1418 if (!protocol || !event || !registration) {
1419 ret = EFI_INVALID_PARAMETER;
1420 goto out;
1421 }
1422
1423 item = calloc(1, sizeof(struct efi_register_notify_event));
1424 if (!item) {
1425 ret = EFI_OUT_OF_RESOURCES;
1426 goto out;
1427 }
1428
1429 item->event = event;
Sughosh Ganu196f66d2019-12-29 00:01:04 +05301430 guidcpy(&item->protocol, protocol);
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001431 INIT_LIST_HEAD(&item->handles);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001432
1433 list_add_tail(&item->link, &efi_register_notify_events);
1434
1435 *registration = item;
1436out:
1437 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001438}
1439
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001440/**
Mario Six8fac2912018-07-10 08:40:17 +02001441 * efi_search() - determine if an EFI handle implements a protocol
Heinrich Schuchardt41cc3c12019-07-14 11:05:34 +02001442 *
Mario Six8fac2912018-07-10 08:40:17 +02001443 * @search_type: selection criterion
1444 * @protocol: GUID of the protocol
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001445 * @handle: handle
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001446 *
1447 * See the documentation of the LocateHandle service in the UEFI specification.
1448 *
Mario Six8fac2912018-07-10 08:40:17 +02001449 * Return: 0 if the handle implements the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001450 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001451static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001452 const efi_guid_t *protocol, efi_handle_t handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01001453{
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001454 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01001455
1456 switch (search_type) {
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001457 case ALL_HANDLES:
Alexander Grafc15d9212016-03-04 01:09:59 +01001458 return 0;
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001459 case BY_PROTOCOL:
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001460 ret = efi_search_protocol(handle, protocol, NULL);
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001461 return (ret != EFI_SUCCESS);
1462 default:
1463 /* Invalid search type */
Alexander Grafc15d9212016-03-04 01:09:59 +01001464 return -1;
1465 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001466}
1467
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001468/**
Heinrich Schuchardteb616522019-05-29 07:46:33 +02001469 * efi_check_register_notify_event() - check if registration key is valid
1470 *
1471 * Check that a pointer is a valid registration key as returned by
1472 * RegisterProtocolNotify().
1473 *
1474 * @key: registration key
1475 * Return: valid registration key or NULL
1476 */
1477static struct efi_register_notify_event *efi_check_register_notify_event
1478 (void *key)
1479{
1480 struct efi_register_notify_event *event;
1481
1482 list_for_each_entry(event, &efi_register_notify_events, link) {
1483 if (event == (struct efi_register_notify_event *)key)
1484 return event;
1485 }
1486 return NULL;
1487}
1488
1489/**
Mario Six8fac2912018-07-10 08:40:17 +02001490 * efi_locate_handle() - locate handles implementing a protocol
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001491 *
1492 * @search_type: selection criterion
1493 * @protocol: GUID of the protocol
1494 * @search_key: registration key
1495 * @buffer_size: size of the buffer to receive the handles in bytes
1496 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001497 *
1498 * This function is meant for U-Boot internal calls. For the API implementation
1499 * of the LocateHandle service see efi_locate_handle_ext.
1500 *
Mario Six8fac2912018-07-10 08:40:17 +02001501 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001502 */
xypron.glpk@gmx.decab4dd52017-08-09 20:55:00 +02001503static efi_status_t efi_locate_handle(
Alexander Grafc15d9212016-03-04 01:09:59 +01001504 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001505 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001506 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01001507{
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001508 struct efi_object *efiobj;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001509 efi_uintn_t size = 0;
Heinrich Schuchardteb616522019-05-29 07:46:33 +02001510 struct efi_register_notify_event *event;
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001511 struct efi_protocol_notification *handle = NULL;
Alexander Grafc15d9212016-03-04 01:09:59 +01001512
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001513 /* Check parameters */
1514 switch (search_type) {
1515 case ALL_HANDLES:
1516 break;
1517 case BY_REGISTER_NOTIFY:
1518 if (!search_key)
1519 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001520 /* Check that the registration key is valid */
Heinrich Schuchardteb616522019-05-29 07:46:33 +02001521 event = efi_check_register_notify_event(search_key);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001522 if (!event)
1523 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001524 break;
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001525 case BY_PROTOCOL:
1526 if (!protocol)
1527 return EFI_INVALID_PARAMETER;
1528 break;
1529 default:
1530 return EFI_INVALID_PARAMETER;
1531 }
1532
Alexander Grafc15d9212016-03-04 01:09:59 +01001533 /* Count how much space we need */
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001534 if (search_type == BY_REGISTER_NOTIFY) {
1535 if (list_empty(&event->handles))
1536 return EFI_NOT_FOUND;
1537 handle = list_first_entry(&event->handles,
1538 struct efi_protocol_notification,
1539 link);
1540 efiobj = handle->handle;
1541 size += sizeof(void *);
1542 } else {
1543 list_for_each_entry(efiobj, &efi_obj_list, link) {
1544 if (!efi_search(search_type, protocol, efiobj))
1545 size += sizeof(void *);
1546 }
1547 if (size == 0)
1548 return EFI_NOT_FOUND;
Alexander Grafc15d9212016-03-04 01:09:59 +01001549 }
1550
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001551 if (!buffer_size)
1552 return EFI_INVALID_PARAMETER;
1553
Alexander Grafc15d9212016-03-04 01:09:59 +01001554 if (*buffer_size < size) {
1555 *buffer_size = size;
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001556 return EFI_BUFFER_TOO_SMALL;
Alexander Grafc15d9212016-03-04 01:09:59 +01001557 }
1558
Rob Clarkcdee3372017-08-06 14:10:07 -04001559 *buffer_size = size;
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001560
Heinrich Schuchardtc97f9472019-05-10 19:03:49 +02001561 /* The buffer size is sufficient but there is no buffer */
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001562 if (!buffer)
1563 return EFI_INVALID_PARAMETER;
Rob Clarkcdee3372017-08-06 14:10:07 -04001564
Alexander Grafc15d9212016-03-04 01:09:59 +01001565 /* Then fill the array */
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001566 if (search_type == BY_REGISTER_NOTIFY) {
1567 *buffer = efiobj;
1568 list_del(&handle->link);
1569 } else {
1570 list_for_each_entry(efiobj, &efi_obj_list, link) {
1571 if (!efi_search(search_type, protocol, efiobj))
1572 *buffer++ = efiobj;
1573 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001574 }
1575
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001576 return EFI_SUCCESS;
1577}
1578
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001579/**
Mario Six8fac2912018-07-10 08:40:17 +02001580 * efi_locate_handle_ext() - locate handles implementing a protocol.
1581 * @search_type: selection criterion
1582 * @protocol: GUID of the protocol
1583 * @search_key: registration key
1584 * @buffer_size: size of the buffer to receive the handles in bytes
1585 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001586 *
1587 * This function implements the LocateHandle service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001588 *
Mario Six8fac2912018-07-10 08:40:17 +02001589 * See the Unified Extensible Firmware Interface (UEFI) specification for
1590 * details.
1591 *
1592 * Return: 0 if the handle implements the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001593 */
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001594static efi_status_t EFIAPI efi_locate_handle_ext(
1595 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001596 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001597 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001598{
Rob Clark238f88c2017-09-13 18:05:41 -04001599 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001600 buffer_size, buffer);
1601
1602 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1603 buffer_size, buffer));
Alexander Grafc15d9212016-03-04 01:09:59 +01001604}
1605
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001606/**
Mario Six8fac2912018-07-10 08:40:17 +02001607 * efi_remove_configuration_table() - collapses configuration table entries,
1608 * removing index i
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001609 *
Mario Six8fac2912018-07-10 08:40:17 +02001610 * @i: index of the table entry to be removed
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001611 */
Alexander Graffe3366f2017-07-26 13:41:04 +02001612static void efi_remove_configuration_table(int i)
1613{
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001614 struct efi_configuration_table *this = &systab.tables[i];
1615 struct efi_configuration_table *next = &systab.tables[i + 1];
1616 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
Alexander Graffe3366f2017-07-26 13:41:04 +02001617
1618 memmove(this, next, (ulong)end - (ulong)next);
1619 systab.nr_tables--;
1620}
1621
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001622/**
Mario Six8fac2912018-07-10 08:40:17 +02001623 * efi_install_configuration_table() - adds, updates, or removes a
1624 * configuration table
1625 * @guid: GUID of the installed table
1626 * @table: table to be installed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001627 *
1628 * This function is used for internal calls. For the API implementation of the
1629 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1630 *
Mario Six8fac2912018-07-10 08:40:17 +02001631 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001632 */
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001633efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1634 void *table)
Alexander Grafc15d9212016-03-04 01:09:59 +01001635{
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001636 struct efi_event *evt;
Alexander Grafc15d9212016-03-04 01:09:59 +01001637 int i;
1638
Heinrich Schuchardt754ce102018-02-18 00:08:00 +01001639 if (!guid)
1640 return EFI_INVALID_PARAMETER;
1641
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001642 /* Check for GUID override */
Alexander Grafc15d9212016-03-04 01:09:59 +01001643 for (i = 0; i < systab.nr_tables; i++) {
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001644 if (!guidcmp(guid, &systab.tables[i].guid)) {
Alexander Graffe3366f2017-07-26 13:41:04 +02001645 if (table)
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001646 systab.tables[i].table = table;
Alexander Graffe3366f2017-07-26 13:41:04 +02001647 else
1648 efi_remove_configuration_table(i);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001649 goto out;
Alexander Grafc15d9212016-03-04 01:09:59 +01001650 }
1651 }
1652
Alexander Graffe3366f2017-07-26 13:41:04 +02001653 if (!table)
1654 return EFI_NOT_FOUND;
1655
Alexander Grafc15d9212016-03-04 01:09:59 +01001656 /* No override, check for overflow */
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001657 if (i >= EFI_MAX_CONFIGURATION_TABLES)
Alexander Grafc5c11632016-08-19 01:23:24 +02001658 return EFI_OUT_OF_RESOURCES;
Alexander Grafc15d9212016-03-04 01:09:59 +01001659
1660 /* Add a new entry */
Sughosh Ganu196f66d2019-12-29 00:01:04 +05301661 guidcpy(&systab.tables[i].guid, guid);
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001662 systab.tables[i].table = table;
Alexander Graf9982e672016-08-19 01:23:30 +02001663 systab.nr_tables = i + 1;
Alexander Grafc15d9212016-03-04 01:09:59 +01001664
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001665out:
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001666 /* systab.nr_tables may have changed. So we need to update the CRC32 */
Heinrich Schuchardtac2d4da2018-07-07 15:36:05 +02001667 efi_update_table_header_crc32(&systab.hdr);
1668
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001669 /* Notify that the configuration table was changed */
1670 list_for_each_entry(evt, &efi_events, link) {
1671 if (evt->group && !guidcmp(evt->group, guid)) {
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02001672 efi_signal_event(evt);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001673 break;
1674 }
1675 }
1676
Alexander Grafc5c11632016-08-19 01:23:24 +02001677 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +01001678}
1679
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001680/**
Mario Six8fac2912018-07-10 08:40:17 +02001681 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1682 * configuration table.
1683 * @guid: GUID of the installed table
1684 * @table: table to be installed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001685 *
1686 * This function implements the InstallConfigurationTable service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001687 *
Mario Six8fac2912018-07-10 08:40:17 +02001688 * See the Unified Extensible Firmware Interface (UEFI) specification for
1689 * details.
1690 *
1691 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001692 */
Alexander Grafc5c11632016-08-19 01:23:24 +02001693static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1694 void *table)
1695{
Rob Clark238f88c2017-09-13 18:05:41 -04001696 EFI_ENTRY("%pUl, %p", guid, table);
Alexander Grafc5c11632016-08-19 01:23:24 +02001697 return EFI_EXIT(efi_install_configuration_table(guid, table));
1698}
1699
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001700/**
Mario Six8fac2912018-07-10 08:40:17 +02001701 * efi_setup_loaded_image() - initialize a loaded image
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001702 *
1703 * Initialize a loaded_image_info and loaded_image_info object with correct
Rob Clarkf8db9222017-09-13 18:05:33 -04001704 * protocols, boot-device, etc.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001705 *
Heinrich Schuchardt41cc3c12019-07-14 11:05:34 +02001706 * In case of an error \*handle_ptr and \*info_ptr are set to NULL and an error
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001707 * code is returned.
1708 *
1709 * @device_path: device path of the loaded image
1710 * @file_path: file path of the loaded image
1711 * @handle_ptr: handle of the loaded image
1712 * @info_ptr: loaded image protocol
1713 * Return: status code
Rob Clarkf8db9222017-09-13 18:05:33 -04001714 */
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001715efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1716 struct efi_device_path *file_path,
1717 struct efi_loaded_image_obj **handle_ptr,
1718 struct efi_loaded_image **info_ptr)
Rob Clarkf8db9222017-09-13 18:05:33 -04001719{
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001720 efi_status_t ret;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001721 struct efi_loaded_image *info = NULL;
1722 struct efi_loaded_image_obj *obj = NULL;
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001723 struct efi_device_path *dp;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001724
1725 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1726 *handle_ptr = NULL;
1727 *info_ptr = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001728
1729 info = calloc(1, sizeof(*info));
1730 if (!info)
1731 return EFI_OUT_OF_RESOURCES;
1732 obj = calloc(1, sizeof(*obj));
1733 if (!obj) {
1734 free(info);
1735 return EFI_OUT_OF_RESOURCES;
1736 }
Heinrich Schuchardtb27ced42019-05-01 14:20:18 +02001737 obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001738
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +01001739 /* Add internal object to object list */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001740 efi_add_handle(&obj->header);
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001741
Heinrich Schuchardtc47f8702018-07-05 08:17:58 +02001742 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001743 info->file_path = file_path;
Heinrich Schuchardt8a7e09d2018-08-26 15:31:52 +02001744 info->system_table = &systab;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001745
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001746 if (device_path) {
1747 info->device_handle = efi_dp_find_obj(device_path, NULL);
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001748
1749 dp = efi_dp_append(device_path, file_path);
1750 if (!dp) {
1751 ret = EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001752 goto failure;
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001753 }
1754 } else {
1755 dp = NULL;
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001756 }
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001757 ret = efi_add_protocol(&obj->header,
1758 &efi_guid_loaded_image_device_path, dp);
1759 if (ret != EFI_SUCCESS)
1760 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001761
1762 /*
1763 * When asking for the loaded_image interface, just
1764 * return handle which points to loaded_image_info
1765 */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001766 ret = efi_add_protocol(&obj->header,
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001767 &efi_guid_loaded_image, info);
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001768 if (ret != EFI_SUCCESS)
1769 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001770
Heinrich Schuchardtd20f5122019-03-19 18:58:58 +01001771 *info_ptr = info;
1772 *handle_ptr = obj;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001773
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001774 return ret;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001775failure:
1776 printf("ERROR: Failure to install protocols for loaded image\n");
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001777 efi_delete_handle(&obj->header);
1778 free(info);
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001779 return ret;
Rob Clarkf8db9222017-09-13 18:05:33 -04001780}
1781
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001782/**
Heinrich Schuchardt1d59a572020-12-04 03:02:03 +01001783 * efi_locate_device_path() - Get the device path and handle of an device
1784 * implementing a protocol
1785 * @protocol: GUID of the protocol
1786 * @device_path: device path
1787 * @device: handle of the device
1788 *
1789 * This function implements the LocateDevicePath service.
1790 *
1791 * See the Unified Extensible Firmware Interface (UEFI) specification for
1792 * details.
1793 *
1794 * Return: status code
1795 */
1796static efi_status_t EFIAPI efi_locate_device_path(
1797 const efi_guid_t *protocol,
1798 struct efi_device_path **device_path,
1799 efi_handle_t *device)
1800{
1801 struct efi_device_path *dp;
1802 size_t i;
1803 struct efi_handler *handler;
1804 efi_handle_t *handles;
1805 size_t len, len_dp;
1806 size_t len_best = 0;
1807 efi_uintn_t no_handles;
1808 u8 *remainder;
1809 efi_status_t ret;
1810
1811 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
1812
1813 if (!protocol || !device_path || !*device_path) {
1814 ret = EFI_INVALID_PARAMETER;
1815 goto out;
1816 }
1817
1818 /* Find end of device path */
1819 len = efi_dp_instance_size(*device_path);
1820
1821 /* Get all handles implementing the protocol */
1822 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
1823 &no_handles, &handles));
1824 if (ret != EFI_SUCCESS)
1825 goto out;
1826
1827 for (i = 0; i < no_handles; ++i) {
1828 /* Find the device path protocol */
1829 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
1830 &handler);
1831 if (ret != EFI_SUCCESS)
1832 continue;
1833 dp = (struct efi_device_path *)handler->protocol_interface;
1834 len_dp = efi_dp_instance_size(dp);
1835 /*
1836 * This handle can only be a better fit
1837 * if its device path length is longer than the best fit and
1838 * if its device path length is shorter of equal the searched
1839 * device path.
1840 */
1841 if (len_dp <= len_best || len_dp > len)
1842 continue;
1843 /* Check if dp is a subpath of device_path */
1844 if (memcmp(*device_path, dp, len_dp))
1845 continue;
1846 if (!device) {
1847 ret = EFI_INVALID_PARAMETER;
1848 goto out;
1849 }
1850 *device = handles[i];
1851 len_best = len_dp;
1852 }
1853 if (len_best) {
1854 remainder = (u8 *)*device_path + len_best;
1855 *device_path = (struct efi_device_path *)remainder;
1856 ret = EFI_SUCCESS;
1857 } else {
1858 ret = EFI_NOT_FOUND;
1859 }
1860out:
1861 return EFI_EXIT(ret);
1862}
1863
1864/**
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01001865 * efi_load_image_from_file() - load an image from file system
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001866 *
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001867 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1868 * callers obligation to update the memory type as needed.
1869 *
Heinrich Schuchardt471db442020-12-04 09:27:41 +01001870 * @file_path: the path of the image to load
1871 * @buffer: buffer containing the loaded image
1872 * @size: size of the loaded image
1873 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001874 */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +09001875static
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01001876efi_status_t efi_load_image_from_file(struct efi_device_path *file_path,
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001877 void **buffer, efi_uintn_t *size)
Rob Clark857a1222017-09-13 18:05:35 -04001878{
Rob Clark857a1222017-09-13 18:05:35 -04001879 struct efi_file_handle *f;
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01001880 efi_status_t ret;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001881 u64 addr;
Heinrich Schuchardt6b06e0d2018-04-03 22:37:11 +02001882 efi_uintn_t bs;
Rob Clark857a1222017-09-13 18:05:35 -04001883
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001884 /* Open file */
Rob Clark857a1222017-09-13 18:05:35 -04001885 f = efi_file_from_path(file_path);
1886 if (!f)
Heinrich Schuchardt6a41cf22019-06-11 19:00:56 +02001887 return EFI_NOT_FOUND;
Rob Clark857a1222017-09-13 18:05:35 -04001888
Ilias Apalodimas03d0d762021-03-25 21:55:16 +02001889 ret = efi_file_size(f, &bs);
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001890 if (ret != EFI_SUCCESS)
Rob Clark857a1222017-09-13 18:05:35 -04001891 goto error;
1892
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001893 /*
1894 * When reading the file we do not yet know if it contains an
1895 * application, a boottime driver, or a runtime driver. So here we
1896 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1897 * update the reservation according to the image type.
1898 */
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001899 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1900 EFI_BOOT_SERVICES_DATA,
1901 efi_size_in_pages(bs), &addr);
Rob Clark857a1222017-09-13 18:05:35 -04001902 if (ret != EFI_SUCCESS) {
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001903 ret = EFI_OUT_OF_RESOURCES;
1904 goto error;
Rob Clark857a1222017-09-13 18:05:35 -04001905 }
1906
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001907 /* Read file */
1908 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1909 if (ret != EFI_SUCCESS)
1910 efi_free_pages(addr, efi_size_in_pages(bs));
1911 *buffer = (void *)(uintptr_t)addr;
1912 *size = bs;
1913error:
1914 EFI_CALL(f->close(f));
Rob Clark857a1222017-09-13 18:05:35 -04001915 return ret;
1916}
1917
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001918/**
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01001919 * efi_load_image_from_path() - load an image using a file path
1920 *
1921 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1922 * callers obligation to update the memory type as needed.
1923 *
1924 * @boot_policy: true for request originating from the boot manager
1925 * @file_path: the path of the image to load
1926 * @buffer: buffer containing the loaded image
1927 * @size: size of the loaded image
1928 * Return: status code
1929 */
1930static
1931efi_status_t efi_load_image_from_path(bool boot_policy,
1932 struct efi_device_path *file_path,
1933 void **buffer, efi_uintn_t *size)
1934{
1935 efi_handle_t device;
1936 efi_status_t ret;
1937 struct efi_device_path *dp;
Heinrich Schuchardt82608272020-12-06 13:00:15 +01001938 struct efi_load_file_protocol *load_file_protocol = NULL;
1939 efi_uintn_t buffer_size;
1940 uint64_t addr, pages;
1941 const efi_guid_t *guid;
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01001942
1943 /* In case of failure nothing is returned */
1944 *buffer = NULL;
1945 *size = 0;
1946
1947 dp = file_path;
1948 ret = EFI_CALL(efi_locate_device_path(
1949 &efi_simple_file_system_protocol_guid, &dp, &device));
1950 if (ret == EFI_SUCCESS)
1951 return efi_load_image_from_file(file_path, buffer, size);
Heinrich Schuchardt82608272020-12-06 13:00:15 +01001952
1953 ret = EFI_CALL(efi_locate_device_path(
1954 &efi_guid_load_file_protocol, &dp, &device));
1955 if (ret == EFI_SUCCESS) {
1956 guid = &efi_guid_load_file_protocol;
1957 } else if (!boot_policy) {
1958 guid = &efi_guid_load_file2_protocol;
1959 ret = EFI_CALL(efi_locate_device_path(guid, &dp, &device));
1960 }
1961 if (ret != EFI_SUCCESS)
1962 return EFI_NOT_FOUND;
1963 ret = EFI_CALL(efi_handle_protocol(device, guid,
1964 (void **)&load_file_protocol));
1965 if (ret != EFI_SUCCESS)
1966 return EFI_NOT_FOUND;
1967 buffer_size = 0;
1968 ret = load_file_protocol->load_file(load_file_protocol, dp,
1969 boot_policy, &buffer_size,
1970 NULL);
1971 if (ret != EFI_BUFFER_TOO_SMALL)
1972 goto out;
1973 pages = efi_size_in_pages(buffer_size);
1974 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, EFI_BOOT_SERVICES_DATA,
1975 pages, &addr);
1976 if (ret != EFI_SUCCESS) {
1977 ret = EFI_OUT_OF_RESOURCES;
1978 goto out;
1979 }
1980 ret = EFI_CALL(load_file_protocol->load_file(
1981 load_file_protocol, dp, boot_policy,
1982 &buffer_size, (void *)(uintptr_t)addr));
1983 if (ret != EFI_SUCCESS)
1984 efi_free_pages(addr, pages);
1985out:
Heinrich Schuchardt20d88c72021-01-20 22:57:46 +01001986 EFI_CALL(efi_close_protocol(device, guid, efi_root, NULL));
Heinrich Schuchardt82608272020-12-06 13:00:15 +01001987 if (ret == EFI_SUCCESS) {
1988 *buffer = (void *)(uintptr_t)addr;
1989 *size = buffer_size;
1990 }
1991
1992 return ret;
Heinrich Schuchardt3dd733e2020-12-06 10:47:57 +01001993}
1994
1995/**
Mario Six8fac2912018-07-10 08:40:17 +02001996 * efi_load_image() - load an EFI image into memory
1997 * @boot_policy: true for request originating from the boot manager
1998 * @parent_image: the caller's image handle
1999 * @file_path: the path of the image to load
2000 * @source_buffer: memory location from which the image is installed
2001 * @source_size: size of the memory area from which the image is installed
2002 * @image_handle: handle for the newly installed image
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002003 *
2004 * This function implements the LoadImage service.
Mario Six8fac2912018-07-10 08:40:17 +02002005 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002006 * See the Unified Extensible Firmware Interface (UEFI) specification
2007 * for details.
2008 *
Mario Six8fac2912018-07-10 08:40:17 +02002009 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002010 */
AKASHI Takahirob0ad9052019-03-05 14:53:31 +09002011efi_status_t EFIAPI efi_load_image(bool boot_policy,
2012 efi_handle_t parent_image,
2013 struct efi_device_path *file_path,
2014 void *source_buffer,
2015 efi_uintn_t source_size,
2016 efi_handle_t *image_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01002017{
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01002018 struct efi_device_path *dp, *fp;
Tom Rini04c49062018-09-30 10:38:15 -04002019 struct efi_loaded_image *info = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02002020 struct efi_loaded_image_obj **image_obj =
2021 (struct efi_loaded_image_obj **)image_handle;
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01002022 efi_status_t ret;
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01002023 void *dest_buffer;
Alexander Grafc15d9212016-03-04 01:09:59 +01002024
Heinrich Schuchardt4cde1fa2018-04-03 22:29:30 +02002025 EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
Alexander Grafc15d9212016-03-04 01:09:59 +01002026 file_path, source_buffer, source_size, image_handle);
Rob Clark857a1222017-09-13 18:05:35 -04002027
Heinrich Schuchardtb7b10112019-06-11 18:52:33 +02002028 if (!image_handle || (!source_buffer && !file_path) ||
2029 !efi_search_obj(parent_image) ||
2030 /* The parent image handle must refer to a loaded image */
2031 !parent_image->type) {
Heinrich Schuchardt2e0a7902019-05-05 16:55:06 +02002032 ret = EFI_INVALID_PARAMETER;
2033 goto error;
2034 }
Rob Clark857a1222017-09-13 18:05:35 -04002035
2036 if (!source_buffer) {
Heinrich Schuchardt471db442020-12-04 09:27:41 +01002037 ret = efi_load_image_from_path(boot_policy, file_path,
2038 &dest_buffer, &source_size);
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01002039 if (ret != EFI_SUCCESS)
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01002040 goto error;
Rob Clark857a1222017-09-13 18:05:35 -04002041 } else {
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01002042 dest_buffer = source_buffer;
Rob Clark857a1222017-09-13 18:05:35 -04002043 }
Heinrich Schuchardt28b39172019-04-20 19:24:43 +00002044 /* split file_path which contains both the device and file parts */
2045 efi_dp_split_file_path(file_path, &dp, &fp);
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01002046 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01002047 if (ret == EFI_SUCCESS)
AKASHI Takahiro0e104e32020-04-14 11:51:44 +09002048 ret = efi_load_pe(*image_obj, dest_buffer, source_size, info);
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01002049 if (!source_buffer)
2050 /* Release buffer to which file was loaded */
2051 efi_free_pages((uintptr_t)dest_buffer,
2052 efi_size_in_pages(source_size));
AKASHI Takahiro0e104e32020-04-14 11:51:44 +09002053 if (ret == EFI_SUCCESS || ret == EFI_SECURITY_VIOLATION) {
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01002054 info->system_table = &systab;
2055 info->parent_handle = parent_image;
2056 } else {
2057 /* The image is invalid. Release all associated resources. */
2058 efi_delete_handle(*image_handle);
2059 *image_handle = NULL;
2060 free(info);
2061 }
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01002062error:
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01002063 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002064}
2065
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002066/**
Alexander Graffa5246b2018-11-15 21:23:47 +01002067 * efi_exit_caches() - fix up caches for EFI payloads if necessary
2068 */
2069static void efi_exit_caches(void)
2070{
Heinrich Schuchardt149d5d42019-07-22 22:04:36 +02002071#if defined(CONFIG_EFI_GRUB_ARM32_WORKAROUND)
Alexander Graffa5246b2018-11-15 21:23:47 +01002072 /*
Heinrich Schuchardt149d5d42019-07-22 22:04:36 +02002073 * Boooting Linux via GRUB prior to version 2.04 fails on 32bit ARM if
2074 * caches are enabled.
2075 *
2076 * TODO:
2077 * According to the UEFI spec caches that can be managed via CP15
2078 * operations should be enabled. Caches requiring platform information
2079 * to manage should be disabled. This should not happen in
2080 * ExitBootServices() but before invoking any UEFI binary is invoked.
2081 *
2082 * We want to keep the current workaround while GRUB prior to version
2083 * 2.04 is still in use.
Alexander Graffa5246b2018-11-15 21:23:47 +01002084 */
Heinrich Schuchardt149d5d42019-07-22 22:04:36 +02002085 cleanup_before_linux();
Alexander Graffa5246b2018-11-15 21:23:47 +01002086#endif
2087}
2088
2089/**
Mario Six8fac2912018-07-10 08:40:17 +02002090 * efi_exit_boot_services() - stop all boot services
2091 * @image_handle: handle of the loaded image
2092 * @map_key: key of the memory map
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002093 *
2094 * This function implements the ExitBootServices service.
Mario Six8fac2912018-07-10 08:40:17 +02002095 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002096 * See the Unified Extensible Firmware Interface (UEFI) specification
2097 * for details.
2098 *
Mario Six8fac2912018-07-10 08:40:17 +02002099 * All timer events are disabled. For exit boot services events the
2100 * notification function is called. The boot services are disabled in the
2101 * system table.
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01002102 *
Mario Six8fac2912018-07-10 08:40:17 +02002103 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002104 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002105static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
Heinrich Schuchardt8bd4f412019-05-05 21:58:35 +02002106 efi_uintn_t map_key)
Alexander Grafc15d9212016-03-04 01:09:59 +01002107{
Heinrich Schuchardt4429d872019-07-11 20:15:09 +02002108 struct efi_event *evt, *next_event;
Heinrich Schuchardtafc33672019-06-11 20:05:40 +02002109 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02002110
Heinrich Schuchardt8bd4f412019-05-05 21:58:35 +02002111 EFI_ENTRY("%p, %zx", image_handle, map_key);
Alexander Grafc15d9212016-03-04 01:09:59 +01002112
Heinrich Schuchardt0f233c42018-07-02 12:53:55 +02002113 /* Check that the caller has read the current memory map */
Heinrich Schuchardtafc33672019-06-11 20:05:40 +02002114 if (map_key != efi_memory_map_key) {
2115 ret = EFI_INVALID_PARAMETER;
2116 goto out;
2117 }
Heinrich Schuchardt0f233c42018-07-02 12:53:55 +02002118
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01002119 /* Check if ExitBootServices has already been called */
2120 if (!systab.boottime)
Heinrich Schuchardtafc33672019-06-11 20:05:40 +02002121 goto out;
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01002122
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02002123 /* Stop all timer related activities */
2124 timers_enabled = false;
2125
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01002126 /* Add related events to the event group */
2127 list_for_each_entry(evt, &efi_events, link) {
2128 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
2129 evt->group = &efi_guid_event_group_exit_boot_services;
2130 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02002131 /* Notify that ExitBootServices is invoked. */
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01002132 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01002133 if (evt->group &&
2134 !guidcmp(evt->group,
2135 &efi_guid_event_group_exit_boot_services)) {
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02002136 efi_signal_event(evt);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01002137 break;
2138 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02002139 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02002140
Heinrich Schuchardt7b4b8d862019-06-07 06:47:01 +02002141 /* Make sure that notification functions are not called anymore */
2142 efi_tpl = TPL_HIGH_LEVEL;
2143
Heinrich Schuchardt2ac62582019-06-20 15:25:48 +02002144 /* Notify variable services */
2145 efi_variables_boot_exit_notify();
Rob Clark15f3d742017-09-13 18:05:37 -04002146
Heinrich Schuchardt4429d872019-07-11 20:15:09 +02002147 /* Remove all events except EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE */
2148 list_for_each_entry_safe(evt, next_event, &efi_events, link) {
2149 if (evt->type != EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE)
2150 list_del(&evt->link);
2151 }
2152
Heinrich Schuchardt628dbd72020-11-12 21:26:28 +01002153 if (!efi_st_keep_devices) {
Heinrich Schuchardt20dbedb2020-12-27 15:33:09 +01002154 if (IS_ENABLED(CONFIG_USB_DEVICE))
Heinrich Schuchardt628dbd72020-11-12 21:26:28 +01002155 udc_disconnect();
2156 board_quiesce_devices();
2157 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
2158 }
Alexander Graf2ebeb442016-11-17 01:02:57 +01002159
Heinrich Schuchardt1943dbb2019-07-05 17:42:16 +02002160 /* Patch out unsupported runtime function */
2161 efi_runtime_detach();
2162
Alexander Graffa5246b2018-11-15 21:23:47 +01002163 /* Fix up caches for EFI payloads if necessary */
2164 efi_exit_caches();
2165
Alexander Grafc15d9212016-03-04 01:09:59 +01002166 /* This stops all lingering devices */
2167 bootm_disable_interrupts();
2168
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02002169 /* Disable boot time services */
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01002170 systab.con_in_handle = NULL;
2171 systab.con_in = NULL;
2172 systab.con_out_handle = NULL;
2173 systab.con_out = NULL;
2174 systab.stderr_handle = NULL;
2175 systab.std_err = NULL;
2176 systab.boottime = NULL;
2177
2178 /* Recalculate CRC32 */
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02002179 efi_update_table_header_crc32(&systab.hdr);
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01002180
Alexander Grafc15d9212016-03-04 01:09:59 +01002181 /* Give the payload some time to boot */
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02002182 efi_set_watchdog(0);
Alexander Grafc15d9212016-03-04 01:09:59 +01002183 WATCHDOG_RESET();
Heinrich Schuchardtafc33672019-06-11 20:05:40 +02002184out:
Masahisa Kojima1ac19bb2021-08-13 16:12:41 +09002185 if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
2186 if (ret != EFI_SUCCESS)
2187 efi_tcg2_notify_exit_boot_services_failed();
2188 }
2189
Heinrich Schuchardtafc33672019-06-11 20:05:40 +02002190 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002191}
2192
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002193/**
Mario Six8fac2912018-07-10 08:40:17 +02002194 * efi_get_next_monotonic_count() - get next value of the counter
2195 * @count: returned value of the counter
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002196 *
2197 * This function implements the NextMonotonicCount service.
Mario Six8fac2912018-07-10 08:40:17 +02002198 *
2199 * See the Unified Extensible Firmware Interface (UEFI) specification for
2200 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002201 *
Mario Six8fac2912018-07-10 08:40:17 +02002202 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002203 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002204static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
2205{
Heinrich Schuchardt91064592018-02-18 15:17:49 +01002206 static uint64_t mono;
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02002207 efi_status_t ret;
Heinrich Schuchardt91064592018-02-18 15:17:49 +01002208
Alexander Grafc15d9212016-03-04 01:09:59 +01002209 EFI_ENTRY("%p", count);
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02002210 if (!count) {
2211 ret = EFI_INVALID_PARAMETER;
2212 goto out;
2213 }
Alexander Grafc15d9212016-03-04 01:09:59 +01002214 *count = mono++;
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02002215 ret = EFI_SUCCESS;
2216out:
2217 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002218}
2219
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002220/**
Mario Six8fac2912018-07-10 08:40:17 +02002221 * efi_stall() - sleep
2222 * @microseconds: period to sleep in microseconds
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002223 *
Mario Six8fac2912018-07-10 08:40:17 +02002224 * This function implements the Stall service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002225 *
Mario Six8fac2912018-07-10 08:40:17 +02002226 * See the Unified Extensible Firmware Interface (UEFI) specification for
2227 * details.
2228 *
2229 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002230 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002231static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
2232{
Heinrich Schuchardt9912c032019-06-02 21:12:17 +02002233 u64 end_tick;
2234
Alexander Grafc15d9212016-03-04 01:09:59 +01002235 EFI_ENTRY("%ld", microseconds);
Heinrich Schuchardt9912c032019-06-02 21:12:17 +02002236
2237 end_tick = get_ticks() + usec_to_tick(microseconds);
2238 while (get_ticks() < end_tick)
2239 efi_timer_check();
2240
Alexander Grafc15d9212016-03-04 01:09:59 +01002241 return EFI_EXIT(EFI_SUCCESS);
2242}
2243
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002244/**
Mario Six8fac2912018-07-10 08:40:17 +02002245 * efi_set_watchdog_timer() - reset the watchdog timer
2246 * @timeout: seconds before reset by watchdog
2247 * @watchdog_code: code to be logged when resetting
2248 * @data_size: size of buffer in bytes
2249 * @watchdog_data: buffer with data describing the reset reason
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002250 *
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02002251 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002252 *
Mario Six8fac2912018-07-10 08:40:17 +02002253 * See the Unified Extensible Firmware Interface (UEFI) specification for
2254 * details.
2255 *
2256 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002257 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002258static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
2259 uint64_t watchdog_code,
2260 unsigned long data_size,
2261 uint16_t *watchdog_data)
2262{
Masahiro Yamadac7570a32018-08-06 20:47:40 +09002263 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
Alexander Grafc15d9212016-03-04 01:09:59 +01002264 data_size, watchdog_data);
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02002265 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafc15d9212016-03-04 01:09:59 +01002266}
2267
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002268/**
Mario Six8fac2912018-07-10 08:40:17 +02002269 * efi_close_protocol() - close a protocol
2270 * @handle: handle on which the protocol shall be closed
2271 * @protocol: GUID of the protocol to close
2272 * @agent_handle: handle of the driver
2273 * @controller_handle: handle of the controller
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002274 *
2275 * This function implements the CloseProtocol service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002276 *
Mario Six8fac2912018-07-10 08:40:17 +02002277 * See the Unified Extensible Firmware Interface (UEFI) specification for
2278 * details.
2279 *
2280 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002281 */
AKASHI Takahirod99b1b32020-03-17 11:12:36 +09002282efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
2283 const efi_guid_t *protocol,
2284 efi_handle_t agent_handle,
2285 efi_handle_t controller_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01002286{
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002287 struct efi_handler *handler;
2288 struct efi_open_protocol_info_item *item;
2289 struct efi_open_protocol_info_item *pos;
2290 efi_status_t r;
2291
Rob Clark238f88c2017-09-13 18:05:41 -04002292 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
Alexander Grafc15d9212016-03-04 01:09:59 +01002293 controller_handle);
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002294
Heinrich Schuchardt5d8231b2019-05-05 10:37:51 +02002295 if (!efi_search_obj(agent_handle) ||
2296 (controller_handle && !efi_search_obj(controller_handle))) {
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002297 r = EFI_INVALID_PARAMETER;
2298 goto out;
2299 }
2300 r = efi_search_protocol(handle, protocol, &handler);
2301 if (r != EFI_SUCCESS)
2302 goto out;
2303
2304 r = EFI_NOT_FOUND;
2305 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2306 if (item->info.agent_handle == agent_handle &&
2307 item->info.controller_handle == controller_handle) {
2308 efi_delete_open_info(item);
2309 r = EFI_SUCCESS;
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002310 }
2311 }
2312out:
2313 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002314}
2315
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002316/**
Mario Six8fac2912018-07-10 08:40:17 +02002317 * efi_open_protocol_information() - provide information about then open status
2318 * of a protocol on a handle
2319 * @handle: handle for which the information shall be retrieved
2320 * @protocol: GUID of the protocol
2321 * @entry_buffer: buffer to receive the open protocol information
2322 * @entry_count: number of entries available in the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002323 *
2324 * This function implements the OpenProtocolInformation service.
Mario Six8fac2912018-07-10 08:40:17 +02002325 *
2326 * See the Unified Extensible Firmware Interface (UEFI) specification for
2327 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002328 *
Mario Six8fac2912018-07-10 08:40:17 +02002329 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002330 */
Heinrich Schuchardt91064592018-02-18 15:17:49 +01002331static efi_status_t EFIAPI efi_open_protocol_information(
2332 efi_handle_t handle, const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002333 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002334 efi_uintn_t *entry_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01002335{
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002336 unsigned long buffer_size;
2337 unsigned long count;
2338 struct efi_handler *handler;
2339 struct efi_open_protocol_info_item *item;
2340 efi_status_t r;
2341
Rob Clark238f88c2017-09-13 18:05:41 -04002342 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
Alexander Grafc15d9212016-03-04 01:09:59 +01002343 entry_count);
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002344
2345 /* Check parameters */
2346 if (!entry_buffer) {
2347 r = EFI_INVALID_PARAMETER;
2348 goto out;
2349 }
2350 r = efi_search_protocol(handle, protocol, &handler);
2351 if (r != EFI_SUCCESS)
2352 goto out;
2353
2354 /* Count entries */
2355 count = 0;
2356 list_for_each_entry(item, &handler->open_infos, link) {
2357 if (item->info.open_count)
2358 ++count;
2359 }
2360 *entry_count = count;
2361 *entry_buffer = NULL;
2362 if (!count) {
2363 r = EFI_SUCCESS;
2364 goto out;
2365 }
2366
2367 /* Copy entries */
2368 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002369 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002370 (void **)entry_buffer);
2371 if (r != EFI_SUCCESS)
2372 goto out;
2373 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2374 if (item->info.open_count)
2375 (*entry_buffer)[--count] = item->info;
2376 }
2377out:
2378 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002379}
2380
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002381/**
Mario Six8fac2912018-07-10 08:40:17 +02002382 * efi_protocols_per_handle() - get protocols installed on a handle
2383 * @handle: handle for which the information is retrieved
2384 * @protocol_buffer: buffer with protocol GUIDs
2385 * @protocol_buffer_count: number of entries in the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002386 *
2387 * This function implements the ProtocolsPerHandleService.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002388 *
Mario Six8fac2912018-07-10 08:40:17 +02002389 * See the Unified Extensible Firmware Interface (UEFI) specification for
2390 * details.
2391 *
2392 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002393 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002394static efi_status_t EFIAPI efi_protocols_per_handle(
2395 efi_handle_t handle, efi_guid_t ***protocol_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002396 efi_uintn_t *protocol_buffer_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01002397{
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002398 unsigned long buffer_size;
2399 struct efi_object *efiobj;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002400 struct list_head *protocol_handle;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002401 efi_status_t r;
2402
Alexander Grafc15d9212016-03-04 01:09:59 +01002403 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2404 protocol_buffer_count);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002405
2406 if (!handle || !protocol_buffer || !protocol_buffer_count)
2407 return EFI_EXIT(EFI_INVALID_PARAMETER);
2408
2409 *protocol_buffer = NULL;
Rob Clarkd51b8ca2017-07-20 07:59:39 -04002410 *protocol_buffer_count = 0;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002411
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002412 efiobj = efi_search_obj(handle);
2413 if (!efiobj)
2414 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002415
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002416 /* Count protocols */
2417 list_for_each(protocol_handle, &efiobj->protocols) {
2418 ++*protocol_buffer_count;
2419 }
2420
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02002421 /* Copy GUIDs */
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002422 if (*protocol_buffer_count) {
2423 size_t j = 0;
2424
2425 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002426 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002427 (void **)protocol_buffer);
2428 if (r != EFI_SUCCESS)
2429 return EFI_EXIT(r);
2430 list_for_each(protocol_handle, &efiobj->protocols) {
2431 struct efi_handler *protocol;
2432
2433 protocol = list_entry(protocol_handle,
2434 struct efi_handler, link);
2435 (*protocol_buffer)[j] = (void *)protocol->guid;
2436 ++j;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002437 }
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002438 }
2439
2440 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002441}
2442
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002443/**
Mario Six8fac2912018-07-10 08:40:17 +02002444 * efi_locate_handle_buffer() - locate handles implementing a protocol
2445 * @search_type: selection criterion
2446 * @protocol: GUID of the protocol
2447 * @search_key: registration key
2448 * @no_handles: number of returned handles
2449 * @buffer: buffer with the returned handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002450 *
2451 * This function implements the LocateHandleBuffer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002452 *
Mario Six8fac2912018-07-10 08:40:17 +02002453 * See the Unified Extensible Firmware Interface (UEFI) specification for
2454 * details.
2455 *
2456 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002457 */
AKASHI Takahirod99b1b32020-03-17 11:12:36 +09002458efi_status_t EFIAPI efi_locate_handle_buffer(
Alexander Grafc15d9212016-03-04 01:09:59 +01002459 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002460 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002461 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01002462{
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002463 efi_status_t r;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002464 efi_uintn_t buffer_size = 0;
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002465
Rob Clark238f88c2017-09-13 18:05:41 -04002466 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafc15d9212016-03-04 01:09:59 +01002467 no_handles, buffer);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002468
2469 if (!no_handles || !buffer) {
2470 r = EFI_INVALID_PARAMETER;
2471 goto out;
2472 }
2473 *no_handles = 0;
2474 *buffer = NULL;
2475 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2476 *buffer);
2477 if (r != EFI_BUFFER_TOO_SMALL)
2478 goto out;
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002479 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002480 (void **)buffer);
2481 if (r != EFI_SUCCESS)
2482 goto out;
2483 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2484 *buffer);
2485 if (r == EFI_SUCCESS)
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002486 *no_handles = buffer_size / sizeof(efi_handle_t);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002487out:
2488 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002489}
2490
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002491/**
Mario Six8fac2912018-07-10 08:40:17 +02002492 * efi_locate_protocol() - find an interface implementing a protocol
2493 * @protocol: GUID of the protocol
2494 * @registration: registration key passed to the notification function
2495 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002496 *
2497 * This function implements the LocateProtocol service.
Mario Six8fac2912018-07-10 08:40:17 +02002498 *
2499 * See the Unified Extensible Firmware Interface (UEFI) specification for
2500 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002501 *
Mario Six8fac2912018-07-10 08:40:17 +02002502 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002503 */
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002504static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002505 void *registration,
2506 void **protocol_interface)
2507{
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002508 struct efi_handler *handler;
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002509 efi_status_t ret;
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002510 struct efi_object *efiobj;
Alexander Grafc15d9212016-03-04 01:09:59 +01002511
Rob Clark238f88c2017-09-13 18:05:41 -04002512 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002513
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002514 /*
2515 * The UEFI spec explicitly requires a protocol even if a registration
2516 * key is provided. This differs from the logic in LocateHandle().
2517 */
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002518 if (!protocol || !protocol_interface)
2519 return EFI_EXIT(EFI_INVALID_PARAMETER);
2520
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002521 if (registration) {
2522 struct efi_register_notify_event *event;
2523 struct efi_protocol_notification *handle;
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002524
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002525 event = efi_check_register_notify_event(registration);
2526 if (!event)
2527 return EFI_EXIT(EFI_INVALID_PARAMETER);
2528 /*
2529 * The UEFI spec requires to return EFI_NOT_FOUND if no
2530 * protocol instance matches protocol and registration.
2531 * So let's do the same for a mismatch between protocol and
2532 * registration.
2533 */
2534 if (guidcmp(&event->protocol, protocol))
2535 goto not_found;
2536 if (list_empty(&event->handles))
2537 goto not_found;
2538 handle = list_first_entry(&event->handles,
2539 struct efi_protocol_notification,
2540 link);
2541 efiobj = handle->handle;
2542 list_del(&handle->link);
2543 free(handle);
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02002544 ret = efi_search_protocol(efiobj, protocol, &handler);
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002545 if (ret == EFI_SUCCESS)
2546 goto found;
2547 } else {
2548 list_for_each_entry(efiobj, &efi_obj_list, link) {
2549 ret = efi_search_protocol(efiobj, protocol, &handler);
2550 if (ret == EFI_SUCCESS)
2551 goto found;
Alexander Grafc15d9212016-03-04 01:09:59 +01002552 }
2553 }
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002554not_found:
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002555 *protocol_interface = NULL;
Alexander Grafc15d9212016-03-04 01:09:59 +01002556 return EFI_EXIT(EFI_NOT_FOUND);
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002557found:
2558 *protocol_interface = handler->protocol_interface;
2559 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002560}
2561
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002562/**
Mario Six8fac2912018-07-10 08:40:17 +02002563 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2564 * interfaces
2565 * @handle: handle on which the protocol interfaces shall be installed
2566 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2567 * interfaces
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002568 *
2569 * This function implements the MultipleProtocolInterfaces service.
Mario Six8fac2912018-07-10 08:40:17 +02002570 *
2571 * See the Unified Extensible Firmware Interface (UEFI) specification for
2572 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002573 *
Mario Six8fac2912018-07-10 08:40:17 +02002574 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002575 */
Heinrich Schuchardt744d83e2019-04-12 06:59:49 +02002576efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002577 (efi_handle_t *handle, ...)
Alexander Grafc15d9212016-03-04 01:09:59 +01002578{
2579 EFI_ENTRY("%p", handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002580
Alexander Graf404a7c82018-06-18 17:23:05 +02002581 efi_va_list argptr;
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002582 const efi_guid_t *protocol;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002583 void *protocol_interface;
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002584 efi_handle_t old_handle;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002585 efi_status_t r = EFI_SUCCESS;
2586 int i = 0;
2587
2588 if (!handle)
2589 return EFI_EXIT(EFI_INVALID_PARAMETER);
2590
Alexander Graf404a7c82018-06-18 17:23:05 +02002591 efi_va_start(argptr, handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002592 for (;;) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002593 protocol = efi_va_arg(argptr, efi_guid_t*);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002594 if (!protocol)
2595 break;
Alexander Graf404a7c82018-06-18 17:23:05 +02002596 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002597 /* Check that a device path has not been installed before */
2598 if (!guidcmp(protocol, &efi_guid_device_path)) {
2599 struct efi_device_path *dp = protocol_interface;
2600
2601 r = EFI_CALL(efi_locate_device_path(protocol, &dp,
2602 &old_handle));
Heinrich Schuchardt29344972019-05-20 19:55:18 +00002603 if (r == EFI_SUCCESS &&
2604 dp->type == DEVICE_PATH_TYPE_END) {
2605 EFI_PRINT("Path %pD already installed\n",
2606 protocol_interface);
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002607 r = EFI_ALREADY_STARTED;
2608 break;
2609 }
2610 }
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01002611 r = EFI_CALL(efi_install_protocol_interface(
2612 handle, protocol,
2613 EFI_NATIVE_INTERFACE,
2614 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002615 if (r != EFI_SUCCESS)
2616 break;
2617 i++;
2618 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002619 efi_va_end(argptr);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002620 if (r == EFI_SUCCESS)
2621 return EFI_EXIT(r);
2622
Heinrich Schuchardtec47f3e2017-10-26 19:25:42 +02002623 /* If an error occurred undo all changes. */
Alexander Graf404a7c82018-06-18 17:23:05 +02002624 efi_va_start(argptr, handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002625 for (; i; --i) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002626 protocol = efi_va_arg(argptr, efi_guid_t*);
2627 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002628 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01002629 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002630 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002631 efi_va_end(argptr);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002632
2633 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002634}
2635
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002636/**
Mario Six8fac2912018-07-10 08:40:17 +02002637 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2638 * interfaces
2639 * @handle: handle from which the protocol interfaces shall be removed
2640 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2641 * interfaces
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002642 *
2643 * This function implements the UninstallMultipleProtocolInterfaces service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002644 *
Mario Six8fac2912018-07-10 08:40:17 +02002645 * See the Unified Extensible Firmware Interface (UEFI) specification for
2646 * details.
2647 *
2648 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002649 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002650static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002651 efi_handle_t handle, ...)
Alexander Grafc15d9212016-03-04 01:09:59 +01002652{
2653 EFI_ENTRY("%p", handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002654
Alexander Graf404a7c82018-06-18 17:23:05 +02002655 efi_va_list argptr;
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002656 const efi_guid_t *protocol;
2657 void *protocol_interface;
2658 efi_status_t r = EFI_SUCCESS;
2659 size_t i = 0;
2660
2661 if (!handle)
2662 return EFI_EXIT(EFI_INVALID_PARAMETER);
2663
Alexander Graf404a7c82018-06-18 17:23:05 +02002664 efi_va_start(argptr, handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002665 for (;;) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002666 protocol = efi_va_arg(argptr, efi_guid_t*);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002667 if (!protocol)
2668 break;
Alexander Graf404a7c82018-06-18 17:23:05 +02002669 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002670 r = efi_uninstall_protocol(handle, protocol,
2671 protocol_interface);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002672 if (r != EFI_SUCCESS)
2673 break;
2674 i++;
2675 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002676 efi_va_end(argptr);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002677 if (r == EFI_SUCCESS) {
2678 /* If the last protocol has been removed, delete the handle. */
2679 if (list_empty(&handle->protocols)) {
2680 list_del(&handle->link);
2681 free(handle);
2682 }
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002683 return EFI_EXIT(r);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002684 }
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002685
2686 /* If an error occurred undo all changes. */
Alexander Graf404a7c82018-06-18 17:23:05 +02002687 efi_va_start(argptr, handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002688 for (; i; --i) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002689 protocol = efi_va_arg(argptr, efi_guid_t*);
2690 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002691 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2692 EFI_NATIVE_INTERFACE,
2693 protocol_interface));
2694 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002695 efi_va_end(argptr);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002696
Heinrich Schuchardt1c76eda2018-09-24 19:57:27 +02002697 /* In case of an error always return EFI_INVALID_PARAMETER */
2698 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafc15d9212016-03-04 01:09:59 +01002699}
2700
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002701/**
Mario Six8fac2912018-07-10 08:40:17 +02002702 * efi_calculate_crc32() - calculate cyclic redundancy code
2703 * @data: buffer with data
2704 * @data_size: size of buffer in bytes
2705 * @crc32_p: cyclic redundancy code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002706 *
2707 * This function implements the CalculateCrc32 service.
Mario Six8fac2912018-07-10 08:40:17 +02002708 *
2709 * See the Unified Extensible Firmware Interface (UEFI) specification for
2710 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002711 *
Mario Six8fac2912018-07-10 08:40:17 +02002712 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002713 */
Heinrich Schuchardtf2725582018-07-07 15:36:04 +02002714static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2715 efi_uintn_t data_size,
2716 u32 *crc32_p)
Alexander Grafc15d9212016-03-04 01:09:59 +01002717{
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002718 efi_status_t ret = EFI_SUCCESS;
2719
Heinrich Schuchardtf2725582018-07-07 15:36:04 +02002720 EFI_ENTRY("%p, %zu", data, data_size);
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002721 if (!data || !data_size || !crc32_p) {
2722 ret = EFI_INVALID_PARAMETER;
2723 goto out;
2724 }
Alexander Grafc15d9212016-03-04 01:09:59 +01002725 *crc32_p = crc32(0, data, data_size);
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002726out:
2727 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002728}
2729
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002730/**
Mario Six8fac2912018-07-10 08:40:17 +02002731 * efi_copy_mem() - copy memory
2732 * @destination: destination of the copy operation
2733 * @source: source of the copy operation
2734 * @length: number of bytes to copy
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002735 *
2736 * This function implements the CopyMem service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002737 *
Mario Six8fac2912018-07-10 08:40:17 +02002738 * See the Unified Extensible Firmware Interface (UEFI) specification for
2739 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002740 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002741static void EFIAPI efi_copy_mem(void *destination, const void *source,
2742 size_t length)
Alexander Grafc15d9212016-03-04 01:09:59 +01002743{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002744 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Heinrich Schuchardtefba6ba2019-01-09 21:41:13 +01002745 memmove(destination, source, length);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002746 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002747}
2748
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002749/**
Mario Six8fac2912018-07-10 08:40:17 +02002750 * efi_set_mem() - Fill memory with a byte value.
2751 * @buffer: buffer to fill
2752 * @size: size of buffer in bytes
2753 * @value: byte to copy to the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002754 *
2755 * This function implements the SetMem service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002756 *
Mario Six8fac2912018-07-10 08:40:17 +02002757 * See the Unified Extensible Firmware Interface (UEFI) specification for
2758 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002759 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002760static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafc15d9212016-03-04 01:09:59 +01002761{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002762 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafc15d9212016-03-04 01:09:59 +01002763 memset(buffer, value, size);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002764 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002765}
2766
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002767/**
Mario Six8fac2912018-07-10 08:40:17 +02002768 * efi_protocol_open() - open protocol interface on a handle
2769 * @handler: handler of a protocol
2770 * @protocol_interface: interface implementing the protocol
2771 * @agent_handle: handle of the driver
2772 * @controller_handle: handle of the controller
2773 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002774 *
Mario Six8fac2912018-07-10 08:40:17 +02002775 * Return: status code
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002776 */
Heinrich Schuchardt9c89d142020-01-10 12:33:59 +01002777efi_status_t efi_protocol_open(
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002778 struct efi_handler *handler,
2779 void **protocol_interface, void *agent_handle,
2780 void *controller_handle, uint32_t attributes)
2781{
2782 struct efi_open_protocol_info_item *item;
2783 struct efi_open_protocol_info_entry *match = NULL;
2784 bool opened_by_driver = false;
2785 bool opened_exclusive = false;
2786
2787 /* If there is no agent, only return the interface */
2788 if (!agent_handle)
2789 goto out;
2790
2791 /* For TEST_PROTOCOL ignore interface attribute */
2792 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2793 *protocol_interface = NULL;
2794
2795 /*
2796 * Check if the protocol is already opened by a driver with the same
2797 * attributes or opened exclusively
2798 */
2799 list_for_each_entry(item, &handler->open_infos, link) {
2800 if (item->info.agent_handle == agent_handle) {
2801 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2802 (item->info.attributes == attributes))
2803 return EFI_ALREADY_STARTED;
Heinrich Schuchardtda433d52019-05-30 14:16:31 +02002804 } else {
2805 if (item->info.attributes &
2806 EFI_OPEN_PROTOCOL_BY_DRIVER)
2807 opened_by_driver = true;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002808 }
2809 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2810 opened_exclusive = true;
2811 }
2812
2813 /* Only one controller can open the protocol exclusively */
Heinrich Schuchardtda433d52019-05-30 14:16:31 +02002814 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2815 if (opened_exclusive)
2816 return EFI_ACCESS_DENIED;
2817 } else if (attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
2818 if (opened_exclusive || opened_by_driver)
2819 return EFI_ACCESS_DENIED;
2820 }
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002821
2822 /* Prepare exclusive opening */
2823 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2824 /* Try to disconnect controllers */
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002825disconnect_next:
2826 opened_by_driver = false;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002827 list_for_each_entry(item, &handler->open_infos, link) {
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002828 efi_status_t ret;
2829
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002830 if (item->info.attributes ==
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002831 EFI_OPEN_PROTOCOL_BY_DRIVER) {
2832 ret = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002833 item->info.controller_handle,
2834 item->info.agent_handle,
2835 NULL));
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002836 if (ret == EFI_SUCCESS)
2837 /*
2838 * Child controllers may have been
2839 * removed from the open_infos list. So
2840 * let's restart the loop.
2841 */
2842 goto disconnect_next;
2843 else
2844 opened_by_driver = true;
2845 }
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002846 }
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002847 /* Only one driver can be connected */
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002848 if (opened_by_driver)
2849 return EFI_ACCESS_DENIED;
2850 }
2851
2852 /* Find existing entry */
2853 list_for_each_entry(item, &handler->open_infos, link) {
2854 if (item->info.agent_handle == agent_handle &&
Heinrich Schuchardt7d69fc32019-06-01 20:15:10 +02002855 item->info.controller_handle == controller_handle &&
2856 item->info.attributes == attributes)
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002857 match = &item->info;
2858 }
2859 /* None found, create one */
2860 if (!match) {
2861 match = efi_create_open_info(handler);
2862 if (!match)
2863 return EFI_OUT_OF_RESOURCES;
2864 }
2865
2866 match->agent_handle = agent_handle;
2867 match->controller_handle = controller_handle;
2868 match->attributes = attributes;
2869 match->open_count++;
2870
2871out:
2872 /* For TEST_PROTOCOL ignore interface attribute. */
2873 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2874 *protocol_interface = handler->protocol_interface;
2875
2876 return EFI_SUCCESS;
2877}
2878
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002879/**
Mario Six8fac2912018-07-10 08:40:17 +02002880 * efi_open_protocol() - open protocol interface on a handle
2881 * @handle: handle on which the protocol shall be opened
2882 * @protocol: GUID of the protocol
2883 * @protocol_interface: interface implementing the protocol
2884 * @agent_handle: handle of the driver
2885 * @controller_handle: handle of the controller
2886 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002887 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002888 * This function implements the OpenProtocol interface.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002889 *
Mario Six8fac2912018-07-10 08:40:17 +02002890 * See the Unified Extensible Firmware Interface (UEFI) specification for
2891 * details.
2892 *
2893 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002894 */
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002895static efi_status_t EFIAPI efi_open_protocol
2896 (efi_handle_t handle, const efi_guid_t *protocol,
2897 void **protocol_interface, efi_handle_t agent_handle,
2898 efi_handle_t controller_handle, uint32_t attributes)
Alexander Grafc15d9212016-03-04 01:09:59 +01002899{
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002900 struct efi_handler *handler;
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002901 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +01002902
Rob Clark238f88c2017-09-13 18:05:41 -04002903 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002904 protocol_interface, agent_handle, controller_handle,
2905 attributes);
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02002906
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002907 if (!handle || !protocol ||
2908 (!protocol_interface && attributes !=
2909 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02002910 goto out;
2911 }
2912
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002913 switch (attributes) {
2914 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2915 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2916 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2917 break;
2918 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2919 if (controller_handle == handle)
2920 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002921 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002922 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2923 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002924 /* Check that the controller handle is valid */
2925 if (!efi_search_obj(controller_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002926 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002927 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002928 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002929 /* Check that the agent handle is valid */
2930 if (!efi_search_obj(agent_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002931 goto out;
2932 break;
2933 default:
2934 goto out;
2935 }
2936
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002937 r = efi_search_protocol(handle, protocol, &handler);
Heinrich Schuchardtb673e4b2019-05-05 11:24:53 +02002938 switch (r) {
2939 case EFI_SUCCESS:
2940 break;
2941 case EFI_NOT_FOUND:
2942 r = EFI_UNSUPPORTED;
2943 goto out;
2944 default:
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002945 goto out;
Heinrich Schuchardtb673e4b2019-05-05 11:24:53 +02002946 }
Alexander Grafc15d9212016-03-04 01:09:59 +01002947
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002948 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2949 controller_handle, attributes);
Alexander Grafc15d9212016-03-04 01:09:59 +01002950out:
2951 return EFI_EXIT(r);
2952}
2953
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002954/**
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002955 * efi_start_image() - call the entry point of an image
2956 * @image_handle: handle of the image
2957 * @exit_data_size: size of the buffer
2958 * @exit_data: buffer to receive the exit data of the called image
2959 *
2960 * This function implements the StartImage service.
2961 *
2962 * See the Unified Extensible Firmware Interface (UEFI) specification for
2963 * details.
2964 *
2965 * Return: status code
2966 */
2967efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
2968 efi_uintn_t *exit_data_size,
2969 u16 **exit_data)
2970{
2971 struct efi_loaded_image_obj *image_obj =
2972 (struct efi_loaded_image_obj *)image_handle;
2973 efi_status_t ret;
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002974 void *info;
2975 efi_handle_t parent_image = current_image;
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01002976 efi_status_t exit_status;
2977 struct jmp_buf_data exit_jmp;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002978
2979 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
2980
AKASHI Takahiro0e104e32020-04-14 11:51:44 +09002981 if (!efi_search_obj(image_handle))
2982 return EFI_EXIT(EFI_INVALID_PARAMETER);
2983
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002984 /* Check parameters */
Heinrich Schuchardtff94bca2019-06-11 19:35:20 +02002985 if (image_obj->header.type != EFI_OBJECT_TYPE_LOADED_IMAGE)
2986 return EFI_EXIT(EFI_INVALID_PARAMETER);
2987
AKASHI Takahiro0e104e32020-04-14 11:51:44 +09002988 if (image_obj->auth_status != EFI_IMAGE_AUTH_PASSED)
2989 return EFI_EXIT(EFI_SECURITY_VIOLATION);
2990
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002991 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2992 &info, NULL, NULL,
2993 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2994 if (ret != EFI_SUCCESS)
2995 return EFI_EXIT(EFI_INVALID_PARAMETER);
2996
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02002997 image_obj->exit_data_size = exit_data_size;
2998 image_obj->exit_data = exit_data;
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01002999 image_obj->exit_status = &exit_status;
3000 image_obj->exit_jmp = &exit_jmp;
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003001
Masahisa Kojima8173cd42021-08-13 16:12:40 +09003002 if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
3003 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION) {
3004 ret = efi_tcg2_measure_efi_app_invocation();
3005 if (ret != EFI_SUCCESS) {
3006 log_warning("tcg2 measurement fails(0x%lx)\n",
3007 ret);
3008 }
3009 }
3010 }
3011
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003012 /* call the image! */
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003013 if (setjmp(&exit_jmp)) {
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003014 /*
3015 * We called the entry point of the child image with EFI_CALL
3016 * in the lines below. The child image called the Exit() boot
3017 * service efi_exit() which executed the long jump that brought
3018 * us to the current line. This implies that the second half
3019 * of the EFI_CALL macro has not been executed.
3020 */
Heinrich Schuchardtf277d942020-09-10 12:22:54 +02003021#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003022 /*
3023 * efi_exit() called efi_restore_gd(). We have to undo this
3024 * otherwise __efi_entry_check() will put the wrong value into
3025 * app_gd.
3026 */
Heinrich Schuchardt1a3732c2020-05-27 01:58:30 +02003027 set_gd(app_gd);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003028#endif
3029 /*
3030 * To get ready to call EFI_EXIT below we have to execute the
3031 * missed out steps of EFI_CALL.
3032 */
3033 assert(__efi_entry_check());
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02003034 EFI_PRINT("%lu returned by started image\n",
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003035 (unsigned long)((uintptr_t)exit_status &
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02003036 ~EFI_ERROR_MASK));
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003037 current_image = parent_image;
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003038 return EFI_EXIT(exit_status);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003039 }
3040
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003041 current_image = image_handle;
Heinrich Schuchardtb27ced42019-05-01 14:20:18 +02003042 image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +09003043 EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003044 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
3045
3046 /*
Heinrich Schuchardtb7bc28d2020-01-10 22:06:54 +01003047 * Control is returned from a started UEFI image either by calling
3048 * Exit() (where exit data can be provided) or by simply returning from
3049 * the entry point. In the latter case call Exit() on behalf of the
3050 * image.
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003051 */
3052 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
3053}
3054
3055/**
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003056 * efi_delete_image() - delete loaded image from memory)
3057 *
3058 * @image_obj: handle of the loaded image
3059 * @loaded_image_protocol: loaded image protocol
3060 */
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02003061static efi_status_t efi_delete_image
3062 (struct efi_loaded_image_obj *image_obj,
3063 struct efi_loaded_image *loaded_image_protocol)
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003064{
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02003065 struct efi_object *efiobj;
3066 efi_status_t r, ret = EFI_SUCCESS;
3067
3068close_next:
3069 list_for_each_entry(efiobj, &efi_obj_list, link) {
3070 struct efi_handler *protocol;
3071
3072 list_for_each_entry(protocol, &efiobj->protocols, link) {
3073 struct efi_open_protocol_info_item *info;
3074
3075 list_for_each_entry(info, &protocol->open_infos, link) {
3076 if (info->info.agent_handle !=
3077 (efi_handle_t)image_obj)
3078 continue;
3079 r = EFI_CALL(efi_close_protocol
3080 (efiobj, protocol->guid,
3081 info->info.agent_handle,
3082 info->info.controller_handle
3083 ));
3084 if (r != EFI_SUCCESS)
3085 ret = r;
3086 /*
3087 * Closing protocols may results in further
3088 * items being deleted. To play it safe loop
3089 * over all elements again.
3090 */
3091 goto close_next;
3092 }
3093 }
3094 }
3095
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003096 efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
3097 efi_size_in_pages(loaded_image_protocol->image_size));
3098 efi_delete_handle(&image_obj->header);
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02003099
3100 return ret;
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003101}
3102
3103/**
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02003104 * efi_unload_image() - unload an EFI image
3105 * @image_handle: handle of the image to be unloaded
3106 *
3107 * This function implements the UnloadImage service.
3108 *
3109 * See the Unified Extensible Firmware Interface (UEFI) specification for
3110 * details.
3111 *
3112 * Return: status code
3113 */
3114efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
3115{
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003116 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02003117 struct efi_object *efiobj;
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003118 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02003119
3120 EFI_ENTRY("%p", image_handle);
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02003121
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02003122 efiobj = efi_search_obj(image_handle);
3123 if (!efiobj) {
3124 ret = EFI_INVALID_PARAMETER;
3125 goto out;
3126 }
3127 /* Find the loaded image protocol */
3128 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
3129 (void **)&loaded_image_protocol,
3130 NULL, NULL,
3131 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3132 if (ret != EFI_SUCCESS) {
3133 ret = EFI_INVALID_PARAMETER;
3134 goto out;
3135 }
3136 switch (efiobj->type) {
3137 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3138 /* Call the unload function */
3139 if (!loaded_image_protocol->unload) {
3140 ret = EFI_UNSUPPORTED;
3141 goto out;
3142 }
3143 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
3144 if (ret != EFI_SUCCESS)
3145 goto out;
3146 break;
3147 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3148 break;
3149 default:
3150 ret = EFI_INVALID_PARAMETER;
3151 goto out;
3152 }
3153 efi_delete_image((struct efi_loaded_image_obj *)efiobj,
3154 loaded_image_protocol);
3155out:
3156 return EFI_EXIT(ret);
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02003157}
3158
3159/**
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003160 * efi_update_exit_data() - fill exit data parameters of StartImage()
3161 *
Heinrich Schuchardt74c25292019-07-14 11:25:06 +02003162 * @image_obj: image handle
3163 * @exit_data_size: size of the exit data buffer
3164 * @exit_data: buffer with data returned by UEFI payload
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003165 * Return: status code
3166 */
3167static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
3168 efi_uintn_t exit_data_size,
3169 u16 *exit_data)
3170{
3171 efi_status_t ret;
3172
3173 /*
3174 * If exit_data is not provided to StartImage(), exit_data_size must be
3175 * ignored.
3176 */
3177 if (!image_obj->exit_data)
3178 return EFI_SUCCESS;
3179 if (image_obj->exit_data_size)
3180 *image_obj->exit_data_size = exit_data_size;
3181 if (exit_data_size && exit_data) {
3182 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
3183 exit_data_size,
3184 (void **)image_obj->exit_data);
3185 if (ret != EFI_SUCCESS)
3186 return ret;
3187 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
3188 } else {
3189 image_obj->exit_data = NULL;
3190 }
3191 return EFI_SUCCESS;
3192}
3193
3194/**
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003195 * efi_exit() - leave an EFI application or driver
3196 * @image_handle: handle of the application or driver that is exiting
3197 * @exit_status: status code
3198 * @exit_data_size: size of the buffer in bytes
3199 * @exit_data: buffer with data describing an error
3200 *
3201 * This function implements the Exit service.
3202 *
3203 * See the Unified Extensible Firmware Interface (UEFI) specification for
3204 * details.
3205 *
3206 * Return: status code
3207 */
3208static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
3209 efi_status_t exit_status,
3210 efi_uintn_t exit_data_size,
3211 u16 *exit_data)
3212{
3213 /*
3214 * TODO: We should call the unload procedure of the loaded
3215 * image protocol.
3216 */
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003217 efi_status_t ret;
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003218 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003219 struct efi_loaded_image_obj *image_obj =
3220 (struct efi_loaded_image_obj *)image_handle;
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003221 struct jmp_buf_data *exit_jmp;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003222
3223 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
3224 exit_data_size, exit_data);
3225
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003226 /* Check parameters */
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003227 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003228 (void **)&loaded_image_protocol,
3229 NULL, NULL,
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003230 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003231 if (ret != EFI_SUCCESS) {
3232 ret = EFI_INVALID_PARAMETER;
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003233 goto out;
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003234 }
3235
3236 /* Unloading of unstarted images */
3237 switch (image_obj->header.type) {
3238 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3239 break;
3240 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3241 efi_delete_image(image_obj, loaded_image_protocol);
3242 ret = EFI_SUCCESS;
3243 goto out;
3244 default:
3245 /* Handle does not refer to loaded image */
3246 ret = EFI_INVALID_PARAMETER;
3247 goto out;
3248 }
3249 /* A started image can only be unloaded it is the last one started. */
3250 if (image_handle != current_image) {
3251 ret = EFI_INVALID_PARAMETER;
3252 goto out;
3253 }
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003254
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003255 /* Exit data is only foreseen in case of failure. */
3256 if (exit_status != EFI_SUCCESS) {
3257 ret = efi_update_exit_data(image_obj, exit_data_size,
3258 exit_data);
3259 /* Exiting has priority. Don't return error to caller. */
3260 if (ret != EFI_SUCCESS)
3261 EFI_PRINT("%s: out of memory\n", __func__);
3262 }
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003263 /* efi_delete_image() frees image_obj. Copy before the call. */
3264 exit_jmp = image_obj->exit_jmp;
3265 *image_obj->exit_status = exit_status;
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003266 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
3267 exit_status != EFI_SUCCESS)
3268 efi_delete_image(image_obj, loaded_image_protocol);
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003269
Masahisa Kojima8173cd42021-08-13 16:12:40 +09003270 if (IS_ENABLED(CONFIG_EFI_TCG2_PROTOCOL)) {
3271 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION) {
3272 ret = efi_tcg2_measure_efi_app_exit();
3273 if (ret != EFI_SUCCESS) {
3274 log_warning("tcg2 measurement fails(0x%lx)\n",
3275 ret);
3276 }
3277 }
3278 }
3279
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003280 /* Make sure entry/exit counts for EFI world cross-overs match */
3281 EFI_EXIT(exit_status);
3282
3283 /*
3284 * But longjmp out with the U-Boot gd, not the application's, as
3285 * the other end is a setjmp call inside EFI context.
3286 */
3287 efi_restore_gd();
3288
Heinrich Schuchardt026c7ec2020-12-28 23:24:40 +01003289 longjmp(exit_jmp, 1);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003290
3291 panic("EFI application exited");
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003292out:
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003293 return EFI_EXIT(ret);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003294}
3295
3296/**
Mario Six8fac2912018-07-10 08:40:17 +02003297 * efi_handle_protocol() - get interface of a protocol on a handle
3298 * @handle: handle on which the protocol shall be opened
3299 * @protocol: GUID of the protocol
3300 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003301 *
3302 * This function implements the HandleProtocol service.
Mario Six8fac2912018-07-10 08:40:17 +02003303 *
3304 * See the Unified Extensible Firmware Interface (UEFI) specification for
3305 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003306 *
Mario Six8fac2912018-07-10 08:40:17 +02003307 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003308 */
AKASHI Takahirod99b1b32020-03-17 11:12:36 +09003309efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
3310 const efi_guid_t *protocol,
3311 void **protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01003312{
Heinrich Schuchardtef096152019-06-01 19:29:39 +02003313 return efi_open_protocol(handle, protocol, protocol_interface, efi_root,
xypron.glpk@gmx.de1bf5d872017-06-29 21:16:19 +02003314 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafc15d9212016-03-04 01:09:59 +01003315}
3316
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003317/**
Mario Six8fac2912018-07-10 08:40:17 +02003318 * efi_bind_controller() - bind a single driver to a controller
3319 * @controller_handle: controller handle
3320 * @driver_image_handle: driver handle
3321 * @remain_device_path: remaining path
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003322 *
Mario Six8fac2912018-07-10 08:40:17 +02003323 * Return: status code
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003324 */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003325static efi_status_t efi_bind_controller(
3326 efi_handle_t controller_handle,
3327 efi_handle_t driver_image_handle,
3328 struct efi_device_path *remain_device_path)
3329{
3330 struct efi_driver_binding_protocol *binding_protocol;
3331 efi_status_t r;
3332
3333 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3334 &efi_guid_driver_binding_protocol,
3335 (void **)&binding_protocol,
3336 driver_image_handle, NULL,
3337 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3338 if (r != EFI_SUCCESS)
3339 return r;
3340 r = EFI_CALL(binding_protocol->supported(binding_protocol,
3341 controller_handle,
3342 remain_device_path));
3343 if (r == EFI_SUCCESS)
3344 r = EFI_CALL(binding_protocol->start(binding_protocol,
3345 controller_handle,
3346 remain_device_path));
3347 EFI_CALL(efi_close_protocol(driver_image_handle,
3348 &efi_guid_driver_binding_protocol,
3349 driver_image_handle, NULL));
3350 return r;
3351}
3352
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003353/**
Mario Six8fac2912018-07-10 08:40:17 +02003354 * efi_connect_single_controller() - connect a single driver to a controller
3355 * @controller_handle: controller
3356 * @driver_image_handle: driver
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003357 * @remain_device_path: remaining path
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003358 *
Mario Six8fac2912018-07-10 08:40:17 +02003359 * Return: status code
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003360 */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003361static efi_status_t efi_connect_single_controller(
3362 efi_handle_t controller_handle,
3363 efi_handle_t *driver_image_handle,
3364 struct efi_device_path *remain_device_path)
3365{
3366 efi_handle_t *buffer;
3367 size_t count;
3368 size_t i;
3369 efi_status_t r;
3370 size_t connected = 0;
3371
3372 /* Get buffer with all handles with driver binding protocol */
3373 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3374 &efi_guid_driver_binding_protocol,
3375 NULL, &count, &buffer));
3376 if (r != EFI_SUCCESS)
3377 return r;
3378
Heinrich Schuchardtda8f9002019-07-03 20:27:24 +02003379 /* Context Override */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003380 if (driver_image_handle) {
3381 for (; *driver_image_handle; ++driver_image_handle) {
3382 for (i = 0; i < count; ++i) {
3383 if (buffer[i] == *driver_image_handle) {
3384 buffer[i] = NULL;
3385 r = efi_bind_controller(
3386 controller_handle,
3387 *driver_image_handle,
3388 remain_device_path);
3389 /*
3390 * For drivers that do not support the
3391 * controller or are already connected
3392 * we receive an error code here.
3393 */
3394 if (r == EFI_SUCCESS)
3395 ++connected;
3396 }
3397 }
3398 }
3399 }
3400
3401 /*
3402 * TODO: Some overrides are not yet implemented:
3403 * - Platform Driver Override
3404 * - Driver Family Override Search
3405 * - Bus Specific Driver Override
3406 */
3407
3408 /* Driver Binding Search */
3409 for (i = 0; i < count; ++i) {
3410 if (buffer[i]) {
3411 r = efi_bind_controller(controller_handle,
3412 buffer[i],
3413 remain_device_path);
3414 if (r == EFI_SUCCESS)
3415 ++connected;
3416 }
3417 }
3418
3419 efi_free_pool(buffer);
3420 if (!connected)
3421 return EFI_NOT_FOUND;
3422 return EFI_SUCCESS;
3423}
3424
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003425/**
Mario Six8fac2912018-07-10 08:40:17 +02003426 * efi_connect_controller() - connect a controller to a driver
3427 * @controller_handle: handle of the controller
3428 * @driver_image_handle: handle of the driver
3429 * @remain_device_path: device path of a child controller
3430 * @recursive: true to connect all child controllers
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003431 *
3432 * This function implements the ConnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02003433 *
3434 * See the Unified Extensible Firmware Interface (UEFI) specification for
3435 * details.
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003436 *
3437 * First all driver binding protocol handles are tried for binding drivers.
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003438 * Afterwards all handles that have opened a protocol of the controller
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003439 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3440 *
Mario Six8fac2912018-07-10 08:40:17 +02003441 * Return: status code
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003442 */
3443static efi_status_t EFIAPI efi_connect_controller(
3444 efi_handle_t controller_handle,
3445 efi_handle_t *driver_image_handle,
3446 struct efi_device_path *remain_device_path,
3447 bool recursive)
3448{
3449 efi_status_t r;
3450 efi_status_t ret = EFI_NOT_FOUND;
3451 struct efi_object *efiobj;
3452
Heinrich Schuchardt7c89fb02018-12-09 16:39:20 +01003453 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003454 remain_device_path, recursive);
3455
3456 efiobj = efi_search_obj(controller_handle);
3457 if (!efiobj) {
3458 ret = EFI_INVALID_PARAMETER;
3459 goto out;
3460 }
3461
3462 r = efi_connect_single_controller(controller_handle,
3463 driver_image_handle,
3464 remain_device_path);
3465 if (r == EFI_SUCCESS)
3466 ret = EFI_SUCCESS;
3467 if (recursive) {
3468 struct efi_handler *handler;
3469 struct efi_open_protocol_info_item *item;
3470
3471 list_for_each_entry(handler, &efiobj->protocols, link) {
3472 list_for_each_entry(item, &handler->open_infos, link) {
3473 if (item->info.attributes &
3474 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3475 r = EFI_CALL(efi_connect_controller(
3476 item->info.controller_handle,
3477 driver_image_handle,
3478 remain_device_path,
3479 recursive));
3480 if (r == EFI_SUCCESS)
3481 ret = EFI_SUCCESS;
3482 }
3483 }
3484 }
3485 }
Heinrich Schuchardtda8f9002019-07-03 20:27:24 +02003486 /* Check for child controller specified by end node */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003487 if (ret != EFI_SUCCESS && remain_device_path &&
3488 remain_device_path->type == DEVICE_PATH_TYPE_END)
3489 ret = EFI_SUCCESS;
3490out:
3491 return EFI_EXIT(ret);
3492}
3493
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003494/**
Mario Six8fac2912018-07-10 08:40:17 +02003495 * efi_reinstall_protocol_interface() - reinstall protocol interface
3496 * @handle: handle on which the protocol shall be reinstalled
3497 * @protocol: GUID of the protocol to be installed
3498 * @old_interface: interface to be removed
3499 * @new_interface: interface to be installed
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003500 *
3501 * This function implements the ReinstallProtocolInterface service.
Mario Six8fac2912018-07-10 08:40:17 +02003502 *
3503 * See the Unified Extensible Firmware Interface (UEFI) specification for
3504 * details.
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003505 *
3506 * The old interface is uninstalled. The new interface is installed.
3507 * Drivers are connected.
3508 *
Mario Six8fac2912018-07-10 08:40:17 +02003509 * Return: status code
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003510 */
3511static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3512 efi_handle_t handle, const efi_guid_t *protocol,
3513 void *old_interface, void *new_interface)
3514{
3515 efi_status_t ret;
3516
3517 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
3518 new_interface);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02003519
3520 /* Uninstall protocol but do not delete handle */
3521 ret = efi_uninstall_protocol(handle, protocol, old_interface);
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003522 if (ret != EFI_SUCCESS)
3523 goto out;
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02003524
3525 /* Install the new protocol */
3526 ret = efi_add_protocol(handle, protocol, new_interface);
3527 /*
3528 * The UEFI spec does not specify what should happen to the handle
3529 * if in case of an error no protocol interface remains on the handle.
3530 * So let's do nothing here.
3531 */
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003532 if (ret != EFI_SUCCESS)
3533 goto out;
3534 /*
3535 * The returned status code has to be ignored.
3536 * Do not create an error if no suitable driver for the handle exists.
3537 */
3538 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3539out:
3540 return EFI_EXIT(ret);
3541}
3542
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003543/**
Mario Six8fac2912018-07-10 08:40:17 +02003544 * efi_get_child_controllers() - get all child controllers associated to a driver
3545 * @efiobj: handle of the controller
3546 * @driver_handle: handle of the driver
3547 * @number_of_children: number of child controllers
3548 * @child_handle_buffer: handles of the the child controllers
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003549 *
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003550 * The allocated buffer has to be freed with free().
3551 *
Mario Six8fac2912018-07-10 08:40:17 +02003552 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003553 */
3554static efi_status_t efi_get_child_controllers(
3555 struct efi_object *efiobj,
3556 efi_handle_t driver_handle,
3557 efi_uintn_t *number_of_children,
3558 efi_handle_t **child_handle_buffer)
3559{
3560 struct efi_handler *handler;
3561 struct efi_open_protocol_info_item *item;
3562 efi_uintn_t count = 0, i;
3563 bool duplicate;
3564
3565 /* Count all child controller associations */
3566 list_for_each_entry(handler, &efiobj->protocols, link) {
3567 list_for_each_entry(item, &handler->open_infos, link) {
3568 if (item->info.agent_handle == driver_handle &&
3569 item->info.attributes &
3570 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3571 ++count;
3572 }
3573 }
3574 /*
3575 * Create buffer. In case of duplicate child controller assignments
3576 * the buffer will be too large. But that does not harm.
3577 */
3578 *number_of_children = 0;
Heinrich Schuchardt0f321b62020-07-07 04:21:26 +02003579 if (!count)
3580 return EFI_SUCCESS;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003581 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3582 if (!*child_handle_buffer)
3583 return EFI_OUT_OF_RESOURCES;
3584 /* Copy unique child handles */
3585 list_for_each_entry(handler, &efiobj->protocols, link) {
3586 list_for_each_entry(item, &handler->open_infos, link) {
3587 if (item->info.agent_handle == driver_handle &&
3588 item->info.attributes &
3589 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3590 /* Check this is a new child controller */
3591 duplicate = false;
3592 for (i = 0; i < *number_of_children; ++i) {
3593 if ((*child_handle_buffer)[i] ==
3594 item->info.controller_handle)
3595 duplicate = true;
3596 }
3597 /* Copy handle to buffer */
3598 if (!duplicate) {
3599 i = (*number_of_children)++;
3600 (*child_handle_buffer)[i] =
3601 item->info.controller_handle;
3602 }
3603 }
3604 }
3605 }
3606 return EFI_SUCCESS;
3607}
3608
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003609/**
Mario Six8fac2912018-07-10 08:40:17 +02003610 * efi_disconnect_controller() - disconnect a controller from a driver
3611 * @controller_handle: handle of the controller
3612 * @driver_image_handle: handle of the driver
3613 * @child_handle: handle of the child to destroy
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003614 *
3615 * This function implements the DisconnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02003616 *
3617 * See the Unified Extensible Firmware Interface (UEFI) specification for
3618 * details.
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003619 *
Mario Six8fac2912018-07-10 08:40:17 +02003620 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003621 */
3622static efi_status_t EFIAPI efi_disconnect_controller(
3623 efi_handle_t controller_handle,
3624 efi_handle_t driver_image_handle,
3625 efi_handle_t child_handle)
3626{
3627 struct efi_driver_binding_protocol *binding_protocol;
3628 efi_handle_t *child_handle_buffer = NULL;
3629 size_t number_of_children = 0;
3630 efi_status_t r;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003631 struct efi_object *efiobj;
Heinrich Schuchardtc7ce4042020-10-28 18:45:47 +01003632 bool sole_child;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003633
3634 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3635 child_handle);
3636
3637 efiobj = efi_search_obj(controller_handle);
3638 if (!efiobj) {
3639 r = EFI_INVALID_PARAMETER;
3640 goto out;
3641 }
3642
3643 if (child_handle && !efi_search_obj(child_handle)) {
3644 r = EFI_INVALID_PARAMETER;
3645 goto out;
3646 }
3647
3648 /* If no driver handle is supplied, disconnect all drivers */
3649 if (!driver_image_handle) {
3650 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3651 goto out;
3652 }
3653
3654 /* Create list of child handles */
Heinrich Schuchardtc7ce4042020-10-28 18:45:47 +01003655 r = efi_get_child_controllers(efiobj,
3656 driver_image_handle,
3657 &number_of_children,
3658 &child_handle_buffer);
3659 if (r != EFI_SUCCESS)
3660 return r;
3661 sole_child = (number_of_children == 1);
3662
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003663 if (child_handle) {
3664 number_of_children = 1;
Heinrich Schuchardtc7ce4042020-10-28 18:45:47 +01003665 free(child_handle_buffer);
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003666 child_handle_buffer = &child_handle;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003667 }
3668
3669 /* Get the driver binding protocol */
3670 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3671 &efi_guid_driver_binding_protocol,
3672 (void **)&binding_protocol,
3673 driver_image_handle, NULL,
3674 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt79622842019-09-13 18:20:40 +02003675 if (r != EFI_SUCCESS) {
3676 r = EFI_INVALID_PARAMETER;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003677 goto out;
Heinrich Schuchardt79622842019-09-13 18:20:40 +02003678 }
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003679 /* Remove the children */
3680 if (number_of_children) {
3681 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3682 controller_handle,
3683 number_of_children,
3684 child_handle_buffer));
Heinrich Schuchardt79622842019-09-13 18:20:40 +02003685 if (r != EFI_SUCCESS) {
3686 r = EFI_DEVICE_ERROR;
3687 goto out;
3688 }
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003689 }
3690 /* Remove the driver */
Heinrich Schuchardtc7ce4042020-10-28 18:45:47 +01003691 if (!child_handle || sole_child) {
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003692 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3693 controller_handle,
3694 0, NULL));
Heinrich Schuchardt79622842019-09-13 18:20:40 +02003695 if (r != EFI_SUCCESS) {
3696 r = EFI_DEVICE_ERROR;
3697 goto out;
3698 }
3699 }
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003700 EFI_CALL(efi_close_protocol(driver_image_handle,
3701 &efi_guid_driver_binding_protocol,
3702 driver_image_handle, NULL));
Heinrich Schuchardt79622842019-09-13 18:20:40 +02003703 r = EFI_SUCCESS;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003704out:
3705 if (!child_handle)
3706 free(child_handle_buffer);
3707 return EFI_EXIT(r);
3708}
3709
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003710static struct efi_boot_services efi_boot_services = {
Alexander Grafc15d9212016-03-04 01:09:59 +01003711 .hdr = {
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +02003712 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3713 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +02003714 .headersize = sizeof(struct efi_boot_services),
Alexander Grafc15d9212016-03-04 01:09:59 +01003715 },
3716 .raise_tpl = efi_raise_tpl,
3717 .restore_tpl = efi_restore_tpl,
3718 .allocate_pages = efi_allocate_pages_ext,
3719 .free_pages = efi_free_pages_ext,
3720 .get_memory_map = efi_get_memory_map_ext,
Stefan Brüns5a09aef2016-10-09 22:17:18 +02003721 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns67b67d92016-10-09 22:17:26 +02003722 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +02003723 .create_event = efi_create_event_ext,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +02003724 .set_timer = efi_set_timer_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003725 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02003726 .signal_event = efi_signal_event_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003727 .close_event = efi_close_event,
3728 .check_event = efi_check_event,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01003729 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01003730 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01003731 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01003732 .handle_protocol = efi_handle_protocol,
3733 .reserved = NULL,
3734 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02003735 .locate_handle = efi_locate_handle_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003736 .locate_device_path = efi_locate_device_path,
Alexander Grafc5c11632016-08-19 01:23:24 +02003737 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003738 .load_image = efi_load_image,
3739 .start_image = efi_start_image,
Alexander Graf988c0662016-05-20 23:28:23 +02003740 .exit = efi_exit,
Alexander Grafc15d9212016-03-04 01:09:59 +01003741 .unload_image = efi_unload_image,
3742 .exit_boot_services = efi_exit_boot_services,
3743 .get_next_monotonic_count = efi_get_next_monotonic_count,
3744 .stall = efi_stall,
3745 .set_watchdog_timer = efi_set_watchdog_timer,
3746 .connect_controller = efi_connect_controller,
3747 .disconnect_controller = efi_disconnect_controller,
3748 .open_protocol = efi_open_protocol,
3749 .close_protocol = efi_close_protocol,
3750 .open_protocol_information = efi_open_protocol_information,
3751 .protocols_per_handle = efi_protocols_per_handle,
3752 .locate_handle_buffer = efi_locate_handle_buffer,
3753 .locate_protocol = efi_locate_protocol,
Heinrich Schuchardt91064592018-02-18 15:17:49 +01003754 .install_multiple_protocol_interfaces =
3755 efi_install_multiple_protocol_interfaces,
3756 .uninstall_multiple_protocol_interfaces =
3757 efi_uninstall_multiple_protocol_interfaces,
Alexander Grafc15d9212016-03-04 01:09:59 +01003758 .calculate_crc32 = efi_calculate_crc32,
3759 .copy_mem = efi_copy_mem,
3760 .set_mem = efi_set_mem,
Heinrich Schuchardt717c4582018-02-04 23:05:13 +01003761 .create_event_ex = efi_create_event_ex,
Alexander Grafc15d9212016-03-04 01:09:59 +01003762};
3763
Heinrich Schuchardt27685f72018-06-28 12:45:30 +02003764static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
Alexander Grafc15d9212016-03-04 01:09:59 +01003765
Alexander Graf393dd912016-10-14 13:45:30 +02003766struct efi_system_table __efi_runtime_data systab = {
Alexander Grafc15d9212016-03-04 01:09:59 +01003767 .hdr = {
3768 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +02003769 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +02003770 .headersize = sizeof(struct efi_system_table),
Alexander Grafc15d9212016-03-04 01:09:59 +01003771 },
Heinrich Schuchardt27685f72018-06-28 12:45:30 +02003772 .fw_vendor = firmware_vendor,
3773 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
Heinrich Schuchardt372b8932019-06-15 14:51:06 +02003774 .runtime = &efi_runtime_services,
Alexander Grafc15d9212016-03-04 01:09:59 +01003775 .nr_tables = 0,
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003776 .tables = NULL,
Alexander Grafc15d9212016-03-04 01:09:59 +01003777};
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003778
3779/**
3780 * efi_initialize_system_table() - Initialize system table
3781 *
Heinrich Schuchardt7b4b2a22018-09-03 05:00:43 +02003782 * Return: status code
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003783 */
3784efi_status_t efi_initialize_system_table(void)
3785{
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003786 efi_status_t ret;
3787
3788 /* Allocate configuration table array */
3789 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3790 EFI_MAX_CONFIGURATION_TABLES *
3791 sizeof(struct efi_configuration_table),
3792 (void **)&systab.tables);
3793
Heinrich Schuchardt98f89362019-06-29 02:00:16 +02003794 /*
3795 * These entries will be set to NULL in ExitBootServices(). To avoid
3796 * relocation in SetVirtualAddressMap(), set them dynamically.
3797 */
3798 systab.con_in = &efi_con_in;
3799 systab.con_out = &efi_con_out;
3800 systab.std_err = &efi_con_out;
3801 systab.boottime = &efi_boot_services;
3802
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003803 /* Set CRC32 field in table headers */
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003804 efi_update_table_header_crc32(&systab.hdr);
3805 efi_update_table_header_crc32(&efi_runtime_services.hdr);
3806 efi_update_table_header_crc32(&efi_boot_services.hdr);
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003807
3808 return ret;
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003809}