blob: b799fcf1f22f3a7b64bcaa5e61fdeb599369efcb [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafbee91162016-03-04 01:09:59 +01002/*
Heinrich Schuchardt359a6992019-07-03 20:27:24 +02003 * EFI application boot time services
Alexander Grafbee91162016-03-04 01:09:59 +01004 *
Heinrich Schuchardt359a6992019-07-03 20:27:24 +02005 * Copyright (c) 2016 Alexander Graf
Alexander Grafbee91162016-03-04 01:09:59 +01006 */
7
Alexander Grafbee91162016-03-04 01:09:59 +01008#include <common.h>
Ilias Apalodimas19763ea2020-10-22 01:04:20 +03009#include <bootm.h>
Heinrich Schuchardt7d963322017-10-05 16:14:14 +020010#include <div64.h>
Ilias Apalodimas529441c2020-10-22 01:04:21 +030011#include <dm/device.h>
12#include <dm/root.h>
Alexander Grafbee91162016-03-04 01:09:59 +010013#include <efi_loader.h>
Simon Glass36bf4462019-11-14 12:57:42 -070014#include <irq_func.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Alexander Grafbee91162016-03-04 01:09:59 +010016#include <malloc.h>
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +020017#include <pe.h>
Ilias Apalodimas19763ea2020-10-22 01:04:20 +030018#include <time.h>
Simon Glass3db71102019-11-14 12:57:16 -070019#include <u-boot/crc.h>
Ilias Apalodimas529441c2020-10-22 01:04:21 +030020#include <usb.h>
Alexander Grafbee91162016-03-04 01:09:59 +010021#include <watchdog.h>
Ilias Apalodimas19763ea2020-10-22 01:04:20 +030022#include <linux/libfdt_env.h>
Alexander Grafbee91162016-03-04 01:09:59 +010023
24DECLARE_GLOBAL_DATA_PTR;
25
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +020026/* Task priority level */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +010027static efi_uintn_t efi_tpl = TPL_APPLICATION;
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +020028
Alexander Grafbee91162016-03-04 01:09:59 +010029/* This list contains all the EFI objects our payload has access to */
30LIST_HEAD(efi_obj_list);
31
Heinrich Schuchardt43bce442018-02-18 15:17:50 +010032/* List of all events */
Heinrich Schuchardt14b40482019-07-11 20:15:09 +020033__efi_runtime_data LIST_HEAD(efi_events);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +010034
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +020035/* List of queued events */
36LIST_HEAD(efi_event_queue);
37
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +020038/* Flag to disable timer activity in ExitBootServices() */
39static bool timers_enabled = true;
40
Heinrich Schuchardtfccd3d92020-11-12 21:26:28 +010041/* Flag used by the selftest to avoid detaching devices in ExitBootServices() */
42bool efi_st_keep_devices;
43
Heinrich Schuchardtab15d412019-05-04 17:27:54 +020044/* List of all events registered by RegisterProtocolNotify() */
45LIST_HEAD(efi_register_notify_events);
46
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +010047/* Handle of the currently executing image */
48static efi_handle_t current_image;
49
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +020050#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Alexander Grafbee91162016-03-04 01:09:59 +010051/*
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +020052 * The "gd" pointer lives in a register on ARM and RISC-V that we declare
Alexander Grafbee91162016-03-04 01:09:59 +010053 * fixed when compiling U-Boot. However, the payload does not know about that
54 * restriction so we need to manually swap its and our view of that register on
55 * EFI callback entry/exit.
56 */
Heinrich Schuchardt4f7dc5f2020-05-27 01:58:30 +020057static volatile gd_t *efi_gd, *app_gd;
Simon Glass65e4c0b2016-09-25 15:27:35 -060058#endif
Alexander Grafbee91162016-03-04 01:09:59 +010059
Heinrich Schuchardt914df752019-02-09 14:10:39 +010060/* 1 if inside U-Boot code, 0 if inside EFI payload code */
61static int entry_count = 1;
Rob Clarkaf65db82017-07-27 08:04:19 -040062static int nesting_level;
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +010063/* GUID of the device tree table */
64const efi_guid_t efi_guid_fdt = EFI_FDT_GUID;
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +010065/* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
66const efi_guid_t efi_guid_driver_binding_protocol =
67 EFI_DRIVER_BINDING_PROTOCOL_GUID;
Rob Clarkc160d2f2017-07-27 08:04:18 -040068
Heinrich Schuchardta3a28f52018-02-18 15:17:51 +010069/* event group ExitBootServices() invoked */
70const efi_guid_t efi_guid_event_group_exit_boot_services =
71 EFI_EVENT_GROUP_EXIT_BOOT_SERVICES;
72/* event group SetVirtualAddressMap() invoked */
73const efi_guid_t efi_guid_event_group_virtual_address_change =
74 EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE;
75/* event group memory map changed */
76const efi_guid_t efi_guid_event_group_memory_map_change =
77 EFI_EVENT_GROUP_MEMORY_MAP_CHANGE;
78/* event group boot manager about to boot */
79const efi_guid_t efi_guid_event_group_ready_to_boot =
80 EFI_EVENT_GROUP_READY_TO_BOOT;
81/* event group ResetSystem() invoked (before ExitBootServices) */
82const efi_guid_t efi_guid_event_group_reset_system =
83 EFI_EVENT_GROUP_RESET_SYSTEM;
Heinrich Schuchardtb6f11092020-12-04 03:33:41 +010084/* GUIDs of the Load File and Load File2 protocols */
85const efi_guid_t efi_guid_load_file_protocol = EFI_LOAD_FILE_PROTOCOL_GUID;
86const efi_guid_t efi_guid_load_file2_protocol = EFI_LOAD_FILE2_PROTOCOL_GUID;
Heinrich Schuchardta3a28f52018-02-18 15:17:51 +010087
Heinrich Schuchardt2074f702018-01-11 08:16:09 +010088static efi_status_t EFIAPI efi_disconnect_controller(
89 efi_handle_t controller_handle,
90 efi_handle_t driver_image_handle,
91 efi_handle_t child_handle);
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +010092
Rob Clarkc160d2f2017-07-27 08:04:18 -040093/* Called on every callback entry */
94int __efi_entry_check(void)
95{
96 int ret = entry_count++ == 0;
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +020097#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Rob Clarkc160d2f2017-07-27 08:04:18 -040098 assert(efi_gd);
99 app_gd = gd;
Heinrich Schuchardt4f7dc5f2020-05-27 01:58:30 +0200100 set_gd(efi_gd);
Rob Clarkc160d2f2017-07-27 08:04:18 -0400101#endif
102 return ret;
103}
104
105/* Called on every callback exit */
106int __efi_exit_check(void)
107{
108 int ret = --entry_count == 0;
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +0200109#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Heinrich Schuchardt4f7dc5f2020-05-27 01:58:30 +0200110 set_gd(app_gd);
Rob Clarkc160d2f2017-07-27 08:04:18 -0400111#endif
112 return ret;
113}
114
Heinrich Schuchardte7d64062020-07-18 09:53:01 +0200115/**
116 * efi_save_gd() - save global data register
117 *
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +0200118 * On the ARM and RISC-V architectures gd is mapped to a fixed register.
Heinrich Schuchardte7d64062020-07-18 09:53:01 +0200119 * As this register may be overwritten by an EFI payload we save it here
120 * and restore it on every callback entered.
121 *
122 * This function is called after relocation from initr_reloc_global_data().
123 */
Alexander Grafbee91162016-03-04 01:09:59 +0100124void efi_save_gd(void)
125{
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +0200126#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Alexander Grafbee91162016-03-04 01:09:59 +0100127 efi_gd = gd;
Simon Glass65e4c0b2016-09-25 15:27:35 -0600128#endif
Alexander Grafbee91162016-03-04 01:09:59 +0100129}
130
Heinrich Schuchardte7d64062020-07-18 09:53:01 +0200131/**
132 * efi_restore_gd() - restore global data register
133 *
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +0200134 * On the ARM and RISC-V architectures gd is mapped to a fixed register.
Heinrich Schuchardte7d64062020-07-18 09:53:01 +0200135 * Restore it after returning from the UEFI world to the value saved via
136 * efi_save_gd().
Rob Clarkc160d2f2017-07-27 08:04:18 -0400137 */
Alexander Grafbee91162016-03-04 01:09:59 +0100138void efi_restore_gd(void)
139{
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +0200140#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Alexander Grafbee91162016-03-04 01:09:59 +0100141 /* Only restore if we're already in EFI context */
142 if (!efi_gd)
143 return;
Heinrich Schuchardt4f7dc5f2020-05-27 01:58:30 +0200144 set_gd(efi_gd);
Simon Glass65e4c0b2016-09-25 15:27:35 -0600145#endif
Alexander Grafbee91162016-03-04 01:09:59 +0100146}
147
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200148/**
Mario Six78a88f72018-07-10 08:40:17 +0200149 * indent_string() - returns a string for indenting with two spaces per level
150 * @level: indent level
Heinrich Schuchardtc8df80c2018-01-24 19:21:36 +0100151 *
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200152 * A maximum of ten indent levels is supported. Higher indent levels will be
153 * truncated.
154 *
Mario Six78a88f72018-07-10 08:40:17 +0200155 * Return: A string for indenting with two spaces per level is
156 * returned.
Rob Clarkaf65db82017-07-27 08:04:19 -0400157 */
158static const char *indent_string(int level)
159{
160 const char *indent = " ";
161 const int max = strlen(indent);
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +0100162
Rob Clarkaf65db82017-07-27 08:04:19 -0400163 level = min(max, level * 2);
164 return &indent[max - level];
165}
166
Heinrich Schuchardtae0bd3a2017-08-18 17:45:16 +0200167const char *__efi_nesting(void)
168{
169 return indent_string(nesting_level);
170}
171
Rob Clarkaf65db82017-07-27 08:04:19 -0400172const char *__efi_nesting_inc(void)
173{
174 return indent_string(nesting_level++);
175}
176
177const char *__efi_nesting_dec(void)
178{
179 return indent_string(--nesting_level);
180}
181
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200182/**
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200183 * efi_event_is_queued() - check if an event is queued
184 *
185 * @event: event
186 * Return: true if event is queued
187 */
188static bool efi_event_is_queued(struct efi_event *event)
189{
190 return !!event->queue_link.next;
191}
192
193/**
194 * efi_process_event_queue() - process event queue
195 */
196static void efi_process_event_queue(void)
197{
198 while (!list_empty(&efi_event_queue)) {
199 struct efi_event *event;
200 efi_uintn_t old_tpl;
201
202 event = list_first_entry(&efi_event_queue, struct efi_event,
203 queue_link);
204 if (efi_tpl >= event->notify_tpl)
205 return;
206 list_del(&event->queue_link);
207 event->queue_link.next = NULL;
208 event->queue_link.prev = NULL;
209 /* Events must be executed at the event's TPL */
210 old_tpl = efi_tpl;
211 efi_tpl = event->notify_tpl;
212 EFI_CALL_VOID(event->notify_function(event,
213 event->notify_context));
214 efi_tpl = old_tpl;
215 if (event->type == EVT_NOTIFY_SIGNAL)
216 event->is_signaled = 0;
217 }
218}
219
220/**
Mario Six78a88f72018-07-10 08:40:17 +0200221 * efi_queue_event() - queue an EFI event
222 * @event: event to signal
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200223 *
224 * This function queues the notification function of the event for future
225 * execution.
226 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200227 */
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200228static void efi_queue_event(struct efi_event *event)
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200229{
Heinrich Schuchardt2b8568f2020-03-06 21:56:10 +0100230 struct efi_event *item;
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200231
232 if (!event->notify_function)
233 return;
234
235 if (!efi_event_is_queued(event)) {
236 /*
237 * Events must be notified in order of decreasing task priority
238 * level. Insert the new event accordingly.
239 */
240 list_for_each_entry(item, &efi_event_queue, queue_link) {
241 if (item->notify_tpl < event->notify_tpl) {
242 list_add_tail(&event->queue_link,
243 &item->queue_link);
244 event = NULL;
245 break;
246 }
247 }
248 if (event)
249 list_add_tail(&event->queue_link, &efi_event_queue);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200250 }
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200251 efi_process_event_queue();
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200252}
253
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200254/**
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200255 * is_valid_tpl() - check if the task priority level is valid
256 *
257 * @tpl: TPL level to check
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200258 * Return: status code
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200259 */
260efi_status_t is_valid_tpl(efi_uintn_t tpl)
261{
262 switch (tpl) {
263 case TPL_APPLICATION:
264 case TPL_CALLBACK:
265 case TPL_NOTIFY:
266 case TPL_HIGH_LEVEL:
267 return EFI_SUCCESS;
268 default:
269 return EFI_INVALID_PARAMETER;
270 }
271}
272
273/**
Mario Six78a88f72018-07-10 08:40:17 +0200274 * efi_signal_event() - signal an EFI event
275 * @event: event to signal
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100276 *
Heinrich Schuchardt2a0f80f2020-12-28 00:59:09 +0100277 * This function signals an event. If the event belongs to an event group, all
278 * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL,
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100279 * their notification function is queued.
280 *
281 * For the SignalEvent service see efi_signal_event_ext.
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100282 */
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200283void efi_signal_event(struct efi_event *event)
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100284{
Heinrich Schuchardtdfa306e2019-06-06 01:51:50 +0200285 if (event->is_signaled)
286 return;
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100287 if (event->group) {
288 struct efi_event *evt;
289
290 /*
291 * The signaled state has to set before executing any
292 * notification function
293 */
294 list_for_each_entry(evt, &efi_events, link) {
295 if (!evt->group || guidcmp(evt->group, event->group))
296 continue;
297 if (evt->is_signaled)
298 continue;
299 evt->is_signaled = true;
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100300 }
301 list_for_each_entry(evt, &efi_events, link) {
302 if (!evt->group || guidcmp(evt->group, event->group))
303 continue;
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200304 efi_queue_event(evt);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100305 }
Heinrich Schuchardt3626e532019-05-05 00:07:34 +0200306 } else {
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100307 event->is_signaled = true;
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200308 efi_queue_event(event);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100309 }
310}
311
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200312/**
Mario Six78a88f72018-07-10 08:40:17 +0200313 * efi_raise_tpl() - raise the task priority level
314 * @new_tpl: new value of the task priority level
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200315 *
316 * This function implements the RaiseTpl service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200317 *
Mario Six78a88f72018-07-10 08:40:17 +0200318 * See the Unified Extensible Firmware Interface (UEFI) specification for
319 * details.
320 *
321 * Return: old value of the task priority level
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200322 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100323static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
Alexander Grafbee91162016-03-04 01:09:59 +0100324{
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100325 efi_uintn_t old_tpl = efi_tpl;
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200326
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200327 EFI_ENTRY("0x%zx", new_tpl);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200328
329 if (new_tpl < efi_tpl)
Heinrich Schuchardt529886a2019-05-05 11:56:23 +0200330 EFI_PRINT("WARNING: new_tpl < current_tpl in %s\n", __func__);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200331 efi_tpl = new_tpl;
332 if (efi_tpl > TPL_HIGH_LEVEL)
333 efi_tpl = TPL_HIGH_LEVEL;
334
335 EFI_EXIT(EFI_SUCCESS);
336 return old_tpl;
Alexander Grafbee91162016-03-04 01:09:59 +0100337}
338
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200339/**
Mario Six78a88f72018-07-10 08:40:17 +0200340 * efi_restore_tpl() - lower the task priority level
341 * @old_tpl: value of the task priority level to be restored
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200342 *
343 * This function implements the RestoreTpl service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200344 *
Mario Six78a88f72018-07-10 08:40:17 +0200345 * See the Unified Extensible Firmware Interface (UEFI) specification for
346 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200347 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100348static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
Alexander Grafbee91162016-03-04 01:09:59 +0100349{
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200350 EFI_ENTRY("0x%zx", old_tpl);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200351
352 if (old_tpl > efi_tpl)
Heinrich Schuchardt529886a2019-05-05 11:56:23 +0200353 EFI_PRINT("WARNING: old_tpl > current_tpl in %s\n", __func__);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200354 efi_tpl = old_tpl;
355 if (efi_tpl > TPL_HIGH_LEVEL)
356 efi_tpl = TPL_HIGH_LEVEL;
357
Heinrich Schuchardt0f7fcc72018-03-24 18:40:21 +0100358 /*
359 * Lowering the TPL may have made queued events eligible for execution.
360 */
361 efi_timer_check();
362
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200363 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +0100364}
365
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200366/**
Mario Six78a88f72018-07-10 08:40:17 +0200367 * efi_allocate_pages_ext() - allocate memory pages
368 * @type: type of allocation to be performed
369 * @memory_type: usage type of the allocated memory
370 * @pages: number of pages to be allocated
371 * @memory: allocated memory
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200372 *
373 * This function implements the AllocatePages service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200374 *
Mario Six78a88f72018-07-10 08:40:17 +0200375 * See the Unified Extensible Firmware Interface (UEFI) specification for
376 * details.
377 *
378 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200379 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900380static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100381 efi_uintn_t pages,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900382 uint64_t *memory)
Alexander Grafbee91162016-03-04 01:09:59 +0100383{
384 efi_status_t r;
385
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100386 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
Alexander Grafbee91162016-03-04 01:09:59 +0100387 r = efi_allocate_pages(type, memory_type, pages, memory);
388 return EFI_EXIT(r);
389}
390
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200391/**
Mario Six78a88f72018-07-10 08:40:17 +0200392 * efi_free_pages_ext() - Free memory pages.
393 * @memory: start of the memory area to be freed
394 * @pages: number of pages to be freed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200395 *
396 * This function implements the FreePages service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200397 *
Mario Six78a88f72018-07-10 08:40:17 +0200398 * See the Unified Extensible Firmware Interface (UEFI) specification for
399 * details.
400 *
401 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200402 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900403static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100404 efi_uintn_t pages)
Alexander Grafbee91162016-03-04 01:09:59 +0100405{
406 efi_status_t r;
407
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900408 EFI_ENTRY("%llx, 0x%zx", memory, pages);
Alexander Grafbee91162016-03-04 01:09:59 +0100409 r = efi_free_pages(memory, pages);
410 return EFI_EXIT(r);
411}
412
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200413/**
Mario Six78a88f72018-07-10 08:40:17 +0200414 * efi_get_memory_map_ext() - get map describing memory usage
415 * @memory_map_size: on entry the size, in bytes, of the memory map buffer,
416 * on exit the size of the copied memory map
417 * @memory_map: buffer to which the memory map is written
418 * @map_key: key for the memory map
419 * @descriptor_size: size of an individual memory descriptor
420 * @descriptor_version: version number of the memory descriptor structure
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200421 *
422 * This function implements the GetMemoryMap service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200423 *
Mario Six78a88f72018-07-10 08:40:17 +0200424 * See the Unified Extensible Firmware Interface (UEFI) specification for
425 * details.
426 *
427 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200428 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900429static efi_status_t EFIAPI efi_get_memory_map_ext(
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100430 efi_uintn_t *memory_map_size,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900431 struct efi_mem_desc *memory_map,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100432 efi_uintn_t *map_key,
433 efi_uintn_t *descriptor_size,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900434 uint32_t *descriptor_version)
Alexander Grafbee91162016-03-04 01:09:59 +0100435{
436 efi_status_t r;
437
438 EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
439 map_key, descriptor_size, descriptor_version);
440 r = efi_get_memory_map(memory_map_size, memory_map, map_key,
441 descriptor_size, descriptor_version);
442 return EFI_EXIT(r);
443}
444
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200445/**
Mario Six78a88f72018-07-10 08:40:17 +0200446 * efi_allocate_pool_ext() - allocate memory from pool
447 * @pool_type: type of the pool from which memory is to be allocated
448 * @size: number of bytes to be allocated
449 * @buffer: allocated memory
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200450 *
451 * This function implements the AllocatePool service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200452 *
Mario Six78a88f72018-07-10 08:40:17 +0200453 * See the Unified Extensible Firmware Interface (UEFI) specification for
454 * details.
455 *
456 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200457 */
Stefan Brünsead12742016-10-09 22:17:18 +0200458static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100459 efi_uintn_t size,
Stefan Brünsead12742016-10-09 22:17:18 +0200460 void **buffer)
Alexander Grafbee91162016-03-04 01:09:59 +0100461{
Alexander Graf1cd29f02016-03-24 01:37:37 +0100462 efi_status_t r;
463
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100464 EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
Stefan Brünsead12742016-10-09 22:17:18 +0200465 r = efi_allocate_pool(pool_type, size, buffer);
Alexander Graf1cd29f02016-03-24 01:37:37 +0100466 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +0100467}
468
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200469/**
Mario Six78a88f72018-07-10 08:40:17 +0200470 * efi_free_pool_ext() - free memory from pool
471 * @buffer: start of memory to be freed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200472 *
473 * This function implements the FreePool service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200474 *
Mario Six78a88f72018-07-10 08:40:17 +0200475 * See the Unified Extensible Firmware Interface (UEFI) specification for
476 * details.
477 *
478 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200479 */
Stefan Brüns42417bc2016-10-09 22:17:26 +0200480static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
Alexander Grafbee91162016-03-04 01:09:59 +0100481{
Alexander Graf1cd29f02016-03-24 01:37:37 +0100482 efi_status_t r;
483
484 EFI_ENTRY("%p", buffer);
Stefan Brüns42417bc2016-10-09 22:17:26 +0200485 r = efi_free_pool(buffer);
Alexander Graf1cd29f02016-03-24 01:37:37 +0100486 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +0100487}
488
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200489/**
Heinrich Schuchardte6023be2019-05-01 09:42:39 +0200490 * efi_add_handle() - add a new handle to the object list
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100491 *
Heinrich Schuchardte6023be2019-05-01 09:42:39 +0200492 * @handle: handle to be added
493 *
494 * The protocols list is initialized. The handle is added to the list of known
495 * UEFI objects.
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100496 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200497void efi_add_handle(efi_handle_t handle)
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100498{
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200499 if (!handle)
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100500 return;
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200501 INIT_LIST_HEAD(&handle->protocols);
502 list_add_tail(&handle->link, &efi_obj_list);
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100503}
504
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200505/**
Mario Six78a88f72018-07-10 08:40:17 +0200506 * efi_create_handle() - create handle
507 * @handle: new handle
Heinrich Schuchardt2edab5e2017-10-26 19:25:49 +0200508 *
Mario Six78a88f72018-07-10 08:40:17 +0200509 * Return: status code
Heinrich Schuchardt2edab5e2017-10-26 19:25:49 +0200510 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100511efi_status_t efi_create_handle(efi_handle_t *handle)
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200512{
513 struct efi_object *obj;
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200514
Heinrich Schuchardtd29e7822018-05-27 16:47:21 +0200515 obj = calloc(1, sizeof(struct efi_object));
516 if (!obj)
517 return EFI_OUT_OF_RESOURCES;
518
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100519 efi_add_handle(obj);
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200520 *handle = obj;
Heinrich Schuchardtd29e7822018-05-27 16:47:21 +0200521
522 return EFI_SUCCESS;
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200523}
524
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200525/**
Mario Six78a88f72018-07-10 08:40:17 +0200526 * efi_search_protocol() - find a protocol on a handle.
527 * @handle: handle
528 * @protocol_guid: GUID of the protocol
529 * @handler: reference to the protocol
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100530 *
Mario Six78a88f72018-07-10 08:40:17 +0200531 * Return: status code
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100532 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100533efi_status_t efi_search_protocol(const efi_handle_t handle,
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100534 const efi_guid_t *protocol_guid,
535 struct efi_handler **handler)
536{
537 struct efi_object *efiobj;
538 struct list_head *lhandle;
539
540 if (!handle || !protocol_guid)
541 return EFI_INVALID_PARAMETER;
542 efiobj = efi_search_obj(handle);
543 if (!efiobj)
544 return EFI_INVALID_PARAMETER;
545 list_for_each(lhandle, &efiobj->protocols) {
546 struct efi_handler *protocol;
547
548 protocol = list_entry(lhandle, struct efi_handler, link);
549 if (!guidcmp(protocol->guid, protocol_guid)) {
550 if (handler)
551 *handler = protocol;
552 return EFI_SUCCESS;
553 }
554 }
555 return EFI_NOT_FOUND;
556}
557
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200558/**
Mario Six78a88f72018-07-10 08:40:17 +0200559 * efi_remove_protocol() - delete protocol from a handle
560 * @handle: handle from which the protocol shall be deleted
561 * @protocol: GUID of the protocol to be deleted
562 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100563 *
Mario Six78a88f72018-07-10 08:40:17 +0200564 * Return: status code
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100565 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100566efi_status_t efi_remove_protocol(const efi_handle_t handle,
567 const efi_guid_t *protocol,
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100568 void *protocol_interface)
569{
570 struct efi_handler *handler;
571 efi_status_t ret;
572
573 ret = efi_search_protocol(handle, protocol, &handler);
574 if (ret != EFI_SUCCESS)
575 return ret;
Heinrich Schuchardt1f470e12018-05-11 12:09:21 +0200576 if (handler->protocol_interface != protocol_interface)
Heinrich Schuchardt96aa99c2019-05-10 20:06:48 +0200577 return EFI_NOT_FOUND;
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100578 list_del(&handler->link);
579 free(handler);
580 return EFI_SUCCESS;
581}
582
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200583/**
Mario Six78a88f72018-07-10 08:40:17 +0200584 * efi_remove_all_protocols() - delete all protocols from a handle
585 * @handle: handle from which the protocols shall be deleted
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100586 *
Mario Six78a88f72018-07-10 08:40:17 +0200587 * Return: status code
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100588 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100589efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100590{
591 struct efi_object *efiobj;
Heinrich Schuchardt32e6fed2018-01-11 08:15:55 +0100592 struct efi_handler *protocol;
593 struct efi_handler *pos;
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100594
595 efiobj = efi_search_obj(handle);
596 if (!efiobj)
597 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt32e6fed2018-01-11 08:15:55 +0100598 list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100599 efi_status_t ret;
600
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100601 ret = efi_remove_protocol(handle, protocol->guid,
602 protocol->protocol_interface);
603 if (ret != EFI_SUCCESS)
604 return ret;
605 }
606 return EFI_SUCCESS;
607}
608
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200609/**
Mario Six78a88f72018-07-10 08:40:17 +0200610 * efi_delete_handle() - delete handle
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100611 *
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +0200612 * @handle: handle to delete
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100613 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200614void efi_delete_handle(efi_handle_t handle)
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100615{
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200616 if (!handle)
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100617 return;
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200618 efi_remove_all_protocols(handle);
619 list_del(&handle->link);
620 free(handle);
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100621}
622
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200623/**
Mario Six78a88f72018-07-10 08:40:17 +0200624 * efi_is_event() - check if a pointer is a valid event
625 * @event: pointer to check
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100626 *
Mario Six78a88f72018-07-10 08:40:17 +0200627 * Return: status code
Alexander Grafbee91162016-03-04 01:09:59 +0100628 */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100629static efi_status_t efi_is_event(const struct efi_event *event)
630{
631 const struct efi_event *evt;
632
633 if (!event)
634 return EFI_INVALID_PARAMETER;
635 list_for_each_entry(evt, &efi_events, link) {
636 if (evt == event)
637 return EFI_SUCCESS;
638 }
639 return EFI_INVALID_PARAMETER;
640}
Alexander Grafbee91162016-03-04 01:09:59 +0100641
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200642/**
Mario Six78a88f72018-07-10 08:40:17 +0200643 * efi_create_event() - create an event
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +0200644 *
Mario Six78a88f72018-07-10 08:40:17 +0200645 * @type: type of the event to create
646 * @notify_tpl: task priority level of the event
647 * @notify_function: notification function of the event
648 * @notify_context: pointer passed to the notification function
649 * @group: event group
650 * @event: created event
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200651 *
652 * This function is used inside U-Boot code to create an event.
653 *
654 * For the API function implementing the CreateEvent service see
655 * efi_create_event_ext.
656 *
Mario Six78a88f72018-07-10 08:40:17 +0200657 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200658 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100659efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200660 void (EFIAPI *notify_function) (
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200661 struct efi_event *event,
662 void *context),
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100663 void *notify_context, efi_guid_t *group,
664 struct efi_event **event)
Alexander Grafbee91162016-03-04 01:09:59 +0100665{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100666 struct efi_event *evt;
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200667 efi_status_t ret;
668 int pool_type;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200669
Jonathan Graya95343b2017-03-12 19:26:07 +1100670 if (event == NULL)
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200671 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100672
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200673 switch (type) {
674 case 0:
675 case EVT_TIMER:
676 case EVT_NOTIFY_SIGNAL:
677 case EVT_TIMER | EVT_NOTIFY_SIGNAL:
678 case EVT_NOTIFY_WAIT:
679 case EVT_TIMER | EVT_NOTIFY_WAIT:
680 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200681 pool_type = EFI_BOOT_SERVICES_DATA;
682 break;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200683 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200684 pool_type = EFI_RUNTIME_SERVICES_DATA;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200685 break;
686 default:
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200687 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200688 }
Jonathan Graya95343b2017-03-12 19:26:07 +1100689
AKASHI Takahiro3748ed92018-08-10 15:36:32 +0900690 if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) &&
Heinrich Schuchardt751e9282019-04-25 07:30:41 +0200691 (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS))
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200692 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100693
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200694 ret = efi_allocate_pool(pool_type, sizeof(struct efi_event),
695 (void **)&evt);
696 if (ret != EFI_SUCCESS)
697 return ret;
698 memset(evt, 0, sizeof(struct efi_event));
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100699 evt->type = type;
700 evt->notify_tpl = notify_tpl;
701 evt->notify_function = notify_function;
702 evt->notify_context = notify_context;
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100703 evt->group = group;
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200704 /* Disable timers on boot up */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100705 evt->trigger_next = -1ULL;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100706 list_add_tail(&evt->link, &efi_events);
707 *event = evt;
708 return EFI_SUCCESS;
Alexander Grafbee91162016-03-04 01:09:59 +0100709}
710
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200711/*
Mario Six78a88f72018-07-10 08:40:17 +0200712 * efi_create_event_ex() - create an event in a group
713 * @type: type of the event to create
714 * @notify_tpl: task priority level of the event
715 * @notify_function: notification function of the event
716 * @notify_context: pointer passed to the notification function
717 * @event: created event
718 * @event_group: event group
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100719 *
720 * This function implements the CreateEventEx service.
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100721 *
Mario Six78a88f72018-07-10 08:40:17 +0200722 * See the Unified Extensible Firmware Interface (UEFI) specification for
723 * details.
724 *
725 * Return: status code
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100726 */
727efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl,
728 void (EFIAPI *notify_function) (
729 struct efi_event *event,
730 void *context),
731 void *notify_context,
732 efi_guid_t *event_group,
733 struct efi_event **event)
734{
Heinrich Schuchardt18845122019-05-04 10:12:50 +0200735 efi_status_t ret;
736
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100737 EFI_ENTRY("%d, 0x%zx, %p, %p, %pUl", type, notify_tpl, notify_function,
738 notify_context, event_group);
Heinrich Schuchardt18845122019-05-04 10:12:50 +0200739
740 /*
741 * The allowable input parameters are the same as in CreateEvent()
742 * except for the following two disallowed event types.
743 */
744 switch (type) {
745 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
746 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
747 ret = EFI_INVALID_PARAMETER;
748 goto out;
749 }
750
751 ret = efi_create_event(type, notify_tpl, notify_function,
752 notify_context, event_group, event);
753out:
754 return EFI_EXIT(ret);
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100755}
756
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200757/**
Mario Six78a88f72018-07-10 08:40:17 +0200758 * efi_create_event_ext() - create an event
759 * @type: type of the event to create
760 * @notify_tpl: task priority level of the event
761 * @notify_function: notification function of the event
762 * @notify_context: pointer passed to the notification function
763 * @event: created event
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200764 *
765 * This function implements the CreateEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200766 *
Mario Six78a88f72018-07-10 08:40:17 +0200767 * See the Unified Extensible Firmware Interface (UEFI) specification for
768 * details.
769 *
770 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200771 */
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200772static efi_status_t EFIAPI efi_create_event_ext(
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100773 uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200774 void (EFIAPI *notify_function) (
775 struct efi_event *event,
776 void *context),
777 void *notify_context, struct efi_event **event)
778{
779 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
780 notify_context);
781 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100782 notify_context, NULL, event));
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200783}
784
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200785/**
Mario Six78a88f72018-07-10 08:40:17 +0200786 * efi_timer_check() - check if a timer event has occurred
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200787 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200788 * Check if a timer event has occurred or a queued notification function should
789 * be called.
790 *
Alexander Grafbee91162016-03-04 01:09:59 +0100791 * Our timers have to work without interrupts, so we check whenever keyboard
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200792 * input or disk accesses happen if enough time elapsed for them to fire.
Alexander Grafbee91162016-03-04 01:09:59 +0100793 */
794void efi_timer_check(void)
795{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100796 struct efi_event *evt;
Alexander Grafbee91162016-03-04 01:09:59 +0100797 u64 now = timer_get_us();
798
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100799 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200800 if (!timers_enabled)
801 continue;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100802 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next)
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200803 continue;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100804 switch (evt->trigger_type) {
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200805 case EFI_TIMER_RELATIVE:
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100806 evt->trigger_type = EFI_TIMER_STOP;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200807 break;
808 case EFI_TIMER_PERIODIC:
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100809 evt->trigger_next += evt->trigger_time;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200810 break;
811 default:
812 continue;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200813 }
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100814 evt->is_signaled = false;
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200815 efi_signal_event(evt);
Alexander Grafbee91162016-03-04 01:09:59 +0100816 }
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200817 efi_process_event_queue();
Alexander Grafbee91162016-03-04 01:09:59 +0100818 WATCHDOG_RESET();
819}
820
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200821/**
Mario Six78a88f72018-07-10 08:40:17 +0200822 * efi_set_timer() - set the trigger time for a timer event or stop the event
823 * @event: event for which the timer is set
824 * @type: type of the timer
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200825 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200826 *
827 * This is the function for internal usage in U-Boot. For the API function
828 * implementing the SetTimer service see efi_set_timer_ext.
829 *
Mario Six78a88f72018-07-10 08:40:17 +0200830 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200831 */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200832efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200833 uint64_t trigger_time)
Alexander Grafbee91162016-03-04 01:09:59 +0100834{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100835 /* Check that the event is valid */
836 if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER))
837 return EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +0100838
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200839 /*
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200840 * The parameter defines a multiple of 100 ns.
841 * We use multiples of 1000 ns. So divide by 10.
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200842 */
Heinrich Schuchardt7d963322017-10-05 16:14:14 +0200843 do_div(trigger_time, 10);
Alexander Grafbee91162016-03-04 01:09:59 +0100844
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100845 switch (type) {
846 case EFI_TIMER_STOP:
847 event->trigger_next = -1ULL;
848 break;
849 case EFI_TIMER_PERIODIC:
850 case EFI_TIMER_RELATIVE:
851 event->trigger_next = timer_get_us() + trigger_time;
852 break;
853 default:
854 return EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +0100855 }
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100856 event->trigger_type = type;
857 event->trigger_time = trigger_time;
858 event->is_signaled = false;
859 return EFI_SUCCESS;
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200860}
861
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200862/**
Mario Six78a88f72018-07-10 08:40:17 +0200863 * efi_set_timer_ext() - Set the trigger time for a timer event or stop the
864 * event
865 * @event: event for which the timer is set
866 * @type: type of the timer
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200867 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200868 *
869 * This function implements the SetTimer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200870 *
Mario Six78a88f72018-07-10 08:40:17 +0200871 * See the Unified Extensible Firmware Interface (UEFI) specification for
872 * details.
873 *
874 *
875 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200876 */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200877static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
878 enum efi_timer_delay type,
879 uint64_t trigger_time)
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200880{
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900881 EFI_ENTRY("%p, %d, %llx", event, type, trigger_time);
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200882 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
Alexander Grafbee91162016-03-04 01:09:59 +0100883}
884
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200885/**
Mario Six78a88f72018-07-10 08:40:17 +0200886 * efi_wait_for_event() - wait for events to be signaled
887 * @num_events: number of events to be waited for
888 * @event: events to be waited for
889 * @index: index of the event that was signaled
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200890 *
891 * This function implements the WaitForEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200892 *
Mario Six78a88f72018-07-10 08:40:17 +0200893 * See the Unified Extensible Firmware Interface (UEFI) specification for
894 * details.
895 *
896 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200897 */
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100898static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200899 struct efi_event **event,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100900 efi_uintn_t *index)
Alexander Grafbee91162016-03-04 01:09:59 +0100901{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100902 int i;
Alexander Grafbee91162016-03-04 01:09:59 +0100903
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100904 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
Alexander Grafbee91162016-03-04 01:09:59 +0100905
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200906 /* Check parameters */
907 if (!num_events || !event)
908 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200909 /* Check TPL */
910 if (efi_tpl != TPL_APPLICATION)
911 return EFI_EXIT(EFI_UNSUPPORTED);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200912 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100913 if (efi_is_event(event[i]) != EFI_SUCCESS)
914 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200915 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
916 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200917 if (!event[i]->is_signaled)
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200918 efi_queue_event(event[i]);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200919 }
920
921 /* Wait for signal */
922 for (;;) {
923 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200924 if (event[i]->is_signaled)
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200925 goto out;
926 }
927 /* Allow events to occur. */
928 efi_timer_check();
929 }
930
931out:
932 /*
933 * Reset the signal which is passed to the caller to allow periodic
934 * events to occur.
935 */
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200936 event[i]->is_signaled = false;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200937 if (index)
938 *index = i;
Alexander Grafbee91162016-03-04 01:09:59 +0100939
940 return EFI_EXIT(EFI_SUCCESS);
941}
942
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200943/**
Mario Six78a88f72018-07-10 08:40:17 +0200944 * efi_signal_event_ext() - signal an EFI event
945 * @event: event to signal
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200946 *
947 * This function implements the SignalEvent service.
Mario Six78a88f72018-07-10 08:40:17 +0200948 *
949 * See the Unified Extensible Firmware Interface (UEFI) specification for
950 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200951 *
952 * This functions sets the signaled state of the event and queues the
953 * notification function for execution.
954 *
Mario Six78a88f72018-07-10 08:40:17 +0200955 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200956 */
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200957static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100958{
959 EFI_ENTRY("%p", event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100960 if (efi_is_event(event) != EFI_SUCCESS)
961 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200962 efi_signal_event(event);
Alexander Grafbee91162016-03-04 01:09:59 +0100963 return EFI_EXIT(EFI_SUCCESS);
964}
965
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200966/**
Mario Six78a88f72018-07-10 08:40:17 +0200967 * efi_close_event() - close an EFI event
968 * @event: event to close
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200969 *
970 * This function implements the CloseEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200971 *
Mario Six78a88f72018-07-10 08:40:17 +0200972 * See the Unified Extensible Firmware Interface (UEFI) specification for
973 * details.
974 *
975 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200976 */
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200977static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100978{
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200979 struct efi_register_notify_event *item, *next;
980
Alexander Grafbee91162016-03-04 01:09:59 +0100981 EFI_ENTRY("%p", event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100982 if (efi_is_event(event) != EFI_SUCCESS)
983 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200984
985 /* Remove protocol notify registrations for the event */
986 list_for_each_entry_safe(item, next, &efi_register_notify_events,
987 link) {
988 if (event == item->event) {
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +0200989 struct efi_protocol_notification *hitem, *hnext;
990
991 /* Remove signaled handles */
992 list_for_each_entry_safe(hitem, hnext, &item->handles,
993 link) {
994 list_del(&hitem->link);
995 free(hitem);
996 }
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200997 list_del(&item->link);
998 free(item);
999 }
1000 }
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +02001001 /* Remove event from queue */
1002 if (efi_event_is_queued(event))
1003 list_del(&event->queue_link);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001004
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001005 list_del(&event->link);
Heinrich Schuchardt14b40482019-07-11 20:15:09 +02001006 efi_free_pool(event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001007 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01001008}
1009
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001010/**
Mario Six78a88f72018-07-10 08:40:17 +02001011 * efi_check_event() - check if an event is signaled
1012 * @event: event to check
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001013 *
1014 * This function implements the CheckEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001015 *
Mario Six78a88f72018-07-10 08:40:17 +02001016 * See the Unified Extensible Firmware Interface (UEFI) specification for
1017 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001018 *
Mario Six78a88f72018-07-10 08:40:17 +02001019 * If an event is not signaled yet, the notification function is queued. The
1020 * signaled state is cleared.
1021 *
1022 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001023 */
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +02001024static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +01001025{
1026 EFI_ENTRY("%p", event);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02001027 efi_timer_check();
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001028 if (efi_is_event(event) != EFI_SUCCESS ||
1029 event->type & EVT_NOTIFY_SIGNAL)
1030 return EFI_EXIT(EFI_INVALID_PARAMETER);
1031 if (!event->is_signaled)
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001032 efi_queue_event(event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001033 if (event->is_signaled) {
1034 event->is_signaled = false;
1035 return EFI_EXIT(EFI_SUCCESS);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02001036 }
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001037 return EFI_EXIT(EFI_NOT_READY);
Alexander Grafbee91162016-03-04 01:09:59 +01001038}
1039
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001040/**
Mario Six78a88f72018-07-10 08:40:17 +02001041 * efi_search_obj() - find the internal EFI object for a handle
1042 * @handle: handle to find
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001043 *
Mario Six78a88f72018-07-10 08:40:17 +02001044 * Return: EFI object
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001045 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01001046struct efi_object *efi_search_obj(const efi_handle_t handle)
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001047{
Heinrich Schuchardt1b681532017-11-06 21:17:50 +01001048 struct efi_object *efiobj;
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001049
Heinrich Schuchardtec163fa2019-05-05 10:37:51 +02001050 if (!handle)
1051 return NULL;
1052
Heinrich Schuchardt1b681532017-11-06 21:17:50 +01001053 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001054 if (efiobj == handle)
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001055 return efiobj;
1056 }
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001057 return NULL;
1058}
1059
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001060/**
Mario Six78a88f72018-07-10 08:40:17 +02001061 * efi_open_protocol_info_entry() - create open protocol info entry and add it
1062 * to a protocol
1063 * @handler: handler of a protocol
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001064 *
Mario Six78a88f72018-07-10 08:40:17 +02001065 * Return: open protocol info entry
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001066 */
1067static struct efi_open_protocol_info_entry *efi_create_open_info(
1068 struct efi_handler *handler)
1069{
1070 struct efi_open_protocol_info_item *item;
1071
1072 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
1073 if (!item)
1074 return NULL;
1075 /* Append the item to the open protocol info list. */
1076 list_add_tail(&item->link, &handler->open_infos);
1077
1078 return &item->info;
1079}
1080
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001081/**
Mario Six78a88f72018-07-10 08:40:17 +02001082 * efi_delete_open_info() - remove an open protocol info entry from a protocol
1083 * @item: open protocol info entry to delete
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001084 *
Mario Six78a88f72018-07-10 08:40:17 +02001085 * Return: status code
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001086 */
1087static efi_status_t efi_delete_open_info(
1088 struct efi_open_protocol_info_item *item)
1089{
1090 list_del(&item->link);
1091 free(item);
1092 return EFI_SUCCESS;
1093}
1094
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001095/**
Mario Six78a88f72018-07-10 08:40:17 +02001096 * efi_add_protocol() - install new protocol on a handle
1097 * @handle: handle on which the protocol shall be installed
1098 * @protocol: GUID of the protocol to be installed
1099 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001100 *
Mario Six78a88f72018-07-10 08:40:17 +02001101 * Return: status code
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001102 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01001103efi_status_t efi_add_protocol(const efi_handle_t handle,
1104 const efi_guid_t *protocol,
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001105 void *protocol_interface)
1106{
1107 struct efi_object *efiobj;
1108 struct efi_handler *handler;
1109 efi_status_t ret;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001110 struct efi_register_notify_event *event;
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001111
1112 efiobj = efi_search_obj(handle);
1113 if (!efiobj)
1114 return EFI_INVALID_PARAMETER;
1115 ret = efi_search_protocol(handle, protocol, NULL);
1116 if (ret != EFI_NOT_FOUND)
1117 return EFI_INVALID_PARAMETER;
1118 handler = calloc(1, sizeof(struct efi_handler));
1119 if (!handler)
1120 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001121 handler->guid = protocol;
1122 handler->protocol_interface = protocol_interface;
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001123 INIT_LIST_HEAD(&handler->open_infos);
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001124 list_add_tail(&handler->link, &efiobj->protocols);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001125
1126 /* Notify registered events */
1127 list_for_each_entry(event, &efi_register_notify_events, link) {
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001128 if (!guidcmp(protocol, &event->protocol)) {
1129 struct efi_protocol_notification *notif;
1130
1131 notif = calloc(1, sizeof(*notif));
1132 if (!notif) {
1133 list_del(&handler->link);
1134 free(handler);
1135 return EFI_OUT_OF_RESOURCES;
1136 }
1137 notif->handle = handle;
1138 list_add_tail(&notif->link, &event->handles);
Heinrich Schuchardtdaa3f842019-06-07 07:43:24 +02001139 event->event->is_signaled = false;
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001140 efi_signal_event(event->event);
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001141 }
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001142 }
1143
Heinrich Schuchardtd5504142018-01-11 08:16:01 +01001144 if (!guidcmp(&efi_guid_device_path, protocol))
1145 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001146 return EFI_SUCCESS;
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001147}
1148
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001149/**
Mario Six78a88f72018-07-10 08:40:17 +02001150 * efi_install_protocol_interface() - install protocol interface
1151 * @handle: handle on which the protocol shall be installed
1152 * @protocol: GUID of the protocol to be installed
1153 * @protocol_interface_type: type of the interface to be installed,
1154 * always EFI_NATIVE_INTERFACE
1155 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001156 *
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001157 * This function implements the InstallProtocolInterface service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001158 *
Mario Six78a88f72018-07-10 08:40:17 +02001159 * See the Unified Extensible Firmware Interface (UEFI) specification for
1160 * details.
1161 *
1162 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001163 */
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001164static efi_status_t EFIAPI efi_install_protocol_interface(
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02001165 efi_handle_t *handle, const efi_guid_t *protocol,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001166 int protocol_interface_type, void *protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01001167{
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001168 efi_status_t r;
1169
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001170 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
1171 protocol_interface);
1172
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001173 if (!handle || !protocol ||
1174 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1175 r = EFI_INVALID_PARAMETER;
1176 goto out;
1177 }
1178
1179 /* Create new handle if requested. */
1180 if (!*handle) {
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +02001181 r = efi_create_handle(handle);
1182 if (r != EFI_SUCCESS)
1183 goto out;
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02001184 EFI_PRINT("new handle %p\n", *handle);
Heinrich Schuchardtaf1408e2017-10-26 19:25:43 +02001185 } else {
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02001186 EFI_PRINT("handle %p\n", *handle);
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001187 }
Heinrich Schuchardt12025302017-10-26 19:25:54 +02001188 /* Add new protocol */
1189 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001190out:
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001191 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01001192}
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001193
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001194/**
Mario Six78a88f72018-07-10 08:40:17 +02001195 * efi_get_drivers() - get all drivers associated to a controller
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001196 * @handle: handle of the controller
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001197 * @protocol: protocol GUID (optional)
Mario Six78a88f72018-07-10 08:40:17 +02001198 * @number_of_drivers: number of child controllers
1199 * @driver_handle_buffer: handles of the the drivers
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001200 *
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001201 * The allocated buffer has to be freed with free().
1202 *
Mario Six78a88f72018-07-10 08:40:17 +02001203 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001204 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001205static efi_status_t efi_get_drivers(efi_handle_t handle,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001206 const efi_guid_t *protocol,
1207 efi_uintn_t *number_of_drivers,
1208 efi_handle_t **driver_handle_buffer)
1209{
1210 struct efi_handler *handler;
1211 struct efi_open_protocol_info_item *item;
1212 efi_uintn_t count = 0, i;
1213 bool duplicate;
1214
1215 /* Count all driver associations */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001216 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001217 if (protocol && guidcmp(handler->guid, protocol))
1218 continue;
1219 list_for_each_entry(item, &handler->open_infos, link) {
1220 if (item->info.attributes &
1221 EFI_OPEN_PROTOCOL_BY_DRIVER)
1222 ++count;
1223 }
1224 }
Heinrich Schuchardt66ca24a2019-06-02 01:43:33 +02001225 *number_of_drivers = 0;
1226 if (!count) {
1227 *driver_handle_buffer = NULL;
1228 return EFI_SUCCESS;
1229 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001230 /*
1231 * Create buffer. In case of duplicate driver assignments the buffer
1232 * will be too large. But that does not harm.
1233 */
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001234 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1235 if (!*driver_handle_buffer)
1236 return EFI_OUT_OF_RESOURCES;
1237 /* Collect unique driver handles */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001238 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001239 if (protocol && guidcmp(handler->guid, protocol))
1240 continue;
1241 list_for_each_entry(item, &handler->open_infos, link) {
1242 if (item->info.attributes &
1243 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1244 /* Check this is a new driver */
1245 duplicate = false;
1246 for (i = 0; i < *number_of_drivers; ++i) {
1247 if ((*driver_handle_buffer)[i] ==
1248 item->info.agent_handle)
1249 duplicate = true;
1250 }
1251 /* Copy handle to buffer */
1252 if (!duplicate) {
1253 i = (*number_of_drivers)++;
1254 (*driver_handle_buffer)[i] =
1255 item->info.agent_handle;
1256 }
1257 }
1258 }
1259 }
1260 return EFI_SUCCESS;
1261}
1262
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001263/**
Mario Six78a88f72018-07-10 08:40:17 +02001264 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001265 * @handle: handle of the controller
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001266 * @protocol: protocol GUID (optional)
Mario Six78a88f72018-07-10 08:40:17 +02001267 * @child_handle: handle of the child to destroy
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001268 *
1269 * This function implements the DisconnectController service.
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001270 *
Mario Six78a88f72018-07-10 08:40:17 +02001271 * See the Unified Extensible Firmware Interface (UEFI) specification for
1272 * details.
1273 *
1274 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001275 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001276static efi_status_t efi_disconnect_all_drivers
1277 (efi_handle_t handle,
1278 const efi_guid_t *protocol,
1279 efi_handle_t child_handle)
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001280{
1281 efi_uintn_t number_of_drivers;
1282 efi_handle_t *driver_handle_buffer;
1283 efi_status_t r, ret;
1284
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001285 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001286 &driver_handle_buffer);
1287 if (ret != EFI_SUCCESS)
1288 return ret;
Heinrich Schuchardt66ca24a2019-06-02 01:43:33 +02001289 if (!number_of_drivers)
1290 return EFI_SUCCESS;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001291 ret = EFI_NOT_FOUND;
1292 while (number_of_drivers) {
1293 r = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001294 handle,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001295 driver_handle_buffer[--number_of_drivers],
1296 child_handle));
1297 if (r == EFI_SUCCESS)
1298 ret = r;
1299 }
1300 free(driver_handle_buffer);
1301 return ret;
1302}
1303
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001304/**
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001305 * efi_uninstall_protocol() - uninstall protocol interface
1306 *
Mario Six78a88f72018-07-10 08:40:17 +02001307 * @handle: handle from which the protocol shall be removed
1308 * @protocol: GUID of the protocol to be removed
1309 * @protocol_interface: interface to be removed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001310 *
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001311 * This function DOES NOT delete a handle without installed protocol.
Mario Six78a88f72018-07-10 08:40:17 +02001312 *
1313 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001314 */
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001315static efi_status_t efi_uninstall_protocol
1316 (efi_handle_t handle, const efi_guid_t *protocol,
1317 void *protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01001318{
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001319 struct efi_object *efiobj;
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001320 struct efi_handler *handler;
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001321 struct efi_open_protocol_info_item *item;
1322 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001323 efi_status_t r;
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001324
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001325 /* Check handle */
1326 efiobj = efi_search_obj(handle);
1327 if (!efiobj) {
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001328 r = EFI_INVALID_PARAMETER;
1329 goto out;
1330 }
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001331 /* Find the protocol on the handle */
1332 r = efi_search_protocol(handle, protocol, &handler);
1333 if (r != EFI_SUCCESS)
1334 goto out;
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001335 /* Disconnect controllers */
1336 efi_disconnect_all_drivers(efiobj, protocol, NULL);
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001337 /* Close protocol */
1338 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1339 if (item->info.attributes ==
1340 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1341 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1342 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1343 list_del(&item->link);
1344 }
1345 if (!list_empty(&handler->open_infos)) {
1346 r = EFI_ACCESS_DENIED;
1347 goto out;
1348 }
1349 r = efi_remove_protocol(handle, protocol, protocol_interface);
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001350out:
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001351 return r;
1352}
1353
1354/**
1355 * efi_uninstall_protocol_interface() - uninstall protocol interface
1356 * @handle: handle from which the protocol shall be removed
1357 * @protocol: GUID of the protocol to be removed
1358 * @protocol_interface: interface to be removed
1359 *
1360 * This function implements the UninstallProtocolInterface service.
1361 *
1362 * See the Unified Extensible Firmware Interface (UEFI) specification for
1363 * details.
1364 *
1365 * Return: status code
1366 */
1367static efi_status_t EFIAPI efi_uninstall_protocol_interface
1368 (efi_handle_t handle, const efi_guid_t *protocol,
1369 void *protocol_interface)
1370{
1371 efi_status_t ret;
1372
1373 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1374
1375 ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1376 if (ret != EFI_SUCCESS)
1377 goto out;
1378
1379 /* If the last protocol has been removed, delete the handle. */
1380 if (list_empty(&handle->protocols)) {
1381 list_del(&handle->link);
1382 free(handle);
1383 }
1384out:
1385 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001386}
1387
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001388/**
Mario Six78a88f72018-07-10 08:40:17 +02001389 * efi_register_protocol_notify() - register an event for notification when a
1390 * protocol is installed.
1391 * @protocol: GUID of the protocol whose installation shall be notified
1392 * @event: event to be signaled upon installation of the protocol
1393 * @registration: key for retrieving the registration information
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001394 *
1395 * This function implements the RegisterProtocolNotify service.
1396 * See the Unified Extensible Firmware Interface (UEFI) specification
1397 * for details.
1398 *
Mario Six78a88f72018-07-10 08:40:17 +02001399 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001400 */
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001401static efi_status_t EFIAPI efi_register_protocol_notify(
1402 const efi_guid_t *protocol,
1403 struct efi_event *event,
1404 void **registration)
Alexander Grafbee91162016-03-04 01:09:59 +01001405{
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001406 struct efi_register_notify_event *item;
1407 efi_status_t ret = EFI_SUCCESS;
1408
Rob Clark778e6af2017-09-13 18:05:41 -04001409 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001410
1411 if (!protocol || !event || !registration) {
1412 ret = EFI_INVALID_PARAMETER;
1413 goto out;
1414 }
1415
1416 item = calloc(1, sizeof(struct efi_register_notify_event));
1417 if (!item) {
1418 ret = EFI_OUT_OF_RESOURCES;
1419 goto out;
1420 }
1421
1422 item->event = event;
Sughosh Ganu61e42d92019-12-29 00:01:04 +05301423 guidcpy(&item->protocol, protocol);
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001424 INIT_LIST_HEAD(&item->handles);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001425
1426 list_add_tail(&item->link, &efi_register_notify_events);
1427
1428 *registration = item;
1429out:
1430 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001431}
1432
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001433/**
Mario Six78a88f72018-07-10 08:40:17 +02001434 * efi_search() - determine if an EFI handle implements a protocol
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +02001435 *
Mario Six78a88f72018-07-10 08:40:17 +02001436 * @search_type: selection criterion
1437 * @protocol: GUID of the protocol
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001438 * @handle: handle
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001439 *
1440 * See the documentation of the LocateHandle service in the UEFI specification.
1441 *
Mario Six78a88f72018-07-10 08:40:17 +02001442 * Return: 0 if the handle implements the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001443 */
Alexander Grafbee91162016-03-04 01:09:59 +01001444static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001445 const efi_guid_t *protocol, efi_handle_t handle)
Alexander Grafbee91162016-03-04 01:09:59 +01001446{
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +02001447 efi_status_t ret;
Alexander Grafbee91162016-03-04 01:09:59 +01001448
1449 switch (search_type) {
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +01001450 case ALL_HANDLES:
Alexander Grafbee91162016-03-04 01:09:59 +01001451 return 0;
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +01001452 case BY_PROTOCOL:
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001453 ret = efi_search_protocol(handle, protocol, NULL);
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +02001454 return (ret != EFI_SUCCESS);
1455 default:
1456 /* Invalid search type */
Alexander Grafbee91162016-03-04 01:09:59 +01001457 return -1;
1458 }
Alexander Grafbee91162016-03-04 01:09:59 +01001459}
1460
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001461/**
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001462 * efi_check_register_notify_event() - check if registration key is valid
1463 *
1464 * Check that a pointer is a valid registration key as returned by
1465 * RegisterProtocolNotify().
1466 *
1467 * @key: registration key
1468 * Return: valid registration key or NULL
1469 */
1470static struct efi_register_notify_event *efi_check_register_notify_event
1471 (void *key)
1472{
1473 struct efi_register_notify_event *event;
1474
1475 list_for_each_entry(event, &efi_register_notify_events, link) {
1476 if (event == (struct efi_register_notify_event *)key)
1477 return event;
1478 }
1479 return NULL;
1480}
1481
1482/**
Mario Six78a88f72018-07-10 08:40:17 +02001483 * efi_locate_handle() - locate handles implementing a protocol
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001484 *
1485 * @search_type: selection criterion
1486 * @protocol: GUID of the protocol
1487 * @search_key: registration key
1488 * @buffer_size: size of the buffer to receive the handles in bytes
1489 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001490 *
1491 * This function is meant for U-Boot internal calls. For the API implementation
1492 * of the LocateHandle service see efi_locate_handle_ext.
1493 *
Mario Six78a88f72018-07-10 08:40:17 +02001494 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001495 */
xypron.glpk@gmx.deebf199b2017-08-09 20:55:00 +02001496static efi_status_t efi_locate_handle(
Alexander Grafbee91162016-03-04 01:09:59 +01001497 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001498 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001499 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafbee91162016-03-04 01:09:59 +01001500{
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001501 struct efi_object *efiobj;
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001502 efi_uintn_t size = 0;
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001503 struct efi_register_notify_event *event;
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001504 struct efi_protocol_notification *handle = NULL;
Alexander Grafbee91162016-03-04 01:09:59 +01001505
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001506 /* Check parameters */
1507 switch (search_type) {
1508 case ALL_HANDLES:
1509 break;
1510 case BY_REGISTER_NOTIFY:
1511 if (!search_key)
1512 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001513 /* Check that the registration key is valid */
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001514 event = efi_check_register_notify_event(search_key);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001515 if (!event)
1516 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001517 break;
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001518 case BY_PROTOCOL:
1519 if (!protocol)
1520 return EFI_INVALID_PARAMETER;
1521 break;
1522 default:
1523 return EFI_INVALID_PARAMETER;
1524 }
1525
Alexander Grafbee91162016-03-04 01:09:59 +01001526 /* Count how much space we need */
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001527 if (search_type == BY_REGISTER_NOTIFY) {
1528 if (list_empty(&event->handles))
1529 return EFI_NOT_FOUND;
1530 handle = list_first_entry(&event->handles,
1531 struct efi_protocol_notification,
1532 link);
1533 efiobj = handle->handle;
1534 size += sizeof(void *);
1535 } else {
1536 list_for_each_entry(efiobj, &efi_obj_list, link) {
1537 if (!efi_search(search_type, protocol, efiobj))
1538 size += sizeof(void *);
1539 }
1540 if (size == 0)
1541 return EFI_NOT_FOUND;
Alexander Grafbee91162016-03-04 01:09:59 +01001542 }
1543
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001544 if (!buffer_size)
1545 return EFI_INVALID_PARAMETER;
1546
Alexander Grafbee91162016-03-04 01:09:59 +01001547 if (*buffer_size < size) {
1548 *buffer_size = size;
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001549 return EFI_BUFFER_TOO_SMALL;
Alexander Grafbee91162016-03-04 01:09:59 +01001550 }
1551
Rob Clark796a78c2017-08-06 14:10:07 -04001552 *buffer_size = size;
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001553
Heinrich Schuchardt0a843192019-05-10 19:03:49 +02001554 /* The buffer size is sufficient but there is no buffer */
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001555 if (!buffer)
1556 return EFI_INVALID_PARAMETER;
Rob Clark796a78c2017-08-06 14:10:07 -04001557
Alexander Grafbee91162016-03-04 01:09:59 +01001558 /* Then fill the array */
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001559 if (search_type == BY_REGISTER_NOTIFY) {
1560 *buffer = efiobj;
1561 list_del(&handle->link);
1562 } else {
1563 list_for_each_entry(efiobj, &efi_obj_list, link) {
1564 if (!efi_search(search_type, protocol, efiobj))
1565 *buffer++ = efiobj;
1566 }
Alexander Grafbee91162016-03-04 01:09:59 +01001567 }
1568
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001569 return EFI_SUCCESS;
1570}
1571
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001572/**
Mario Six78a88f72018-07-10 08:40:17 +02001573 * efi_locate_handle_ext() - locate handles implementing a protocol.
1574 * @search_type: selection criterion
1575 * @protocol: GUID of the protocol
1576 * @search_key: registration key
1577 * @buffer_size: size of the buffer to receive the handles in bytes
1578 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001579 *
1580 * This function implements the LocateHandle service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001581 *
Mario Six78a88f72018-07-10 08:40:17 +02001582 * See the Unified Extensible Firmware Interface (UEFI) specification for
1583 * details.
1584 *
1585 * Return: 0 if the handle implements the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001586 */
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001587static efi_status_t EFIAPI efi_locate_handle_ext(
1588 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001589 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001590 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001591{
Rob Clark778e6af2017-09-13 18:05:41 -04001592 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001593 buffer_size, buffer);
1594
1595 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1596 buffer_size, buffer));
Alexander Grafbee91162016-03-04 01:09:59 +01001597}
1598
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001599/**
Mario Six78a88f72018-07-10 08:40:17 +02001600 * efi_remove_configuration_table() - collapses configuration table entries,
1601 * removing index i
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001602 *
Mario Six78a88f72018-07-10 08:40:17 +02001603 * @i: index of the table entry to be removed
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001604 */
Alexander Grafd98cdf62017-07-26 13:41:04 +02001605static void efi_remove_configuration_table(int i)
1606{
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001607 struct efi_configuration_table *this = &systab.tables[i];
1608 struct efi_configuration_table *next = &systab.tables[i + 1];
1609 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
Alexander Grafd98cdf62017-07-26 13:41:04 +02001610
1611 memmove(this, next, (ulong)end - (ulong)next);
1612 systab.nr_tables--;
1613}
1614
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001615/**
Mario Six78a88f72018-07-10 08:40:17 +02001616 * efi_install_configuration_table() - adds, updates, or removes a
1617 * configuration table
1618 * @guid: GUID of the installed table
1619 * @table: table to be installed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001620 *
1621 * This function is used for internal calls. For the API implementation of the
1622 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1623 *
Mario Six78a88f72018-07-10 08:40:17 +02001624 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001625 */
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01001626efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1627 void *table)
Alexander Grafbee91162016-03-04 01:09:59 +01001628{
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001629 struct efi_event *evt;
Alexander Grafbee91162016-03-04 01:09:59 +01001630 int i;
1631
Heinrich Schuchardteb68b4e2018-02-18 00:08:00 +01001632 if (!guid)
1633 return EFI_INVALID_PARAMETER;
1634
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001635 /* Check for GUID override */
Alexander Grafbee91162016-03-04 01:09:59 +01001636 for (i = 0; i < systab.nr_tables; i++) {
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001637 if (!guidcmp(guid, &systab.tables[i].guid)) {
Alexander Grafd98cdf62017-07-26 13:41:04 +02001638 if (table)
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001639 systab.tables[i].table = table;
Alexander Grafd98cdf62017-07-26 13:41:04 +02001640 else
1641 efi_remove_configuration_table(i);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001642 goto out;
Alexander Grafbee91162016-03-04 01:09:59 +01001643 }
1644 }
1645
Alexander Grafd98cdf62017-07-26 13:41:04 +02001646 if (!table)
1647 return EFI_NOT_FOUND;
1648
Alexander Grafbee91162016-03-04 01:09:59 +01001649 /* No override, check for overflow */
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001650 if (i >= EFI_MAX_CONFIGURATION_TABLES)
Alexander Graf488bf122016-08-19 01:23:24 +02001651 return EFI_OUT_OF_RESOURCES;
Alexander Grafbee91162016-03-04 01:09:59 +01001652
1653 /* Add a new entry */
Sughosh Ganu61e42d92019-12-29 00:01:04 +05301654 guidcpy(&systab.tables[i].guid, guid);
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001655 systab.tables[i].table = table;
Alexander Grafaba5e912016-08-19 01:23:30 +02001656 systab.nr_tables = i + 1;
Alexander Grafbee91162016-03-04 01:09:59 +01001657
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001658out:
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001659 /* systab.nr_tables may have changed. So we need to update the CRC32 */
Heinrich Schuchardt55d8ee32018-07-07 15:36:05 +02001660 efi_update_table_header_crc32(&systab.hdr);
1661
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001662 /* Notify that the configuration table was changed */
1663 list_for_each_entry(evt, &efi_events, link) {
1664 if (evt->group && !guidcmp(evt->group, guid)) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001665 efi_signal_event(evt);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001666 break;
1667 }
1668 }
1669
Alexander Graf488bf122016-08-19 01:23:24 +02001670 return EFI_SUCCESS;
1671}
1672
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001673/**
Mario Six78a88f72018-07-10 08:40:17 +02001674 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1675 * configuration table.
1676 * @guid: GUID of the installed table
1677 * @table: table to be installed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001678 *
1679 * This function implements the InstallConfigurationTable service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001680 *
Mario Six78a88f72018-07-10 08:40:17 +02001681 * See the Unified Extensible Firmware Interface (UEFI) specification for
1682 * details.
1683 *
1684 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001685 */
Alexander Graf488bf122016-08-19 01:23:24 +02001686static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1687 void *table)
1688{
Rob Clark778e6af2017-09-13 18:05:41 -04001689 EFI_ENTRY("%pUl, %p", guid, table);
Alexander Graf488bf122016-08-19 01:23:24 +02001690 return EFI_EXIT(efi_install_configuration_table(guid, table));
Alexander Grafbee91162016-03-04 01:09:59 +01001691}
1692
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001693/**
Mario Six78a88f72018-07-10 08:40:17 +02001694 * efi_setup_loaded_image() - initialize a loaded image
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001695 *
1696 * Initialize a loaded_image_info and loaded_image_info object with correct
Rob Clark95c55532017-09-13 18:05:33 -04001697 * protocols, boot-device, etc.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001698 *
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +02001699 * In case of an error \*handle_ptr and \*info_ptr are set to NULL and an error
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001700 * code is returned.
1701 *
1702 * @device_path: device path of the loaded image
1703 * @file_path: file path of the loaded image
1704 * @handle_ptr: handle of the loaded image
1705 * @info_ptr: loaded image protocol
1706 * Return: status code
Rob Clark95c55532017-09-13 18:05:33 -04001707 */
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001708efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1709 struct efi_device_path *file_path,
1710 struct efi_loaded_image_obj **handle_ptr,
1711 struct efi_loaded_image **info_ptr)
Rob Clark95c55532017-09-13 18:05:33 -04001712{
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001713 efi_status_t ret;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001714 struct efi_loaded_image *info = NULL;
1715 struct efi_loaded_image_obj *obj = NULL;
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001716 struct efi_device_path *dp;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001717
1718 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1719 *handle_ptr = NULL;
1720 *info_ptr = NULL;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001721
1722 info = calloc(1, sizeof(*info));
1723 if (!info)
1724 return EFI_OUT_OF_RESOURCES;
1725 obj = calloc(1, sizeof(*obj));
1726 if (!obj) {
1727 free(info);
1728 return EFI_OUT_OF_RESOURCES;
1729 }
Heinrich Schuchardtcd73aba2019-05-01 14:20:18 +02001730 obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001731
Heinrich Schuchardt44549d62017-11-26 14:05:23 +01001732 /* Add internal object to object list */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +02001733 efi_add_handle(&obj->header);
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001734
Heinrich Schuchardt95147312018-07-05 08:17:58 +02001735 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
Rob Clark95c55532017-09-13 18:05:33 -04001736 info->file_path = file_path;
Heinrich Schuchardt7e1effc2018-08-26 15:31:52 +02001737 info->system_table = &systab;
Rob Clark95c55532017-09-13 18:05:33 -04001738
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001739 if (device_path) {
1740 info->device_handle = efi_dp_find_obj(device_path, NULL);
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001741
1742 dp = efi_dp_append(device_path, file_path);
1743 if (!dp) {
1744 ret = EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001745 goto failure;
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001746 }
1747 } else {
1748 dp = NULL;
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001749 }
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001750 ret = efi_add_protocol(&obj->header,
1751 &efi_guid_loaded_image_device_path, dp);
1752 if (ret != EFI_SUCCESS)
1753 goto failure;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001754
1755 /*
1756 * When asking for the loaded_image interface, just
1757 * return handle which points to loaded_image_info
1758 */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +02001759 ret = efi_add_protocol(&obj->header,
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001760 &efi_guid_loaded_image, info);
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001761 if (ret != EFI_SUCCESS)
1762 goto failure;
1763
Heinrich Schuchardtd5974af2019-03-19 18:58:58 +01001764 *info_ptr = info;
1765 *handle_ptr = obj;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001766
Heinrich Schuchardt56d92882017-12-04 18:03:01 +01001767 return ret;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001768failure:
1769 printf("ERROR: Failure to install protocols for loaded image\n");
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001770 efi_delete_handle(&obj->header);
1771 free(info);
Heinrich Schuchardt56d92882017-12-04 18:03:01 +01001772 return ret;
Rob Clark95c55532017-09-13 18:05:33 -04001773}
1774
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001775/**
Heinrich Schuchardt0e9d2d72020-12-04 03:02:03 +01001776 * efi_locate_device_path() - Get the device path and handle of an device
1777 * implementing a protocol
1778 * @protocol: GUID of the protocol
1779 * @device_path: device path
1780 * @device: handle of the device
1781 *
1782 * This function implements the LocateDevicePath service.
1783 *
1784 * See the Unified Extensible Firmware Interface (UEFI) specification for
1785 * details.
1786 *
1787 * Return: status code
1788 */
1789static efi_status_t EFIAPI efi_locate_device_path(
1790 const efi_guid_t *protocol,
1791 struct efi_device_path **device_path,
1792 efi_handle_t *device)
1793{
1794 struct efi_device_path *dp;
1795 size_t i;
1796 struct efi_handler *handler;
1797 efi_handle_t *handles;
1798 size_t len, len_dp;
1799 size_t len_best = 0;
1800 efi_uintn_t no_handles;
1801 u8 *remainder;
1802 efi_status_t ret;
1803
1804 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
1805
1806 if (!protocol || !device_path || !*device_path) {
1807 ret = EFI_INVALID_PARAMETER;
1808 goto out;
1809 }
1810
1811 /* Find end of device path */
1812 len = efi_dp_instance_size(*device_path);
1813
1814 /* Get all handles implementing the protocol */
1815 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
1816 &no_handles, &handles));
1817 if (ret != EFI_SUCCESS)
1818 goto out;
1819
1820 for (i = 0; i < no_handles; ++i) {
1821 /* Find the device path protocol */
1822 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
1823 &handler);
1824 if (ret != EFI_SUCCESS)
1825 continue;
1826 dp = (struct efi_device_path *)handler->protocol_interface;
1827 len_dp = efi_dp_instance_size(dp);
1828 /*
1829 * This handle can only be a better fit
1830 * if its device path length is longer than the best fit and
1831 * if its device path length is shorter of equal the searched
1832 * device path.
1833 */
1834 if (len_dp <= len_best || len_dp > len)
1835 continue;
1836 /* Check if dp is a subpath of device_path */
1837 if (memcmp(*device_path, dp, len_dp))
1838 continue;
1839 if (!device) {
1840 ret = EFI_INVALID_PARAMETER;
1841 goto out;
1842 }
1843 *device = handles[i];
1844 len_best = len_dp;
1845 }
1846 if (len_best) {
1847 remainder = (u8 *)*device_path + len_best;
1848 *device_path = (struct efi_device_path *)remainder;
1849 ret = EFI_SUCCESS;
1850 } else {
1851 ret = EFI_NOT_FOUND;
1852 }
1853out:
1854 return EFI_EXIT(ret);
1855}
1856
1857/**
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001858 * efi_load_image_from_file() - load an image from file system
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001859 *
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001860 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1861 * callers obligation to update the memory type as needed.
1862 *
Heinrich Schuchardtc06c55b2020-12-04 09:27:41 +01001863 * @file_path: the path of the image to load
1864 * @buffer: buffer containing the loaded image
1865 * @size: size of the loaded image
1866 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001867 */
AKASHI Takahiro6b95b382019-04-19 12:22:35 +09001868static
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001869efi_status_t efi_load_image_from_file(struct efi_device_path *file_path,
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001870 void **buffer, efi_uintn_t *size)
Rob Clark838ee4b2017-09-13 18:05:35 -04001871{
1872 struct efi_file_info *info = NULL;
1873 struct efi_file_handle *f;
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001874 efi_status_t ret;
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001875 u64 addr;
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +02001876 efi_uintn_t bs;
Rob Clark838ee4b2017-09-13 18:05:35 -04001877
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001878 /* Open file */
Rob Clark838ee4b2017-09-13 18:05:35 -04001879 f = efi_file_from_path(file_path);
1880 if (!f)
Heinrich Schuchardt20000032019-06-11 19:00:56 +02001881 return EFI_NOT_FOUND;
Rob Clark838ee4b2017-09-13 18:05:35 -04001882
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001883 /* Get file size */
Rob Clark838ee4b2017-09-13 18:05:35 -04001884 bs = 0;
1885 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1886 &bs, info));
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001887 if (ret != EFI_BUFFER_TOO_SMALL) {
1888 ret = EFI_DEVICE_ERROR;
1889 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04001890 }
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001891
1892 info = malloc(bs);
1893 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs,
1894 info));
Rob Clark838ee4b2017-09-13 18:05:35 -04001895 if (ret != EFI_SUCCESS)
1896 goto error;
1897
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001898 /*
1899 * When reading the file we do not yet know if it contains an
1900 * application, a boottime driver, or a runtime driver. So here we
1901 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1902 * update the reservation according to the image type.
1903 */
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +02001904 bs = info->file_size;
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001905 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1906 EFI_BOOT_SERVICES_DATA,
1907 efi_size_in_pages(bs), &addr);
Rob Clark838ee4b2017-09-13 18:05:35 -04001908 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001909 ret = EFI_OUT_OF_RESOURCES;
1910 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04001911 }
1912
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001913 /* Read file */
1914 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1915 if (ret != EFI_SUCCESS)
1916 efi_free_pages(addr, efi_size_in_pages(bs));
1917 *buffer = (void *)(uintptr_t)addr;
1918 *size = bs;
1919error:
1920 EFI_CALL(f->close(f));
1921 free(info);
Rob Clark838ee4b2017-09-13 18:05:35 -04001922 return ret;
1923}
1924
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001925/**
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001926 * efi_load_image_from_path() - load an image using a file path
1927 *
1928 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1929 * callers obligation to update the memory type as needed.
1930 *
1931 * @boot_policy: true for request originating from the boot manager
1932 * @file_path: the path of the image to load
1933 * @buffer: buffer containing the loaded image
1934 * @size: size of the loaded image
1935 * Return: status code
1936 */
1937static
1938efi_status_t efi_load_image_from_path(bool boot_policy,
1939 struct efi_device_path *file_path,
1940 void **buffer, efi_uintn_t *size)
1941{
1942 efi_handle_t device;
1943 efi_status_t ret;
1944 struct efi_device_path *dp;
Heinrich Schuchardt3da0b282020-12-06 13:00:15 +01001945 struct efi_load_file_protocol *load_file_protocol = NULL;
1946 efi_uintn_t buffer_size;
1947 uint64_t addr, pages;
1948 const efi_guid_t *guid;
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01001949
1950 /* In case of failure nothing is returned */
1951 *buffer = NULL;
1952 *size = 0;
1953
1954 dp = file_path;
1955 ret = EFI_CALL(efi_locate_device_path(
1956 &efi_simple_file_system_protocol_guid, &dp, &device));
1957 if (ret == EFI_SUCCESS)
1958 return efi_load_image_from_file(file_path, buffer, size);
Heinrich Schuchardt3da0b282020-12-06 13:00:15 +01001959
1960 ret = EFI_CALL(efi_locate_device_path(
1961 &efi_guid_load_file_protocol, &dp, &device));
1962 if (ret == EFI_SUCCESS) {
1963 guid = &efi_guid_load_file_protocol;
1964 } else if (!boot_policy) {
1965 guid = &efi_guid_load_file2_protocol;
1966 ret = EFI_CALL(efi_locate_device_path(guid, &dp, &device));
1967 }
1968 if (ret != EFI_SUCCESS)
1969 return EFI_NOT_FOUND;
1970 ret = EFI_CALL(efi_handle_protocol(device, guid,
1971 (void **)&load_file_protocol));
1972 if (ret != EFI_SUCCESS)
1973 return EFI_NOT_FOUND;
1974 buffer_size = 0;
1975 ret = load_file_protocol->load_file(load_file_protocol, dp,
1976 boot_policy, &buffer_size,
1977 NULL);
1978 if (ret != EFI_BUFFER_TOO_SMALL)
1979 goto out;
1980 pages = efi_size_in_pages(buffer_size);
1981 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES, EFI_BOOT_SERVICES_DATA,
1982 pages, &addr);
1983 if (ret != EFI_SUCCESS) {
1984 ret = EFI_OUT_OF_RESOURCES;
1985 goto out;
1986 }
1987 ret = EFI_CALL(load_file_protocol->load_file(
1988 load_file_protocol, dp, boot_policy,
1989 &buffer_size, (void *)(uintptr_t)addr));
1990 if (ret != EFI_SUCCESS)
1991 efi_free_pages(addr, pages);
1992out:
1993 if (load_file_protocol)
1994 EFI_CALL(efi_close_protocol(device,
1995 &efi_guid_load_file2_protocol,
1996 efi_root, NULL));
1997 if (ret == EFI_SUCCESS) {
1998 *buffer = (void *)(uintptr_t)addr;
1999 *size = buffer_size;
2000 }
2001
2002 return ret;
Heinrich Schuchardt0e074d12020-12-06 10:47:57 +01002003}
2004
2005/**
Mario Six78a88f72018-07-10 08:40:17 +02002006 * efi_load_image() - load an EFI image into memory
2007 * @boot_policy: true for request originating from the boot manager
2008 * @parent_image: the caller's image handle
2009 * @file_path: the path of the image to load
2010 * @source_buffer: memory location from which the image is installed
2011 * @source_size: size of the memory area from which the image is installed
2012 * @image_handle: handle for the newly installed image
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002013 *
2014 * This function implements the LoadImage service.
Mario Six78a88f72018-07-10 08:40:17 +02002015 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002016 * See the Unified Extensible Firmware Interface (UEFI) specification
2017 * for details.
2018 *
Mario Six78a88f72018-07-10 08:40:17 +02002019 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002020 */
AKASHI Takahirod7e0b012019-03-05 14:53:31 +09002021efi_status_t EFIAPI efi_load_image(bool boot_policy,
2022 efi_handle_t parent_image,
2023 struct efi_device_path *file_path,
2024 void *source_buffer,
2025 efi_uintn_t source_size,
2026 efi_handle_t *image_handle)
Alexander Grafbee91162016-03-04 01:09:59 +01002027{
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01002028 struct efi_device_path *dp, *fp;
Tom Rini1c3b2f42018-09-30 10:38:15 -04002029 struct efi_loaded_image *info = NULL;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02002030 struct efi_loaded_image_obj **image_obj =
2031 (struct efi_loaded_image_obj **)image_handle;
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01002032 efi_status_t ret;
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002033 void *dest_buffer;
Alexander Grafbee91162016-03-04 01:09:59 +01002034
Heinrich Schuchardt7fb96a12018-04-03 22:29:30 +02002035 EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
Alexander Grafbee91162016-03-04 01:09:59 +01002036 file_path, source_buffer, source_size, image_handle);
Rob Clark838ee4b2017-09-13 18:05:35 -04002037
Heinrich Schuchardte4afcb22019-06-11 18:52:33 +02002038 if (!image_handle || (!source_buffer && !file_path) ||
2039 !efi_search_obj(parent_image) ||
2040 /* The parent image handle must refer to a loaded image */
2041 !parent_image->type) {
Heinrich Schuchardt84a918e2019-05-05 16:55:06 +02002042 ret = EFI_INVALID_PARAMETER;
2043 goto error;
2044 }
Heinrich Schuchardt28a4fd42018-03-07 02:40:51 +01002045
Rob Clark838ee4b2017-09-13 18:05:35 -04002046 if (!source_buffer) {
Heinrich Schuchardtc06c55b2020-12-04 09:27:41 +01002047 ret = efi_load_image_from_path(boot_policy, file_path,
2048 &dest_buffer, &source_size);
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01002049 if (ret != EFI_SUCCESS)
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01002050 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04002051 } else {
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002052 dest_buffer = source_buffer;
Rob Clark838ee4b2017-09-13 18:05:35 -04002053 }
Heinrich Schuchardt1e15a9c2019-04-20 19:24:43 +00002054 /* split file_path which contains both the device and file parts */
2055 efi_dp_split_file_path(file_path, &dp, &fp);
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01002056 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002057 if (ret == EFI_SUCCESS)
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09002058 ret = efi_load_pe(*image_obj, dest_buffer, source_size, info);
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002059 if (!source_buffer)
2060 /* Release buffer to which file was loaded */
2061 efi_free_pages((uintptr_t)dest_buffer,
2062 efi_size_in_pages(source_size));
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09002063 if (ret == EFI_SUCCESS || ret == EFI_SECURITY_VIOLATION) {
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01002064 info->system_table = &systab;
2065 info->parent_handle = parent_image;
2066 } else {
2067 /* The image is invalid. Release all associated resources. */
2068 efi_delete_handle(*image_handle);
2069 *image_handle = NULL;
2070 free(info);
2071 }
Heinrich Schuchardt28a4fd42018-03-07 02:40:51 +01002072error:
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01002073 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002074}
2075
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002076/**
Alexander Graff31239a2018-11-15 21:23:47 +01002077 * efi_exit_caches() - fix up caches for EFI payloads if necessary
2078 */
2079static void efi_exit_caches(void)
2080{
Heinrich Schuchardt6f3badb2019-07-22 22:04:36 +02002081#if defined(CONFIG_EFI_GRUB_ARM32_WORKAROUND)
Alexander Graff31239a2018-11-15 21:23:47 +01002082 /*
Heinrich Schuchardt6f3badb2019-07-22 22:04:36 +02002083 * Boooting Linux via GRUB prior to version 2.04 fails on 32bit ARM if
2084 * caches are enabled.
2085 *
2086 * TODO:
2087 * According to the UEFI spec caches that can be managed via CP15
2088 * operations should be enabled. Caches requiring platform information
2089 * to manage should be disabled. This should not happen in
2090 * ExitBootServices() but before invoking any UEFI binary is invoked.
2091 *
2092 * We want to keep the current workaround while GRUB prior to version
2093 * 2.04 is still in use.
Alexander Graff31239a2018-11-15 21:23:47 +01002094 */
Heinrich Schuchardt6f3badb2019-07-22 22:04:36 +02002095 cleanup_before_linux();
Alexander Graff31239a2018-11-15 21:23:47 +01002096#endif
2097}
2098
2099/**
Mario Six78a88f72018-07-10 08:40:17 +02002100 * efi_exit_boot_services() - stop all boot services
2101 * @image_handle: handle of the loaded image
2102 * @map_key: key of the memory map
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002103 *
2104 * This function implements the ExitBootServices service.
Mario Six78a88f72018-07-10 08:40:17 +02002105 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002106 * See the Unified Extensible Firmware Interface (UEFI) specification
2107 * for details.
2108 *
Mario Six78a88f72018-07-10 08:40:17 +02002109 * All timer events are disabled. For exit boot services events the
2110 * notification function is called. The boot services are disabled in the
2111 * system table.
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002112 *
Mario Six78a88f72018-07-10 08:40:17 +02002113 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002114 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002115static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
Heinrich Schuchardtb015ab52019-05-05 21:58:35 +02002116 efi_uintn_t map_key)
Alexander Grafbee91162016-03-04 01:09:59 +01002117{
Heinrich Schuchardt14b40482019-07-11 20:15:09 +02002118 struct efi_event *evt, *next_event;
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002119 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02002120
Heinrich Schuchardtb015ab52019-05-05 21:58:35 +02002121 EFI_ENTRY("%p, %zx", image_handle, map_key);
Alexander Grafbee91162016-03-04 01:09:59 +01002122
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +02002123 /* Check that the caller has read the current memory map */
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002124 if (map_key != efi_memory_map_key) {
2125 ret = EFI_INVALID_PARAMETER;
2126 goto out;
2127 }
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +02002128
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002129 /* Check if ExitBootServices has already been called */
2130 if (!systab.boottime)
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002131 goto out;
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002132
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02002133 /* Stop all timer related activities */
2134 timers_enabled = false;
2135
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01002136 /* Add related events to the event group */
2137 list_for_each_entry(evt, &efi_events, link) {
2138 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
2139 evt->group = &efi_guid_event_group_exit_boot_services;
2140 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02002141 /* Notify that ExitBootServices is invoked. */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01002142 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01002143 if (evt->group &&
2144 !guidcmp(evt->group,
2145 &efi_guid_event_group_exit_boot_services)) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02002146 efi_signal_event(evt);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01002147 break;
2148 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02002149 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02002150
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02002151 /* Make sure that notification functions are not called anymore */
2152 efi_tpl = TPL_HIGH_LEVEL;
2153
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +02002154 /* Notify variable services */
2155 efi_variables_boot_exit_notify();
Rob Clarkad644e72017-09-13 18:05:37 -04002156
Heinrich Schuchardt14b40482019-07-11 20:15:09 +02002157 /* Remove all events except EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE */
2158 list_for_each_entry_safe(evt, next_event, &efi_events, link) {
2159 if (evt->type != EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE)
2160 list_del(&evt->link);
2161 }
2162
Heinrich Schuchardtfccd3d92020-11-12 21:26:28 +01002163 if (!efi_st_keep_devices) {
Heinrich Schuchardtdb6288d2020-12-27 15:33:09 +01002164 if (IS_ENABLED(CONFIG_USB_DEVICE))
Heinrich Schuchardtfccd3d92020-11-12 21:26:28 +01002165 udc_disconnect();
2166 board_quiesce_devices();
2167 dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
2168 }
Alexander Grafb7b84102016-11-17 01:02:57 +01002169
Heinrich Schuchardt7f951042019-07-05 17:42:16 +02002170 /* Patch out unsupported runtime function */
2171 efi_runtime_detach();
2172
Alexander Graff31239a2018-11-15 21:23:47 +01002173 /* Fix up caches for EFI payloads if necessary */
2174 efi_exit_caches();
2175
Alexander Grafbee91162016-03-04 01:09:59 +01002176 /* This stops all lingering devices */
2177 bootm_disable_interrupts();
2178
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02002179 /* Disable boot time services */
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002180 systab.con_in_handle = NULL;
2181 systab.con_in = NULL;
2182 systab.con_out_handle = NULL;
2183 systab.con_out = NULL;
2184 systab.stderr_handle = NULL;
2185 systab.std_err = NULL;
2186 systab.boottime = NULL;
2187
2188 /* Recalculate CRC32 */
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02002189 efi_update_table_header_crc32(&systab.hdr);
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002190
Alexander Grafbee91162016-03-04 01:09:59 +01002191 /* Give the payload some time to boot */
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002192 efi_set_watchdog(0);
Alexander Grafbee91162016-03-04 01:09:59 +01002193 WATCHDOG_RESET();
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002194out:
2195 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002196}
2197
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002198/**
Mario Six78a88f72018-07-10 08:40:17 +02002199 * efi_get_next_monotonic_count() - get next value of the counter
2200 * @count: returned value of the counter
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002201 *
2202 * This function implements the NextMonotonicCount service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002203 *
Mario Six78a88f72018-07-10 08:40:17 +02002204 * See the Unified Extensible Firmware Interface (UEFI) specification for
2205 * details.
2206 *
2207 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002208 */
Alexander Grafbee91162016-03-04 01:09:59 +01002209static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
2210{
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002211 static uint64_t mono;
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02002212 efi_status_t ret;
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002213
Alexander Grafbee91162016-03-04 01:09:59 +01002214 EFI_ENTRY("%p", count);
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02002215 if (!count) {
2216 ret = EFI_INVALID_PARAMETER;
2217 goto out;
2218 }
Alexander Grafbee91162016-03-04 01:09:59 +01002219 *count = mono++;
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02002220 ret = EFI_SUCCESS;
2221out:
2222 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002223}
2224
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002225/**
Mario Six78a88f72018-07-10 08:40:17 +02002226 * efi_stall() - sleep
2227 * @microseconds: period to sleep in microseconds
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002228 *
Mario Six78a88f72018-07-10 08:40:17 +02002229 * This function implements the Stall service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002230 *
Mario Six78a88f72018-07-10 08:40:17 +02002231 * See the Unified Extensible Firmware Interface (UEFI) specification for
2232 * details.
2233 *
2234 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002235 */
Alexander Grafbee91162016-03-04 01:09:59 +01002236static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
2237{
Heinrich Schuchardt22f23db2019-06-02 21:12:17 +02002238 u64 end_tick;
2239
Alexander Grafbee91162016-03-04 01:09:59 +01002240 EFI_ENTRY("%ld", microseconds);
Heinrich Schuchardt22f23db2019-06-02 21:12:17 +02002241
2242 end_tick = get_ticks() + usec_to_tick(microseconds);
2243 while (get_ticks() < end_tick)
2244 efi_timer_check();
2245
Alexander Grafbee91162016-03-04 01:09:59 +01002246 return EFI_EXIT(EFI_SUCCESS);
2247}
2248
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002249/**
Mario Six78a88f72018-07-10 08:40:17 +02002250 * efi_set_watchdog_timer() - reset the watchdog timer
2251 * @timeout: seconds before reset by watchdog
2252 * @watchdog_code: code to be logged when resetting
2253 * @data_size: size of buffer in bytes
2254 * @watchdog_data: buffer with data describing the reset reason
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002255 *
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002256 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002257 *
Mario Six78a88f72018-07-10 08:40:17 +02002258 * See the Unified Extensible Firmware Interface (UEFI) specification for
2259 * details.
2260 *
2261 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002262 */
Alexander Grafbee91162016-03-04 01:09:59 +01002263static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
2264 uint64_t watchdog_code,
2265 unsigned long data_size,
2266 uint16_t *watchdog_data)
2267{
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09002268 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
Alexander Grafbee91162016-03-04 01:09:59 +01002269 data_size, watchdog_data);
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002270 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafbee91162016-03-04 01:09:59 +01002271}
2272
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002273/**
Mario Six78a88f72018-07-10 08:40:17 +02002274 * efi_close_protocol() - close a protocol
2275 * @handle: handle on which the protocol shall be closed
2276 * @protocol: GUID of the protocol to close
2277 * @agent_handle: handle of the driver
2278 * @controller_handle: handle of the controller
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002279 *
2280 * This function implements the CloseProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002281 *
Mario Six78a88f72018-07-10 08:40:17 +02002282 * See the Unified Extensible Firmware Interface (UEFI) specification for
2283 * details.
2284 *
2285 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002286 */
AKASHI Takahirob51ec632020-03-17 11:12:36 +09002287efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
2288 const efi_guid_t *protocol,
2289 efi_handle_t agent_handle,
2290 efi_handle_t controller_handle)
Alexander Grafbee91162016-03-04 01:09:59 +01002291{
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002292 struct efi_handler *handler;
2293 struct efi_open_protocol_info_item *item;
2294 struct efi_open_protocol_info_item *pos;
2295 efi_status_t r;
2296
Rob Clark778e6af2017-09-13 18:05:41 -04002297 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
Alexander Grafbee91162016-03-04 01:09:59 +01002298 controller_handle);
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002299
Heinrich Schuchardtec163fa2019-05-05 10:37:51 +02002300 if (!efi_search_obj(agent_handle) ||
2301 (controller_handle && !efi_search_obj(controller_handle))) {
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002302 r = EFI_INVALID_PARAMETER;
2303 goto out;
2304 }
2305 r = efi_search_protocol(handle, protocol, &handler);
2306 if (r != EFI_SUCCESS)
2307 goto out;
2308
2309 r = EFI_NOT_FOUND;
2310 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2311 if (item->info.agent_handle == agent_handle &&
2312 item->info.controller_handle == controller_handle) {
2313 efi_delete_open_info(item);
2314 r = EFI_SUCCESS;
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002315 }
2316 }
2317out:
2318 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002319}
2320
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002321/**
Mario Six78a88f72018-07-10 08:40:17 +02002322 * efi_open_protocol_information() - provide information about then open status
2323 * of a protocol on a handle
2324 * @handle: handle for which the information shall be retrieved
2325 * @protocol: GUID of the protocol
2326 * @entry_buffer: buffer to receive the open protocol information
2327 * @entry_count: number of entries available in the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002328 *
2329 * This function implements the OpenProtocolInformation service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002330 *
Mario Six78a88f72018-07-10 08:40:17 +02002331 * See the Unified Extensible Firmware Interface (UEFI) specification for
2332 * details.
2333 *
2334 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002335 */
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002336static efi_status_t EFIAPI efi_open_protocol_information(
2337 efi_handle_t handle, const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002338 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002339 efi_uintn_t *entry_count)
Alexander Grafbee91162016-03-04 01:09:59 +01002340{
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002341 unsigned long buffer_size;
2342 unsigned long count;
2343 struct efi_handler *handler;
2344 struct efi_open_protocol_info_item *item;
2345 efi_status_t r;
2346
Rob Clark778e6af2017-09-13 18:05:41 -04002347 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
Alexander Grafbee91162016-03-04 01:09:59 +01002348 entry_count);
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002349
2350 /* Check parameters */
2351 if (!entry_buffer) {
2352 r = EFI_INVALID_PARAMETER;
2353 goto out;
2354 }
2355 r = efi_search_protocol(handle, protocol, &handler);
2356 if (r != EFI_SUCCESS)
2357 goto out;
2358
2359 /* Count entries */
2360 count = 0;
2361 list_for_each_entry(item, &handler->open_infos, link) {
2362 if (item->info.open_count)
2363 ++count;
2364 }
2365 *entry_count = count;
2366 *entry_buffer = NULL;
2367 if (!count) {
2368 r = EFI_SUCCESS;
2369 goto out;
2370 }
2371
2372 /* Copy entries */
2373 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002374 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002375 (void **)entry_buffer);
2376 if (r != EFI_SUCCESS)
2377 goto out;
2378 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2379 if (item->info.open_count)
2380 (*entry_buffer)[--count] = item->info;
2381 }
2382out:
2383 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002384}
2385
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002386/**
Mario Six78a88f72018-07-10 08:40:17 +02002387 * efi_protocols_per_handle() - get protocols installed on a handle
2388 * @handle: handle for which the information is retrieved
2389 * @protocol_buffer: buffer with protocol GUIDs
2390 * @protocol_buffer_count: number of entries in the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002391 *
2392 * This function implements the ProtocolsPerHandleService.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002393 *
Mario Six78a88f72018-07-10 08:40:17 +02002394 * See the Unified Extensible Firmware Interface (UEFI) specification for
2395 * details.
2396 *
2397 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002398 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002399static efi_status_t EFIAPI efi_protocols_per_handle(
2400 efi_handle_t handle, efi_guid_t ***protocol_buffer,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002401 efi_uintn_t *protocol_buffer_count)
Alexander Grafbee91162016-03-04 01:09:59 +01002402{
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002403 unsigned long buffer_size;
2404 struct efi_object *efiobj;
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002405 struct list_head *protocol_handle;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002406 efi_status_t r;
2407
Alexander Grafbee91162016-03-04 01:09:59 +01002408 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2409 protocol_buffer_count);
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002410
2411 if (!handle || !protocol_buffer || !protocol_buffer_count)
2412 return EFI_EXIT(EFI_INVALID_PARAMETER);
2413
2414 *protocol_buffer = NULL;
Rob Clark661c8322017-07-20 07:59:39 -04002415 *protocol_buffer_count = 0;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002416
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002417 efiobj = efi_search_obj(handle);
2418 if (!efiobj)
2419 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002420
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002421 /* Count protocols */
2422 list_for_each(protocol_handle, &efiobj->protocols) {
2423 ++*protocol_buffer_count;
2424 }
2425
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02002426 /* Copy GUIDs */
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002427 if (*protocol_buffer_count) {
2428 size_t j = 0;
2429
2430 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002431 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002432 (void **)protocol_buffer);
2433 if (r != EFI_SUCCESS)
2434 return EFI_EXIT(r);
2435 list_for_each(protocol_handle, &efiobj->protocols) {
2436 struct efi_handler *protocol;
2437
2438 protocol = list_entry(protocol_handle,
2439 struct efi_handler, link);
2440 (*protocol_buffer)[j] = (void *)protocol->guid;
2441 ++j;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002442 }
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002443 }
2444
2445 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002446}
2447
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002448/**
Mario Six78a88f72018-07-10 08:40:17 +02002449 * efi_locate_handle_buffer() - locate handles implementing a protocol
2450 * @search_type: selection criterion
2451 * @protocol: GUID of the protocol
2452 * @search_key: registration key
2453 * @no_handles: number of returned handles
2454 * @buffer: buffer with the returned handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002455 *
2456 * This function implements the LocateHandleBuffer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002457 *
Mario Six78a88f72018-07-10 08:40:17 +02002458 * See the Unified Extensible Firmware Interface (UEFI) specification for
2459 * details.
2460 *
2461 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002462 */
AKASHI Takahirob51ec632020-03-17 11:12:36 +09002463efi_status_t EFIAPI efi_locate_handle_buffer(
Alexander Grafbee91162016-03-04 01:09:59 +01002464 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002465 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002466 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafbee91162016-03-04 01:09:59 +01002467{
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002468 efi_status_t r;
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002469 efi_uintn_t buffer_size = 0;
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002470
Rob Clark778e6af2017-09-13 18:05:41 -04002471 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafbee91162016-03-04 01:09:59 +01002472 no_handles, buffer);
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002473
2474 if (!no_handles || !buffer) {
2475 r = EFI_INVALID_PARAMETER;
2476 goto out;
2477 }
2478 *no_handles = 0;
2479 *buffer = NULL;
2480 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2481 *buffer);
2482 if (r != EFI_BUFFER_TOO_SMALL)
2483 goto out;
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002484 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002485 (void **)buffer);
2486 if (r != EFI_SUCCESS)
2487 goto out;
2488 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2489 *buffer);
2490 if (r == EFI_SUCCESS)
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002491 *no_handles = buffer_size / sizeof(efi_handle_t);
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002492out:
2493 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002494}
2495
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002496/**
Mario Six78a88f72018-07-10 08:40:17 +02002497 * efi_locate_protocol() - find an interface implementing a protocol
2498 * @protocol: GUID of the protocol
2499 * @registration: registration key passed to the notification function
2500 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002501 *
2502 * This function implements the LocateProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002503 *
Mario Six78a88f72018-07-10 08:40:17 +02002504 * See the Unified Extensible Firmware Interface (UEFI) specification for
2505 * details.
2506 *
2507 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002508 */
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002509static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002510 void *registration,
2511 void **protocol_interface)
2512{
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002513 struct efi_handler *handler;
Heinrich Schuchardt9172cd92017-10-26 19:25:57 +02002514 efi_status_t ret;
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002515 struct efi_object *efiobj;
Alexander Grafbee91162016-03-04 01:09:59 +01002516
Rob Clark778e6af2017-09-13 18:05:41 -04002517 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002518
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002519 /*
2520 * The UEFI spec explicitly requires a protocol even if a registration
2521 * key is provided. This differs from the logic in LocateHandle().
2522 */
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002523 if (!protocol || !protocol_interface)
2524 return EFI_EXIT(EFI_INVALID_PARAMETER);
2525
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002526 if (registration) {
2527 struct efi_register_notify_event *event;
2528 struct efi_protocol_notification *handle;
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002529
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002530 event = efi_check_register_notify_event(registration);
2531 if (!event)
2532 return EFI_EXIT(EFI_INVALID_PARAMETER);
2533 /*
2534 * The UEFI spec requires to return EFI_NOT_FOUND if no
2535 * protocol instance matches protocol and registration.
2536 * So let's do the same for a mismatch between protocol and
2537 * registration.
2538 */
2539 if (guidcmp(&event->protocol, protocol))
2540 goto not_found;
2541 if (list_empty(&event->handles))
2542 goto not_found;
2543 handle = list_first_entry(&event->handles,
2544 struct efi_protocol_notification,
2545 link);
2546 efiobj = handle->handle;
2547 list_del(&handle->link);
2548 free(handle);
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02002549 ret = efi_search_protocol(efiobj, protocol, &handler);
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002550 if (ret == EFI_SUCCESS)
2551 goto found;
2552 } else {
2553 list_for_each_entry(efiobj, &efi_obj_list, link) {
2554 ret = efi_search_protocol(efiobj, protocol, &handler);
2555 if (ret == EFI_SUCCESS)
2556 goto found;
Alexander Grafbee91162016-03-04 01:09:59 +01002557 }
2558 }
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002559not_found:
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002560 *protocol_interface = NULL;
Alexander Grafbee91162016-03-04 01:09:59 +01002561 return EFI_EXIT(EFI_NOT_FOUND);
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002562found:
2563 *protocol_interface = handler->protocol_interface;
2564 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002565}
2566
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002567/**
Mario Six78a88f72018-07-10 08:40:17 +02002568 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2569 * interfaces
2570 * @handle: handle on which the protocol interfaces shall be installed
2571 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2572 * interfaces
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002573 *
2574 * This function implements the MultipleProtocolInterfaces service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002575 *
Mario Six78a88f72018-07-10 08:40:17 +02002576 * See the Unified Extensible Firmware Interface (UEFI) specification for
2577 * details.
2578 *
2579 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002580 */
Heinrich Schuchardt7657ae12019-04-12 06:59:49 +02002581efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002582 (efi_handle_t *handle, ...)
Alexander Grafbee91162016-03-04 01:09:59 +01002583{
2584 EFI_ENTRY("%p", handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002585
Alexander Grafbeb077a2018-06-18 17:23:05 +02002586 efi_va_list argptr;
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002587 const efi_guid_t *protocol;
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002588 void *protocol_interface;
Heinrich Schuchardt226cddb2019-05-16 21:54:04 +02002589 efi_handle_t old_handle;
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002590 efi_status_t r = EFI_SUCCESS;
2591 int i = 0;
2592
2593 if (!handle)
2594 return EFI_EXIT(EFI_INVALID_PARAMETER);
2595
Alexander Grafbeb077a2018-06-18 17:23:05 +02002596 efi_va_start(argptr, handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002597 for (;;) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002598 protocol = efi_va_arg(argptr, efi_guid_t*);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002599 if (!protocol)
2600 break;
Alexander Grafbeb077a2018-06-18 17:23:05 +02002601 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt226cddb2019-05-16 21:54:04 +02002602 /* Check that a device path has not been installed before */
2603 if (!guidcmp(protocol, &efi_guid_device_path)) {
2604 struct efi_device_path *dp = protocol_interface;
2605
2606 r = EFI_CALL(efi_locate_device_path(protocol, &dp,
2607 &old_handle));
Heinrich Schuchardt20562892019-05-20 19:55:18 +00002608 if (r == EFI_SUCCESS &&
2609 dp->type == DEVICE_PATH_TYPE_END) {
2610 EFI_PRINT("Path %pD already installed\n",
2611 protocol_interface);
Heinrich Schuchardt226cddb2019-05-16 21:54:04 +02002612 r = EFI_ALREADY_STARTED;
2613 break;
2614 }
2615 }
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01002616 r = EFI_CALL(efi_install_protocol_interface(
2617 handle, protocol,
2618 EFI_NATIVE_INTERFACE,
2619 protocol_interface));
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002620 if (r != EFI_SUCCESS)
2621 break;
2622 i++;
2623 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002624 efi_va_end(argptr);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002625 if (r == EFI_SUCCESS)
2626 return EFI_EXIT(r);
2627
Heinrich Schuchardt62471e42017-10-26 19:25:42 +02002628 /* If an error occurred undo all changes. */
Alexander Grafbeb077a2018-06-18 17:23:05 +02002629 efi_va_start(argptr, handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002630 for (; i; --i) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002631 protocol = efi_va_arg(argptr, efi_guid_t*);
2632 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002633 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
Heinrich Schuchardtcd534082017-11-06 21:17:45 +01002634 protocol_interface));
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002635 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002636 efi_va_end(argptr);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002637
2638 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002639}
2640
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002641/**
Mario Six78a88f72018-07-10 08:40:17 +02002642 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2643 * interfaces
2644 * @handle: handle from which the protocol interfaces shall be removed
2645 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2646 * interfaces
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002647 *
2648 * This function implements the UninstallMultipleProtocolInterfaces service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002649 *
Mario Six78a88f72018-07-10 08:40:17 +02002650 * See the Unified Extensible Firmware Interface (UEFI) specification for
2651 * details.
2652 *
2653 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002654 */
Alexander Grafbee91162016-03-04 01:09:59 +01002655static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002656 efi_handle_t handle, ...)
Alexander Grafbee91162016-03-04 01:09:59 +01002657{
2658 EFI_ENTRY("%p", handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002659
Alexander Grafbeb077a2018-06-18 17:23:05 +02002660 efi_va_list argptr;
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002661 const efi_guid_t *protocol;
2662 void *protocol_interface;
2663 efi_status_t r = EFI_SUCCESS;
2664 size_t i = 0;
2665
2666 if (!handle)
2667 return EFI_EXIT(EFI_INVALID_PARAMETER);
2668
Alexander Grafbeb077a2018-06-18 17:23:05 +02002669 efi_va_start(argptr, handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002670 for (;;) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002671 protocol = efi_va_arg(argptr, efi_guid_t*);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002672 if (!protocol)
2673 break;
Alexander Grafbeb077a2018-06-18 17:23:05 +02002674 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02002675 r = efi_uninstall_protocol(handle, protocol,
2676 protocol_interface);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002677 if (r != EFI_SUCCESS)
2678 break;
2679 i++;
2680 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002681 efi_va_end(argptr);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02002682 if (r == EFI_SUCCESS) {
2683 /* If the last protocol has been removed, delete the handle. */
2684 if (list_empty(&handle->protocols)) {
2685 list_del(&handle->link);
2686 free(handle);
2687 }
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002688 return EFI_EXIT(r);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02002689 }
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002690
2691 /* If an error occurred undo all changes. */
Alexander Grafbeb077a2018-06-18 17:23:05 +02002692 efi_va_start(argptr, handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002693 for (; i; --i) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002694 protocol = efi_va_arg(argptr, efi_guid_t*);
2695 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002696 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2697 EFI_NATIVE_INTERFACE,
2698 protocol_interface));
2699 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002700 efi_va_end(argptr);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002701
Heinrich Schuchardte2373022018-09-24 19:57:27 +02002702 /* In case of an error always return EFI_INVALID_PARAMETER */
2703 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafbee91162016-03-04 01:09:59 +01002704}
2705
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002706/**
Mario Six78a88f72018-07-10 08:40:17 +02002707 * efi_calculate_crc32() - calculate cyclic redundancy code
2708 * @data: buffer with data
2709 * @data_size: size of buffer in bytes
2710 * @crc32_p: cyclic redundancy code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002711 *
2712 * This function implements the CalculateCrc32 service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002713 *
Mario Six78a88f72018-07-10 08:40:17 +02002714 * See the Unified Extensible Firmware Interface (UEFI) specification for
2715 * details.
2716 *
2717 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002718 */
Heinrich Schuchardt8aa83602018-07-07 15:36:04 +02002719static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2720 efi_uintn_t data_size,
2721 u32 *crc32_p)
Alexander Grafbee91162016-03-04 01:09:59 +01002722{
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002723 efi_status_t ret = EFI_SUCCESS;
2724
Heinrich Schuchardt8aa83602018-07-07 15:36:04 +02002725 EFI_ENTRY("%p, %zu", data, data_size);
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002726 if (!data || !data_size || !crc32_p) {
2727 ret = EFI_INVALID_PARAMETER;
2728 goto out;
2729 }
Alexander Grafbee91162016-03-04 01:09:59 +01002730 *crc32_p = crc32(0, data, data_size);
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002731out:
2732 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002733}
2734
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002735/**
Mario Six78a88f72018-07-10 08:40:17 +02002736 * efi_copy_mem() - copy memory
2737 * @destination: destination of the copy operation
2738 * @source: source of the copy operation
2739 * @length: number of bytes to copy
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002740 *
2741 * This function implements the CopyMem service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002742 *
Mario Six78a88f72018-07-10 08:40:17 +02002743 * See the Unified Extensible Firmware Interface (UEFI) specification for
2744 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002745 */
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002746static void EFIAPI efi_copy_mem(void *destination, const void *source,
2747 size_t length)
Alexander Grafbee91162016-03-04 01:09:59 +01002748{
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002749 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Heinrich Schuchardt0bc81a72019-01-09 21:41:13 +01002750 memmove(destination, source, length);
Heinrich Schuchardtf7c78172017-10-05 16:35:51 +02002751 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002752}
2753
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002754/**
Mario Six78a88f72018-07-10 08:40:17 +02002755 * efi_set_mem() - Fill memory with a byte value.
2756 * @buffer: buffer to fill
2757 * @size: size of buffer in bytes
2758 * @value: byte to copy to the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002759 *
2760 * This function implements the SetMem service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002761 *
Mario Six78a88f72018-07-10 08:40:17 +02002762 * See the Unified Extensible Firmware Interface (UEFI) specification for
2763 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002764 */
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002765static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafbee91162016-03-04 01:09:59 +01002766{
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002767 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafbee91162016-03-04 01:09:59 +01002768 memset(buffer, value, size);
Heinrich Schuchardtf7c78172017-10-05 16:35:51 +02002769 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002770}
2771
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002772/**
Mario Six78a88f72018-07-10 08:40:17 +02002773 * efi_protocol_open() - open protocol interface on a handle
2774 * @handler: handler of a protocol
2775 * @protocol_interface: interface implementing the protocol
2776 * @agent_handle: handle of the driver
2777 * @controller_handle: handle of the controller
2778 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002779 *
Mario Six78a88f72018-07-10 08:40:17 +02002780 * Return: status code
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002781 */
Heinrich Schuchardtf9ad2402020-01-10 12:33:59 +01002782efi_status_t efi_protocol_open(
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002783 struct efi_handler *handler,
2784 void **protocol_interface, void *agent_handle,
2785 void *controller_handle, uint32_t attributes)
2786{
2787 struct efi_open_protocol_info_item *item;
2788 struct efi_open_protocol_info_entry *match = NULL;
2789 bool opened_by_driver = false;
2790 bool opened_exclusive = false;
2791
2792 /* If there is no agent, only return the interface */
2793 if (!agent_handle)
2794 goto out;
2795
2796 /* For TEST_PROTOCOL ignore interface attribute */
2797 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2798 *protocol_interface = NULL;
2799
2800 /*
2801 * Check if the protocol is already opened by a driver with the same
2802 * attributes or opened exclusively
2803 */
2804 list_for_each_entry(item, &handler->open_infos, link) {
2805 if (item->info.agent_handle == agent_handle) {
2806 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2807 (item->info.attributes == attributes))
2808 return EFI_ALREADY_STARTED;
Heinrich Schuchardt399a39e2019-05-30 14:16:31 +02002809 } else {
2810 if (item->info.attributes &
2811 EFI_OPEN_PROTOCOL_BY_DRIVER)
2812 opened_by_driver = true;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002813 }
2814 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2815 opened_exclusive = true;
2816 }
2817
2818 /* Only one controller can open the protocol exclusively */
Heinrich Schuchardt399a39e2019-05-30 14:16:31 +02002819 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2820 if (opened_exclusive)
2821 return EFI_ACCESS_DENIED;
2822 } else if (attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
2823 if (opened_exclusive || opened_by_driver)
2824 return EFI_ACCESS_DENIED;
2825 }
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002826
2827 /* Prepare exclusive opening */
2828 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2829 /* Try to disconnect controllers */
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002830disconnect_next:
2831 opened_by_driver = false;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002832 list_for_each_entry(item, &handler->open_infos, link) {
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002833 efi_status_t ret;
2834
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002835 if (item->info.attributes ==
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002836 EFI_OPEN_PROTOCOL_BY_DRIVER) {
2837 ret = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002838 item->info.controller_handle,
2839 item->info.agent_handle,
2840 NULL));
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002841 if (ret == EFI_SUCCESS)
2842 /*
2843 * Child controllers may have been
2844 * removed from the open_infos list. So
2845 * let's restart the loop.
2846 */
2847 goto disconnect_next;
2848 else
2849 opened_by_driver = true;
2850 }
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002851 }
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002852 /* Only one driver can be connected */
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002853 if (opened_by_driver)
2854 return EFI_ACCESS_DENIED;
2855 }
2856
2857 /* Find existing entry */
2858 list_for_each_entry(item, &handler->open_infos, link) {
2859 if (item->info.agent_handle == agent_handle &&
Heinrich Schuchardtb4863ba2019-06-01 20:15:10 +02002860 item->info.controller_handle == controller_handle &&
2861 item->info.attributes == attributes)
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002862 match = &item->info;
2863 }
2864 /* None found, create one */
2865 if (!match) {
2866 match = efi_create_open_info(handler);
2867 if (!match)
2868 return EFI_OUT_OF_RESOURCES;
2869 }
2870
2871 match->agent_handle = agent_handle;
2872 match->controller_handle = controller_handle;
2873 match->attributes = attributes;
2874 match->open_count++;
2875
2876out:
2877 /* For TEST_PROTOCOL ignore interface attribute. */
2878 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2879 *protocol_interface = handler->protocol_interface;
2880
2881 return EFI_SUCCESS;
2882}
2883
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002884/**
Mario Six78a88f72018-07-10 08:40:17 +02002885 * efi_open_protocol() - open protocol interface on a handle
2886 * @handle: handle on which the protocol shall be opened
2887 * @protocol: GUID of the protocol
2888 * @protocol_interface: interface implementing the protocol
2889 * @agent_handle: handle of the driver
2890 * @controller_handle: handle of the controller
2891 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002892 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002893 * This function implements the OpenProtocol interface.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002894 *
Mario Six78a88f72018-07-10 08:40:17 +02002895 * See the Unified Extensible Firmware Interface (UEFI) specification for
2896 * details.
2897 *
2898 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002899 */
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002900static efi_status_t EFIAPI efi_open_protocol
2901 (efi_handle_t handle, const efi_guid_t *protocol,
2902 void **protocol_interface, efi_handle_t agent_handle,
2903 efi_handle_t controller_handle, uint32_t attributes)
Alexander Grafbee91162016-03-04 01:09:59 +01002904{
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01002905 struct efi_handler *handler;
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002906 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +01002907
Rob Clark778e6af2017-09-13 18:05:41 -04002908 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002909 protocol_interface, agent_handle, controller_handle,
2910 attributes);
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02002911
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002912 if (!handle || !protocol ||
2913 (!protocol_interface && attributes !=
2914 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
2915 goto out;
2916 }
2917
2918 switch (attributes) {
2919 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2920 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2921 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2922 break;
2923 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2924 if (controller_handle == handle)
2925 goto out;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002926 /* fall-through */
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002927 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2928 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002929 /* Check that the controller handle is valid */
2930 if (!efi_search_obj(controller_handle))
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002931 goto out;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002932 /* fall-through */
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002933 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002934 /* Check that the agent handle is valid */
2935 if (!efi_search_obj(agent_handle))
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002936 goto out;
2937 break;
2938 default:
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02002939 goto out;
2940 }
2941
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01002942 r = efi_search_protocol(handle, protocol, &handler);
Heinrich Schuchardte7c3cd62019-05-05 11:24:53 +02002943 switch (r) {
2944 case EFI_SUCCESS:
2945 break;
2946 case EFI_NOT_FOUND:
2947 r = EFI_UNSUPPORTED;
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01002948 goto out;
Heinrich Schuchardte7c3cd62019-05-05 11:24:53 +02002949 default:
2950 goto out;
2951 }
Alexander Grafbee91162016-03-04 01:09:59 +01002952
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002953 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2954 controller_handle, attributes);
Alexander Grafbee91162016-03-04 01:09:59 +01002955out:
2956 return EFI_EXIT(r);
2957}
2958
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002959/**
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002960 * efi_start_image() - call the entry point of an image
2961 * @image_handle: handle of the image
2962 * @exit_data_size: size of the buffer
2963 * @exit_data: buffer to receive the exit data of the called image
2964 *
2965 * This function implements the StartImage service.
2966 *
2967 * See the Unified Extensible Firmware Interface (UEFI) specification for
2968 * details.
2969 *
2970 * Return: status code
2971 */
2972efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
2973 efi_uintn_t *exit_data_size,
2974 u16 **exit_data)
2975{
2976 struct efi_loaded_image_obj *image_obj =
2977 (struct efi_loaded_image_obj *)image_handle;
2978 efi_status_t ret;
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002979 void *info;
2980 efi_handle_t parent_image = current_image;
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01002981 efi_status_t exit_status;
2982 struct jmp_buf_data exit_jmp;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002983
2984 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
2985
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09002986 if (!efi_search_obj(image_handle))
2987 return EFI_EXIT(EFI_INVALID_PARAMETER);
2988
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002989 /* Check parameters */
Heinrich Schuchardt1d3e8dc2019-06-11 19:35:20 +02002990 if (image_obj->header.type != EFI_OBJECT_TYPE_LOADED_IMAGE)
2991 return EFI_EXIT(EFI_INVALID_PARAMETER);
2992
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09002993 if (image_obj->auth_status != EFI_IMAGE_AUTH_PASSED)
2994 return EFI_EXIT(EFI_SECURITY_VIOLATION);
2995
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002996 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2997 &info, NULL, NULL,
2998 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2999 if (ret != EFI_SUCCESS)
3000 return EFI_EXIT(EFI_INVALID_PARAMETER);
3001
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003002 image_obj->exit_data_size = exit_data_size;
3003 image_obj->exit_data = exit_data;
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003004 image_obj->exit_status = &exit_status;
3005 image_obj->exit_jmp = &exit_jmp;
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003006
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003007 /* call the image! */
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003008 if (setjmp(&exit_jmp)) {
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003009 /*
3010 * We called the entry point of the child image with EFI_CALL
3011 * in the lines below. The child image called the Exit() boot
3012 * service efi_exit() which executed the long jump that brought
3013 * us to the current line. This implies that the second half
3014 * of the EFI_CALL macro has not been executed.
3015 */
Heinrich Schuchardtd68d7f42020-09-10 12:22:54 +02003016#if defined(CONFIG_ARM) || defined(CONFIG_RISCV)
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003017 /*
3018 * efi_exit() called efi_restore_gd(). We have to undo this
3019 * otherwise __efi_entry_check() will put the wrong value into
3020 * app_gd.
3021 */
Heinrich Schuchardt4f7dc5f2020-05-27 01:58:30 +02003022 set_gd(app_gd);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003023#endif
3024 /*
3025 * To get ready to call EFI_EXIT below we have to execute the
3026 * missed out steps of EFI_CALL.
3027 */
3028 assert(__efi_entry_check());
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02003029 EFI_PRINT("%lu returned by started image\n",
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003030 (unsigned long)((uintptr_t)exit_status &
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02003031 ~EFI_ERROR_MASK));
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003032 current_image = parent_image;
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003033 return EFI_EXIT(exit_status);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003034 }
3035
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003036 current_image = image_handle;
Heinrich Schuchardtcd73aba2019-05-01 14:20:18 +02003037 image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +09003038 EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003039 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
3040
3041 /*
Heinrich Schuchardt55111c52020-01-10 22:06:54 +01003042 * Control is returned from a started UEFI image either by calling
3043 * Exit() (where exit data can be provided) or by simply returning from
3044 * the entry point. In the latter case call Exit() on behalf of the
3045 * image.
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003046 */
3047 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
3048}
3049
3050/**
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003051 * efi_delete_image() - delete loaded image from memory)
3052 *
3053 * @image_obj: handle of the loaded image
3054 * @loaded_image_protocol: loaded image protocol
3055 */
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02003056static efi_status_t efi_delete_image
3057 (struct efi_loaded_image_obj *image_obj,
3058 struct efi_loaded_image *loaded_image_protocol)
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003059{
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02003060 struct efi_object *efiobj;
3061 efi_status_t r, ret = EFI_SUCCESS;
3062
3063close_next:
3064 list_for_each_entry(efiobj, &efi_obj_list, link) {
3065 struct efi_handler *protocol;
3066
3067 list_for_each_entry(protocol, &efiobj->protocols, link) {
3068 struct efi_open_protocol_info_item *info;
3069
3070 list_for_each_entry(info, &protocol->open_infos, link) {
3071 if (info->info.agent_handle !=
3072 (efi_handle_t)image_obj)
3073 continue;
3074 r = EFI_CALL(efi_close_protocol
3075 (efiobj, protocol->guid,
3076 info->info.agent_handle,
3077 info->info.controller_handle
3078 ));
3079 if (r != EFI_SUCCESS)
3080 ret = r;
3081 /*
3082 * Closing protocols may results in further
3083 * items being deleted. To play it safe loop
3084 * over all elements again.
3085 */
3086 goto close_next;
3087 }
3088 }
3089 }
3090
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003091 efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
3092 efi_size_in_pages(loaded_image_protocol->image_size));
3093 efi_delete_handle(&image_obj->header);
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02003094
3095 return ret;
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003096}
3097
3098/**
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003099 * efi_unload_image() - unload an EFI image
3100 * @image_handle: handle of the image to be unloaded
3101 *
3102 * This function implements the UnloadImage service.
3103 *
3104 * See the Unified Extensible Firmware Interface (UEFI) specification for
3105 * details.
3106 *
3107 * Return: status code
3108 */
3109efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
3110{
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003111 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003112 struct efi_object *efiobj;
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003113 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003114
3115 EFI_ENTRY("%p", image_handle);
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003116
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003117 efiobj = efi_search_obj(image_handle);
3118 if (!efiobj) {
3119 ret = EFI_INVALID_PARAMETER;
3120 goto out;
3121 }
3122 /* Find the loaded image protocol */
3123 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
3124 (void **)&loaded_image_protocol,
3125 NULL, NULL,
3126 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3127 if (ret != EFI_SUCCESS) {
3128 ret = EFI_INVALID_PARAMETER;
3129 goto out;
3130 }
3131 switch (efiobj->type) {
3132 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3133 /* Call the unload function */
3134 if (!loaded_image_protocol->unload) {
3135 ret = EFI_UNSUPPORTED;
3136 goto out;
3137 }
3138 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
3139 if (ret != EFI_SUCCESS)
3140 goto out;
3141 break;
3142 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3143 break;
3144 default:
3145 ret = EFI_INVALID_PARAMETER;
3146 goto out;
3147 }
3148 efi_delete_image((struct efi_loaded_image_obj *)efiobj,
3149 loaded_image_protocol);
3150out:
3151 return EFI_EXIT(ret);
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003152}
3153
3154/**
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003155 * efi_update_exit_data() - fill exit data parameters of StartImage()
3156 *
Heinrich Schuchardt9ce91272019-07-14 11:25:06 +02003157 * @image_obj: image handle
3158 * @exit_data_size: size of the exit data buffer
3159 * @exit_data: buffer with data returned by UEFI payload
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003160 * Return: status code
3161 */
3162static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
3163 efi_uintn_t exit_data_size,
3164 u16 *exit_data)
3165{
3166 efi_status_t ret;
3167
3168 /*
3169 * If exit_data is not provided to StartImage(), exit_data_size must be
3170 * ignored.
3171 */
3172 if (!image_obj->exit_data)
3173 return EFI_SUCCESS;
3174 if (image_obj->exit_data_size)
3175 *image_obj->exit_data_size = exit_data_size;
3176 if (exit_data_size && exit_data) {
3177 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
3178 exit_data_size,
3179 (void **)image_obj->exit_data);
3180 if (ret != EFI_SUCCESS)
3181 return ret;
3182 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
3183 } else {
3184 image_obj->exit_data = NULL;
3185 }
3186 return EFI_SUCCESS;
3187}
3188
3189/**
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003190 * efi_exit() - leave an EFI application or driver
3191 * @image_handle: handle of the application or driver that is exiting
3192 * @exit_status: status code
3193 * @exit_data_size: size of the buffer in bytes
3194 * @exit_data: buffer with data describing an error
3195 *
3196 * This function implements the Exit service.
3197 *
3198 * See the Unified Extensible Firmware Interface (UEFI) specification for
3199 * details.
3200 *
3201 * Return: status code
3202 */
3203static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
3204 efi_status_t exit_status,
3205 efi_uintn_t exit_data_size,
3206 u16 *exit_data)
3207{
3208 /*
3209 * TODO: We should call the unload procedure of the loaded
3210 * image protocol.
3211 */
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003212 efi_status_t ret;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003213 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003214 struct efi_loaded_image_obj *image_obj =
3215 (struct efi_loaded_image_obj *)image_handle;
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003216 struct jmp_buf_data *exit_jmp;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003217
3218 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
3219 exit_data_size, exit_data);
3220
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003221 /* Check parameters */
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003222 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003223 (void **)&loaded_image_protocol,
3224 NULL, NULL,
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003225 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003226 if (ret != EFI_SUCCESS) {
3227 ret = EFI_INVALID_PARAMETER;
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003228 goto out;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003229 }
3230
3231 /* Unloading of unstarted images */
3232 switch (image_obj->header.type) {
3233 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3234 break;
3235 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3236 efi_delete_image(image_obj, loaded_image_protocol);
3237 ret = EFI_SUCCESS;
3238 goto out;
3239 default:
3240 /* Handle does not refer to loaded image */
3241 ret = EFI_INVALID_PARAMETER;
3242 goto out;
3243 }
3244 /* A started image can only be unloaded it is the last one started. */
3245 if (image_handle != current_image) {
3246 ret = EFI_INVALID_PARAMETER;
3247 goto out;
3248 }
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003249
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003250 /* Exit data is only foreseen in case of failure. */
3251 if (exit_status != EFI_SUCCESS) {
3252 ret = efi_update_exit_data(image_obj, exit_data_size,
3253 exit_data);
3254 /* Exiting has priority. Don't return error to caller. */
3255 if (ret != EFI_SUCCESS)
3256 EFI_PRINT("%s: out of memory\n", __func__);
3257 }
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003258 /* efi_delete_image() frees image_obj. Copy before the call. */
3259 exit_jmp = image_obj->exit_jmp;
3260 *image_obj->exit_status = exit_status;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003261 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
3262 exit_status != EFI_SUCCESS)
3263 efi_delete_image(image_obj, loaded_image_protocol);
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003264
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003265 /* Make sure entry/exit counts for EFI world cross-overs match */
3266 EFI_EXIT(exit_status);
3267
3268 /*
3269 * But longjmp out with the U-Boot gd, not the application's, as
3270 * the other end is a setjmp call inside EFI context.
3271 */
3272 efi_restore_gd();
3273
Heinrich Schuchardtf8212f02020-12-28 23:24:40 +01003274 longjmp(exit_jmp, 1);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003275
3276 panic("EFI application exited");
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003277out:
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003278 return EFI_EXIT(ret);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003279}
3280
3281/**
Mario Six78a88f72018-07-10 08:40:17 +02003282 * efi_handle_protocol() - get interface of a protocol on a handle
3283 * @handle: handle on which the protocol shall be opened
3284 * @protocol: GUID of the protocol
3285 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003286 *
3287 * This function implements the HandleProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003288 *
Mario Six78a88f72018-07-10 08:40:17 +02003289 * See the Unified Extensible Firmware Interface (UEFI) specification for
3290 * details.
3291 *
3292 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003293 */
AKASHI Takahirob51ec632020-03-17 11:12:36 +09003294efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
3295 const efi_guid_t *protocol,
3296 void **protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01003297{
Heinrich Schuchardt755d42d2019-06-01 19:29:39 +02003298 return efi_open_protocol(handle, protocol, protocol_interface, efi_root,
xypron.glpk@gmx.de8e1d3292017-06-29 21:16:19 +02003299 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafbee91162016-03-04 01:09:59 +01003300}
3301
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003302/**
Mario Six78a88f72018-07-10 08:40:17 +02003303 * efi_bind_controller() - bind a single driver to a controller
3304 * @controller_handle: controller handle
3305 * @driver_image_handle: driver handle
3306 * @remain_device_path: remaining path
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003307 *
Mario Six78a88f72018-07-10 08:40:17 +02003308 * Return: status code
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003309 */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003310static efi_status_t efi_bind_controller(
3311 efi_handle_t controller_handle,
3312 efi_handle_t driver_image_handle,
3313 struct efi_device_path *remain_device_path)
3314{
3315 struct efi_driver_binding_protocol *binding_protocol;
3316 efi_status_t r;
3317
3318 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3319 &efi_guid_driver_binding_protocol,
3320 (void **)&binding_protocol,
3321 driver_image_handle, NULL,
3322 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3323 if (r != EFI_SUCCESS)
3324 return r;
3325 r = EFI_CALL(binding_protocol->supported(binding_protocol,
3326 controller_handle,
3327 remain_device_path));
3328 if (r == EFI_SUCCESS)
3329 r = EFI_CALL(binding_protocol->start(binding_protocol,
3330 controller_handle,
3331 remain_device_path));
3332 EFI_CALL(efi_close_protocol(driver_image_handle,
3333 &efi_guid_driver_binding_protocol,
3334 driver_image_handle, NULL));
3335 return r;
3336}
3337
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003338/**
Mario Six78a88f72018-07-10 08:40:17 +02003339 * efi_connect_single_controller() - connect a single driver to a controller
3340 * @controller_handle: controller
3341 * @driver_image_handle: driver
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003342 * @remain_device_path: remaining path
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003343 *
Mario Six78a88f72018-07-10 08:40:17 +02003344 * Return: status code
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003345 */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003346static efi_status_t efi_connect_single_controller(
3347 efi_handle_t controller_handle,
3348 efi_handle_t *driver_image_handle,
3349 struct efi_device_path *remain_device_path)
3350{
3351 efi_handle_t *buffer;
3352 size_t count;
3353 size_t i;
3354 efi_status_t r;
3355 size_t connected = 0;
3356
3357 /* Get buffer with all handles with driver binding protocol */
3358 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3359 &efi_guid_driver_binding_protocol,
3360 NULL, &count, &buffer));
3361 if (r != EFI_SUCCESS)
3362 return r;
3363
Heinrich Schuchardt359a6992019-07-03 20:27:24 +02003364 /* Context Override */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003365 if (driver_image_handle) {
3366 for (; *driver_image_handle; ++driver_image_handle) {
3367 for (i = 0; i < count; ++i) {
3368 if (buffer[i] == *driver_image_handle) {
3369 buffer[i] = NULL;
3370 r = efi_bind_controller(
3371 controller_handle,
3372 *driver_image_handle,
3373 remain_device_path);
3374 /*
3375 * For drivers that do not support the
3376 * controller or are already connected
3377 * we receive an error code here.
3378 */
3379 if (r == EFI_SUCCESS)
3380 ++connected;
3381 }
3382 }
3383 }
3384 }
3385
3386 /*
3387 * TODO: Some overrides are not yet implemented:
3388 * - Platform Driver Override
3389 * - Driver Family Override Search
3390 * - Bus Specific Driver Override
3391 */
3392
3393 /* Driver Binding Search */
3394 for (i = 0; i < count; ++i) {
3395 if (buffer[i]) {
3396 r = efi_bind_controller(controller_handle,
3397 buffer[i],
3398 remain_device_path);
3399 if (r == EFI_SUCCESS)
3400 ++connected;
3401 }
3402 }
3403
3404 efi_free_pool(buffer);
3405 if (!connected)
3406 return EFI_NOT_FOUND;
3407 return EFI_SUCCESS;
3408}
3409
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003410/**
Mario Six78a88f72018-07-10 08:40:17 +02003411 * efi_connect_controller() - connect a controller to a driver
3412 * @controller_handle: handle of the controller
3413 * @driver_image_handle: handle of the driver
3414 * @remain_device_path: device path of a child controller
3415 * @recursive: true to connect all child controllers
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003416 *
3417 * This function implements the ConnectController service.
Mario Six78a88f72018-07-10 08:40:17 +02003418 *
3419 * See the Unified Extensible Firmware Interface (UEFI) specification for
3420 * details.
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003421 *
3422 * First all driver binding protocol handles are tried for binding drivers.
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003423 * Afterwards all handles that have opened a protocol of the controller
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003424 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3425 *
Mario Six78a88f72018-07-10 08:40:17 +02003426 * Return: status code
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003427 */
3428static efi_status_t EFIAPI efi_connect_controller(
3429 efi_handle_t controller_handle,
3430 efi_handle_t *driver_image_handle,
3431 struct efi_device_path *remain_device_path,
3432 bool recursive)
3433{
3434 efi_status_t r;
3435 efi_status_t ret = EFI_NOT_FOUND;
3436 struct efi_object *efiobj;
3437
Heinrich Schuchardtd1788362018-12-09 16:39:20 +01003438 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003439 remain_device_path, recursive);
3440
3441 efiobj = efi_search_obj(controller_handle);
3442 if (!efiobj) {
3443 ret = EFI_INVALID_PARAMETER;
3444 goto out;
3445 }
3446
3447 r = efi_connect_single_controller(controller_handle,
3448 driver_image_handle,
3449 remain_device_path);
3450 if (r == EFI_SUCCESS)
3451 ret = EFI_SUCCESS;
3452 if (recursive) {
3453 struct efi_handler *handler;
3454 struct efi_open_protocol_info_item *item;
3455
3456 list_for_each_entry(handler, &efiobj->protocols, link) {
3457 list_for_each_entry(item, &handler->open_infos, link) {
3458 if (item->info.attributes &
3459 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3460 r = EFI_CALL(efi_connect_controller(
3461 item->info.controller_handle,
3462 driver_image_handle,
3463 remain_device_path,
3464 recursive));
3465 if (r == EFI_SUCCESS)
3466 ret = EFI_SUCCESS;
3467 }
3468 }
3469 }
3470 }
Heinrich Schuchardt359a6992019-07-03 20:27:24 +02003471 /* Check for child controller specified by end node */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003472 if (ret != EFI_SUCCESS && remain_device_path &&
3473 remain_device_path->type == DEVICE_PATH_TYPE_END)
3474 ret = EFI_SUCCESS;
3475out:
3476 return EFI_EXIT(ret);
3477}
3478
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003479/**
Mario Six78a88f72018-07-10 08:40:17 +02003480 * efi_reinstall_protocol_interface() - reinstall protocol interface
3481 * @handle: handle on which the protocol shall be reinstalled
3482 * @protocol: GUID of the protocol to be installed
3483 * @old_interface: interface to be removed
3484 * @new_interface: interface to be installed
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003485 *
3486 * This function implements the ReinstallProtocolInterface service.
Mario Six78a88f72018-07-10 08:40:17 +02003487 *
3488 * See the Unified Extensible Firmware Interface (UEFI) specification for
3489 * details.
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003490 *
3491 * The old interface is uninstalled. The new interface is installed.
3492 * Drivers are connected.
3493 *
Mario Six78a88f72018-07-10 08:40:17 +02003494 * Return: status code
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003495 */
3496static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3497 efi_handle_t handle, const efi_guid_t *protocol,
3498 void *old_interface, void *new_interface)
3499{
3500 efi_status_t ret;
3501
3502 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
3503 new_interface);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02003504
3505 /* Uninstall protocol but do not delete handle */
3506 ret = efi_uninstall_protocol(handle, protocol, old_interface);
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003507 if (ret != EFI_SUCCESS)
3508 goto out;
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02003509
3510 /* Install the new protocol */
3511 ret = efi_add_protocol(handle, protocol, new_interface);
3512 /*
3513 * The UEFI spec does not specify what should happen to the handle
3514 * if in case of an error no protocol interface remains on the handle.
3515 * So let's do nothing here.
3516 */
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003517 if (ret != EFI_SUCCESS)
3518 goto out;
3519 /*
3520 * The returned status code has to be ignored.
3521 * Do not create an error if no suitable driver for the handle exists.
3522 */
3523 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3524out:
3525 return EFI_EXIT(ret);
3526}
3527
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003528/**
Mario Six78a88f72018-07-10 08:40:17 +02003529 * efi_get_child_controllers() - get all child controllers associated to a driver
3530 * @efiobj: handle of the controller
3531 * @driver_handle: handle of the driver
3532 * @number_of_children: number of child controllers
3533 * @child_handle_buffer: handles of the the child controllers
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003534 *
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003535 * The allocated buffer has to be freed with free().
3536 *
Mario Six78a88f72018-07-10 08:40:17 +02003537 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003538 */
3539static efi_status_t efi_get_child_controllers(
3540 struct efi_object *efiobj,
3541 efi_handle_t driver_handle,
3542 efi_uintn_t *number_of_children,
3543 efi_handle_t **child_handle_buffer)
3544{
3545 struct efi_handler *handler;
3546 struct efi_open_protocol_info_item *item;
3547 efi_uintn_t count = 0, i;
3548 bool duplicate;
3549
3550 /* Count all child controller associations */
3551 list_for_each_entry(handler, &efiobj->protocols, link) {
3552 list_for_each_entry(item, &handler->open_infos, link) {
3553 if (item->info.agent_handle == driver_handle &&
3554 item->info.attributes &
3555 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3556 ++count;
3557 }
3558 }
3559 /*
3560 * Create buffer. In case of duplicate child controller assignments
3561 * the buffer will be too large. But that does not harm.
3562 */
3563 *number_of_children = 0;
Heinrich Schuchardt1047c6e2020-07-07 04:21:26 +02003564 if (!count)
3565 return EFI_SUCCESS;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003566 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3567 if (!*child_handle_buffer)
3568 return EFI_OUT_OF_RESOURCES;
3569 /* Copy unique child handles */
3570 list_for_each_entry(handler, &efiobj->protocols, link) {
3571 list_for_each_entry(item, &handler->open_infos, link) {
3572 if (item->info.agent_handle == driver_handle &&
3573 item->info.attributes &
3574 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3575 /* Check this is a new child controller */
3576 duplicate = false;
3577 for (i = 0; i < *number_of_children; ++i) {
3578 if ((*child_handle_buffer)[i] ==
3579 item->info.controller_handle)
3580 duplicate = true;
3581 }
3582 /* Copy handle to buffer */
3583 if (!duplicate) {
3584 i = (*number_of_children)++;
3585 (*child_handle_buffer)[i] =
3586 item->info.controller_handle;
3587 }
3588 }
3589 }
3590 }
3591 return EFI_SUCCESS;
3592}
3593
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003594/**
Mario Six78a88f72018-07-10 08:40:17 +02003595 * efi_disconnect_controller() - disconnect a controller from a driver
3596 * @controller_handle: handle of the controller
3597 * @driver_image_handle: handle of the driver
3598 * @child_handle: handle of the child to destroy
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003599 *
3600 * This function implements the DisconnectController service.
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003601 *
Mario Six78a88f72018-07-10 08:40:17 +02003602 * See the Unified Extensible Firmware Interface (UEFI) specification for
3603 * details.
3604 *
3605 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003606 */
3607static efi_status_t EFIAPI efi_disconnect_controller(
3608 efi_handle_t controller_handle,
3609 efi_handle_t driver_image_handle,
3610 efi_handle_t child_handle)
3611{
3612 struct efi_driver_binding_protocol *binding_protocol;
3613 efi_handle_t *child_handle_buffer = NULL;
3614 size_t number_of_children = 0;
3615 efi_status_t r;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003616 struct efi_object *efiobj;
Heinrich Schuchardt314bed62020-10-28 18:45:47 +01003617 bool sole_child;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003618
3619 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3620 child_handle);
3621
3622 efiobj = efi_search_obj(controller_handle);
3623 if (!efiobj) {
3624 r = EFI_INVALID_PARAMETER;
3625 goto out;
3626 }
3627
3628 if (child_handle && !efi_search_obj(child_handle)) {
3629 r = EFI_INVALID_PARAMETER;
3630 goto out;
3631 }
3632
3633 /* If no driver handle is supplied, disconnect all drivers */
3634 if (!driver_image_handle) {
3635 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3636 goto out;
3637 }
3638
3639 /* Create list of child handles */
Heinrich Schuchardt314bed62020-10-28 18:45:47 +01003640 r = efi_get_child_controllers(efiobj,
3641 driver_image_handle,
3642 &number_of_children,
3643 &child_handle_buffer);
3644 if (r != EFI_SUCCESS)
3645 return r;
3646 sole_child = (number_of_children == 1);
3647
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003648 if (child_handle) {
3649 number_of_children = 1;
Heinrich Schuchardt314bed62020-10-28 18:45:47 +01003650 free(child_handle_buffer);
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003651 child_handle_buffer = &child_handle;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003652 }
3653
3654 /* Get the driver binding protocol */
3655 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3656 &efi_guid_driver_binding_protocol,
3657 (void **)&binding_protocol,
3658 driver_image_handle, NULL,
3659 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003660 if (r != EFI_SUCCESS) {
3661 r = EFI_INVALID_PARAMETER;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003662 goto out;
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003663 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003664 /* Remove the children */
3665 if (number_of_children) {
3666 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3667 controller_handle,
3668 number_of_children,
3669 child_handle_buffer));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003670 if (r != EFI_SUCCESS) {
3671 r = EFI_DEVICE_ERROR;
3672 goto out;
3673 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003674 }
3675 /* Remove the driver */
Heinrich Schuchardt314bed62020-10-28 18:45:47 +01003676 if (!child_handle || sole_child) {
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003677 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3678 controller_handle,
3679 0, NULL));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003680 if (r != EFI_SUCCESS) {
3681 r = EFI_DEVICE_ERROR;
3682 goto out;
3683 }
3684 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003685 EFI_CALL(efi_close_protocol(driver_image_handle,
3686 &efi_guid_driver_binding_protocol,
3687 driver_image_handle, NULL));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003688 r = EFI_SUCCESS;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003689out:
3690 if (!child_handle)
3691 free(child_handle_buffer);
3692 return EFI_EXIT(r);
3693}
3694
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003695static struct efi_boot_services efi_boot_services = {
Alexander Grafbee91162016-03-04 01:09:59 +01003696 .hdr = {
Heinrich Schuchardt112f2432018-06-28 12:45:27 +02003697 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3698 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt71c846a2018-06-28 12:45:29 +02003699 .headersize = sizeof(struct efi_boot_services),
Alexander Grafbee91162016-03-04 01:09:59 +01003700 },
3701 .raise_tpl = efi_raise_tpl,
3702 .restore_tpl = efi_restore_tpl,
3703 .allocate_pages = efi_allocate_pages_ext,
3704 .free_pages = efi_free_pages_ext,
3705 .get_memory_map = efi_get_memory_map_ext,
Stefan Brünsead12742016-10-09 22:17:18 +02003706 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns42417bc2016-10-09 22:17:26 +02003707 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +02003708 .create_event = efi_create_event_ext,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +02003709 .set_timer = efi_set_timer_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003710 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02003711 .signal_event = efi_signal_event_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003712 .close_event = efi_close_event,
3713 .check_event = efi_check_event,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01003714 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafbee91162016-03-04 01:09:59 +01003715 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardtcd534082017-11-06 21:17:45 +01003716 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafbee91162016-03-04 01:09:59 +01003717 .handle_protocol = efi_handle_protocol,
3718 .reserved = NULL,
3719 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02003720 .locate_handle = efi_locate_handle_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003721 .locate_device_path = efi_locate_device_path,
Alexander Graf488bf122016-08-19 01:23:24 +02003722 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003723 .load_image = efi_load_image,
3724 .start_image = efi_start_image,
Alexander Grafa86aeaf2016-05-20 23:28:23 +02003725 .exit = efi_exit,
Alexander Grafbee91162016-03-04 01:09:59 +01003726 .unload_image = efi_unload_image,
3727 .exit_boot_services = efi_exit_boot_services,
3728 .get_next_monotonic_count = efi_get_next_monotonic_count,
3729 .stall = efi_stall,
3730 .set_watchdog_timer = efi_set_watchdog_timer,
3731 .connect_controller = efi_connect_controller,
3732 .disconnect_controller = efi_disconnect_controller,
3733 .open_protocol = efi_open_protocol,
3734 .close_protocol = efi_close_protocol,
3735 .open_protocol_information = efi_open_protocol_information,
3736 .protocols_per_handle = efi_protocols_per_handle,
3737 .locate_handle_buffer = efi_locate_handle_buffer,
3738 .locate_protocol = efi_locate_protocol,
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01003739 .install_multiple_protocol_interfaces =
3740 efi_install_multiple_protocol_interfaces,
3741 .uninstall_multiple_protocol_interfaces =
3742 efi_uninstall_multiple_protocol_interfaces,
Alexander Grafbee91162016-03-04 01:09:59 +01003743 .calculate_crc32 = efi_calculate_crc32,
3744 .copy_mem = efi_copy_mem,
3745 .set_mem = efi_set_mem,
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +01003746 .create_event_ex = efi_create_event_ex,
Alexander Grafbee91162016-03-04 01:09:59 +01003747};
3748
Heinrich Schuchardt0b386532018-06-28 12:45:30 +02003749static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
Alexander Grafbee91162016-03-04 01:09:59 +01003750
Alexander Graf3c63db92016-10-14 13:45:30 +02003751struct efi_system_table __efi_runtime_data systab = {
Alexander Grafbee91162016-03-04 01:09:59 +01003752 .hdr = {
3753 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
Heinrich Schuchardt112f2432018-06-28 12:45:27 +02003754 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt71c846a2018-06-28 12:45:29 +02003755 .headersize = sizeof(struct efi_system_table),
Alexander Grafbee91162016-03-04 01:09:59 +01003756 },
Heinrich Schuchardt0b386532018-06-28 12:45:30 +02003757 .fw_vendor = firmware_vendor,
3758 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
Heinrich Schuchardt3c783bf2019-06-15 14:51:06 +02003759 .runtime = &efi_runtime_services,
Alexander Grafbee91162016-03-04 01:09:59 +01003760 .nr_tables = 0,
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003761 .tables = NULL,
Alexander Grafbee91162016-03-04 01:09:59 +01003762};
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003763
3764/**
3765 * efi_initialize_system_table() - Initialize system table
3766 *
Heinrich Schuchardt04143592018-09-03 05:00:43 +02003767 * Return: status code
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003768 */
3769efi_status_t efi_initialize_system_table(void)
3770{
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003771 efi_status_t ret;
3772
3773 /* Allocate configuration table array */
3774 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3775 EFI_MAX_CONFIGURATION_TABLES *
3776 sizeof(struct efi_configuration_table),
3777 (void **)&systab.tables);
3778
Heinrich Schuchardt93148eb2019-06-29 02:00:16 +02003779 /*
3780 * These entries will be set to NULL in ExitBootServices(). To avoid
3781 * relocation in SetVirtualAddressMap(), set them dynamically.
3782 */
3783 systab.con_in = &efi_con_in;
3784 systab.con_out = &efi_con_out;
3785 systab.std_err = &efi_con_out;
3786 systab.boottime = &efi_boot_services;
3787
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003788 /* Set CRC32 field in table headers */
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003789 efi_update_table_header_crc32(&systab.hdr);
3790 efi_update_table_header_crc32(&efi_runtime_services.hdr);
3791 efi_update_table_header_crc32(&efi_boot_services.hdr);
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003792
3793 return ret;
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003794}