blob: a3f11eaf6228db0c925654b6f2912b5a801adcf7 [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>
Heinrich Schuchardt7d963322017-10-05 16:14:14 +02009#include <div64.h>
Alexander Grafbee91162016-03-04 01:09:59 +010010#include <efi_loader.h>
Simon Glass36bf4462019-11-14 12:57:42 -070011#include <irq_func.h>
Alexander Grafbee91162016-03-04 01:09:59 +010012#include <malloc.h>
Simon Glass10453152019-11-14 12:57:30 -070013#include <time.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090014#include <linux/libfdt_env.h>
Alexander Grafbee91162016-03-04 01:09:59 +010015#include <u-boot/crc.h>
16#include <bootm.h>
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +020017#include <pe.h>
Simon Glass3db71102019-11-14 12:57:16 -070018#include <u-boot/crc.h>
Alexander Grafbee91162016-03-04 01:09:59 +010019#include <watchdog.h>
20
21DECLARE_GLOBAL_DATA_PTR;
22
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +020023/* Task priority level */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +010024static efi_uintn_t efi_tpl = TPL_APPLICATION;
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +020025
Alexander Grafbee91162016-03-04 01:09:59 +010026/* This list contains all the EFI objects our payload has access to */
27LIST_HEAD(efi_obj_list);
28
Heinrich Schuchardt43bce442018-02-18 15:17:50 +010029/* List of all events */
Heinrich Schuchardt14b40482019-07-11 20:15:09 +020030__efi_runtime_data LIST_HEAD(efi_events);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +010031
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +020032/* List of queued events */
33LIST_HEAD(efi_event_queue);
34
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +020035/* Flag to disable timer activity in ExitBootServices() */
36static bool timers_enabled = true;
37
Heinrich Schuchardtab15d412019-05-04 17:27:54 +020038/* List of all events registered by RegisterProtocolNotify() */
39LIST_HEAD(efi_register_notify_events);
40
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +010041/* Handle of the currently executing image */
42static efi_handle_t current_image;
43
Simon Glass65e4c0b2016-09-25 15:27:35 -060044#ifdef CONFIG_ARM
Alexander Grafbee91162016-03-04 01:09:59 +010045/*
46 * The "gd" pointer lives in a register on ARM and AArch64 that we declare
47 * fixed when compiling U-Boot. However, the payload does not know about that
48 * restriction so we need to manually swap its and our view of that register on
49 * EFI callback entry/exit.
50 */
51static volatile void *efi_gd, *app_gd;
Simon Glass65e4c0b2016-09-25 15:27:35 -060052#endif
Alexander Grafbee91162016-03-04 01:09:59 +010053
Heinrich Schuchardt914df752019-02-09 14:10:39 +010054/* 1 if inside U-Boot code, 0 if inside EFI payload code */
55static int entry_count = 1;
Rob Clarkaf65db82017-07-27 08:04:19 -040056static int nesting_level;
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +010057/* GUID of the device tree table */
58const efi_guid_t efi_guid_fdt = EFI_FDT_GUID;
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +010059/* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
60const efi_guid_t efi_guid_driver_binding_protocol =
61 EFI_DRIVER_BINDING_PROTOCOL_GUID;
Rob Clarkc160d2f2017-07-27 08:04:18 -040062
Heinrich Schuchardta3a28f52018-02-18 15:17:51 +010063/* event group ExitBootServices() invoked */
64const efi_guid_t efi_guid_event_group_exit_boot_services =
65 EFI_EVENT_GROUP_EXIT_BOOT_SERVICES;
66/* event group SetVirtualAddressMap() invoked */
67const efi_guid_t efi_guid_event_group_virtual_address_change =
68 EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE;
69/* event group memory map changed */
70const efi_guid_t efi_guid_event_group_memory_map_change =
71 EFI_EVENT_GROUP_MEMORY_MAP_CHANGE;
72/* event group boot manager about to boot */
73const efi_guid_t efi_guid_event_group_ready_to_boot =
74 EFI_EVENT_GROUP_READY_TO_BOOT;
75/* event group ResetSystem() invoked (before ExitBootServices) */
76const efi_guid_t efi_guid_event_group_reset_system =
77 EFI_EVENT_GROUP_RESET_SYSTEM;
78
Heinrich Schuchardt2074f702018-01-11 08:16:09 +010079static efi_status_t EFIAPI efi_disconnect_controller(
80 efi_handle_t controller_handle,
81 efi_handle_t driver_image_handle,
82 efi_handle_t child_handle);
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +010083
Rob Clarkc160d2f2017-07-27 08:04:18 -040084/* Called on every callback entry */
85int __efi_entry_check(void)
86{
87 int ret = entry_count++ == 0;
88#ifdef CONFIG_ARM
89 assert(efi_gd);
90 app_gd = gd;
91 gd = efi_gd;
92#endif
93 return ret;
94}
95
96/* Called on every callback exit */
97int __efi_exit_check(void)
98{
99 int ret = --entry_count == 0;
100#ifdef CONFIG_ARM
101 gd = app_gd;
102#endif
103 return ret;
104}
105
Alexander Grafbee91162016-03-04 01:09:59 +0100106/* Called from do_bootefi_exec() */
107void efi_save_gd(void)
108{
Simon Glass65e4c0b2016-09-25 15:27:35 -0600109#ifdef CONFIG_ARM
Alexander Grafbee91162016-03-04 01:09:59 +0100110 efi_gd = gd;
Simon Glass65e4c0b2016-09-25 15:27:35 -0600111#endif
Alexander Grafbee91162016-03-04 01:09:59 +0100112}
113
Rob Clarkc160d2f2017-07-27 08:04:18 -0400114/*
Mario Six78a88f72018-07-10 08:40:17 +0200115 * Special case handler for error/abort that just forces things back to u-boot
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200116 * world so we can dump out an abort message, without any care about returning
117 * back to UEFI world.
Rob Clarkc160d2f2017-07-27 08:04:18 -0400118 */
Alexander Grafbee91162016-03-04 01:09:59 +0100119void efi_restore_gd(void)
120{
Simon Glass65e4c0b2016-09-25 15:27:35 -0600121#ifdef CONFIG_ARM
Alexander Grafbee91162016-03-04 01:09:59 +0100122 /* Only restore if we're already in EFI context */
123 if (!efi_gd)
124 return;
Alexander Grafbee91162016-03-04 01:09:59 +0100125 gd = efi_gd;
Simon Glass65e4c0b2016-09-25 15:27:35 -0600126#endif
Alexander Grafbee91162016-03-04 01:09:59 +0100127}
128
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200129/**
Mario Six78a88f72018-07-10 08:40:17 +0200130 * indent_string() - returns a string for indenting with two spaces per level
131 * @level: indent level
Heinrich Schuchardtc8df80c2018-01-24 19:21:36 +0100132 *
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200133 * A maximum of ten indent levels is supported. Higher indent levels will be
134 * truncated.
135 *
Mario Six78a88f72018-07-10 08:40:17 +0200136 * Return: A string for indenting with two spaces per level is
137 * returned.
Rob Clarkaf65db82017-07-27 08:04:19 -0400138 */
139static const char *indent_string(int level)
140{
141 const char *indent = " ";
142 const int max = strlen(indent);
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +0100143
Rob Clarkaf65db82017-07-27 08:04:19 -0400144 level = min(max, level * 2);
145 return &indent[max - level];
146}
147
Heinrich Schuchardtae0bd3a2017-08-18 17:45:16 +0200148const char *__efi_nesting(void)
149{
150 return indent_string(nesting_level);
151}
152
Rob Clarkaf65db82017-07-27 08:04:19 -0400153const char *__efi_nesting_inc(void)
154{
155 return indent_string(nesting_level++);
156}
157
158const char *__efi_nesting_dec(void)
159{
160 return indent_string(--nesting_level);
161}
162
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200163/**
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200164 * efi_event_is_queued() - check if an event is queued
165 *
166 * @event: event
167 * Return: true if event is queued
168 */
169static bool efi_event_is_queued(struct efi_event *event)
170{
171 return !!event->queue_link.next;
172}
173
174/**
175 * efi_process_event_queue() - process event queue
176 */
177static void efi_process_event_queue(void)
178{
179 while (!list_empty(&efi_event_queue)) {
180 struct efi_event *event;
181 efi_uintn_t old_tpl;
182
183 event = list_first_entry(&efi_event_queue, struct efi_event,
184 queue_link);
185 if (efi_tpl >= event->notify_tpl)
186 return;
187 list_del(&event->queue_link);
188 event->queue_link.next = NULL;
189 event->queue_link.prev = NULL;
190 /* Events must be executed at the event's TPL */
191 old_tpl = efi_tpl;
192 efi_tpl = event->notify_tpl;
193 EFI_CALL_VOID(event->notify_function(event,
194 event->notify_context));
195 efi_tpl = old_tpl;
196 if (event->type == EVT_NOTIFY_SIGNAL)
197 event->is_signaled = 0;
198 }
199}
200
201/**
Mario Six78a88f72018-07-10 08:40:17 +0200202 * efi_queue_event() - queue an EFI event
203 * @event: event to signal
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200204 *
205 * This function queues the notification function of the event for future
206 * execution.
207 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200208 */
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200209static void efi_queue_event(struct efi_event *event)
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200210{
Heinrich Schuchardt2b8568f2020-03-06 21:56:10 +0100211 struct efi_event *item;
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200212
213 if (!event->notify_function)
214 return;
215
216 if (!efi_event_is_queued(event)) {
217 /*
218 * Events must be notified in order of decreasing task priority
219 * level. Insert the new event accordingly.
220 */
221 list_for_each_entry(item, &efi_event_queue, queue_link) {
222 if (item->notify_tpl < event->notify_tpl) {
223 list_add_tail(&event->queue_link,
224 &item->queue_link);
225 event = NULL;
226 break;
227 }
228 }
229 if (event)
230 list_add_tail(&event->queue_link, &efi_event_queue);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200231 }
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200232 efi_process_event_queue();
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200233}
234
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200235/**
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200236 * is_valid_tpl() - check if the task priority level is valid
237 *
238 * @tpl: TPL level to check
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200239 * Return: status code
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200240 */
241efi_status_t is_valid_tpl(efi_uintn_t tpl)
242{
243 switch (tpl) {
244 case TPL_APPLICATION:
245 case TPL_CALLBACK:
246 case TPL_NOTIFY:
247 case TPL_HIGH_LEVEL:
248 return EFI_SUCCESS;
249 default:
250 return EFI_INVALID_PARAMETER;
251 }
252}
253
254/**
Mario Six78a88f72018-07-10 08:40:17 +0200255 * efi_signal_event() - signal an EFI event
256 * @event: event to signal
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100257 *
Mario Six78a88f72018-07-10 08:40:17 +0200258 * This function signals an event. If the event belongs to an event group all
259 * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100260 * their notification function is queued.
261 *
262 * For the SignalEvent service see efi_signal_event_ext.
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100263 */
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200264void efi_signal_event(struct efi_event *event)
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100265{
Heinrich Schuchardtdfa306e2019-06-06 01:51:50 +0200266 if (event->is_signaled)
267 return;
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100268 if (event->group) {
269 struct efi_event *evt;
270
271 /*
272 * The signaled state has to set before executing any
273 * notification function
274 */
275 list_for_each_entry(evt, &efi_events, link) {
276 if (!evt->group || guidcmp(evt->group, event->group))
277 continue;
278 if (evt->is_signaled)
279 continue;
280 evt->is_signaled = true;
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100281 }
282 list_for_each_entry(evt, &efi_events, link) {
283 if (!evt->group || guidcmp(evt->group, event->group))
284 continue;
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200285 efi_queue_event(evt);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100286 }
Heinrich Schuchardt3626e532019-05-05 00:07:34 +0200287 } else {
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100288 event->is_signaled = true;
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200289 efi_queue_event(event);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100290 }
291}
292
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200293/**
Mario Six78a88f72018-07-10 08:40:17 +0200294 * efi_raise_tpl() - raise the task priority level
295 * @new_tpl: new value of the task priority level
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200296 *
297 * This function implements the RaiseTpl service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200298 *
Mario Six78a88f72018-07-10 08:40:17 +0200299 * See the Unified Extensible Firmware Interface (UEFI) specification for
300 * details.
301 *
302 * Return: old value of the task priority level
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200303 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100304static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
Alexander Grafbee91162016-03-04 01:09:59 +0100305{
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100306 efi_uintn_t old_tpl = efi_tpl;
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200307
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200308 EFI_ENTRY("0x%zx", new_tpl);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200309
310 if (new_tpl < efi_tpl)
Heinrich Schuchardt529886a2019-05-05 11:56:23 +0200311 EFI_PRINT("WARNING: new_tpl < current_tpl in %s\n", __func__);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200312 efi_tpl = new_tpl;
313 if (efi_tpl > TPL_HIGH_LEVEL)
314 efi_tpl = TPL_HIGH_LEVEL;
315
316 EFI_EXIT(EFI_SUCCESS);
317 return old_tpl;
Alexander Grafbee91162016-03-04 01:09:59 +0100318}
319
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200320/**
Mario Six78a88f72018-07-10 08:40:17 +0200321 * efi_restore_tpl() - lower the task priority level
322 * @old_tpl: value of the task priority level to be restored
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200323 *
324 * This function implements the RestoreTpl service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200325 *
Mario Six78a88f72018-07-10 08:40:17 +0200326 * See the Unified Extensible Firmware Interface (UEFI) specification for
327 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200328 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100329static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
Alexander Grafbee91162016-03-04 01:09:59 +0100330{
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200331 EFI_ENTRY("0x%zx", old_tpl);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200332
333 if (old_tpl > efi_tpl)
Heinrich Schuchardt529886a2019-05-05 11:56:23 +0200334 EFI_PRINT("WARNING: old_tpl > current_tpl in %s\n", __func__);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200335 efi_tpl = old_tpl;
336 if (efi_tpl > TPL_HIGH_LEVEL)
337 efi_tpl = TPL_HIGH_LEVEL;
338
Heinrich Schuchardt0f7fcc72018-03-24 18:40:21 +0100339 /*
340 * Lowering the TPL may have made queued events eligible for execution.
341 */
342 efi_timer_check();
343
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200344 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +0100345}
346
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200347/**
Mario Six78a88f72018-07-10 08:40:17 +0200348 * efi_allocate_pages_ext() - allocate memory pages
349 * @type: type of allocation to be performed
350 * @memory_type: usage type of the allocated memory
351 * @pages: number of pages to be allocated
352 * @memory: allocated memory
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200353 *
354 * This function implements the AllocatePages service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200355 *
Mario Six78a88f72018-07-10 08:40:17 +0200356 * See the Unified Extensible Firmware Interface (UEFI) specification for
357 * details.
358 *
359 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200360 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900361static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100362 efi_uintn_t pages,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900363 uint64_t *memory)
Alexander Grafbee91162016-03-04 01:09:59 +0100364{
365 efi_status_t r;
366
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100367 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
Alexander Grafbee91162016-03-04 01:09:59 +0100368 r = efi_allocate_pages(type, memory_type, pages, memory);
369 return EFI_EXIT(r);
370}
371
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200372/**
Mario Six78a88f72018-07-10 08:40:17 +0200373 * efi_free_pages_ext() - Free memory pages.
374 * @memory: start of the memory area to be freed
375 * @pages: number of pages to be freed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200376 *
377 * This function implements the FreePages service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200378 *
Mario Six78a88f72018-07-10 08:40:17 +0200379 * See the Unified Extensible Firmware Interface (UEFI) specification for
380 * details.
381 *
382 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200383 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900384static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100385 efi_uintn_t pages)
Alexander Grafbee91162016-03-04 01:09:59 +0100386{
387 efi_status_t r;
388
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900389 EFI_ENTRY("%llx, 0x%zx", memory, pages);
Alexander Grafbee91162016-03-04 01:09:59 +0100390 r = efi_free_pages(memory, pages);
391 return EFI_EXIT(r);
392}
393
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200394/**
Mario Six78a88f72018-07-10 08:40:17 +0200395 * efi_get_memory_map_ext() - get map describing memory usage
396 * @memory_map_size: on entry the size, in bytes, of the memory map buffer,
397 * on exit the size of the copied memory map
398 * @memory_map: buffer to which the memory map is written
399 * @map_key: key for the memory map
400 * @descriptor_size: size of an individual memory descriptor
401 * @descriptor_version: version number of the memory descriptor structure
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200402 *
403 * This function implements the GetMemoryMap service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200404 *
Mario Six78a88f72018-07-10 08:40:17 +0200405 * See the Unified Extensible Firmware Interface (UEFI) specification for
406 * details.
407 *
408 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200409 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900410static efi_status_t EFIAPI efi_get_memory_map_ext(
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100411 efi_uintn_t *memory_map_size,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900412 struct efi_mem_desc *memory_map,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100413 efi_uintn_t *map_key,
414 efi_uintn_t *descriptor_size,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900415 uint32_t *descriptor_version)
Alexander Grafbee91162016-03-04 01:09:59 +0100416{
417 efi_status_t r;
418
419 EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
420 map_key, descriptor_size, descriptor_version);
421 r = efi_get_memory_map(memory_map_size, memory_map, map_key,
422 descriptor_size, descriptor_version);
423 return EFI_EXIT(r);
424}
425
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200426/**
Mario Six78a88f72018-07-10 08:40:17 +0200427 * efi_allocate_pool_ext() - allocate memory from pool
428 * @pool_type: type of the pool from which memory is to be allocated
429 * @size: number of bytes to be allocated
430 * @buffer: allocated memory
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200431 *
432 * This function implements the AllocatePool service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200433 *
Mario Six78a88f72018-07-10 08:40:17 +0200434 * See the Unified Extensible Firmware Interface (UEFI) specification for
435 * details.
436 *
437 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200438 */
Stefan Brünsead12742016-10-09 22:17:18 +0200439static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100440 efi_uintn_t size,
Stefan Brünsead12742016-10-09 22:17:18 +0200441 void **buffer)
Alexander Grafbee91162016-03-04 01:09:59 +0100442{
Alexander Graf1cd29f02016-03-24 01:37:37 +0100443 efi_status_t r;
444
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100445 EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
Stefan Brünsead12742016-10-09 22:17:18 +0200446 r = efi_allocate_pool(pool_type, size, buffer);
Alexander Graf1cd29f02016-03-24 01:37:37 +0100447 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +0100448}
449
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200450/**
Mario Six78a88f72018-07-10 08:40:17 +0200451 * efi_free_pool_ext() - free memory from pool
452 * @buffer: start of memory to be freed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200453 *
454 * This function implements the FreePool service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200455 *
Mario Six78a88f72018-07-10 08:40:17 +0200456 * See the Unified Extensible Firmware Interface (UEFI) specification for
457 * details.
458 *
459 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200460 */
Stefan Brüns42417bc2016-10-09 22:17:26 +0200461static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
Alexander Grafbee91162016-03-04 01:09:59 +0100462{
Alexander Graf1cd29f02016-03-24 01:37:37 +0100463 efi_status_t r;
464
465 EFI_ENTRY("%p", buffer);
Stefan Brüns42417bc2016-10-09 22:17:26 +0200466 r = efi_free_pool(buffer);
Alexander Graf1cd29f02016-03-24 01:37:37 +0100467 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +0100468}
469
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200470/**
Heinrich Schuchardte6023be2019-05-01 09:42:39 +0200471 * efi_add_handle() - add a new handle to the object list
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100472 *
Heinrich Schuchardte6023be2019-05-01 09:42:39 +0200473 * @handle: handle to be added
474 *
475 * The protocols list is initialized. The handle is added to the list of known
476 * UEFI objects.
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100477 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200478void efi_add_handle(efi_handle_t handle)
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100479{
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200480 if (!handle)
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100481 return;
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200482 INIT_LIST_HEAD(&handle->protocols);
483 list_add_tail(&handle->link, &efi_obj_list);
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100484}
485
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200486/**
Mario Six78a88f72018-07-10 08:40:17 +0200487 * efi_create_handle() - create handle
488 * @handle: new handle
Heinrich Schuchardt2edab5e2017-10-26 19:25:49 +0200489 *
Mario Six78a88f72018-07-10 08:40:17 +0200490 * Return: status code
Heinrich Schuchardt2edab5e2017-10-26 19:25:49 +0200491 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100492efi_status_t efi_create_handle(efi_handle_t *handle)
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200493{
494 struct efi_object *obj;
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200495
Heinrich Schuchardtd29e7822018-05-27 16:47:21 +0200496 obj = calloc(1, sizeof(struct efi_object));
497 if (!obj)
498 return EFI_OUT_OF_RESOURCES;
499
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100500 efi_add_handle(obj);
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200501 *handle = obj;
Heinrich Schuchardtd29e7822018-05-27 16:47:21 +0200502
503 return EFI_SUCCESS;
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200504}
505
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200506/**
Mario Six78a88f72018-07-10 08:40:17 +0200507 * efi_search_protocol() - find a protocol on a handle.
508 * @handle: handle
509 * @protocol_guid: GUID of the protocol
510 * @handler: reference to the protocol
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100511 *
Mario Six78a88f72018-07-10 08:40:17 +0200512 * Return: status code
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100513 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100514efi_status_t efi_search_protocol(const efi_handle_t handle,
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100515 const efi_guid_t *protocol_guid,
516 struct efi_handler **handler)
517{
518 struct efi_object *efiobj;
519 struct list_head *lhandle;
520
521 if (!handle || !protocol_guid)
522 return EFI_INVALID_PARAMETER;
523 efiobj = efi_search_obj(handle);
524 if (!efiobj)
525 return EFI_INVALID_PARAMETER;
526 list_for_each(lhandle, &efiobj->protocols) {
527 struct efi_handler *protocol;
528
529 protocol = list_entry(lhandle, struct efi_handler, link);
530 if (!guidcmp(protocol->guid, protocol_guid)) {
531 if (handler)
532 *handler = protocol;
533 return EFI_SUCCESS;
534 }
535 }
536 return EFI_NOT_FOUND;
537}
538
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200539/**
Mario Six78a88f72018-07-10 08:40:17 +0200540 * efi_remove_protocol() - delete protocol from a handle
541 * @handle: handle from which the protocol shall be deleted
542 * @protocol: GUID of the protocol to be deleted
543 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100544 *
Mario Six78a88f72018-07-10 08:40:17 +0200545 * Return: status code
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100546 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100547efi_status_t efi_remove_protocol(const efi_handle_t handle,
548 const efi_guid_t *protocol,
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100549 void *protocol_interface)
550{
551 struct efi_handler *handler;
552 efi_status_t ret;
553
554 ret = efi_search_protocol(handle, protocol, &handler);
555 if (ret != EFI_SUCCESS)
556 return ret;
Heinrich Schuchardt1f470e12018-05-11 12:09:21 +0200557 if (handler->protocol_interface != protocol_interface)
Heinrich Schuchardt96aa99c2019-05-10 20:06:48 +0200558 return EFI_NOT_FOUND;
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100559 list_del(&handler->link);
560 free(handler);
561 return EFI_SUCCESS;
562}
563
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200564/**
Mario Six78a88f72018-07-10 08:40:17 +0200565 * efi_remove_all_protocols() - delete all protocols from a handle
566 * @handle: handle from which the protocols shall be deleted
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100567 *
Mario Six78a88f72018-07-10 08:40:17 +0200568 * Return: status code
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100569 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100570efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100571{
572 struct efi_object *efiobj;
Heinrich Schuchardt32e6fed2018-01-11 08:15:55 +0100573 struct efi_handler *protocol;
574 struct efi_handler *pos;
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100575
576 efiobj = efi_search_obj(handle);
577 if (!efiobj)
578 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt32e6fed2018-01-11 08:15:55 +0100579 list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100580 efi_status_t ret;
581
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100582 ret = efi_remove_protocol(handle, protocol->guid,
583 protocol->protocol_interface);
584 if (ret != EFI_SUCCESS)
585 return ret;
586 }
587 return EFI_SUCCESS;
588}
589
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200590/**
Mario Six78a88f72018-07-10 08:40:17 +0200591 * efi_delete_handle() - delete handle
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100592 *
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +0200593 * @handle: handle to delete
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100594 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200595void efi_delete_handle(efi_handle_t handle)
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100596{
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200597 if (!handle)
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100598 return;
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200599 efi_remove_all_protocols(handle);
600 list_del(&handle->link);
601 free(handle);
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100602}
603
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200604/**
Mario Six78a88f72018-07-10 08:40:17 +0200605 * efi_is_event() - check if a pointer is a valid event
606 * @event: pointer to check
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100607 *
Mario Six78a88f72018-07-10 08:40:17 +0200608 * Return: status code
Alexander Grafbee91162016-03-04 01:09:59 +0100609 */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100610static efi_status_t efi_is_event(const struct efi_event *event)
611{
612 const struct efi_event *evt;
613
614 if (!event)
615 return EFI_INVALID_PARAMETER;
616 list_for_each_entry(evt, &efi_events, link) {
617 if (evt == event)
618 return EFI_SUCCESS;
619 }
620 return EFI_INVALID_PARAMETER;
621}
Alexander Grafbee91162016-03-04 01:09:59 +0100622
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200623/**
Mario Six78a88f72018-07-10 08:40:17 +0200624 * efi_create_event() - create an event
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +0200625 *
Mario Six78a88f72018-07-10 08:40:17 +0200626 * @type: type of the event to create
627 * @notify_tpl: task priority level of the event
628 * @notify_function: notification function of the event
629 * @notify_context: pointer passed to the notification function
630 * @group: event group
631 * @event: created event
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200632 *
633 * This function is used inside U-Boot code to create an event.
634 *
635 * For the API function implementing the CreateEvent service see
636 * efi_create_event_ext.
637 *
Mario Six78a88f72018-07-10 08:40:17 +0200638 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200639 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100640efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200641 void (EFIAPI *notify_function) (
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200642 struct efi_event *event,
643 void *context),
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100644 void *notify_context, efi_guid_t *group,
645 struct efi_event **event)
Alexander Grafbee91162016-03-04 01:09:59 +0100646{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100647 struct efi_event *evt;
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200648 efi_status_t ret;
649 int pool_type;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200650
Jonathan Graya95343b2017-03-12 19:26:07 +1100651 if (event == NULL)
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200652 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100653
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200654 switch (type) {
655 case 0:
656 case EVT_TIMER:
657 case EVT_NOTIFY_SIGNAL:
658 case EVT_TIMER | EVT_NOTIFY_SIGNAL:
659 case EVT_NOTIFY_WAIT:
660 case EVT_TIMER | EVT_NOTIFY_WAIT:
661 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200662 pool_type = EFI_BOOT_SERVICES_DATA;
663 break;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200664 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200665 pool_type = EFI_RUNTIME_SERVICES_DATA;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200666 break;
667 default:
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200668 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200669 }
Jonathan Graya95343b2017-03-12 19:26:07 +1100670
AKASHI Takahiro3748ed92018-08-10 15:36:32 +0900671 if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) &&
Heinrich Schuchardt751e9282019-04-25 07:30:41 +0200672 (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS))
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200673 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100674
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200675 ret = efi_allocate_pool(pool_type, sizeof(struct efi_event),
676 (void **)&evt);
677 if (ret != EFI_SUCCESS)
678 return ret;
679 memset(evt, 0, sizeof(struct efi_event));
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100680 evt->type = type;
681 evt->notify_tpl = notify_tpl;
682 evt->notify_function = notify_function;
683 evt->notify_context = notify_context;
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100684 evt->group = group;
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200685 /* Disable timers on boot up */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100686 evt->trigger_next = -1ULL;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100687 list_add_tail(&evt->link, &efi_events);
688 *event = evt;
689 return EFI_SUCCESS;
Alexander Grafbee91162016-03-04 01:09:59 +0100690}
691
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200692/*
Mario Six78a88f72018-07-10 08:40:17 +0200693 * efi_create_event_ex() - create an event in a group
694 * @type: type of the event to create
695 * @notify_tpl: task priority level of the event
696 * @notify_function: notification function of the event
697 * @notify_context: pointer passed to the notification function
698 * @event: created event
699 * @event_group: event group
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100700 *
701 * This function implements the CreateEventEx service.
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100702 *
Mario Six78a88f72018-07-10 08:40:17 +0200703 * See the Unified Extensible Firmware Interface (UEFI) specification for
704 * details.
705 *
706 * Return: status code
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100707 */
708efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl,
709 void (EFIAPI *notify_function) (
710 struct efi_event *event,
711 void *context),
712 void *notify_context,
713 efi_guid_t *event_group,
714 struct efi_event **event)
715{
Heinrich Schuchardt18845122019-05-04 10:12:50 +0200716 efi_status_t ret;
717
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100718 EFI_ENTRY("%d, 0x%zx, %p, %p, %pUl", type, notify_tpl, notify_function,
719 notify_context, event_group);
Heinrich Schuchardt18845122019-05-04 10:12:50 +0200720
721 /*
722 * The allowable input parameters are the same as in CreateEvent()
723 * except for the following two disallowed event types.
724 */
725 switch (type) {
726 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
727 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
728 ret = EFI_INVALID_PARAMETER;
729 goto out;
730 }
731
732 ret = efi_create_event(type, notify_tpl, notify_function,
733 notify_context, event_group, event);
734out:
735 return EFI_EXIT(ret);
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100736}
737
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200738/**
Mario Six78a88f72018-07-10 08:40:17 +0200739 * efi_create_event_ext() - create an event
740 * @type: type of the event to create
741 * @notify_tpl: task priority level of the event
742 * @notify_function: notification function of the event
743 * @notify_context: pointer passed to the notification function
744 * @event: created event
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200745 *
746 * This function implements the CreateEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200747 *
Mario Six78a88f72018-07-10 08:40:17 +0200748 * See the Unified Extensible Firmware Interface (UEFI) specification for
749 * details.
750 *
751 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200752 */
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200753static efi_status_t EFIAPI efi_create_event_ext(
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100754 uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200755 void (EFIAPI *notify_function) (
756 struct efi_event *event,
757 void *context),
758 void *notify_context, struct efi_event **event)
759{
760 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
761 notify_context);
762 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100763 notify_context, NULL, event));
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200764}
765
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200766/**
Mario Six78a88f72018-07-10 08:40:17 +0200767 * efi_timer_check() - check if a timer event has occurred
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200768 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200769 * Check if a timer event has occurred or a queued notification function should
770 * be called.
771 *
Alexander Grafbee91162016-03-04 01:09:59 +0100772 * Our timers have to work without interrupts, so we check whenever keyboard
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200773 * input or disk accesses happen if enough time elapsed for them to fire.
Alexander Grafbee91162016-03-04 01:09:59 +0100774 */
775void efi_timer_check(void)
776{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100777 struct efi_event *evt;
Alexander Grafbee91162016-03-04 01:09:59 +0100778 u64 now = timer_get_us();
779
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100780 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200781 if (!timers_enabled)
782 continue;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100783 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next)
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200784 continue;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100785 switch (evt->trigger_type) {
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200786 case EFI_TIMER_RELATIVE:
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100787 evt->trigger_type = EFI_TIMER_STOP;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200788 break;
789 case EFI_TIMER_PERIODIC:
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100790 evt->trigger_next += evt->trigger_time;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200791 break;
792 default:
793 continue;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200794 }
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100795 evt->is_signaled = false;
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200796 efi_signal_event(evt);
Alexander Grafbee91162016-03-04 01:09:59 +0100797 }
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200798 efi_process_event_queue();
Alexander Grafbee91162016-03-04 01:09:59 +0100799 WATCHDOG_RESET();
800}
801
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200802/**
Mario Six78a88f72018-07-10 08:40:17 +0200803 * efi_set_timer() - set the trigger time for a timer event or stop the event
804 * @event: event for which the timer is set
805 * @type: type of the timer
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200806 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200807 *
808 * This is the function for internal usage in U-Boot. For the API function
809 * implementing the SetTimer service see efi_set_timer_ext.
810 *
Mario Six78a88f72018-07-10 08:40:17 +0200811 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200812 */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200813efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200814 uint64_t trigger_time)
Alexander Grafbee91162016-03-04 01:09:59 +0100815{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100816 /* Check that the event is valid */
817 if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER))
818 return EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +0100819
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200820 /*
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200821 * The parameter defines a multiple of 100 ns.
822 * We use multiples of 1000 ns. So divide by 10.
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200823 */
Heinrich Schuchardt7d963322017-10-05 16:14:14 +0200824 do_div(trigger_time, 10);
Alexander Grafbee91162016-03-04 01:09:59 +0100825
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100826 switch (type) {
827 case EFI_TIMER_STOP:
828 event->trigger_next = -1ULL;
829 break;
830 case EFI_TIMER_PERIODIC:
831 case EFI_TIMER_RELATIVE:
832 event->trigger_next = timer_get_us() + trigger_time;
833 break;
834 default:
835 return EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +0100836 }
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100837 event->trigger_type = type;
838 event->trigger_time = trigger_time;
839 event->is_signaled = false;
840 return EFI_SUCCESS;
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200841}
842
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200843/**
Mario Six78a88f72018-07-10 08:40:17 +0200844 * efi_set_timer_ext() - Set the trigger time for a timer event or stop the
845 * event
846 * @event: event for which the timer is set
847 * @type: type of the timer
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200848 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200849 *
850 * This function implements the SetTimer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200851 *
Mario Six78a88f72018-07-10 08:40:17 +0200852 * See the Unified Extensible Firmware Interface (UEFI) specification for
853 * details.
854 *
855 *
856 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200857 */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200858static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
859 enum efi_timer_delay type,
860 uint64_t trigger_time)
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200861{
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900862 EFI_ENTRY("%p, %d, %llx", event, type, trigger_time);
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200863 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
Alexander Grafbee91162016-03-04 01:09:59 +0100864}
865
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200866/**
Mario Six78a88f72018-07-10 08:40:17 +0200867 * efi_wait_for_event() - wait for events to be signaled
868 * @num_events: number of events to be waited for
869 * @event: events to be waited for
870 * @index: index of the event that was signaled
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200871 *
872 * This function implements the WaitForEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200873 *
Mario Six78a88f72018-07-10 08:40:17 +0200874 * See the Unified Extensible Firmware Interface (UEFI) specification for
875 * details.
876 *
877 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200878 */
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100879static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200880 struct efi_event **event,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100881 efi_uintn_t *index)
Alexander Grafbee91162016-03-04 01:09:59 +0100882{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100883 int i;
Alexander Grafbee91162016-03-04 01:09:59 +0100884
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100885 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
Alexander Grafbee91162016-03-04 01:09:59 +0100886
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200887 /* Check parameters */
888 if (!num_events || !event)
889 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200890 /* Check TPL */
891 if (efi_tpl != TPL_APPLICATION)
892 return EFI_EXIT(EFI_UNSUPPORTED);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200893 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100894 if (efi_is_event(event[i]) != EFI_SUCCESS)
895 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200896 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
897 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200898 if (!event[i]->is_signaled)
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200899 efi_queue_event(event[i]);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200900 }
901
902 /* Wait for signal */
903 for (;;) {
904 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200905 if (event[i]->is_signaled)
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200906 goto out;
907 }
908 /* Allow events to occur. */
909 efi_timer_check();
910 }
911
912out:
913 /*
914 * Reset the signal which is passed to the caller to allow periodic
915 * events to occur.
916 */
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200917 event[i]->is_signaled = false;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200918 if (index)
919 *index = i;
Alexander Grafbee91162016-03-04 01:09:59 +0100920
921 return EFI_EXIT(EFI_SUCCESS);
922}
923
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200924/**
Mario Six78a88f72018-07-10 08:40:17 +0200925 * efi_signal_event_ext() - signal an EFI event
926 * @event: event to signal
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200927 *
928 * This function implements the SignalEvent service.
Mario Six78a88f72018-07-10 08:40:17 +0200929 *
930 * See the Unified Extensible Firmware Interface (UEFI) specification for
931 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200932 *
933 * This functions sets the signaled state of the event and queues the
934 * notification function for execution.
935 *
Mario Six78a88f72018-07-10 08:40:17 +0200936 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200937 */
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200938static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100939{
940 EFI_ENTRY("%p", event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100941 if (efi_is_event(event) != EFI_SUCCESS)
942 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +0200943 efi_signal_event(event);
Alexander Grafbee91162016-03-04 01:09:59 +0100944 return EFI_EXIT(EFI_SUCCESS);
945}
946
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200947/**
Mario Six78a88f72018-07-10 08:40:17 +0200948 * efi_close_event() - close an EFI event
949 * @event: event to close
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200950 *
951 * This function implements the CloseEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200952 *
Mario Six78a88f72018-07-10 08:40:17 +0200953 * See the Unified Extensible Firmware Interface (UEFI) specification for
954 * details.
955 *
956 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200957 */
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200958static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100959{
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200960 struct efi_register_notify_event *item, *next;
961
Alexander Grafbee91162016-03-04 01:09:59 +0100962 EFI_ENTRY("%p", event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100963 if (efi_is_event(event) != EFI_SUCCESS)
964 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200965
966 /* Remove protocol notify registrations for the event */
967 list_for_each_entry_safe(item, next, &efi_register_notify_events,
968 link) {
969 if (event == item->event) {
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +0200970 struct efi_protocol_notification *hitem, *hnext;
971
972 /* Remove signaled handles */
973 list_for_each_entry_safe(hitem, hnext, &item->handles,
974 link) {
975 list_del(&hitem->link);
976 free(hitem);
977 }
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200978 list_del(&item->link);
979 free(item);
980 }
981 }
Heinrich Schuchardt7a69e972019-06-05 21:00:39 +0200982 /* Remove event from queue */
983 if (efi_event_is_queued(event))
984 list_del(&event->queue_link);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200985
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100986 list_del(&event->link);
Heinrich Schuchardt14b40482019-07-11 20:15:09 +0200987 efi_free_pool(event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100988 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +0100989}
990
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200991/**
Mario Six78a88f72018-07-10 08:40:17 +0200992 * efi_check_event() - check if an event is signaled
993 * @event: event to check
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200994 *
995 * This function implements the CheckEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200996 *
Mario Six78a88f72018-07-10 08:40:17 +0200997 * See the Unified Extensible Firmware Interface (UEFI) specification for
998 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200999 *
Mario Six78a88f72018-07-10 08:40:17 +02001000 * If an event is not signaled yet, the notification function is queued. The
1001 * signaled state is cleared.
1002 *
1003 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001004 */
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +02001005static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +01001006{
1007 EFI_ENTRY("%p", event);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02001008 efi_timer_check();
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001009 if (efi_is_event(event) != EFI_SUCCESS ||
1010 event->type & EVT_NOTIFY_SIGNAL)
1011 return EFI_EXIT(EFI_INVALID_PARAMETER);
1012 if (!event->is_signaled)
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001013 efi_queue_event(event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001014 if (event->is_signaled) {
1015 event->is_signaled = false;
1016 return EFI_EXIT(EFI_SUCCESS);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02001017 }
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001018 return EFI_EXIT(EFI_NOT_READY);
Alexander Grafbee91162016-03-04 01:09:59 +01001019}
1020
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001021/**
Mario Six78a88f72018-07-10 08:40:17 +02001022 * efi_search_obj() - find the internal EFI object for a handle
1023 * @handle: handle to find
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001024 *
Mario Six78a88f72018-07-10 08:40:17 +02001025 * Return: EFI object
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001026 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01001027struct efi_object *efi_search_obj(const efi_handle_t handle)
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001028{
Heinrich Schuchardt1b681532017-11-06 21:17:50 +01001029 struct efi_object *efiobj;
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001030
Heinrich Schuchardtec163fa2019-05-05 10:37:51 +02001031 if (!handle)
1032 return NULL;
1033
Heinrich Schuchardt1b681532017-11-06 21:17:50 +01001034 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001035 if (efiobj == handle)
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001036 return efiobj;
1037 }
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +02001038 return NULL;
1039}
1040
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001041/**
Mario Six78a88f72018-07-10 08:40:17 +02001042 * efi_open_protocol_info_entry() - create open protocol info entry and add it
1043 * to a protocol
1044 * @handler: handler of a protocol
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001045 *
Mario Six78a88f72018-07-10 08:40:17 +02001046 * Return: open protocol info entry
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001047 */
1048static struct efi_open_protocol_info_entry *efi_create_open_info(
1049 struct efi_handler *handler)
1050{
1051 struct efi_open_protocol_info_item *item;
1052
1053 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
1054 if (!item)
1055 return NULL;
1056 /* Append the item to the open protocol info list. */
1057 list_add_tail(&item->link, &handler->open_infos);
1058
1059 return &item->info;
1060}
1061
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001062/**
Mario Six78a88f72018-07-10 08:40:17 +02001063 * efi_delete_open_info() - remove an open protocol info entry from a protocol
1064 * @item: open protocol info entry to delete
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001065 *
Mario Six78a88f72018-07-10 08:40:17 +02001066 * Return: status code
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001067 */
1068static efi_status_t efi_delete_open_info(
1069 struct efi_open_protocol_info_item *item)
1070{
1071 list_del(&item->link);
1072 free(item);
1073 return EFI_SUCCESS;
1074}
1075
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001076/**
Mario Six78a88f72018-07-10 08:40:17 +02001077 * efi_add_protocol() - install new protocol on a handle
1078 * @handle: handle on which the protocol shall be installed
1079 * @protocol: GUID of the protocol to be installed
1080 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001081 *
Mario Six78a88f72018-07-10 08:40:17 +02001082 * Return: status code
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001083 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01001084efi_status_t efi_add_protocol(const efi_handle_t handle,
1085 const efi_guid_t *protocol,
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001086 void *protocol_interface)
1087{
1088 struct efi_object *efiobj;
1089 struct efi_handler *handler;
1090 efi_status_t ret;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001091 struct efi_register_notify_event *event;
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001092
1093 efiobj = efi_search_obj(handle);
1094 if (!efiobj)
1095 return EFI_INVALID_PARAMETER;
1096 ret = efi_search_protocol(handle, protocol, NULL);
1097 if (ret != EFI_NOT_FOUND)
1098 return EFI_INVALID_PARAMETER;
1099 handler = calloc(1, sizeof(struct efi_handler));
1100 if (!handler)
1101 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001102 handler->guid = protocol;
1103 handler->protocol_interface = protocol_interface;
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001104 INIT_LIST_HEAD(&handler->open_infos);
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001105 list_add_tail(&handler->link, &efiobj->protocols);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001106
1107 /* Notify registered events */
1108 list_for_each_entry(event, &efi_register_notify_events, link) {
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001109 if (!guidcmp(protocol, &event->protocol)) {
1110 struct efi_protocol_notification *notif;
1111
1112 notif = calloc(1, sizeof(*notif));
1113 if (!notif) {
1114 list_del(&handler->link);
1115 free(handler);
1116 return EFI_OUT_OF_RESOURCES;
1117 }
1118 notif->handle = handle;
1119 list_add_tail(&notif->link, &event->handles);
Heinrich Schuchardtdaa3f842019-06-07 07:43:24 +02001120 event->event->is_signaled = false;
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001121 efi_signal_event(event->event);
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001122 }
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001123 }
1124
Heinrich Schuchardtd5504142018-01-11 08:16:01 +01001125 if (!guidcmp(&efi_guid_device_path, protocol))
1126 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001127 return EFI_SUCCESS;
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001128}
1129
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001130/**
Mario Six78a88f72018-07-10 08:40:17 +02001131 * efi_install_protocol_interface() - install protocol interface
1132 * @handle: handle on which the protocol shall be installed
1133 * @protocol: GUID of the protocol to be installed
1134 * @protocol_interface_type: type of the interface to be installed,
1135 * always EFI_NATIVE_INTERFACE
1136 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001137 *
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001138 * This function implements the InstallProtocolInterface service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001139 *
Mario Six78a88f72018-07-10 08:40:17 +02001140 * See the Unified Extensible Firmware Interface (UEFI) specification for
1141 * details.
1142 *
1143 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001144 */
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001145static efi_status_t EFIAPI efi_install_protocol_interface(
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02001146 efi_handle_t *handle, const efi_guid_t *protocol,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001147 int protocol_interface_type, void *protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01001148{
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001149 efi_status_t r;
1150
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001151 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
1152 protocol_interface);
1153
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001154 if (!handle || !protocol ||
1155 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1156 r = EFI_INVALID_PARAMETER;
1157 goto out;
1158 }
1159
1160 /* Create new handle if requested. */
1161 if (!*handle) {
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +02001162 r = efi_create_handle(handle);
1163 if (r != EFI_SUCCESS)
1164 goto out;
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02001165 EFI_PRINT("new handle %p\n", *handle);
Heinrich Schuchardtaf1408e2017-10-26 19:25:43 +02001166 } else {
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02001167 EFI_PRINT("handle %p\n", *handle);
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001168 }
Heinrich Schuchardt12025302017-10-26 19:25:54 +02001169 /* Add new protocol */
1170 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001171out:
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001172 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01001173}
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001174
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001175/**
Mario Six78a88f72018-07-10 08:40:17 +02001176 * efi_get_drivers() - get all drivers associated to a controller
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001177 * @handle: handle of the controller
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001178 * @protocol: protocol GUID (optional)
Mario Six78a88f72018-07-10 08:40:17 +02001179 * @number_of_drivers: number of child controllers
1180 * @driver_handle_buffer: handles of the the drivers
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001181 *
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001182 * The allocated buffer has to be freed with free().
1183 *
Mario Six78a88f72018-07-10 08:40:17 +02001184 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001185 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001186static efi_status_t efi_get_drivers(efi_handle_t handle,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001187 const efi_guid_t *protocol,
1188 efi_uintn_t *number_of_drivers,
1189 efi_handle_t **driver_handle_buffer)
1190{
1191 struct efi_handler *handler;
1192 struct efi_open_protocol_info_item *item;
1193 efi_uintn_t count = 0, i;
1194 bool duplicate;
1195
1196 /* Count all driver associations */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001197 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001198 if (protocol && guidcmp(handler->guid, protocol))
1199 continue;
1200 list_for_each_entry(item, &handler->open_infos, link) {
1201 if (item->info.attributes &
1202 EFI_OPEN_PROTOCOL_BY_DRIVER)
1203 ++count;
1204 }
1205 }
Heinrich Schuchardt66ca24a2019-06-02 01:43:33 +02001206 *number_of_drivers = 0;
1207 if (!count) {
1208 *driver_handle_buffer = NULL;
1209 return EFI_SUCCESS;
1210 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001211 /*
1212 * Create buffer. In case of duplicate driver assignments the buffer
1213 * will be too large. But that does not harm.
1214 */
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001215 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1216 if (!*driver_handle_buffer)
1217 return EFI_OUT_OF_RESOURCES;
1218 /* Collect unique driver handles */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001219 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001220 if (protocol && guidcmp(handler->guid, protocol))
1221 continue;
1222 list_for_each_entry(item, &handler->open_infos, link) {
1223 if (item->info.attributes &
1224 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1225 /* Check this is a new driver */
1226 duplicate = false;
1227 for (i = 0; i < *number_of_drivers; ++i) {
1228 if ((*driver_handle_buffer)[i] ==
1229 item->info.agent_handle)
1230 duplicate = true;
1231 }
1232 /* Copy handle to buffer */
1233 if (!duplicate) {
1234 i = (*number_of_drivers)++;
1235 (*driver_handle_buffer)[i] =
1236 item->info.agent_handle;
1237 }
1238 }
1239 }
1240 }
1241 return EFI_SUCCESS;
1242}
1243
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001244/**
Mario Six78a88f72018-07-10 08:40:17 +02001245 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001246 * @handle: handle of the controller
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001247 * @protocol: protocol GUID (optional)
Mario Six78a88f72018-07-10 08:40:17 +02001248 * @child_handle: handle of the child to destroy
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001249 *
1250 * This function implements the DisconnectController service.
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001251 *
Mario Six78a88f72018-07-10 08:40:17 +02001252 * See the Unified Extensible Firmware Interface (UEFI) specification for
1253 * details.
1254 *
1255 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001256 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001257static efi_status_t efi_disconnect_all_drivers
1258 (efi_handle_t handle,
1259 const efi_guid_t *protocol,
1260 efi_handle_t child_handle)
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001261{
1262 efi_uintn_t number_of_drivers;
1263 efi_handle_t *driver_handle_buffer;
1264 efi_status_t r, ret;
1265
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001266 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001267 &driver_handle_buffer);
1268 if (ret != EFI_SUCCESS)
1269 return ret;
Heinrich Schuchardt66ca24a2019-06-02 01:43:33 +02001270 if (!number_of_drivers)
1271 return EFI_SUCCESS;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001272 ret = EFI_NOT_FOUND;
1273 while (number_of_drivers) {
1274 r = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001275 handle,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001276 driver_handle_buffer[--number_of_drivers],
1277 child_handle));
1278 if (r == EFI_SUCCESS)
1279 ret = r;
1280 }
1281 free(driver_handle_buffer);
1282 return ret;
1283}
1284
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001285/**
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001286 * efi_uninstall_protocol() - uninstall protocol interface
1287 *
Mario Six78a88f72018-07-10 08:40:17 +02001288 * @handle: handle from which the protocol shall be removed
1289 * @protocol: GUID of the protocol to be removed
1290 * @protocol_interface: interface to be removed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001291 *
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001292 * This function DOES NOT delete a handle without installed protocol.
Mario Six78a88f72018-07-10 08:40:17 +02001293 *
1294 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001295 */
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001296static efi_status_t efi_uninstall_protocol
1297 (efi_handle_t handle, const efi_guid_t *protocol,
1298 void *protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01001299{
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001300 struct efi_object *efiobj;
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001301 struct efi_handler *handler;
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001302 struct efi_open_protocol_info_item *item;
1303 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001304 efi_status_t r;
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001305
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001306 /* Check handle */
1307 efiobj = efi_search_obj(handle);
1308 if (!efiobj) {
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001309 r = EFI_INVALID_PARAMETER;
1310 goto out;
1311 }
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001312 /* Find the protocol on the handle */
1313 r = efi_search_protocol(handle, protocol, &handler);
1314 if (r != EFI_SUCCESS)
1315 goto out;
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001316 /* Disconnect controllers */
1317 efi_disconnect_all_drivers(efiobj, protocol, NULL);
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001318 /* Close protocol */
1319 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1320 if (item->info.attributes ==
1321 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1322 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1323 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1324 list_del(&item->link);
1325 }
1326 if (!list_empty(&handler->open_infos)) {
1327 r = EFI_ACCESS_DENIED;
1328 goto out;
1329 }
1330 r = efi_remove_protocol(handle, protocol, protocol_interface);
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001331out:
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001332 return r;
1333}
1334
1335/**
1336 * efi_uninstall_protocol_interface() - uninstall protocol interface
1337 * @handle: handle from which the protocol shall be removed
1338 * @protocol: GUID of the protocol to be removed
1339 * @protocol_interface: interface to be removed
1340 *
1341 * This function implements the UninstallProtocolInterface service.
1342 *
1343 * See the Unified Extensible Firmware Interface (UEFI) specification for
1344 * details.
1345 *
1346 * Return: status code
1347 */
1348static efi_status_t EFIAPI efi_uninstall_protocol_interface
1349 (efi_handle_t handle, const efi_guid_t *protocol,
1350 void *protocol_interface)
1351{
1352 efi_status_t ret;
1353
1354 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1355
1356 ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1357 if (ret != EFI_SUCCESS)
1358 goto out;
1359
1360 /* If the last protocol has been removed, delete the handle. */
1361 if (list_empty(&handle->protocols)) {
1362 list_del(&handle->link);
1363 free(handle);
1364 }
1365out:
1366 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001367}
1368
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001369/**
Mario Six78a88f72018-07-10 08:40:17 +02001370 * efi_register_protocol_notify() - register an event for notification when a
1371 * protocol is installed.
1372 * @protocol: GUID of the protocol whose installation shall be notified
1373 * @event: event to be signaled upon installation of the protocol
1374 * @registration: key for retrieving the registration information
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001375 *
1376 * This function implements the RegisterProtocolNotify service.
1377 * See the Unified Extensible Firmware Interface (UEFI) specification
1378 * for details.
1379 *
Mario Six78a88f72018-07-10 08:40:17 +02001380 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001381 */
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001382static efi_status_t EFIAPI efi_register_protocol_notify(
1383 const efi_guid_t *protocol,
1384 struct efi_event *event,
1385 void **registration)
Alexander Grafbee91162016-03-04 01:09:59 +01001386{
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001387 struct efi_register_notify_event *item;
1388 efi_status_t ret = EFI_SUCCESS;
1389
Rob Clark778e6af2017-09-13 18:05:41 -04001390 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001391
1392 if (!protocol || !event || !registration) {
1393 ret = EFI_INVALID_PARAMETER;
1394 goto out;
1395 }
1396
1397 item = calloc(1, sizeof(struct efi_register_notify_event));
1398 if (!item) {
1399 ret = EFI_OUT_OF_RESOURCES;
1400 goto out;
1401 }
1402
1403 item->event = event;
Sughosh Ganu61e42d92019-12-29 00:01:04 +05301404 guidcpy(&item->protocol, protocol);
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001405 INIT_LIST_HEAD(&item->handles);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001406
1407 list_add_tail(&item->link, &efi_register_notify_events);
1408
1409 *registration = item;
1410out:
1411 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001412}
1413
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001414/**
Mario Six78a88f72018-07-10 08:40:17 +02001415 * efi_search() - determine if an EFI handle implements a protocol
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +02001416 *
Mario Six78a88f72018-07-10 08:40:17 +02001417 * @search_type: selection criterion
1418 * @protocol: GUID of the protocol
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001419 * @handle: handle
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001420 *
1421 * See the documentation of the LocateHandle service in the UEFI specification.
1422 *
Mario Six78a88f72018-07-10 08:40:17 +02001423 * Return: 0 if the handle implements the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001424 */
Alexander Grafbee91162016-03-04 01:09:59 +01001425static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001426 const efi_guid_t *protocol, efi_handle_t handle)
Alexander Grafbee91162016-03-04 01:09:59 +01001427{
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +02001428 efi_status_t ret;
Alexander Grafbee91162016-03-04 01:09:59 +01001429
1430 switch (search_type) {
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +01001431 case ALL_HANDLES:
Alexander Grafbee91162016-03-04 01:09:59 +01001432 return 0;
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +01001433 case BY_PROTOCOL:
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001434 ret = efi_search_protocol(handle, protocol, NULL);
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +02001435 return (ret != EFI_SUCCESS);
1436 default:
1437 /* Invalid search type */
Alexander Grafbee91162016-03-04 01:09:59 +01001438 return -1;
1439 }
Alexander Grafbee91162016-03-04 01:09:59 +01001440}
1441
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001442/**
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001443 * efi_check_register_notify_event() - check if registration key is valid
1444 *
1445 * Check that a pointer is a valid registration key as returned by
1446 * RegisterProtocolNotify().
1447 *
1448 * @key: registration key
1449 * Return: valid registration key or NULL
1450 */
1451static struct efi_register_notify_event *efi_check_register_notify_event
1452 (void *key)
1453{
1454 struct efi_register_notify_event *event;
1455
1456 list_for_each_entry(event, &efi_register_notify_events, link) {
1457 if (event == (struct efi_register_notify_event *)key)
1458 return event;
1459 }
1460 return NULL;
1461}
1462
1463/**
Mario Six78a88f72018-07-10 08:40:17 +02001464 * efi_locate_handle() - locate handles implementing a protocol
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001465 *
1466 * @search_type: selection criterion
1467 * @protocol: GUID of the protocol
1468 * @search_key: registration key
1469 * @buffer_size: size of the buffer to receive the handles in bytes
1470 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001471 *
1472 * This function is meant for U-Boot internal calls. For the API implementation
1473 * of the LocateHandle service see efi_locate_handle_ext.
1474 *
Mario Six78a88f72018-07-10 08:40:17 +02001475 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001476 */
xypron.glpk@gmx.deebf199b2017-08-09 20:55:00 +02001477static efi_status_t efi_locate_handle(
Alexander Grafbee91162016-03-04 01:09:59 +01001478 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001479 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001480 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafbee91162016-03-04 01:09:59 +01001481{
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001482 struct efi_object *efiobj;
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001483 efi_uintn_t size = 0;
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001484 struct efi_register_notify_event *event;
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001485 struct efi_protocol_notification *handle = NULL;
Alexander Grafbee91162016-03-04 01:09:59 +01001486
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001487 /* Check parameters */
1488 switch (search_type) {
1489 case ALL_HANDLES:
1490 break;
1491 case BY_REGISTER_NOTIFY:
1492 if (!search_key)
1493 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001494 /* Check that the registration key is valid */
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001495 event = efi_check_register_notify_event(search_key);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001496 if (!event)
1497 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001498 break;
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001499 case BY_PROTOCOL:
1500 if (!protocol)
1501 return EFI_INVALID_PARAMETER;
1502 break;
1503 default:
1504 return EFI_INVALID_PARAMETER;
1505 }
1506
Alexander Grafbee91162016-03-04 01:09:59 +01001507 /* Count how much space we need */
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001508 if (search_type == BY_REGISTER_NOTIFY) {
1509 if (list_empty(&event->handles))
1510 return EFI_NOT_FOUND;
1511 handle = list_first_entry(&event->handles,
1512 struct efi_protocol_notification,
1513 link);
1514 efiobj = handle->handle;
1515 size += sizeof(void *);
1516 } else {
1517 list_for_each_entry(efiobj, &efi_obj_list, link) {
1518 if (!efi_search(search_type, protocol, efiobj))
1519 size += sizeof(void *);
1520 }
1521 if (size == 0)
1522 return EFI_NOT_FOUND;
Alexander Grafbee91162016-03-04 01:09:59 +01001523 }
1524
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001525 if (!buffer_size)
1526 return EFI_INVALID_PARAMETER;
1527
Alexander Grafbee91162016-03-04 01:09:59 +01001528 if (*buffer_size < size) {
1529 *buffer_size = size;
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001530 return EFI_BUFFER_TOO_SMALL;
Alexander Grafbee91162016-03-04 01:09:59 +01001531 }
1532
Rob Clark796a78c2017-08-06 14:10:07 -04001533 *buffer_size = size;
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001534
Heinrich Schuchardt0a843192019-05-10 19:03:49 +02001535 /* The buffer size is sufficient but there is no buffer */
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001536 if (!buffer)
1537 return EFI_INVALID_PARAMETER;
Rob Clark796a78c2017-08-06 14:10:07 -04001538
Alexander Grafbee91162016-03-04 01:09:59 +01001539 /* Then fill the array */
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001540 if (search_type == BY_REGISTER_NOTIFY) {
1541 *buffer = efiobj;
1542 list_del(&handle->link);
1543 } else {
1544 list_for_each_entry(efiobj, &efi_obj_list, link) {
1545 if (!efi_search(search_type, protocol, efiobj))
1546 *buffer++ = efiobj;
1547 }
Alexander Grafbee91162016-03-04 01:09:59 +01001548 }
1549
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001550 return EFI_SUCCESS;
1551}
1552
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001553/**
Mario Six78a88f72018-07-10 08:40:17 +02001554 * efi_locate_handle_ext() - locate handles implementing a protocol.
1555 * @search_type: selection criterion
1556 * @protocol: GUID of the protocol
1557 * @search_key: registration key
1558 * @buffer_size: size of the buffer to receive the handles in bytes
1559 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001560 *
1561 * This function implements the LocateHandle service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001562 *
Mario Six78a88f72018-07-10 08:40:17 +02001563 * See the Unified Extensible Firmware Interface (UEFI) specification for
1564 * details.
1565 *
1566 * Return: 0 if the handle implements the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001567 */
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001568static efi_status_t EFIAPI efi_locate_handle_ext(
1569 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001570 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001571 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001572{
Rob Clark778e6af2017-09-13 18:05:41 -04001573 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001574 buffer_size, buffer);
1575
1576 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1577 buffer_size, buffer));
Alexander Grafbee91162016-03-04 01:09:59 +01001578}
1579
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001580/**
Mario Six78a88f72018-07-10 08:40:17 +02001581 * efi_remove_configuration_table() - collapses configuration table entries,
1582 * removing index i
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001583 *
Mario Six78a88f72018-07-10 08:40:17 +02001584 * @i: index of the table entry to be removed
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001585 */
Alexander Grafd98cdf62017-07-26 13:41:04 +02001586static void efi_remove_configuration_table(int i)
1587{
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001588 struct efi_configuration_table *this = &systab.tables[i];
1589 struct efi_configuration_table *next = &systab.tables[i + 1];
1590 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
Alexander Grafd98cdf62017-07-26 13:41:04 +02001591
1592 memmove(this, next, (ulong)end - (ulong)next);
1593 systab.nr_tables--;
1594}
1595
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001596/**
Mario Six78a88f72018-07-10 08:40:17 +02001597 * efi_install_configuration_table() - adds, updates, or removes a
1598 * configuration table
1599 * @guid: GUID of the installed table
1600 * @table: table to be installed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001601 *
1602 * This function is used for internal calls. For the API implementation of the
1603 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1604 *
Mario Six78a88f72018-07-10 08:40:17 +02001605 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001606 */
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01001607efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1608 void *table)
Alexander Grafbee91162016-03-04 01:09:59 +01001609{
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001610 struct efi_event *evt;
Alexander Grafbee91162016-03-04 01:09:59 +01001611 int i;
1612
Heinrich Schuchardteb68b4e2018-02-18 00:08:00 +01001613 if (!guid)
1614 return EFI_INVALID_PARAMETER;
1615
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001616 /* Check for GUID override */
Alexander Grafbee91162016-03-04 01:09:59 +01001617 for (i = 0; i < systab.nr_tables; i++) {
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001618 if (!guidcmp(guid, &systab.tables[i].guid)) {
Alexander Grafd98cdf62017-07-26 13:41:04 +02001619 if (table)
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001620 systab.tables[i].table = table;
Alexander Grafd98cdf62017-07-26 13:41:04 +02001621 else
1622 efi_remove_configuration_table(i);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001623 goto out;
Alexander Grafbee91162016-03-04 01:09:59 +01001624 }
1625 }
1626
Alexander Grafd98cdf62017-07-26 13:41:04 +02001627 if (!table)
1628 return EFI_NOT_FOUND;
1629
Alexander Grafbee91162016-03-04 01:09:59 +01001630 /* No override, check for overflow */
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001631 if (i >= EFI_MAX_CONFIGURATION_TABLES)
Alexander Graf488bf122016-08-19 01:23:24 +02001632 return EFI_OUT_OF_RESOURCES;
Alexander Grafbee91162016-03-04 01:09:59 +01001633
1634 /* Add a new entry */
Sughosh Ganu61e42d92019-12-29 00:01:04 +05301635 guidcpy(&systab.tables[i].guid, guid);
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001636 systab.tables[i].table = table;
Alexander Grafaba5e912016-08-19 01:23:30 +02001637 systab.nr_tables = i + 1;
Alexander Grafbee91162016-03-04 01:09:59 +01001638
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001639out:
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001640 /* systab.nr_tables may have changed. So we need to update the CRC32 */
Heinrich Schuchardt55d8ee32018-07-07 15:36:05 +02001641 efi_update_table_header_crc32(&systab.hdr);
1642
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001643 /* Notify that the configuration table was changed */
1644 list_for_each_entry(evt, &efi_events, link) {
1645 if (evt->group && !guidcmp(evt->group, guid)) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001646 efi_signal_event(evt);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001647 break;
1648 }
1649 }
1650
Alexander Graf488bf122016-08-19 01:23:24 +02001651 return EFI_SUCCESS;
1652}
1653
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001654/**
Mario Six78a88f72018-07-10 08:40:17 +02001655 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1656 * configuration table.
1657 * @guid: GUID of the installed table
1658 * @table: table to be installed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001659 *
1660 * This function implements the InstallConfigurationTable service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001661 *
Mario Six78a88f72018-07-10 08:40:17 +02001662 * See the Unified Extensible Firmware Interface (UEFI) specification for
1663 * details.
1664 *
1665 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001666 */
Alexander Graf488bf122016-08-19 01:23:24 +02001667static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1668 void *table)
1669{
Rob Clark778e6af2017-09-13 18:05:41 -04001670 EFI_ENTRY("%pUl, %p", guid, table);
Alexander Graf488bf122016-08-19 01:23:24 +02001671 return EFI_EXIT(efi_install_configuration_table(guid, table));
Alexander Grafbee91162016-03-04 01:09:59 +01001672}
1673
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001674/**
Mario Six78a88f72018-07-10 08:40:17 +02001675 * efi_setup_loaded_image() - initialize a loaded image
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001676 *
1677 * Initialize a loaded_image_info and loaded_image_info object with correct
Rob Clark95c55532017-09-13 18:05:33 -04001678 * protocols, boot-device, etc.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001679 *
Heinrich Schuchardt6631ca52019-07-14 11:05:34 +02001680 * In case of an error \*handle_ptr and \*info_ptr are set to NULL and an error
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001681 * code is returned.
1682 *
1683 * @device_path: device path of the loaded image
1684 * @file_path: file path of the loaded image
1685 * @handle_ptr: handle of the loaded image
1686 * @info_ptr: loaded image protocol
1687 * Return: status code
Rob Clark95c55532017-09-13 18:05:33 -04001688 */
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001689efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1690 struct efi_device_path *file_path,
1691 struct efi_loaded_image_obj **handle_ptr,
1692 struct efi_loaded_image **info_ptr)
Rob Clark95c55532017-09-13 18:05:33 -04001693{
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001694 efi_status_t ret;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001695 struct efi_loaded_image *info = NULL;
1696 struct efi_loaded_image_obj *obj = NULL;
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001697 struct efi_device_path *dp;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001698
1699 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1700 *handle_ptr = NULL;
1701 *info_ptr = NULL;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001702
1703 info = calloc(1, sizeof(*info));
1704 if (!info)
1705 return EFI_OUT_OF_RESOURCES;
1706 obj = calloc(1, sizeof(*obj));
1707 if (!obj) {
1708 free(info);
1709 return EFI_OUT_OF_RESOURCES;
1710 }
Heinrich Schuchardtcd73aba2019-05-01 14:20:18 +02001711 obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001712
Heinrich Schuchardt44549d62017-11-26 14:05:23 +01001713 /* Add internal object to object list */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +02001714 efi_add_handle(&obj->header);
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001715
Heinrich Schuchardt95147312018-07-05 08:17:58 +02001716 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
Rob Clark95c55532017-09-13 18:05:33 -04001717 info->file_path = file_path;
Heinrich Schuchardt7e1effc2018-08-26 15:31:52 +02001718 info->system_table = &systab;
Rob Clark95c55532017-09-13 18:05:33 -04001719
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001720 if (device_path) {
1721 info->device_handle = efi_dp_find_obj(device_path, NULL);
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001722
1723 dp = efi_dp_append(device_path, file_path);
1724 if (!dp) {
1725 ret = EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001726 goto failure;
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001727 }
1728 } else {
1729 dp = NULL;
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001730 }
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001731 ret = efi_add_protocol(&obj->header,
1732 &efi_guid_loaded_image_device_path, dp);
1733 if (ret != EFI_SUCCESS)
1734 goto failure;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001735
1736 /*
1737 * When asking for the loaded_image interface, just
1738 * return handle which points to loaded_image_info
1739 */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +02001740 ret = efi_add_protocol(&obj->header,
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001741 &efi_guid_loaded_image, info);
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001742 if (ret != EFI_SUCCESS)
1743 goto failure;
1744
Heinrich Schuchardtd5974af2019-03-19 18:58:58 +01001745 *info_ptr = info;
1746 *handle_ptr = obj;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001747
Heinrich Schuchardt56d92882017-12-04 18:03:01 +01001748 return ret;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001749failure:
1750 printf("ERROR: Failure to install protocols for loaded image\n");
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001751 efi_delete_handle(&obj->header);
1752 free(info);
Heinrich Schuchardt56d92882017-12-04 18:03:01 +01001753 return ret;
Rob Clark95c55532017-09-13 18:05:33 -04001754}
1755
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001756/**
Mario Six78a88f72018-07-10 08:40:17 +02001757 * efi_load_image_from_path() - load an image using a file path
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001758 *
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001759 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1760 * callers obligation to update the memory type as needed.
1761 *
1762 * @file_path: the path of the image to load
1763 * @buffer: buffer containing the loaded image
1764 * @size: size of the loaded image
1765 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001766 */
AKASHI Takahiro6b95b382019-04-19 12:22:35 +09001767static
Rob Clark9975fe92017-09-13 18:05:38 -04001768efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001769 void **buffer, efi_uintn_t *size)
Rob Clark838ee4b2017-09-13 18:05:35 -04001770{
1771 struct efi_file_info *info = NULL;
1772 struct efi_file_handle *f;
1773 static efi_status_t ret;
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001774 u64 addr;
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +02001775 efi_uintn_t bs;
Rob Clark838ee4b2017-09-13 18:05:35 -04001776
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001777 /* In case of failure nothing is returned */
1778 *buffer = NULL;
1779 *size = 0;
1780
1781 /* Open file */
Rob Clark838ee4b2017-09-13 18:05:35 -04001782 f = efi_file_from_path(file_path);
1783 if (!f)
Heinrich Schuchardt20000032019-06-11 19:00:56 +02001784 return EFI_NOT_FOUND;
Rob Clark838ee4b2017-09-13 18:05:35 -04001785
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001786 /* Get file size */
Rob Clark838ee4b2017-09-13 18:05:35 -04001787 bs = 0;
1788 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1789 &bs, info));
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001790 if (ret != EFI_BUFFER_TOO_SMALL) {
1791 ret = EFI_DEVICE_ERROR;
1792 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04001793 }
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001794
1795 info = malloc(bs);
1796 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs,
1797 info));
Rob Clark838ee4b2017-09-13 18:05:35 -04001798 if (ret != EFI_SUCCESS)
1799 goto error;
1800
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001801 /*
1802 * When reading the file we do not yet know if it contains an
1803 * application, a boottime driver, or a runtime driver. So here we
1804 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1805 * update the reservation according to the image type.
1806 */
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +02001807 bs = info->file_size;
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001808 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1809 EFI_BOOT_SERVICES_DATA,
1810 efi_size_in_pages(bs), &addr);
Rob Clark838ee4b2017-09-13 18:05:35 -04001811 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001812 ret = EFI_OUT_OF_RESOURCES;
1813 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04001814 }
1815
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001816 /* Read file */
1817 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1818 if (ret != EFI_SUCCESS)
1819 efi_free_pages(addr, efi_size_in_pages(bs));
1820 *buffer = (void *)(uintptr_t)addr;
1821 *size = bs;
1822error:
1823 EFI_CALL(f->close(f));
1824 free(info);
Rob Clark838ee4b2017-09-13 18:05:35 -04001825 return ret;
1826}
1827
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001828/**
Mario Six78a88f72018-07-10 08:40:17 +02001829 * efi_load_image() - load an EFI image into memory
1830 * @boot_policy: true for request originating from the boot manager
1831 * @parent_image: the caller's image handle
1832 * @file_path: the path of the image to load
1833 * @source_buffer: memory location from which the image is installed
1834 * @source_size: size of the memory area from which the image is installed
1835 * @image_handle: handle for the newly installed image
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001836 *
1837 * This function implements the LoadImage service.
Mario Six78a88f72018-07-10 08:40:17 +02001838 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001839 * See the Unified Extensible Firmware Interface (UEFI) specification
1840 * for details.
1841 *
Mario Six78a88f72018-07-10 08:40:17 +02001842 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001843 */
AKASHI Takahirod7e0b012019-03-05 14:53:31 +09001844efi_status_t EFIAPI efi_load_image(bool boot_policy,
1845 efi_handle_t parent_image,
1846 struct efi_device_path *file_path,
1847 void *source_buffer,
1848 efi_uintn_t source_size,
1849 efi_handle_t *image_handle)
Alexander Grafbee91162016-03-04 01:09:59 +01001850{
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001851 struct efi_device_path *dp, *fp;
Tom Rini1c3b2f42018-09-30 10:38:15 -04001852 struct efi_loaded_image *info = NULL;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001853 struct efi_loaded_image_obj **image_obj =
1854 (struct efi_loaded_image_obj **)image_handle;
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01001855 efi_status_t ret;
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01001856 void *dest_buffer;
Alexander Grafbee91162016-03-04 01:09:59 +01001857
Heinrich Schuchardt7fb96a12018-04-03 22:29:30 +02001858 EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
Alexander Grafbee91162016-03-04 01:09:59 +01001859 file_path, source_buffer, source_size, image_handle);
Rob Clark838ee4b2017-09-13 18:05:35 -04001860
Heinrich Schuchardte4afcb22019-06-11 18:52:33 +02001861 if (!image_handle || (!source_buffer && !file_path) ||
1862 !efi_search_obj(parent_image) ||
1863 /* The parent image handle must refer to a loaded image */
1864 !parent_image->type) {
Heinrich Schuchardt84a918e2019-05-05 16:55:06 +02001865 ret = EFI_INVALID_PARAMETER;
1866 goto error;
1867 }
Heinrich Schuchardt28a4fd42018-03-07 02:40:51 +01001868
Rob Clark838ee4b2017-09-13 18:05:35 -04001869 if (!source_buffer) {
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01001870 ret = efi_load_image_from_path(file_path, &dest_buffer,
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001871 &source_size);
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01001872 if (ret != EFI_SUCCESS)
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001873 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04001874 } else {
Heinrich Schuchardt470dfa52019-05-05 16:55:06 +02001875 if (!source_size) {
1876 ret = EFI_LOAD_ERROR;
1877 goto error;
1878 }
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01001879 dest_buffer = source_buffer;
Rob Clark838ee4b2017-09-13 18:05:35 -04001880 }
Heinrich Schuchardt1e15a9c2019-04-20 19:24:43 +00001881 /* split file_path which contains both the device and file parts */
1882 efi_dp_split_file_path(file_path, &dp, &fp);
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001883 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01001884 if (ret == EFI_SUCCESS)
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09001885 ret = efi_load_pe(*image_obj, dest_buffer, source_size, info);
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01001886 if (!source_buffer)
1887 /* Release buffer to which file was loaded */
1888 efi_free_pages((uintptr_t)dest_buffer,
1889 efi_size_in_pages(source_size));
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09001890 if (ret == EFI_SUCCESS || ret == EFI_SECURITY_VIOLATION) {
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01001891 info->system_table = &systab;
1892 info->parent_handle = parent_image;
1893 } else {
1894 /* The image is invalid. Release all associated resources. */
1895 efi_delete_handle(*image_handle);
1896 *image_handle = NULL;
1897 free(info);
1898 }
Heinrich Schuchardt28a4fd42018-03-07 02:40:51 +01001899error:
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01001900 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001901}
1902
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001903/**
Alexander Graff31239a2018-11-15 21:23:47 +01001904 * efi_exit_caches() - fix up caches for EFI payloads if necessary
1905 */
1906static void efi_exit_caches(void)
1907{
Heinrich Schuchardt6f3badb2019-07-22 22:04:36 +02001908#if defined(CONFIG_EFI_GRUB_ARM32_WORKAROUND)
Alexander Graff31239a2018-11-15 21:23:47 +01001909 /*
Heinrich Schuchardt6f3badb2019-07-22 22:04:36 +02001910 * Boooting Linux via GRUB prior to version 2.04 fails on 32bit ARM if
1911 * caches are enabled.
1912 *
1913 * TODO:
1914 * According to the UEFI spec caches that can be managed via CP15
1915 * operations should be enabled. Caches requiring platform information
1916 * to manage should be disabled. This should not happen in
1917 * ExitBootServices() but before invoking any UEFI binary is invoked.
1918 *
1919 * We want to keep the current workaround while GRUB prior to version
1920 * 2.04 is still in use.
Alexander Graff31239a2018-11-15 21:23:47 +01001921 */
Heinrich Schuchardt6f3badb2019-07-22 22:04:36 +02001922 cleanup_before_linux();
Alexander Graff31239a2018-11-15 21:23:47 +01001923#endif
1924}
1925
1926/**
Mario Six78a88f72018-07-10 08:40:17 +02001927 * efi_exit_boot_services() - stop all boot services
1928 * @image_handle: handle of the loaded image
1929 * @map_key: key of the memory map
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001930 *
1931 * This function implements the ExitBootServices service.
Mario Six78a88f72018-07-10 08:40:17 +02001932 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001933 * See the Unified Extensible Firmware Interface (UEFI) specification
1934 * for details.
1935 *
Mario Six78a88f72018-07-10 08:40:17 +02001936 * All timer events are disabled. For exit boot services events the
1937 * notification function is called. The boot services are disabled in the
1938 * system table.
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01001939 *
Mario Six78a88f72018-07-10 08:40:17 +02001940 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001941 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01001942static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
Heinrich Schuchardtb015ab52019-05-05 21:58:35 +02001943 efi_uintn_t map_key)
Alexander Grafbee91162016-03-04 01:09:59 +01001944{
Heinrich Schuchardt14b40482019-07-11 20:15:09 +02001945 struct efi_event *evt, *next_event;
Heinrich Schuchardt98967372019-06-11 20:05:40 +02001946 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02001947
Heinrich Schuchardtb015ab52019-05-05 21:58:35 +02001948 EFI_ENTRY("%p, %zx", image_handle, map_key);
Alexander Grafbee91162016-03-04 01:09:59 +01001949
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +02001950 /* Check that the caller has read the current memory map */
Heinrich Schuchardt98967372019-06-11 20:05:40 +02001951 if (map_key != efi_memory_map_key) {
1952 ret = EFI_INVALID_PARAMETER;
1953 goto out;
1954 }
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +02001955
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01001956 /* Check if ExitBootServices has already been called */
1957 if (!systab.boottime)
Heinrich Schuchardt98967372019-06-11 20:05:40 +02001958 goto out;
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01001959
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001960 /* Stop all timer related activities */
1961 timers_enabled = false;
1962
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001963 /* Add related events to the event group */
1964 list_for_each_entry(evt, &efi_events, link) {
1965 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
1966 evt->group = &efi_guid_event_group_exit_boot_services;
1967 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02001968 /* Notify that ExitBootServices is invoked. */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001969 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001970 if (evt->group &&
1971 !guidcmp(evt->group,
1972 &efi_guid_event_group_exit_boot_services)) {
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001973 efi_signal_event(evt);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001974 break;
1975 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02001976 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02001977
Heinrich Schuchardt7eaa9002019-06-07 06:47:01 +02001978 /* Make sure that notification functions are not called anymore */
1979 efi_tpl = TPL_HIGH_LEVEL;
1980
Heinrich Schuchardt29018ab2019-06-20 15:25:48 +02001981 /* Notify variable services */
1982 efi_variables_boot_exit_notify();
Rob Clarkad644e72017-09-13 18:05:37 -04001983
Heinrich Schuchardt14b40482019-07-11 20:15:09 +02001984 /* Remove all events except EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE */
1985 list_for_each_entry_safe(evt, next_event, &efi_events, link) {
1986 if (evt->type != EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE)
1987 list_del(&evt->link);
1988 }
1989
Alexander Grafb7b84102016-11-17 01:02:57 +01001990 board_quiesce_devices();
1991
Heinrich Schuchardt7f951042019-07-05 17:42:16 +02001992 /* Patch out unsupported runtime function */
1993 efi_runtime_detach();
1994
Alexander Graff31239a2018-11-15 21:23:47 +01001995 /* Fix up caches for EFI payloads if necessary */
1996 efi_exit_caches();
1997
Alexander Grafbee91162016-03-04 01:09:59 +01001998 /* This stops all lingering devices */
1999 bootm_disable_interrupts();
2000
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02002001 /* Disable boot time services */
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002002 systab.con_in_handle = NULL;
2003 systab.con_in = NULL;
2004 systab.con_out_handle = NULL;
2005 systab.con_out = NULL;
2006 systab.stderr_handle = NULL;
2007 systab.std_err = NULL;
2008 systab.boottime = NULL;
2009
2010 /* Recalculate CRC32 */
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02002011 efi_update_table_header_crc32(&systab.hdr);
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01002012
Alexander Grafbee91162016-03-04 01:09:59 +01002013 /* Give the payload some time to boot */
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002014 efi_set_watchdog(0);
Alexander Grafbee91162016-03-04 01:09:59 +01002015 WATCHDOG_RESET();
Heinrich Schuchardt98967372019-06-11 20:05:40 +02002016out:
2017 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002018}
2019
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002020/**
Mario Six78a88f72018-07-10 08:40:17 +02002021 * efi_get_next_monotonic_count() - get next value of the counter
2022 * @count: returned value of the counter
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002023 *
2024 * This function implements the NextMonotonicCount service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002025 *
Mario Six78a88f72018-07-10 08:40:17 +02002026 * See the Unified Extensible Firmware Interface (UEFI) specification for
2027 * details.
2028 *
2029 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002030 */
Alexander Grafbee91162016-03-04 01:09:59 +01002031static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
2032{
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002033 static uint64_t mono;
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02002034 efi_status_t ret;
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002035
Alexander Grafbee91162016-03-04 01:09:59 +01002036 EFI_ENTRY("%p", count);
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02002037 if (!count) {
2038 ret = EFI_INVALID_PARAMETER;
2039 goto out;
2040 }
Alexander Grafbee91162016-03-04 01:09:59 +01002041 *count = mono++;
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02002042 ret = EFI_SUCCESS;
2043out:
2044 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002045}
2046
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002047/**
Mario Six78a88f72018-07-10 08:40:17 +02002048 * efi_stall() - sleep
2049 * @microseconds: period to sleep in microseconds
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002050 *
Mario Six78a88f72018-07-10 08:40:17 +02002051 * This function implements the Stall service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002052 *
Mario Six78a88f72018-07-10 08:40:17 +02002053 * See the Unified Extensible Firmware Interface (UEFI) specification for
2054 * details.
2055 *
2056 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002057 */
Alexander Grafbee91162016-03-04 01:09:59 +01002058static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
2059{
Heinrich Schuchardt22f23db2019-06-02 21:12:17 +02002060 u64 end_tick;
2061
Alexander Grafbee91162016-03-04 01:09:59 +01002062 EFI_ENTRY("%ld", microseconds);
Heinrich Schuchardt22f23db2019-06-02 21:12:17 +02002063
2064 end_tick = get_ticks() + usec_to_tick(microseconds);
2065 while (get_ticks() < end_tick)
2066 efi_timer_check();
2067
Alexander Grafbee91162016-03-04 01:09:59 +01002068 return EFI_EXIT(EFI_SUCCESS);
2069}
2070
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002071/**
Mario Six78a88f72018-07-10 08:40:17 +02002072 * efi_set_watchdog_timer() - reset the watchdog timer
2073 * @timeout: seconds before reset by watchdog
2074 * @watchdog_code: code to be logged when resetting
2075 * @data_size: size of buffer in bytes
2076 * @watchdog_data: buffer with data describing the reset reason
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002077 *
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002078 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002079 *
Mario Six78a88f72018-07-10 08:40:17 +02002080 * See the Unified Extensible Firmware Interface (UEFI) specification for
2081 * details.
2082 *
2083 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002084 */
Alexander Grafbee91162016-03-04 01:09:59 +01002085static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
2086 uint64_t watchdog_code,
2087 unsigned long data_size,
2088 uint16_t *watchdog_data)
2089{
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09002090 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
Alexander Grafbee91162016-03-04 01:09:59 +01002091 data_size, watchdog_data);
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002092 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafbee91162016-03-04 01:09:59 +01002093}
2094
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002095/**
Mario Six78a88f72018-07-10 08:40:17 +02002096 * efi_close_protocol() - close a protocol
2097 * @handle: handle on which the protocol shall be closed
2098 * @protocol: GUID of the protocol to close
2099 * @agent_handle: handle of the driver
2100 * @controller_handle: handle of the controller
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002101 *
2102 * This function implements the CloseProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002103 *
Mario Six78a88f72018-07-10 08:40:17 +02002104 * See the Unified Extensible Firmware Interface (UEFI) specification for
2105 * details.
2106 *
2107 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002108 */
AKASHI Takahirob51ec632020-03-17 11:12:36 +09002109efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
2110 const efi_guid_t *protocol,
2111 efi_handle_t agent_handle,
2112 efi_handle_t controller_handle)
Alexander Grafbee91162016-03-04 01:09:59 +01002113{
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002114 struct efi_handler *handler;
2115 struct efi_open_protocol_info_item *item;
2116 struct efi_open_protocol_info_item *pos;
2117 efi_status_t r;
2118
Rob Clark778e6af2017-09-13 18:05:41 -04002119 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
Alexander Grafbee91162016-03-04 01:09:59 +01002120 controller_handle);
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002121
Heinrich Schuchardtec163fa2019-05-05 10:37:51 +02002122 if (!efi_search_obj(agent_handle) ||
2123 (controller_handle && !efi_search_obj(controller_handle))) {
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002124 r = EFI_INVALID_PARAMETER;
2125 goto out;
2126 }
2127 r = efi_search_protocol(handle, protocol, &handler);
2128 if (r != EFI_SUCCESS)
2129 goto out;
2130
2131 r = EFI_NOT_FOUND;
2132 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2133 if (item->info.agent_handle == agent_handle &&
2134 item->info.controller_handle == controller_handle) {
2135 efi_delete_open_info(item);
2136 r = EFI_SUCCESS;
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002137 }
2138 }
2139out:
2140 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002141}
2142
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002143/**
Mario Six78a88f72018-07-10 08:40:17 +02002144 * efi_open_protocol_information() - provide information about then open status
2145 * of a protocol on a handle
2146 * @handle: handle for which the information shall be retrieved
2147 * @protocol: GUID of the protocol
2148 * @entry_buffer: buffer to receive the open protocol information
2149 * @entry_count: number of entries available in the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002150 *
2151 * This function implements the OpenProtocolInformation service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002152 *
Mario Six78a88f72018-07-10 08:40:17 +02002153 * See the Unified Extensible Firmware Interface (UEFI) specification for
2154 * details.
2155 *
2156 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002157 */
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002158static efi_status_t EFIAPI efi_open_protocol_information(
2159 efi_handle_t handle, const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002160 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002161 efi_uintn_t *entry_count)
Alexander Grafbee91162016-03-04 01:09:59 +01002162{
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002163 unsigned long buffer_size;
2164 unsigned long count;
2165 struct efi_handler *handler;
2166 struct efi_open_protocol_info_item *item;
2167 efi_status_t r;
2168
Rob Clark778e6af2017-09-13 18:05:41 -04002169 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
Alexander Grafbee91162016-03-04 01:09:59 +01002170 entry_count);
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002171
2172 /* Check parameters */
2173 if (!entry_buffer) {
2174 r = EFI_INVALID_PARAMETER;
2175 goto out;
2176 }
2177 r = efi_search_protocol(handle, protocol, &handler);
2178 if (r != EFI_SUCCESS)
2179 goto out;
2180
2181 /* Count entries */
2182 count = 0;
2183 list_for_each_entry(item, &handler->open_infos, link) {
2184 if (item->info.open_count)
2185 ++count;
2186 }
2187 *entry_count = count;
2188 *entry_buffer = NULL;
2189 if (!count) {
2190 r = EFI_SUCCESS;
2191 goto out;
2192 }
2193
2194 /* Copy entries */
2195 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002196 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002197 (void **)entry_buffer);
2198 if (r != EFI_SUCCESS)
2199 goto out;
2200 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2201 if (item->info.open_count)
2202 (*entry_buffer)[--count] = item->info;
2203 }
2204out:
2205 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002206}
2207
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002208/**
Mario Six78a88f72018-07-10 08:40:17 +02002209 * efi_protocols_per_handle() - get protocols installed on a handle
2210 * @handle: handle for which the information is retrieved
2211 * @protocol_buffer: buffer with protocol GUIDs
2212 * @protocol_buffer_count: number of entries in the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002213 *
2214 * This function implements the ProtocolsPerHandleService.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002215 *
Mario Six78a88f72018-07-10 08:40:17 +02002216 * See the Unified Extensible Firmware Interface (UEFI) specification for
2217 * details.
2218 *
2219 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002220 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002221static efi_status_t EFIAPI efi_protocols_per_handle(
2222 efi_handle_t handle, efi_guid_t ***protocol_buffer,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002223 efi_uintn_t *protocol_buffer_count)
Alexander Grafbee91162016-03-04 01:09:59 +01002224{
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002225 unsigned long buffer_size;
2226 struct efi_object *efiobj;
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002227 struct list_head *protocol_handle;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002228 efi_status_t r;
2229
Alexander Grafbee91162016-03-04 01:09:59 +01002230 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2231 protocol_buffer_count);
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002232
2233 if (!handle || !protocol_buffer || !protocol_buffer_count)
2234 return EFI_EXIT(EFI_INVALID_PARAMETER);
2235
2236 *protocol_buffer = NULL;
Rob Clark661c8322017-07-20 07:59:39 -04002237 *protocol_buffer_count = 0;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002238
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002239 efiobj = efi_search_obj(handle);
2240 if (!efiobj)
2241 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002242
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002243 /* Count protocols */
2244 list_for_each(protocol_handle, &efiobj->protocols) {
2245 ++*protocol_buffer_count;
2246 }
2247
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02002248 /* Copy GUIDs */
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002249 if (*protocol_buffer_count) {
2250 size_t j = 0;
2251
2252 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002253 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002254 (void **)protocol_buffer);
2255 if (r != EFI_SUCCESS)
2256 return EFI_EXIT(r);
2257 list_for_each(protocol_handle, &efiobj->protocols) {
2258 struct efi_handler *protocol;
2259
2260 protocol = list_entry(protocol_handle,
2261 struct efi_handler, link);
2262 (*protocol_buffer)[j] = (void *)protocol->guid;
2263 ++j;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002264 }
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002265 }
2266
2267 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002268}
2269
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002270/**
Mario Six78a88f72018-07-10 08:40:17 +02002271 * efi_locate_handle_buffer() - locate handles implementing a protocol
2272 * @search_type: selection criterion
2273 * @protocol: GUID of the protocol
2274 * @search_key: registration key
2275 * @no_handles: number of returned handles
2276 * @buffer: buffer with the returned handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002277 *
2278 * This function implements the LocateHandleBuffer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002279 *
Mario Six78a88f72018-07-10 08:40:17 +02002280 * See the Unified Extensible Firmware Interface (UEFI) specification for
2281 * details.
2282 *
2283 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002284 */
AKASHI Takahirob51ec632020-03-17 11:12:36 +09002285efi_status_t EFIAPI efi_locate_handle_buffer(
Alexander Grafbee91162016-03-04 01:09:59 +01002286 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002287 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002288 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafbee91162016-03-04 01:09:59 +01002289{
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002290 efi_status_t r;
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002291 efi_uintn_t buffer_size = 0;
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002292
Rob Clark778e6af2017-09-13 18:05:41 -04002293 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafbee91162016-03-04 01:09:59 +01002294 no_handles, buffer);
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002295
2296 if (!no_handles || !buffer) {
2297 r = EFI_INVALID_PARAMETER;
2298 goto out;
2299 }
2300 *no_handles = 0;
2301 *buffer = NULL;
2302 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2303 *buffer);
2304 if (r != EFI_BUFFER_TOO_SMALL)
2305 goto out;
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002306 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002307 (void **)buffer);
2308 if (r != EFI_SUCCESS)
2309 goto out;
2310 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2311 *buffer);
2312 if (r == EFI_SUCCESS)
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002313 *no_handles = buffer_size / sizeof(efi_handle_t);
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002314out:
2315 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002316}
2317
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002318/**
Mario Six78a88f72018-07-10 08:40:17 +02002319 * efi_locate_protocol() - find an interface implementing a protocol
2320 * @protocol: GUID of the protocol
2321 * @registration: registration key passed to the notification function
2322 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002323 *
2324 * This function implements the LocateProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002325 *
Mario Six78a88f72018-07-10 08:40:17 +02002326 * See the Unified Extensible Firmware Interface (UEFI) specification for
2327 * details.
2328 *
2329 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002330 */
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002331static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002332 void *registration,
2333 void **protocol_interface)
2334{
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002335 struct efi_handler *handler;
Heinrich Schuchardt9172cd92017-10-26 19:25:57 +02002336 efi_status_t ret;
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002337 struct efi_object *efiobj;
Alexander Grafbee91162016-03-04 01:09:59 +01002338
Rob Clark778e6af2017-09-13 18:05:41 -04002339 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002340
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002341 /*
2342 * The UEFI spec explicitly requires a protocol even if a registration
2343 * key is provided. This differs from the logic in LocateHandle().
2344 */
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002345 if (!protocol || !protocol_interface)
2346 return EFI_EXIT(EFI_INVALID_PARAMETER);
2347
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002348 if (registration) {
2349 struct efi_register_notify_event *event;
2350 struct efi_protocol_notification *handle;
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002351
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002352 event = efi_check_register_notify_event(registration);
2353 if (!event)
2354 return EFI_EXIT(EFI_INVALID_PARAMETER);
2355 /*
2356 * The UEFI spec requires to return EFI_NOT_FOUND if no
2357 * protocol instance matches protocol and registration.
2358 * So let's do the same for a mismatch between protocol and
2359 * registration.
2360 */
2361 if (guidcmp(&event->protocol, protocol))
2362 goto not_found;
2363 if (list_empty(&event->handles))
2364 goto not_found;
2365 handle = list_first_entry(&event->handles,
2366 struct efi_protocol_notification,
2367 link);
2368 efiobj = handle->handle;
2369 list_del(&handle->link);
2370 free(handle);
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02002371 ret = efi_search_protocol(efiobj, protocol, &handler);
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002372 if (ret == EFI_SUCCESS)
2373 goto found;
2374 } else {
2375 list_for_each_entry(efiobj, &efi_obj_list, link) {
2376 ret = efi_search_protocol(efiobj, protocol, &handler);
2377 if (ret == EFI_SUCCESS)
2378 goto found;
Alexander Grafbee91162016-03-04 01:09:59 +01002379 }
2380 }
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002381not_found:
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002382 *protocol_interface = NULL;
Alexander Grafbee91162016-03-04 01:09:59 +01002383 return EFI_EXIT(EFI_NOT_FOUND);
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002384found:
2385 *protocol_interface = handler->protocol_interface;
2386 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002387}
2388
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002389/**
Mario Six78a88f72018-07-10 08:40:17 +02002390 * efi_locate_device_path() - Get the device path and handle of an device
2391 * implementing a protocol
2392 * @protocol: GUID of the protocol
2393 * @device_path: device path
2394 * @device: handle of the device
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002395 *
2396 * This function implements the LocateDevicePath service.
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002397 *
Mario Six78a88f72018-07-10 08:40:17 +02002398 * See the Unified Extensible Firmware Interface (UEFI) specification for
2399 * details.
2400 *
2401 * Return: status code
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002402 */
2403static efi_status_t EFIAPI efi_locate_device_path(
2404 const efi_guid_t *protocol,
2405 struct efi_device_path **device_path,
2406 efi_handle_t *device)
2407{
2408 struct efi_device_path *dp;
2409 size_t i;
2410 struct efi_handler *handler;
2411 efi_handle_t *handles;
2412 size_t len, len_dp;
2413 size_t len_best = 0;
2414 efi_uintn_t no_handles;
2415 u8 *remainder;
2416 efi_status_t ret;
2417
2418 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
2419
Heinrich Schuchardtab557142019-05-10 19:21:41 +02002420 if (!protocol || !device_path || !*device_path) {
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002421 ret = EFI_INVALID_PARAMETER;
2422 goto out;
2423 }
2424
2425 /* Find end of device path */
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +02002426 len = efi_dp_instance_size(*device_path);
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002427
2428 /* Get all handles implementing the protocol */
2429 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
2430 &no_handles, &handles));
2431 if (ret != EFI_SUCCESS)
2432 goto out;
2433
2434 for (i = 0; i < no_handles; ++i) {
2435 /* Find the device path protocol */
2436 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
2437 &handler);
2438 if (ret != EFI_SUCCESS)
2439 continue;
2440 dp = (struct efi_device_path *)handler->protocol_interface;
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +02002441 len_dp = efi_dp_instance_size(dp);
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002442 /*
2443 * This handle can only be a better fit
2444 * if its device path length is longer than the best fit and
2445 * if its device path length is shorter of equal the searched
2446 * device path.
2447 */
2448 if (len_dp <= len_best || len_dp > len)
2449 continue;
2450 /* Check if dp is a subpath of device_path */
2451 if (memcmp(*device_path, dp, len_dp))
2452 continue;
Heinrich Schuchardtab557142019-05-10 19:21:41 +02002453 if (!device) {
2454 ret = EFI_INVALID_PARAMETER;
2455 goto out;
2456 }
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002457 *device = handles[i];
2458 len_best = len_dp;
2459 }
2460 if (len_best) {
2461 remainder = (u8 *)*device_path + len_best;
2462 *device_path = (struct efi_device_path *)remainder;
2463 ret = EFI_SUCCESS;
2464 } else {
2465 ret = EFI_NOT_FOUND;
2466 }
2467out:
2468 return EFI_EXIT(ret);
2469}
2470
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002471/**
Mario Six78a88f72018-07-10 08:40:17 +02002472 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2473 * interfaces
2474 * @handle: handle on which the protocol interfaces shall be installed
2475 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2476 * interfaces
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002477 *
2478 * This function implements the MultipleProtocolInterfaces service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002479 *
Mario Six78a88f72018-07-10 08:40:17 +02002480 * See the Unified Extensible Firmware Interface (UEFI) specification for
2481 * details.
2482 *
2483 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002484 */
Heinrich Schuchardt7657ae12019-04-12 06:59:49 +02002485efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002486 (efi_handle_t *handle, ...)
Alexander Grafbee91162016-03-04 01:09:59 +01002487{
2488 EFI_ENTRY("%p", handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002489
Alexander Grafbeb077a2018-06-18 17:23:05 +02002490 efi_va_list argptr;
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002491 const efi_guid_t *protocol;
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002492 void *protocol_interface;
Heinrich Schuchardt226cddb2019-05-16 21:54:04 +02002493 efi_handle_t old_handle;
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002494 efi_status_t r = EFI_SUCCESS;
2495 int i = 0;
2496
2497 if (!handle)
2498 return EFI_EXIT(EFI_INVALID_PARAMETER);
2499
Alexander Grafbeb077a2018-06-18 17:23:05 +02002500 efi_va_start(argptr, handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002501 for (;;) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002502 protocol = efi_va_arg(argptr, efi_guid_t*);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002503 if (!protocol)
2504 break;
Alexander Grafbeb077a2018-06-18 17:23:05 +02002505 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt226cddb2019-05-16 21:54:04 +02002506 /* Check that a device path has not been installed before */
2507 if (!guidcmp(protocol, &efi_guid_device_path)) {
2508 struct efi_device_path *dp = protocol_interface;
2509
2510 r = EFI_CALL(efi_locate_device_path(protocol, &dp,
2511 &old_handle));
Heinrich Schuchardt20562892019-05-20 19:55:18 +00002512 if (r == EFI_SUCCESS &&
2513 dp->type == DEVICE_PATH_TYPE_END) {
2514 EFI_PRINT("Path %pD already installed\n",
2515 protocol_interface);
Heinrich Schuchardt226cddb2019-05-16 21:54:04 +02002516 r = EFI_ALREADY_STARTED;
2517 break;
2518 }
2519 }
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01002520 r = EFI_CALL(efi_install_protocol_interface(
2521 handle, protocol,
2522 EFI_NATIVE_INTERFACE,
2523 protocol_interface));
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002524 if (r != EFI_SUCCESS)
2525 break;
2526 i++;
2527 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002528 efi_va_end(argptr);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002529 if (r == EFI_SUCCESS)
2530 return EFI_EXIT(r);
2531
Heinrich Schuchardt62471e42017-10-26 19:25:42 +02002532 /* If an error occurred undo all changes. */
Alexander Grafbeb077a2018-06-18 17:23:05 +02002533 efi_va_start(argptr, handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002534 for (; i; --i) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002535 protocol = efi_va_arg(argptr, efi_guid_t*);
2536 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002537 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
Heinrich Schuchardtcd534082017-11-06 21:17:45 +01002538 protocol_interface));
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002539 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002540 efi_va_end(argptr);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002541
2542 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002543}
2544
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002545/**
Mario Six78a88f72018-07-10 08:40:17 +02002546 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2547 * interfaces
2548 * @handle: handle from which the protocol interfaces shall be removed
2549 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2550 * interfaces
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002551 *
2552 * This function implements the UninstallMultipleProtocolInterfaces service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002553 *
Mario Six78a88f72018-07-10 08:40:17 +02002554 * See the Unified Extensible Firmware Interface (UEFI) specification for
2555 * details.
2556 *
2557 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002558 */
Alexander Grafbee91162016-03-04 01:09:59 +01002559static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002560 efi_handle_t handle, ...)
Alexander Grafbee91162016-03-04 01:09:59 +01002561{
2562 EFI_ENTRY("%p", handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002563
Alexander Grafbeb077a2018-06-18 17:23:05 +02002564 efi_va_list argptr;
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002565 const efi_guid_t *protocol;
2566 void *protocol_interface;
2567 efi_status_t r = EFI_SUCCESS;
2568 size_t i = 0;
2569
2570 if (!handle)
2571 return EFI_EXIT(EFI_INVALID_PARAMETER);
2572
Alexander Grafbeb077a2018-06-18 17:23:05 +02002573 efi_va_start(argptr, handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002574 for (;;) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002575 protocol = efi_va_arg(argptr, efi_guid_t*);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002576 if (!protocol)
2577 break;
Alexander Grafbeb077a2018-06-18 17:23:05 +02002578 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02002579 r = efi_uninstall_protocol(handle, protocol,
2580 protocol_interface);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002581 if (r != EFI_SUCCESS)
2582 break;
2583 i++;
2584 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002585 efi_va_end(argptr);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02002586 if (r == EFI_SUCCESS) {
2587 /* If the last protocol has been removed, delete the handle. */
2588 if (list_empty(&handle->protocols)) {
2589 list_del(&handle->link);
2590 free(handle);
2591 }
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002592 return EFI_EXIT(r);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02002593 }
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002594
2595 /* If an error occurred undo all changes. */
Alexander Grafbeb077a2018-06-18 17:23:05 +02002596 efi_va_start(argptr, handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002597 for (; i; --i) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002598 protocol = efi_va_arg(argptr, efi_guid_t*);
2599 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002600 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2601 EFI_NATIVE_INTERFACE,
2602 protocol_interface));
2603 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002604 efi_va_end(argptr);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002605
Heinrich Schuchardte2373022018-09-24 19:57:27 +02002606 /* In case of an error always return EFI_INVALID_PARAMETER */
2607 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafbee91162016-03-04 01:09:59 +01002608}
2609
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002610/**
Mario Six78a88f72018-07-10 08:40:17 +02002611 * efi_calculate_crc32() - calculate cyclic redundancy code
2612 * @data: buffer with data
2613 * @data_size: size of buffer in bytes
2614 * @crc32_p: cyclic redundancy code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002615 *
2616 * This function implements the CalculateCrc32 service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002617 *
Mario Six78a88f72018-07-10 08:40:17 +02002618 * See the Unified Extensible Firmware Interface (UEFI) specification for
2619 * details.
2620 *
2621 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002622 */
Heinrich Schuchardt8aa83602018-07-07 15:36:04 +02002623static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2624 efi_uintn_t data_size,
2625 u32 *crc32_p)
Alexander Grafbee91162016-03-04 01:09:59 +01002626{
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002627 efi_status_t ret = EFI_SUCCESS;
2628
Heinrich Schuchardt8aa83602018-07-07 15:36:04 +02002629 EFI_ENTRY("%p, %zu", data, data_size);
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002630 if (!data || !data_size || !crc32_p) {
2631 ret = EFI_INVALID_PARAMETER;
2632 goto out;
2633 }
Alexander Grafbee91162016-03-04 01:09:59 +01002634 *crc32_p = crc32(0, data, data_size);
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002635out:
2636 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002637}
2638
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002639/**
Mario Six78a88f72018-07-10 08:40:17 +02002640 * efi_copy_mem() - copy memory
2641 * @destination: destination of the copy operation
2642 * @source: source of the copy operation
2643 * @length: number of bytes to copy
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002644 *
2645 * This function implements the CopyMem service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002646 *
Mario Six78a88f72018-07-10 08:40:17 +02002647 * See the Unified Extensible Firmware Interface (UEFI) specification for
2648 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002649 */
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002650static void EFIAPI efi_copy_mem(void *destination, const void *source,
2651 size_t length)
Alexander Grafbee91162016-03-04 01:09:59 +01002652{
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002653 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Heinrich Schuchardt0bc81a72019-01-09 21:41:13 +01002654 memmove(destination, source, length);
Heinrich Schuchardtf7c78172017-10-05 16:35:51 +02002655 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002656}
2657
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002658/**
Mario Six78a88f72018-07-10 08:40:17 +02002659 * efi_set_mem() - Fill memory with a byte value.
2660 * @buffer: buffer to fill
2661 * @size: size of buffer in bytes
2662 * @value: byte to copy to the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002663 *
2664 * This function implements the SetMem service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002665 *
Mario Six78a88f72018-07-10 08:40:17 +02002666 * See the Unified Extensible Firmware Interface (UEFI) specification for
2667 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002668 */
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002669static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafbee91162016-03-04 01:09:59 +01002670{
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002671 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafbee91162016-03-04 01:09:59 +01002672 memset(buffer, value, size);
Heinrich Schuchardtf7c78172017-10-05 16:35:51 +02002673 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002674}
2675
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002676/**
Mario Six78a88f72018-07-10 08:40:17 +02002677 * efi_protocol_open() - open protocol interface on a handle
2678 * @handler: handler of a protocol
2679 * @protocol_interface: interface implementing the protocol
2680 * @agent_handle: handle of the driver
2681 * @controller_handle: handle of the controller
2682 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002683 *
Mario Six78a88f72018-07-10 08:40:17 +02002684 * Return: status code
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002685 */
2686static efi_status_t efi_protocol_open(
2687 struct efi_handler *handler,
2688 void **protocol_interface, void *agent_handle,
2689 void *controller_handle, uint32_t attributes)
2690{
2691 struct efi_open_protocol_info_item *item;
2692 struct efi_open_protocol_info_entry *match = NULL;
2693 bool opened_by_driver = false;
2694 bool opened_exclusive = false;
2695
2696 /* If there is no agent, only return the interface */
2697 if (!agent_handle)
2698 goto out;
2699
2700 /* For TEST_PROTOCOL ignore interface attribute */
2701 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2702 *protocol_interface = NULL;
2703
2704 /*
2705 * Check if the protocol is already opened by a driver with the same
2706 * attributes or opened exclusively
2707 */
2708 list_for_each_entry(item, &handler->open_infos, link) {
2709 if (item->info.agent_handle == agent_handle) {
2710 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2711 (item->info.attributes == attributes))
2712 return EFI_ALREADY_STARTED;
Heinrich Schuchardt399a39e2019-05-30 14:16:31 +02002713 } else {
2714 if (item->info.attributes &
2715 EFI_OPEN_PROTOCOL_BY_DRIVER)
2716 opened_by_driver = true;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002717 }
2718 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2719 opened_exclusive = true;
2720 }
2721
2722 /* Only one controller can open the protocol exclusively */
Heinrich Schuchardt399a39e2019-05-30 14:16:31 +02002723 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2724 if (opened_exclusive)
2725 return EFI_ACCESS_DENIED;
2726 } else if (attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
2727 if (opened_exclusive || opened_by_driver)
2728 return EFI_ACCESS_DENIED;
2729 }
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002730
2731 /* Prepare exclusive opening */
2732 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2733 /* Try to disconnect controllers */
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002734disconnect_next:
2735 opened_by_driver = false;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002736 list_for_each_entry(item, &handler->open_infos, link) {
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002737 efi_status_t ret;
2738
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002739 if (item->info.attributes ==
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002740 EFI_OPEN_PROTOCOL_BY_DRIVER) {
2741 ret = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002742 item->info.controller_handle,
2743 item->info.agent_handle,
2744 NULL));
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002745 if (ret == EFI_SUCCESS)
2746 /*
2747 * Child controllers may have been
2748 * removed from the open_infos list. So
2749 * let's restart the loop.
2750 */
2751 goto disconnect_next;
2752 else
2753 opened_by_driver = true;
2754 }
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002755 }
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002756 /* Only one driver can be connected */
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002757 if (opened_by_driver)
2758 return EFI_ACCESS_DENIED;
2759 }
2760
2761 /* Find existing entry */
2762 list_for_each_entry(item, &handler->open_infos, link) {
2763 if (item->info.agent_handle == agent_handle &&
Heinrich Schuchardtb4863ba2019-06-01 20:15:10 +02002764 item->info.controller_handle == controller_handle &&
2765 item->info.attributes == attributes)
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002766 match = &item->info;
2767 }
2768 /* None found, create one */
2769 if (!match) {
2770 match = efi_create_open_info(handler);
2771 if (!match)
2772 return EFI_OUT_OF_RESOURCES;
2773 }
2774
2775 match->agent_handle = agent_handle;
2776 match->controller_handle = controller_handle;
2777 match->attributes = attributes;
2778 match->open_count++;
2779
2780out:
2781 /* For TEST_PROTOCOL ignore interface attribute. */
2782 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2783 *protocol_interface = handler->protocol_interface;
2784
2785 return EFI_SUCCESS;
2786}
2787
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002788/**
Mario Six78a88f72018-07-10 08:40:17 +02002789 * efi_open_protocol() - open protocol interface on a handle
2790 * @handle: handle on which the protocol shall be opened
2791 * @protocol: GUID of the protocol
2792 * @protocol_interface: interface implementing the protocol
2793 * @agent_handle: handle of the driver
2794 * @controller_handle: handle of the controller
2795 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002796 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002797 * This function implements the OpenProtocol interface.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002798 *
Mario Six78a88f72018-07-10 08:40:17 +02002799 * See the Unified Extensible Firmware Interface (UEFI) specification for
2800 * details.
2801 *
2802 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002803 */
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002804static efi_status_t EFIAPI efi_open_protocol
2805 (efi_handle_t handle, const efi_guid_t *protocol,
2806 void **protocol_interface, efi_handle_t agent_handle,
2807 efi_handle_t controller_handle, uint32_t attributes)
Alexander Grafbee91162016-03-04 01:09:59 +01002808{
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01002809 struct efi_handler *handler;
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002810 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +01002811
Rob Clark778e6af2017-09-13 18:05:41 -04002812 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002813 protocol_interface, agent_handle, controller_handle,
2814 attributes);
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02002815
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002816 if (!handle || !protocol ||
2817 (!protocol_interface && attributes !=
2818 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
2819 goto out;
2820 }
2821
2822 switch (attributes) {
2823 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2824 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2825 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2826 break;
2827 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2828 if (controller_handle == handle)
2829 goto out;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002830 /* fall-through */
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002831 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2832 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002833 /* Check that the controller handle is valid */
2834 if (!efi_search_obj(controller_handle))
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002835 goto out;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002836 /* fall-through */
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002837 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002838 /* Check that the agent handle is valid */
2839 if (!efi_search_obj(agent_handle))
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002840 goto out;
2841 break;
2842 default:
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02002843 goto out;
2844 }
2845
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01002846 r = efi_search_protocol(handle, protocol, &handler);
Heinrich Schuchardte7c3cd62019-05-05 11:24:53 +02002847 switch (r) {
2848 case EFI_SUCCESS:
2849 break;
2850 case EFI_NOT_FOUND:
2851 r = EFI_UNSUPPORTED;
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01002852 goto out;
Heinrich Schuchardte7c3cd62019-05-05 11:24:53 +02002853 default:
2854 goto out;
2855 }
Alexander Grafbee91162016-03-04 01:09:59 +01002856
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002857 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2858 controller_handle, attributes);
Alexander Grafbee91162016-03-04 01:09:59 +01002859out:
2860 return EFI_EXIT(r);
2861}
2862
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002863/**
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002864 * efi_start_image() - call the entry point of an image
2865 * @image_handle: handle of the image
2866 * @exit_data_size: size of the buffer
2867 * @exit_data: buffer to receive the exit data of the called image
2868 *
2869 * This function implements the StartImage service.
2870 *
2871 * See the Unified Extensible Firmware Interface (UEFI) specification for
2872 * details.
2873 *
2874 * Return: status code
2875 */
2876efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
2877 efi_uintn_t *exit_data_size,
2878 u16 **exit_data)
2879{
2880 struct efi_loaded_image_obj *image_obj =
2881 (struct efi_loaded_image_obj *)image_handle;
2882 efi_status_t ret;
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002883 void *info;
2884 efi_handle_t parent_image = current_image;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002885
2886 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
2887
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09002888 if (!efi_search_obj(image_handle))
2889 return EFI_EXIT(EFI_INVALID_PARAMETER);
2890
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002891 /* Check parameters */
Heinrich Schuchardt1d3e8dc2019-06-11 19:35:20 +02002892 if (image_obj->header.type != EFI_OBJECT_TYPE_LOADED_IMAGE)
2893 return EFI_EXIT(EFI_INVALID_PARAMETER);
2894
AKASHI Takahiro4540dab2020-04-14 11:51:44 +09002895 if (image_obj->auth_status != EFI_IMAGE_AUTH_PASSED)
2896 return EFI_EXIT(EFI_SECURITY_VIOLATION);
2897
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002898 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2899 &info, NULL, NULL,
2900 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2901 if (ret != EFI_SUCCESS)
2902 return EFI_EXIT(EFI_INVALID_PARAMETER);
2903
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02002904 image_obj->exit_data_size = exit_data_size;
2905 image_obj->exit_data = exit_data;
2906
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002907 /* call the image! */
2908 if (setjmp(&image_obj->exit_jmp)) {
2909 /*
2910 * We called the entry point of the child image with EFI_CALL
2911 * in the lines below. The child image called the Exit() boot
2912 * service efi_exit() which executed the long jump that brought
2913 * us to the current line. This implies that the second half
2914 * of the EFI_CALL macro has not been executed.
2915 */
2916#ifdef CONFIG_ARM
2917 /*
2918 * efi_exit() called efi_restore_gd(). We have to undo this
2919 * otherwise __efi_entry_check() will put the wrong value into
2920 * app_gd.
2921 */
2922 gd = app_gd;
2923#endif
2924 /*
2925 * To get ready to call EFI_EXIT below we have to execute the
2926 * missed out steps of EFI_CALL.
2927 */
2928 assert(__efi_entry_check());
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02002929 EFI_PRINT("%lu returned by started image\n",
2930 (unsigned long)((uintptr_t)image_obj->exit_status &
2931 ~EFI_ERROR_MASK));
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002932 current_image = parent_image;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002933 return EFI_EXIT(image_obj->exit_status);
2934 }
2935
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002936 current_image = image_handle;
Heinrich Schuchardtcd73aba2019-05-01 14:20:18 +02002937 image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +09002938 EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002939 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
2940
2941 /*
Heinrich Schuchardt55111c52020-01-10 22:06:54 +01002942 * Control is returned from a started UEFI image either by calling
2943 * Exit() (where exit data can be provided) or by simply returning from
2944 * the entry point. In the latter case call Exit() on behalf of the
2945 * image.
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002946 */
2947 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
2948}
2949
2950/**
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02002951 * efi_delete_image() - delete loaded image from memory)
2952 *
2953 * @image_obj: handle of the loaded image
2954 * @loaded_image_protocol: loaded image protocol
2955 */
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02002956static efi_status_t efi_delete_image
2957 (struct efi_loaded_image_obj *image_obj,
2958 struct efi_loaded_image *loaded_image_protocol)
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02002959{
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02002960 struct efi_object *efiobj;
2961 efi_status_t r, ret = EFI_SUCCESS;
2962
2963close_next:
2964 list_for_each_entry(efiobj, &efi_obj_list, link) {
2965 struct efi_handler *protocol;
2966
2967 list_for_each_entry(protocol, &efiobj->protocols, link) {
2968 struct efi_open_protocol_info_item *info;
2969
2970 list_for_each_entry(info, &protocol->open_infos, link) {
2971 if (info->info.agent_handle !=
2972 (efi_handle_t)image_obj)
2973 continue;
2974 r = EFI_CALL(efi_close_protocol
2975 (efiobj, protocol->guid,
2976 info->info.agent_handle,
2977 info->info.controller_handle
2978 ));
2979 if (r != EFI_SUCCESS)
2980 ret = r;
2981 /*
2982 * Closing protocols may results in further
2983 * items being deleted. To play it safe loop
2984 * over all elements again.
2985 */
2986 goto close_next;
2987 }
2988 }
2989 }
2990
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02002991 efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
2992 efi_size_in_pages(loaded_image_protocol->image_size));
2993 efi_delete_handle(&image_obj->header);
Heinrich Schuchardt120ff7b2019-06-02 20:02:32 +02002994
2995 return ret;
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02002996}
2997
2998/**
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02002999 * efi_unload_image() - unload an EFI image
3000 * @image_handle: handle of the image to be unloaded
3001 *
3002 * This function implements the UnloadImage service.
3003 *
3004 * See the Unified Extensible Firmware Interface (UEFI) specification for
3005 * details.
3006 *
3007 * Return: status code
3008 */
3009efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
3010{
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003011 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003012 struct efi_object *efiobj;
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003013 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003014
3015 EFI_ENTRY("%p", image_handle);
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003016
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02003017 efiobj = efi_search_obj(image_handle);
3018 if (!efiobj) {
3019 ret = EFI_INVALID_PARAMETER;
3020 goto out;
3021 }
3022 /* Find the loaded image protocol */
3023 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
3024 (void **)&loaded_image_protocol,
3025 NULL, NULL,
3026 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3027 if (ret != EFI_SUCCESS) {
3028 ret = EFI_INVALID_PARAMETER;
3029 goto out;
3030 }
3031 switch (efiobj->type) {
3032 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3033 /* Call the unload function */
3034 if (!loaded_image_protocol->unload) {
3035 ret = EFI_UNSUPPORTED;
3036 goto out;
3037 }
3038 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
3039 if (ret != EFI_SUCCESS)
3040 goto out;
3041 break;
3042 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3043 break;
3044 default:
3045 ret = EFI_INVALID_PARAMETER;
3046 goto out;
3047 }
3048 efi_delete_image((struct efi_loaded_image_obj *)efiobj,
3049 loaded_image_protocol);
3050out:
3051 return EFI_EXIT(ret);
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02003052}
3053
3054/**
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003055 * efi_update_exit_data() - fill exit data parameters of StartImage()
3056 *
Heinrich Schuchardt9ce91272019-07-14 11:25:06 +02003057 * @image_obj: image handle
3058 * @exit_data_size: size of the exit data buffer
3059 * @exit_data: buffer with data returned by UEFI payload
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003060 * Return: status code
3061 */
3062static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
3063 efi_uintn_t exit_data_size,
3064 u16 *exit_data)
3065{
3066 efi_status_t ret;
3067
3068 /*
3069 * If exit_data is not provided to StartImage(), exit_data_size must be
3070 * ignored.
3071 */
3072 if (!image_obj->exit_data)
3073 return EFI_SUCCESS;
3074 if (image_obj->exit_data_size)
3075 *image_obj->exit_data_size = exit_data_size;
3076 if (exit_data_size && exit_data) {
3077 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
3078 exit_data_size,
3079 (void **)image_obj->exit_data);
3080 if (ret != EFI_SUCCESS)
3081 return ret;
3082 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
3083 } else {
3084 image_obj->exit_data = NULL;
3085 }
3086 return EFI_SUCCESS;
3087}
3088
3089/**
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003090 * efi_exit() - leave an EFI application or driver
3091 * @image_handle: handle of the application or driver that is exiting
3092 * @exit_status: status code
3093 * @exit_data_size: size of the buffer in bytes
3094 * @exit_data: buffer with data describing an error
3095 *
3096 * This function implements the Exit service.
3097 *
3098 * See the Unified Extensible Firmware Interface (UEFI) specification for
3099 * details.
3100 *
3101 * Return: status code
3102 */
3103static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
3104 efi_status_t exit_status,
3105 efi_uintn_t exit_data_size,
3106 u16 *exit_data)
3107{
3108 /*
3109 * TODO: We should call the unload procedure of the loaded
3110 * image protocol.
3111 */
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003112 efi_status_t ret;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003113 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003114 struct efi_loaded_image_obj *image_obj =
3115 (struct efi_loaded_image_obj *)image_handle;
3116
3117 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
3118 exit_data_size, exit_data);
3119
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003120 /* Check parameters */
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003121 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003122 (void **)&loaded_image_protocol,
3123 NULL, NULL,
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003124 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003125 if (ret != EFI_SUCCESS) {
3126 ret = EFI_INVALID_PARAMETER;
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003127 goto out;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003128 }
3129
3130 /* Unloading of unstarted images */
3131 switch (image_obj->header.type) {
3132 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3133 break;
3134 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3135 efi_delete_image(image_obj, loaded_image_protocol);
3136 ret = EFI_SUCCESS;
3137 goto out;
3138 default:
3139 /* Handle does not refer to loaded image */
3140 ret = EFI_INVALID_PARAMETER;
3141 goto out;
3142 }
3143 /* A started image can only be unloaded it is the last one started. */
3144 if (image_handle != current_image) {
3145 ret = EFI_INVALID_PARAMETER;
3146 goto out;
3147 }
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003148
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003149 /* Exit data is only foreseen in case of failure. */
3150 if (exit_status != EFI_SUCCESS) {
3151 ret = efi_update_exit_data(image_obj, exit_data_size,
3152 exit_data);
3153 /* Exiting has priority. Don't return error to caller. */
3154 if (ret != EFI_SUCCESS)
3155 EFI_PRINT("%s: out of memory\n", __func__);
3156 }
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003157 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
3158 exit_status != EFI_SUCCESS)
3159 efi_delete_image(image_obj, loaded_image_protocol);
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003160
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003161 /* Make sure entry/exit counts for EFI world cross-overs match */
3162 EFI_EXIT(exit_status);
3163
3164 /*
3165 * But longjmp out with the U-Boot gd, not the application's, as
3166 * the other end is a setjmp call inside EFI context.
3167 */
3168 efi_restore_gd();
3169
3170 image_obj->exit_status = exit_status;
3171 longjmp(&image_obj->exit_jmp, 1);
3172
3173 panic("EFI application exited");
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003174out:
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003175 return EFI_EXIT(ret);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003176}
3177
3178/**
Mario Six78a88f72018-07-10 08:40:17 +02003179 * efi_handle_protocol() - get interface of a protocol on a handle
3180 * @handle: handle on which the protocol shall be opened
3181 * @protocol: GUID of the protocol
3182 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003183 *
3184 * This function implements the HandleProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003185 *
Mario Six78a88f72018-07-10 08:40:17 +02003186 * See the Unified Extensible Firmware Interface (UEFI) specification for
3187 * details.
3188 *
3189 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003190 */
AKASHI Takahirob51ec632020-03-17 11:12:36 +09003191efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
3192 const efi_guid_t *protocol,
3193 void **protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01003194{
Heinrich Schuchardt755d42d2019-06-01 19:29:39 +02003195 return efi_open_protocol(handle, protocol, protocol_interface, efi_root,
xypron.glpk@gmx.de8e1d3292017-06-29 21:16:19 +02003196 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafbee91162016-03-04 01:09:59 +01003197}
3198
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003199/**
Mario Six78a88f72018-07-10 08:40:17 +02003200 * efi_bind_controller() - bind a single driver to a controller
3201 * @controller_handle: controller handle
3202 * @driver_image_handle: driver handle
3203 * @remain_device_path: remaining path
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003204 *
Mario Six78a88f72018-07-10 08:40:17 +02003205 * Return: status code
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003206 */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003207static efi_status_t efi_bind_controller(
3208 efi_handle_t controller_handle,
3209 efi_handle_t driver_image_handle,
3210 struct efi_device_path *remain_device_path)
3211{
3212 struct efi_driver_binding_protocol *binding_protocol;
3213 efi_status_t r;
3214
3215 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3216 &efi_guid_driver_binding_protocol,
3217 (void **)&binding_protocol,
3218 driver_image_handle, NULL,
3219 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3220 if (r != EFI_SUCCESS)
3221 return r;
3222 r = EFI_CALL(binding_protocol->supported(binding_protocol,
3223 controller_handle,
3224 remain_device_path));
3225 if (r == EFI_SUCCESS)
3226 r = EFI_CALL(binding_protocol->start(binding_protocol,
3227 controller_handle,
3228 remain_device_path));
3229 EFI_CALL(efi_close_protocol(driver_image_handle,
3230 &efi_guid_driver_binding_protocol,
3231 driver_image_handle, NULL));
3232 return r;
3233}
3234
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003235/**
Mario Six78a88f72018-07-10 08:40:17 +02003236 * efi_connect_single_controller() - connect a single driver to a controller
3237 * @controller_handle: controller
3238 * @driver_image_handle: driver
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003239 * @remain_device_path: remaining path
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003240 *
Mario Six78a88f72018-07-10 08:40:17 +02003241 * Return: status code
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003242 */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003243static efi_status_t efi_connect_single_controller(
3244 efi_handle_t controller_handle,
3245 efi_handle_t *driver_image_handle,
3246 struct efi_device_path *remain_device_path)
3247{
3248 efi_handle_t *buffer;
3249 size_t count;
3250 size_t i;
3251 efi_status_t r;
3252 size_t connected = 0;
3253
3254 /* Get buffer with all handles with driver binding protocol */
3255 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3256 &efi_guid_driver_binding_protocol,
3257 NULL, &count, &buffer));
3258 if (r != EFI_SUCCESS)
3259 return r;
3260
Heinrich Schuchardt359a6992019-07-03 20:27:24 +02003261 /* Context Override */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003262 if (driver_image_handle) {
3263 for (; *driver_image_handle; ++driver_image_handle) {
3264 for (i = 0; i < count; ++i) {
3265 if (buffer[i] == *driver_image_handle) {
3266 buffer[i] = NULL;
3267 r = efi_bind_controller(
3268 controller_handle,
3269 *driver_image_handle,
3270 remain_device_path);
3271 /*
3272 * For drivers that do not support the
3273 * controller or are already connected
3274 * we receive an error code here.
3275 */
3276 if (r == EFI_SUCCESS)
3277 ++connected;
3278 }
3279 }
3280 }
3281 }
3282
3283 /*
3284 * TODO: Some overrides are not yet implemented:
3285 * - Platform Driver Override
3286 * - Driver Family Override Search
3287 * - Bus Specific Driver Override
3288 */
3289
3290 /* Driver Binding Search */
3291 for (i = 0; i < count; ++i) {
3292 if (buffer[i]) {
3293 r = efi_bind_controller(controller_handle,
3294 buffer[i],
3295 remain_device_path);
3296 if (r == EFI_SUCCESS)
3297 ++connected;
3298 }
3299 }
3300
3301 efi_free_pool(buffer);
3302 if (!connected)
3303 return EFI_NOT_FOUND;
3304 return EFI_SUCCESS;
3305}
3306
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003307/**
Mario Six78a88f72018-07-10 08:40:17 +02003308 * efi_connect_controller() - connect a controller to a driver
3309 * @controller_handle: handle of the controller
3310 * @driver_image_handle: handle of the driver
3311 * @remain_device_path: device path of a child controller
3312 * @recursive: true to connect all child controllers
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003313 *
3314 * This function implements the ConnectController service.
Mario Six78a88f72018-07-10 08:40:17 +02003315 *
3316 * See the Unified Extensible Firmware Interface (UEFI) specification for
3317 * details.
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003318 *
3319 * First all driver binding protocol handles are tried for binding drivers.
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003320 * Afterwards all handles that have opened a protocol of the controller
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003321 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3322 *
Mario Six78a88f72018-07-10 08:40:17 +02003323 * Return: status code
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003324 */
3325static efi_status_t EFIAPI efi_connect_controller(
3326 efi_handle_t controller_handle,
3327 efi_handle_t *driver_image_handle,
3328 struct efi_device_path *remain_device_path,
3329 bool recursive)
3330{
3331 efi_status_t r;
3332 efi_status_t ret = EFI_NOT_FOUND;
3333 struct efi_object *efiobj;
3334
Heinrich Schuchardtd1788362018-12-09 16:39:20 +01003335 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003336 remain_device_path, recursive);
3337
3338 efiobj = efi_search_obj(controller_handle);
3339 if (!efiobj) {
3340 ret = EFI_INVALID_PARAMETER;
3341 goto out;
3342 }
3343
3344 r = efi_connect_single_controller(controller_handle,
3345 driver_image_handle,
3346 remain_device_path);
3347 if (r == EFI_SUCCESS)
3348 ret = EFI_SUCCESS;
3349 if (recursive) {
3350 struct efi_handler *handler;
3351 struct efi_open_protocol_info_item *item;
3352
3353 list_for_each_entry(handler, &efiobj->protocols, link) {
3354 list_for_each_entry(item, &handler->open_infos, link) {
3355 if (item->info.attributes &
3356 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3357 r = EFI_CALL(efi_connect_controller(
3358 item->info.controller_handle,
3359 driver_image_handle,
3360 remain_device_path,
3361 recursive));
3362 if (r == EFI_SUCCESS)
3363 ret = EFI_SUCCESS;
3364 }
3365 }
3366 }
3367 }
Heinrich Schuchardt359a6992019-07-03 20:27:24 +02003368 /* Check for child controller specified by end node */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003369 if (ret != EFI_SUCCESS && remain_device_path &&
3370 remain_device_path->type == DEVICE_PATH_TYPE_END)
3371 ret = EFI_SUCCESS;
3372out:
3373 return EFI_EXIT(ret);
3374}
3375
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003376/**
Mario Six78a88f72018-07-10 08:40:17 +02003377 * efi_reinstall_protocol_interface() - reinstall protocol interface
3378 * @handle: handle on which the protocol shall be reinstalled
3379 * @protocol: GUID of the protocol to be installed
3380 * @old_interface: interface to be removed
3381 * @new_interface: interface to be installed
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003382 *
3383 * This function implements the ReinstallProtocolInterface service.
Mario Six78a88f72018-07-10 08:40:17 +02003384 *
3385 * See the Unified Extensible Firmware Interface (UEFI) specification for
3386 * details.
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003387 *
3388 * The old interface is uninstalled. The new interface is installed.
3389 * Drivers are connected.
3390 *
Mario Six78a88f72018-07-10 08:40:17 +02003391 * Return: status code
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003392 */
3393static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3394 efi_handle_t handle, const efi_guid_t *protocol,
3395 void *old_interface, void *new_interface)
3396{
3397 efi_status_t ret;
3398
3399 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
3400 new_interface);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02003401
3402 /* Uninstall protocol but do not delete handle */
3403 ret = efi_uninstall_protocol(handle, protocol, old_interface);
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003404 if (ret != EFI_SUCCESS)
3405 goto out;
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02003406
3407 /* Install the new protocol */
3408 ret = efi_add_protocol(handle, protocol, new_interface);
3409 /*
3410 * The UEFI spec does not specify what should happen to the handle
3411 * if in case of an error no protocol interface remains on the handle.
3412 * So let's do nothing here.
3413 */
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003414 if (ret != EFI_SUCCESS)
3415 goto out;
3416 /*
3417 * The returned status code has to be ignored.
3418 * Do not create an error if no suitable driver for the handle exists.
3419 */
3420 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3421out:
3422 return EFI_EXIT(ret);
3423}
3424
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003425/**
Mario Six78a88f72018-07-10 08:40:17 +02003426 * efi_get_child_controllers() - get all child controllers associated to a driver
3427 * @efiobj: handle of the controller
3428 * @driver_handle: handle of the driver
3429 * @number_of_children: number of child controllers
3430 * @child_handle_buffer: handles of the the child controllers
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003431 *
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003432 * The allocated buffer has to be freed with free().
3433 *
Mario Six78a88f72018-07-10 08:40:17 +02003434 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003435 */
3436static efi_status_t efi_get_child_controllers(
3437 struct efi_object *efiobj,
3438 efi_handle_t driver_handle,
3439 efi_uintn_t *number_of_children,
3440 efi_handle_t **child_handle_buffer)
3441{
3442 struct efi_handler *handler;
3443 struct efi_open_protocol_info_item *item;
3444 efi_uintn_t count = 0, i;
3445 bool duplicate;
3446
3447 /* Count all child controller associations */
3448 list_for_each_entry(handler, &efiobj->protocols, link) {
3449 list_for_each_entry(item, &handler->open_infos, link) {
3450 if (item->info.agent_handle == driver_handle &&
3451 item->info.attributes &
3452 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3453 ++count;
3454 }
3455 }
3456 /*
3457 * Create buffer. In case of duplicate child controller assignments
3458 * the buffer will be too large. But that does not harm.
3459 */
3460 *number_of_children = 0;
3461 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3462 if (!*child_handle_buffer)
3463 return EFI_OUT_OF_RESOURCES;
3464 /* Copy unique child handles */
3465 list_for_each_entry(handler, &efiobj->protocols, link) {
3466 list_for_each_entry(item, &handler->open_infos, link) {
3467 if (item->info.agent_handle == driver_handle &&
3468 item->info.attributes &
3469 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3470 /* Check this is a new child controller */
3471 duplicate = false;
3472 for (i = 0; i < *number_of_children; ++i) {
3473 if ((*child_handle_buffer)[i] ==
3474 item->info.controller_handle)
3475 duplicate = true;
3476 }
3477 /* Copy handle to buffer */
3478 if (!duplicate) {
3479 i = (*number_of_children)++;
3480 (*child_handle_buffer)[i] =
3481 item->info.controller_handle;
3482 }
3483 }
3484 }
3485 }
3486 return EFI_SUCCESS;
3487}
3488
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003489/**
Mario Six78a88f72018-07-10 08:40:17 +02003490 * efi_disconnect_controller() - disconnect a controller from a driver
3491 * @controller_handle: handle of the controller
3492 * @driver_image_handle: handle of the driver
3493 * @child_handle: handle of the child to destroy
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003494 *
3495 * This function implements the DisconnectController service.
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003496 *
Mario Six78a88f72018-07-10 08:40:17 +02003497 * See the Unified Extensible Firmware Interface (UEFI) specification for
3498 * details.
3499 *
3500 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003501 */
3502static efi_status_t EFIAPI efi_disconnect_controller(
3503 efi_handle_t controller_handle,
3504 efi_handle_t driver_image_handle,
3505 efi_handle_t child_handle)
3506{
3507 struct efi_driver_binding_protocol *binding_protocol;
3508 efi_handle_t *child_handle_buffer = NULL;
3509 size_t number_of_children = 0;
3510 efi_status_t r;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003511 struct efi_object *efiobj;
3512
3513 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3514 child_handle);
3515
3516 efiobj = efi_search_obj(controller_handle);
3517 if (!efiobj) {
3518 r = EFI_INVALID_PARAMETER;
3519 goto out;
3520 }
3521
3522 if (child_handle && !efi_search_obj(child_handle)) {
3523 r = EFI_INVALID_PARAMETER;
3524 goto out;
3525 }
3526
3527 /* If no driver handle is supplied, disconnect all drivers */
3528 if (!driver_image_handle) {
3529 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3530 goto out;
3531 }
3532
3533 /* Create list of child handles */
3534 if (child_handle) {
3535 number_of_children = 1;
3536 child_handle_buffer = &child_handle;
3537 } else {
3538 efi_get_child_controllers(efiobj,
3539 driver_image_handle,
3540 &number_of_children,
3541 &child_handle_buffer);
3542 }
3543
3544 /* Get the driver binding protocol */
3545 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3546 &efi_guid_driver_binding_protocol,
3547 (void **)&binding_protocol,
3548 driver_image_handle, NULL,
3549 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003550 if (r != EFI_SUCCESS) {
3551 r = EFI_INVALID_PARAMETER;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003552 goto out;
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003553 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003554 /* Remove the children */
3555 if (number_of_children) {
3556 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3557 controller_handle,
3558 number_of_children,
3559 child_handle_buffer));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003560 if (r != EFI_SUCCESS) {
3561 r = EFI_DEVICE_ERROR;
3562 goto out;
3563 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003564 }
3565 /* Remove the driver */
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003566 if (!child_handle) {
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003567 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3568 controller_handle,
3569 0, NULL));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003570 if (r != EFI_SUCCESS) {
3571 r = EFI_DEVICE_ERROR;
3572 goto out;
3573 }
3574 }
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003575 EFI_CALL(efi_close_protocol(driver_image_handle,
3576 &efi_guid_driver_binding_protocol,
3577 driver_image_handle, NULL));
Heinrich Schuchardt7dc10c92019-09-13 18:20:40 +02003578 r = EFI_SUCCESS;
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003579out:
3580 if (!child_handle)
3581 free(child_handle_buffer);
3582 return EFI_EXIT(r);
3583}
3584
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003585static struct efi_boot_services efi_boot_services = {
Alexander Grafbee91162016-03-04 01:09:59 +01003586 .hdr = {
Heinrich Schuchardt112f2432018-06-28 12:45:27 +02003587 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3588 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt71c846a2018-06-28 12:45:29 +02003589 .headersize = sizeof(struct efi_boot_services),
Alexander Grafbee91162016-03-04 01:09:59 +01003590 },
3591 .raise_tpl = efi_raise_tpl,
3592 .restore_tpl = efi_restore_tpl,
3593 .allocate_pages = efi_allocate_pages_ext,
3594 .free_pages = efi_free_pages_ext,
3595 .get_memory_map = efi_get_memory_map_ext,
Stefan Brünsead12742016-10-09 22:17:18 +02003596 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns42417bc2016-10-09 22:17:26 +02003597 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +02003598 .create_event = efi_create_event_ext,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +02003599 .set_timer = efi_set_timer_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003600 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02003601 .signal_event = efi_signal_event_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003602 .close_event = efi_close_event,
3603 .check_event = efi_check_event,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01003604 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafbee91162016-03-04 01:09:59 +01003605 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardtcd534082017-11-06 21:17:45 +01003606 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafbee91162016-03-04 01:09:59 +01003607 .handle_protocol = efi_handle_protocol,
3608 .reserved = NULL,
3609 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02003610 .locate_handle = efi_locate_handle_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003611 .locate_device_path = efi_locate_device_path,
Alexander Graf488bf122016-08-19 01:23:24 +02003612 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003613 .load_image = efi_load_image,
3614 .start_image = efi_start_image,
Alexander Grafa86aeaf2016-05-20 23:28:23 +02003615 .exit = efi_exit,
Alexander Grafbee91162016-03-04 01:09:59 +01003616 .unload_image = efi_unload_image,
3617 .exit_boot_services = efi_exit_boot_services,
3618 .get_next_monotonic_count = efi_get_next_monotonic_count,
3619 .stall = efi_stall,
3620 .set_watchdog_timer = efi_set_watchdog_timer,
3621 .connect_controller = efi_connect_controller,
3622 .disconnect_controller = efi_disconnect_controller,
3623 .open_protocol = efi_open_protocol,
3624 .close_protocol = efi_close_protocol,
3625 .open_protocol_information = efi_open_protocol_information,
3626 .protocols_per_handle = efi_protocols_per_handle,
3627 .locate_handle_buffer = efi_locate_handle_buffer,
3628 .locate_protocol = efi_locate_protocol,
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01003629 .install_multiple_protocol_interfaces =
3630 efi_install_multiple_protocol_interfaces,
3631 .uninstall_multiple_protocol_interfaces =
3632 efi_uninstall_multiple_protocol_interfaces,
Alexander Grafbee91162016-03-04 01:09:59 +01003633 .calculate_crc32 = efi_calculate_crc32,
3634 .copy_mem = efi_copy_mem,
3635 .set_mem = efi_set_mem,
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +01003636 .create_event_ex = efi_create_event_ex,
Alexander Grafbee91162016-03-04 01:09:59 +01003637};
3638
Heinrich Schuchardt0b386532018-06-28 12:45:30 +02003639static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
Alexander Grafbee91162016-03-04 01:09:59 +01003640
Alexander Graf3c63db92016-10-14 13:45:30 +02003641struct efi_system_table __efi_runtime_data systab = {
Alexander Grafbee91162016-03-04 01:09:59 +01003642 .hdr = {
3643 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
Heinrich Schuchardt112f2432018-06-28 12:45:27 +02003644 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt71c846a2018-06-28 12:45:29 +02003645 .headersize = sizeof(struct efi_system_table),
Alexander Grafbee91162016-03-04 01:09:59 +01003646 },
Heinrich Schuchardt0b386532018-06-28 12:45:30 +02003647 .fw_vendor = firmware_vendor,
3648 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
Heinrich Schuchardt3c783bf2019-06-15 14:51:06 +02003649 .runtime = &efi_runtime_services,
Alexander Grafbee91162016-03-04 01:09:59 +01003650 .nr_tables = 0,
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003651 .tables = NULL,
Alexander Grafbee91162016-03-04 01:09:59 +01003652};
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003653
3654/**
3655 * efi_initialize_system_table() - Initialize system table
3656 *
Heinrich Schuchardt04143592018-09-03 05:00:43 +02003657 * Return: status code
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003658 */
3659efi_status_t efi_initialize_system_table(void)
3660{
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003661 efi_status_t ret;
3662
3663 /* Allocate configuration table array */
3664 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3665 EFI_MAX_CONFIGURATION_TABLES *
3666 sizeof(struct efi_configuration_table),
3667 (void **)&systab.tables);
3668
Heinrich Schuchardt93148eb2019-06-29 02:00:16 +02003669 /*
3670 * These entries will be set to NULL in ExitBootServices(). To avoid
3671 * relocation in SetVirtualAddressMap(), set them dynamically.
3672 */
3673 systab.con_in = &efi_con_in;
3674 systab.con_out = &efi_con_out;
3675 systab.std_err = &efi_con_out;
3676 systab.boottime = &efi_boot_services;
3677
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003678 /* Set CRC32 field in table headers */
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003679 efi_update_table_header_crc32(&systab.hdr);
3680 efi_update_table_header_crc32(&efi_runtime_services.hdr);
3681 efi_update_table_header_crc32(&efi_boot_services.hdr);
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003682
3683 return ret;
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003684}