blob: bd8b8a17ae719d80be4bae933aeb18788b9bf06a [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafc15d9212016-03-04 01:09:59 +01002/*
3 * EFI application boot time services
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Grafc15d9212016-03-04 01:09:59 +01006 */
7
Alexander Grafc15d9212016-03-04 01:09:59 +01008#include <common.h>
Heinrich Schuchardt368ca642017-10-05 16:14:14 +02009#include <div64.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010010#include <efi_loader.h>
Rob Clark15f3d742017-09-13 18:05:37 -040011#include <environment.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010012#include <malloc.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090013#include <linux/libfdt_env.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010014#include <u-boot/crc.h>
15#include <bootm.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010016#include <watchdog.h>
17
18DECLARE_GLOBAL_DATA_PTR;
19
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +020020/* Task priority level */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +010021static efi_uintn_t efi_tpl = TPL_APPLICATION;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +020022
Alexander Grafc15d9212016-03-04 01:09:59 +010023/* This list contains all the EFI objects our payload has access to */
24LIST_HEAD(efi_obj_list);
25
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +010026/* List of all events */
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +010027LIST_HEAD(efi_events);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +010028
Alexander Graffa5246b2018-11-15 21:23:47 +010029/*
30 * If we're running on nasty systems (32bit ARM booting into non-EFI Linux)
31 * we need to do trickery with caches. Since we don't want to break the EFI
32 * aware boot path, only apply hacks when loading exiting directly (breaking
33 * direct Linux EFI booting along the way - oh well).
34 */
35static bool efi_is_direct_boot = true;
36
Simon Glasscdfe6962016-09-25 15:27:35 -060037#ifdef CONFIG_ARM
Alexander Grafc15d9212016-03-04 01:09:59 +010038/*
39 * The "gd" pointer lives in a register on ARM and AArch64 that we declare
40 * fixed when compiling U-Boot. However, the payload does not know about that
41 * restriction so we need to manually swap its and our view of that register on
42 * EFI callback entry/exit.
43 */
44static volatile void *efi_gd, *app_gd;
Simon Glasscdfe6962016-09-25 15:27:35 -060045#endif
Alexander Grafc15d9212016-03-04 01:09:59 +010046
Heinrich Schuchardt72506232019-02-09 14:10:39 +010047/* 1 if inside U-Boot code, 0 if inside EFI payload code */
48static int entry_count = 1;
Rob Clarke7896c32017-07-27 08:04:19 -040049static int nesting_level;
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +010050/* GUID of the device tree table */
51const efi_guid_t efi_guid_fdt = EFI_FDT_GUID;
Heinrich Schuchardt760255f2018-01-11 08:16:02 +010052/* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
53const efi_guid_t efi_guid_driver_binding_protocol =
54 EFI_DRIVER_BINDING_PROTOCOL_GUID;
Rob Clark86789d52017-07-27 08:04:18 -040055
Heinrich Schuchardt672d99e2018-02-18 15:17:51 +010056/* event group ExitBootServices() invoked */
57const efi_guid_t efi_guid_event_group_exit_boot_services =
58 EFI_EVENT_GROUP_EXIT_BOOT_SERVICES;
59/* event group SetVirtualAddressMap() invoked */
60const efi_guid_t efi_guid_event_group_virtual_address_change =
61 EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE;
62/* event group memory map changed */
63const efi_guid_t efi_guid_event_group_memory_map_change =
64 EFI_EVENT_GROUP_MEMORY_MAP_CHANGE;
65/* event group boot manager about to boot */
66const efi_guid_t efi_guid_event_group_ready_to_boot =
67 EFI_EVENT_GROUP_READY_TO_BOOT;
68/* event group ResetSystem() invoked (before ExitBootServices) */
69const efi_guid_t efi_guid_event_group_reset_system =
70 EFI_EVENT_GROUP_RESET_SYSTEM;
71
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +010072static efi_status_t EFIAPI efi_disconnect_controller(
73 efi_handle_t controller_handle,
74 efi_handle_t driver_image_handle,
75 efi_handle_t child_handle);
Heinrich Schuchardte9943282018-01-11 08:16:04 +010076
Rob Clark86789d52017-07-27 08:04:18 -040077/* Called on every callback entry */
78int __efi_entry_check(void)
79{
80 int ret = entry_count++ == 0;
81#ifdef CONFIG_ARM
82 assert(efi_gd);
83 app_gd = gd;
84 gd = efi_gd;
85#endif
86 return ret;
87}
88
89/* Called on every callback exit */
90int __efi_exit_check(void)
91{
92 int ret = --entry_count == 0;
93#ifdef CONFIG_ARM
94 gd = app_gd;
95#endif
96 return ret;
97}
98
Alexander Grafc15d9212016-03-04 01:09:59 +010099/* Called from do_bootefi_exec() */
100void efi_save_gd(void)
101{
Simon Glasscdfe6962016-09-25 15:27:35 -0600102#ifdef CONFIG_ARM
Alexander Grafc15d9212016-03-04 01:09:59 +0100103 efi_gd = gd;
Simon Glasscdfe6962016-09-25 15:27:35 -0600104#endif
Alexander Grafc15d9212016-03-04 01:09:59 +0100105}
106
Rob Clark86789d52017-07-27 08:04:18 -0400107/*
Mario Six8fac2912018-07-10 08:40:17 +0200108 * Special case handler for error/abort that just forces things back to u-boot
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200109 * world so we can dump out an abort message, without any care about returning
110 * back to UEFI world.
Rob Clark86789d52017-07-27 08:04:18 -0400111 */
Alexander Grafc15d9212016-03-04 01:09:59 +0100112void efi_restore_gd(void)
113{
Simon Glasscdfe6962016-09-25 15:27:35 -0600114#ifdef CONFIG_ARM
Alexander Grafc15d9212016-03-04 01:09:59 +0100115 /* Only restore if we're already in EFI context */
116 if (!efi_gd)
117 return;
Alexander Grafc15d9212016-03-04 01:09:59 +0100118 gd = efi_gd;
Simon Glasscdfe6962016-09-25 15:27:35 -0600119#endif
Alexander Grafc15d9212016-03-04 01:09:59 +0100120}
121
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200122/**
Mario Six8fac2912018-07-10 08:40:17 +0200123 * indent_string() - returns a string for indenting with two spaces per level
124 * @level: indent level
Heinrich Schuchardt091cf432018-01-24 19:21:36 +0100125 *
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200126 * A maximum of ten indent levels is supported. Higher indent levels will be
127 * truncated.
128 *
Mario Six8fac2912018-07-10 08:40:17 +0200129 * Return: A string for indenting with two spaces per level is
130 * returned.
Rob Clarke7896c32017-07-27 08:04:19 -0400131 */
132static const char *indent_string(int level)
133{
134 const char *indent = " ";
135 const int max = strlen(indent);
Heinrich Schuchardt91064592018-02-18 15:17:49 +0100136
Rob Clarke7896c32017-07-27 08:04:19 -0400137 level = min(max, level * 2);
138 return &indent[max - level];
139}
140
Heinrich Schuchardt4d664892017-08-18 17:45:16 +0200141const char *__efi_nesting(void)
142{
143 return indent_string(nesting_level);
144}
145
Rob Clarke7896c32017-07-27 08:04:19 -0400146const char *__efi_nesting_inc(void)
147{
148 return indent_string(nesting_level++);
149}
150
151const char *__efi_nesting_dec(void)
152{
153 return indent_string(--nesting_level);
154}
155
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200156/**
Mario Six8fac2912018-07-10 08:40:17 +0200157 * efi_queue_event() - queue an EFI event
158 * @event: event to signal
159 * @check_tpl: check the TPL level
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200160 *
161 * This function queues the notification function of the event for future
162 * execution.
163 *
Mario Six8fac2912018-07-10 08:40:17 +0200164 * The notification function is called if the task priority level of the event
165 * is higher than the current task priority level.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200166 *
167 * For the SignalEvent service see efi_signal_event_ext.
168 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200169 */
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100170static void efi_queue_event(struct efi_event *event, bool check_tpl)
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200171{
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200172 if (event->notify_function) {
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200173 event->is_queued = true;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200174 /* Check TPL */
Heinrich Schuchardtd8b878a2018-01-19 20:24:51 +0100175 if (check_tpl && efi_tpl >= event->notify_tpl)
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200176 return;
Heinrich Schuchardt91e5b8a2017-09-15 10:06:10 +0200177 EFI_CALL_VOID(event->notify_function(event,
178 event->notify_context));
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200179 }
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200180 event->is_queued = false;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200181}
182
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200183/**
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200184 * is_valid_tpl() - check if the task priority level is valid
185 *
186 * @tpl: TPL level to check
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200187 * Return: status code
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200188 */
189efi_status_t is_valid_tpl(efi_uintn_t tpl)
190{
191 switch (tpl) {
192 case TPL_APPLICATION:
193 case TPL_CALLBACK:
194 case TPL_NOTIFY:
195 case TPL_HIGH_LEVEL:
196 return EFI_SUCCESS;
197 default:
198 return EFI_INVALID_PARAMETER;
199 }
200}
201
202/**
Mario Six8fac2912018-07-10 08:40:17 +0200203 * efi_signal_event() - signal an EFI event
204 * @event: event to signal
205 * @check_tpl: check the TPL level
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100206 *
Mario Six8fac2912018-07-10 08:40:17 +0200207 * This function signals an event. If the event belongs to an event group all
208 * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100209 * their notification function is queued.
210 *
211 * For the SignalEvent service see efi_signal_event_ext.
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100212 */
213void efi_signal_event(struct efi_event *event, bool check_tpl)
214{
215 if (event->group) {
216 struct efi_event *evt;
217
218 /*
219 * The signaled state has to set before executing any
220 * notification function
221 */
222 list_for_each_entry(evt, &efi_events, link) {
223 if (!evt->group || guidcmp(evt->group, event->group))
224 continue;
225 if (evt->is_signaled)
226 continue;
227 evt->is_signaled = true;
228 if (evt->type & EVT_NOTIFY_SIGNAL &&
229 evt->notify_function)
230 evt->is_queued = true;
231 }
232 list_for_each_entry(evt, &efi_events, link) {
233 if (!evt->group || guidcmp(evt->group, event->group))
234 continue;
235 if (evt->is_queued)
236 efi_queue_event(evt, check_tpl);
237 }
238 } else if (!event->is_signaled) {
239 event->is_signaled = true;
240 if (event->type & EVT_NOTIFY_SIGNAL)
241 efi_queue_event(event, check_tpl);
242 }
243}
244
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200245/**
Mario Six8fac2912018-07-10 08:40:17 +0200246 * efi_raise_tpl() - raise the task priority level
247 * @new_tpl: new value of the task priority level
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200248 *
249 * This function implements the RaiseTpl service.
Mario Six8fac2912018-07-10 08:40:17 +0200250 *
251 * See the Unified Extensible Firmware Interface (UEFI) specification for
252 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200253 *
Mario Six8fac2912018-07-10 08:40:17 +0200254 * Return: old value of the task priority level
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200255 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100256static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
Alexander Grafc15d9212016-03-04 01:09:59 +0100257{
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100258 efi_uintn_t old_tpl = efi_tpl;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200259
xypron.glpk@gmx.de48df2092017-07-18 20:17:19 +0200260 EFI_ENTRY("0x%zx", new_tpl);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200261
262 if (new_tpl < efi_tpl)
263 debug("WARNING: new_tpl < current_tpl in %s\n", __func__);
264 efi_tpl = new_tpl;
265 if (efi_tpl > TPL_HIGH_LEVEL)
266 efi_tpl = TPL_HIGH_LEVEL;
267
268 EFI_EXIT(EFI_SUCCESS);
269 return old_tpl;
Alexander Grafc15d9212016-03-04 01:09:59 +0100270}
271
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200272/**
Mario Six8fac2912018-07-10 08:40:17 +0200273 * efi_restore_tpl() - lower the task priority level
274 * @old_tpl: value of the task priority level to be restored
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200275 *
276 * This function implements the RestoreTpl service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200277 *
Mario Six8fac2912018-07-10 08:40:17 +0200278 * See the Unified Extensible Firmware Interface (UEFI) specification for
279 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200280 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100281static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
Alexander Grafc15d9212016-03-04 01:09:59 +0100282{
xypron.glpk@gmx.de48df2092017-07-18 20:17:19 +0200283 EFI_ENTRY("0x%zx", old_tpl);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200284
285 if (old_tpl > efi_tpl)
286 debug("WARNING: old_tpl > current_tpl in %s\n", __func__);
287 efi_tpl = old_tpl;
288 if (efi_tpl > TPL_HIGH_LEVEL)
289 efi_tpl = TPL_HIGH_LEVEL;
290
Heinrich Schuchardt59b20952018-03-24 18:40:21 +0100291 /*
292 * Lowering the TPL may have made queued events eligible for execution.
293 */
294 efi_timer_check();
295
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200296 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +0100297}
298
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200299/**
Mario Six8fac2912018-07-10 08:40:17 +0200300 * efi_allocate_pages_ext() - allocate memory pages
301 * @type: type of allocation to be performed
302 * @memory_type: usage type of the allocated memory
303 * @pages: number of pages to be allocated
304 * @memory: allocated memory
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200305 *
306 * This function implements the AllocatePages service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200307 *
Mario Six8fac2912018-07-10 08:40:17 +0200308 * See the Unified Extensible Firmware Interface (UEFI) specification for
309 * details.
310 *
311 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200312 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900313static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100314 efi_uintn_t pages,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900315 uint64_t *memory)
Alexander Grafc15d9212016-03-04 01:09:59 +0100316{
317 efi_status_t r;
318
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100319 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
Alexander Grafc15d9212016-03-04 01:09:59 +0100320 r = efi_allocate_pages(type, memory_type, pages, memory);
321 return EFI_EXIT(r);
322}
323
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200324/**
Mario Six8fac2912018-07-10 08:40:17 +0200325 * efi_free_pages_ext() - Free memory pages.
326 * @memory: start of the memory area to be freed
327 * @pages: number of pages to be freed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200328 *
329 * This function implements the FreePages service.
Mario Six8fac2912018-07-10 08:40:17 +0200330 *
331 * See the Unified Extensible Firmware Interface (UEFI) specification for
332 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200333 *
Mario Six8fac2912018-07-10 08:40:17 +0200334 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200335 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900336static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100337 efi_uintn_t pages)
Alexander Grafc15d9212016-03-04 01:09:59 +0100338{
339 efi_status_t r;
340
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900341 EFI_ENTRY("%llx, 0x%zx", memory, pages);
Alexander Grafc15d9212016-03-04 01:09:59 +0100342 r = efi_free_pages(memory, pages);
343 return EFI_EXIT(r);
344}
345
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200346/**
Mario Six8fac2912018-07-10 08:40:17 +0200347 * efi_get_memory_map_ext() - get map describing memory usage
348 * @memory_map_size: on entry the size, in bytes, of the memory map buffer,
349 * on exit the size of the copied memory map
350 * @memory_map: buffer to which the memory map is written
351 * @map_key: key for the memory map
352 * @descriptor_size: size of an individual memory descriptor
353 * @descriptor_version: version number of the memory descriptor structure
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200354 *
355 * This function implements the GetMemoryMap service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200356 *
Mario Six8fac2912018-07-10 08:40:17 +0200357 * See the Unified Extensible Firmware Interface (UEFI) specification for
358 * details.
359 *
360 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200361 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900362static efi_status_t EFIAPI efi_get_memory_map_ext(
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100363 efi_uintn_t *memory_map_size,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900364 struct efi_mem_desc *memory_map,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100365 efi_uintn_t *map_key,
366 efi_uintn_t *descriptor_size,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900367 uint32_t *descriptor_version)
Alexander Grafc15d9212016-03-04 01:09:59 +0100368{
369 efi_status_t r;
370
371 EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
372 map_key, descriptor_size, descriptor_version);
373 r = efi_get_memory_map(memory_map_size, memory_map, map_key,
374 descriptor_size, descriptor_version);
375 return EFI_EXIT(r);
376}
377
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200378/**
Mario Six8fac2912018-07-10 08:40:17 +0200379 * efi_allocate_pool_ext() - allocate memory from pool
380 * @pool_type: type of the pool from which memory is to be allocated
381 * @size: number of bytes to be allocated
382 * @buffer: allocated memory
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200383 *
384 * This function implements the AllocatePool service.
Mario Six8fac2912018-07-10 08:40:17 +0200385 *
386 * See the Unified Extensible Firmware Interface (UEFI) specification for
387 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200388 *
Mario Six8fac2912018-07-10 08:40:17 +0200389 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200390 */
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200391static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100392 efi_uintn_t size,
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200393 void **buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +0100394{
Alexander Graf1c34fa82016-03-24 01:37:37 +0100395 efi_status_t r;
396
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100397 EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200398 r = efi_allocate_pool(pool_type, size, buffer);
Alexander Graf1c34fa82016-03-24 01:37:37 +0100399 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +0100400}
401
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200402/**
Mario Six8fac2912018-07-10 08:40:17 +0200403 * efi_free_pool_ext() - free memory from pool
404 * @buffer: start of memory to be freed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200405 *
406 * This function implements the FreePool service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200407 *
Mario Six8fac2912018-07-10 08:40:17 +0200408 * See the Unified Extensible Firmware Interface (UEFI) specification for
409 * details.
410 *
411 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200412 */
Stefan Brüns67b67d92016-10-09 22:17:26 +0200413static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +0100414{
Alexander Graf1c34fa82016-03-24 01:37:37 +0100415 efi_status_t r;
416
417 EFI_ENTRY("%p", buffer);
Stefan Brüns67b67d92016-10-09 22:17:26 +0200418 r = efi_free_pool(buffer);
Alexander Graf1c34fa82016-03-24 01:37:37 +0100419 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +0100420}
421
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200422/**
Mario Six8fac2912018-07-10 08:40:17 +0200423 * efi_add_handle() - add a new object to the object list
424 * @obj: object to be added
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100425 *
Mario Six8fac2912018-07-10 08:40:17 +0200426 * The protocols list is initialized. The object handle is set.
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100427 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200428void efi_add_handle(efi_handle_t handle)
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100429{
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200430 if (!handle)
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100431 return;
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200432 INIT_LIST_HEAD(&handle->protocols);
433 list_add_tail(&handle->link, &efi_obj_list);
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100434}
435
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200436/**
Mario Six8fac2912018-07-10 08:40:17 +0200437 * efi_create_handle() - create handle
438 * @handle: new handle
Heinrich Schuchardteb6106e2017-10-26 19:25:49 +0200439 *
Mario Six8fac2912018-07-10 08:40:17 +0200440 * Return: status code
Heinrich Schuchardteb6106e2017-10-26 19:25:49 +0200441 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100442efi_status_t efi_create_handle(efi_handle_t *handle)
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200443{
444 struct efi_object *obj;
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200445
Heinrich Schuchardtae1d2062018-05-27 16:47:21 +0200446 obj = calloc(1, sizeof(struct efi_object));
447 if (!obj)
448 return EFI_OUT_OF_RESOURCES;
449
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100450 efi_add_handle(obj);
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200451 *handle = obj;
Heinrich Schuchardtae1d2062018-05-27 16:47:21 +0200452
453 return EFI_SUCCESS;
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200454}
455
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200456/**
Mario Six8fac2912018-07-10 08:40:17 +0200457 * efi_search_protocol() - find a protocol on a handle.
458 * @handle: handle
459 * @protocol_guid: GUID of the protocol
460 * @handler: reference to the protocol
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100461 *
Mario Six8fac2912018-07-10 08:40:17 +0200462 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100463 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100464efi_status_t efi_search_protocol(const efi_handle_t handle,
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100465 const efi_guid_t *protocol_guid,
466 struct efi_handler **handler)
467{
468 struct efi_object *efiobj;
469 struct list_head *lhandle;
470
471 if (!handle || !protocol_guid)
472 return EFI_INVALID_PARAMETER;
473 efiobj = efi_search_obj(handle);
474 if (!efiobj)
475 return EFI_INVALID_PARAMETER;
476 list_for_each(lhandle, &efiobj->protocols) {
477 struct efi_handler *protocol;
478
479 protocol = list_entry(lhandle, struct efi_handler, link);
480 if (!guidcmp(protocol->guid, protocol_guid)) {
481 if (handler)
482 *handler = protocol;
483 return EFI_SUCCESS;
484 }
485 }
486 return EFI_NOT_FOUND;
487}
488
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200489/**
Mario Six8fac2912018-07-10 08:40:17 +0200490 * efi_remove_protocol() - delete protocol from a handle
491 * @handle: handle from which the protocol shall be deleted
492 * @protocol: GUID of the protocol to be deleted
493 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100494 *
Mario Six8fac2912018-07-10 08:40:17 +0200495 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100496 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100497efi_status_t efi_remove_protocol(const efi_handle_t handle,
498 const efi_guid_t *protocol,
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100499 void *protocol_interface)
500{
501 struct efi_handler *handler;
502 efi_status_t ret;
503
504 ret = efi_search_protocol(handle, protocol, &handler);
505 if (ret != EFI_SUCCESS)
506 return ret;
507 if (guidcmp(handler->guid, protocol))
508 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtb27594d2018-05-11 12:09:21 +0200509 if (handler->protocol_interface != protocol_interface)
510 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100511 list_del(&handler->link);
512 free(handler);
513 return EFI_SUCCESS;
514}
515
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200516/**
Mario Six8fac2912018-07-10 08:40:17 +0200517 * efi_remove_all_protocols() - delete all protocols from a handle
518 * @handle: handle from which the protocols shall be deleted
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100519 *
Mario Six8fac2912018-07-10 08:40:17 +0200520 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100521 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100522efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100523{
524 struct efi_object *efiobj;
Heinrich Schuchardta84731d2018-01-11 08:15:55 +0100525 struct efi_handler *protocol;
526 struct efi_handler *pos;
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100527
528 efiobj = efi_search_obj(handle);
529 if (!efiobj)
530 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta84731d2018-01-11 08:15:55 +0100531 list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100532 efi_status_t ret;
533
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100534 ret = efi_remove_protocol(handle, protocol->guid,
535 protocol->protocol_interface);
536 if (ret != EFI_SUCCESS)
537 return ret;
538 }
539 return EFI_SUCCESS;
540}
541
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200542/**
Mario Six8fac2912018-07-10 08:40:17 +0200543 * efi_delete_handle() - delete handle
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100544 *
Mario Six8fac2912018-07-10 08:40:17 +0200545 * @obj: handle to delete
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100546 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200547void efi_delete_handle(efi_handle_t handle)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100548{
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200549 if (!handle)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100550 return;
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200551 efi_remove_all_protocols(handle);
552 list_del(&handle->link);
553 free(handle);
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100554}
555
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200556/**
Mario Six8fac2912018-07-10 08:40:17 +0200557 * efi_is_event() - check if a pointer is a valid event
558 * @event: pointer to check
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100559 *
Mario Six8fac2912018-07-10 08:40:17 +0200560 * Return: status code
Alexander Grafc15d9212016-03-04 01:09:59 +0100561 */
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100562static efi_status_t efi_is_event(const struct efi_event *event)
563{
564 const struct efi_event *evt;
565
566 if (!event)
567 return EFI_INVALID_PARAMETER;
568 list_for_each_entry(evt, &efi_events, link) {
569 if (evt == event)
570 return EFI_SUCCESS;
571 }
572 return EFI_INVALID_PARAMETER;
573}
Alexander Grafc15d9212016-03-04 01:09:59 +0100574
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200575/**
Mario Six8fac2912018-07-10 08:40:17 +0200576 * efi_create_event() - create an event
577 * @type: type of the event to create
578 * @notify_tpl: task priority level of the event
579 * @notify_function: notification function of the event
580 * @notify_context: pointer passed to the notification function
581 * @group: event group
582 * @event: created event
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200583 *
584 * This function is used inside U-Boot code to create an event.
585 *
586 * For the API function implementing the CreateEvent service see
587 * efi_create_event_ext.
588 *
Mario Six8fac2912018-07-10 08:40:17 +0200589 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200590 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100591efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200592 void (EFIAPI *notify_function) (
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200593 struct efi_event *event,
594 void *context),
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100595 void *notify_context, efi_guid_t *group,
596 struct efi_event **event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100597{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100598 struct efi_event *evt;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200599
Jonathan Gray7758b212017-03-12 19:26:07 +1100600 if (event == NULL)
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200601 return EFI_INVALID_PARAMETER;
Jonathan Gray7758b212017-03-12 19:26:07 +1100602
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200603 switch (type) {
604 case 0:
605 case EVT_TIMER:
606 case EVT_NOTIFY_SIGNAL:
607 case EVT_TIMER | EVT_NOTIFY_SIGNAL:
608 case EVT_NOTIFY_WAIT:
609 case EVT_TIMER | EVT_NOTIFY_WAIT:
610 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
611 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
612 break;
613 default:
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200614 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200615 }
Jonathan Gray7758b212017-03-12 19:26:07 +1100616
AKASHI Takahiro3f3835d2018-08-10 15:36:32 +0900617 if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) &&
618 (is_valid_tpl(notify_tpl) != EFI_SUCCESS))
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200619 return EFI_INVALID_PARAMETER;
Jonathan Gray7758b212017-03-12 19:26:07 +1100620
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100621 evt = calloc(1, sizeof(struct efi_event));
622 if (!evt)
623 return EFI_OUT_OF_RESOURCES;
624 evt->type = type;
625 evt->notify_tpl = notify_tpl;
626 evt->notify_function = notify_function;
627 evt->notify_context = notify_context;
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100628 evt->group = group;
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200629 /* Disable timers on boot up */
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100630 evt->trigger_next = -1ULL;
631 evt->is_queued = false;
632 evt->is_signaled = false;
633 list_add_tail(&evt->link, &efi_events);
634 *event = evt;
635 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +0100636}
637
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200638/*
Mario Six8fac2912018-07-10 08:40:17 +0200639 * efi_create_event_ex() - create an event in a group
640 * @type: type of the event to create
641 * @notify_tpl: task priority level of the event
642 * @notify_function: notification function of the event
643 * @notify_context: pointer passed to the notification function
644 * @event: created event
645 * @event_group: event group
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100646 *
647 * This function implements the CreateEventEx service.
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100648 *
Mario Six8fac2912018-07-10 08:40:17 +0200649 * See the Unified Extensible Firmware Interface (UEFI) specification for
650 * details.
651 *
652 * Return: status code
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100653 */
654efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl,
655 void (EFIAPI *notify_function) (
656 struct efi_event *event,
657 void *context),
658 void *notify_context,
659 efi_guid_t *event_group,
660 struct efi_event **event)
661{
662 EFI_ENTRY("%d, 0x%zx, %p, %p, %pUl", type, notify_tpl, notify_function,
663 notify_context, event_group);
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100664 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100665 notify_context, event_group, event));
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100666}
667
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200668/**
Mario Six8fac2912018-07-10 08:40:17 +0200669 * efi_create_event_ext() - create an event
670 * @type: type of the event to create
671 * @notify_tpl: task priority level of the event
672 * @notify_function: notification function of the event
673 * @notify_context: pointer passed to the notification function
674 * @event: created event
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200675 *
676 * This function implements the CreateEvent service.
Mario Six8fac2912018-07-10 08:40:17 +0200677 *
678 * See the Unified Extensible Firmware Interface (UEFI) specification for
679 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200680 *
Mario Six8fac2912018-07-10 08:40:17 +0200681 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200682 */
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200683static efi_status_t EFIAPI efi_create_event_ext(
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100684 uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200685 void (EFIAPI *notify_function) (
686 struct efi_event *event,
687 void *context),
688 void *notify_context, struct efi_event **event)
689{
690 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
691 notify_context);
692 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100693 notify_context, NULL, event));
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200694}
695
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200696/**
Mario Six8fac2912018-07-10 08:40:17 +0200697 * efi_timer_check() - check if a timer event has occurred
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200698 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200699 * Check if a timer event has occurred or a queued notification function should
700 * be called.
701 *
Alexander Grafc15d9212016-03-04 01:09:59 +0100702 * Our timers have to work without interrupts, so we check whenever keyboard
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200703 * input or disk accesses happen if enough time elapsed for them to fire.
Alexander Grafc15d9212016-03-04 01:09:59 +0100704 */
705void efi_timer_check(void)
706{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100707 struct efi_event *evt;
Alexander Grafc15d9212016-03-04 01:09:59 +0100708 u64 now = timer_get_us();
709
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100710 list_for_each_entry(evt, &efi_events, link) {
711 if (evt->is_queued)
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100712 efi_queue_event(evt, true);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100713 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next)
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200714 continue;
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100715 switch (evt->trigger_type) {
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200716 case EFI_TIMER_RELATIVE:
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100717 evt->trigger_type = EFI_TIMER_STOP;
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200718 break;
719 case EFI_TIMER_PERIODIC:
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100720 evt->trigger_next += evt->trigger_time;
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200721 break;
722 default:
723 continue;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200724 }
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100725 evt->is_signaled = false;
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100726 efi_signal_event(evt, true);
Alexander Grafc15d9212016-03-04 01:09:59 +0100727 }
Alexander Grafc15d9212016-03-04 01:09:59 +0100728 WATCHDOG_RESET();
729}
730
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200731/**
Mario Six8fac2912018-07-10 08:40:17 +0200732 * efi_set_timer() - set the trigger time for a timer event or stop the event
733 * @event: event for which the timer is set
734 * @type: type of the timer
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200735 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200736 *
737 * This is the function for internal usage in U-Boot. For the API function
738 * implementing the SetTimer service see efi_set_timer_ext.
739 *
Mario Six8fac2912018-07-10 08:40:17 +0200740 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200741 */
xypron.glpk@gmx.de3ecc6bd2017-07-19 19:22:34 +0200742efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200743 uint64_t trigger_time)
Alexander Grafc15d9212016-03-04 01:09:59 +0100744{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100745 /* Check that the event is valid */
746 if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER))
747 return EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +0100748
xypron.glpk@gmx.de44c4be02017-07-18 20:17:23 +0200749 /*
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200750 * The parameter defines a multiple of 100 ns.
751 * We use multiples of 1000 ns. So divide by 10.
xypron.glpk@gmx.de44c4be02017-07-18 20:17:23 +0200752 */
Heinrich Schuchardt368ca642017-10-05 16:14:14 +0200753 do_div(trigger_time, 10);
Alexander Grafc15d9212016-03-04 01:09:59 +0100754
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100755 switch (type) {
756 case EFI_TIMER_STOP:
757 event->trigger_next = -1ULL;
758 break;
759 case EFI_TIMER_PERIODIC:
760 case EFI_TIMER_RELATIVE:
761 event->trigger_next = timer_get_us() + trigger_time;
762 break;
763 default:
764 return EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +0100765 }
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100766 event->trigger_type = type;
767 event->trigger_time = trigger_time;
768 event->is_signaled = false;
769 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +0100770}
771
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200772/**
Mario Six8fac2912018-07-10 08:40:17 +0200773 * efi_set_timer_ext() - Set the trigger time for a timer event or stop the
774 * event
775 * @event: event for which the timer is set
776 * @type: type of the timer
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200777 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200778 *
779 * This function implements the SetTimer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200780 *
Mario Six8fac2912018-07-10 08:40:17 +0200781 * See the Unified Extensible Firmware Interface (UEFI) specification for
782 * details.
783 *
784 *
785 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200786 */
xypron.glpk@gmx.de3ecc6bd2017-07-19 19:22:34 +0200787static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
788 enum efi_timer_delay type,
789 uint64_t trigger_time)
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200790{
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900791 EFI_ENTRY("%p, %d, %llx", event, type, trigger_time);
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200792 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
793}
794
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200795/**
Mario Six8fac2912018-07-10 08:40:17 +0200796 * efi_wait_for_event() - wait for events to be signaled
797 * @num_events: number of events to be waited for
798 * @event: events to be waited for
799 * @index: index of the event that was signaled
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200800 *
801 * This function implements the WaitForEvent service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200802 *
Mario Six8fac2912018-07-10 08:40:17 +0200803 * See the Unified Extensible Firmware Interface (UEFI) specification for
804 * details.
805 *
806 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200807 */
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100808static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200809 struct efi_event **event,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100810 efi_uintn_t *index)
Alexander Grafc15d9212016-03-04 01:09:59 +0100811{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100812 int i;
Alexander Grafc15d9212016-03-04 01:09:59 +0100813
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100814 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
Alexander Grafc15d9212016-03-04 01:09:59 +0100815
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200816 /* Check parameters */
817 if (!num_events || !event)
818 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200819 /* Check TPL */
820 if (efi_tpl != TPL_APPLICATION)
821 return EFI_EXIT(EFI_UNSUPPORTED);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200822 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100823 if (efi_is_event(event[i]) != EFI_SUCCESS)
824 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200825 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
826 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200827 if (!event[i]->is_signaled)
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100828 efi_queue_event(event[i], true);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200829 }
830
831 /* Wait for signal */
832 for (;;) {
833 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200834 if (event[i]->is_signaled)
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200835 goto out;
836 }
837 /* Allow events to occur. */
838 efi_timer_check();
839 }
840
841out:
842 /*
843 * Reset the signal which is passed to the caller to allow periodic
844 * events to occur.
845 */
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200846 event[i]->is_signaled = false;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200847 if (index)
848 *index = i;
Alexander Grafc15d9212016-03-04 01:09:59 +0100849
850 return EFI_EXIT(EFI_SUCCESS);
851}
852
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200853/**
Mario Six8fac2912018-07-10 08:40:17 +0200854 * efi_signal_event_ext() - signal an EFI event
855 * @event: event to signal
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200856 *
857 * This function implements the SignalEvent service.
Mario Six8fac2912018-07-10 08:40:17 +0200858 *
859 * See the Unified Extensible Firmware Interface (UEFI) specification for
860 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200861 *
862 * This functions sets the signaled state of the event and queues the
863 * notification function for execution.
864 *
Mario Six8fac2912018-07-10 08:40:17 +0200865 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200866 */
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200867static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100868{
869 EFI_ENTRY("%p", event);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100870 if (efi_is_event(event) != EFI_SUCCESS)
871 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100872 efi_signal_event(event, true);
Alexander Grafc15d9212016-03-04 01:09:59 +0100873 return EFI_EXIT(EFI_SUCCESS);
874}
875
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200876/**
Mario Six8fac2912018-07-10 08:40:17 +0200877 * efi_close_event() - close an EFI event
878 * @event: event to close
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200879 *
880 * This function implements the CloseEvent service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200881 *
Mario Six8fac2912018-07-10 08:40:17 +0200882 * See the Unified Extensible Firmware Interface (UEFI) specification for
883 * details.
884 *
885 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200886 */
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200887static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100888{
889 EFI_ENTRY("%p", event);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100890 if (efi_is_event(event) != EFI_SUCCESS)
891 return EFI_EXIT(EFI_INVALID_PARAMETER);
892 list_del(&event->link);
893 free(event);
894 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +0100895}
896
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200897/**
Mario Six8fac2912018-07-10 08:40:17 +0200898 * efi_check_event() - check if an event is signaled
899 * @event: event to check
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200900 *
901 * This function implements the CheckEvent service.
Mario Six8fac2912018-07-10 08:40:17 +0200902 *
903 * See the Unified Extensible Firmware Interface (UEFI) specification for
904 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200905 *
Mario Six8fac2912018-07-10 08:40:17 +0200906 * If an event is not signaled yet, the notification function is queued. The
907 * signaled state is cleared.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200908 *
Mario Six8fac2912018-07-10 08:40:17 +0200909 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200910 */
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200911static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100912{
913 EFI_ENTRY("%p", event);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200914 efi_timer_check();
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100915 if (efi_is_event(event) != EFI_SUCCESS ||
916 event->type & EVT_NOTIFY_SIGNAL)
917 return EFI_EXIT(EFI_INVALID_PARAMETER);
918 if (!event->is_signaled)
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100919 efi_queue_event(event, true);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100920 if (event->is_signaled) {
921 event->is_signaled = false;
922 return EFI_EXIT(EFI_SUCCESS);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200923 }
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100924 return EFI_EXIT(EFI_NOT_READY);
Alexander Grafc15d9212016-03-04 01:09:59 +0100925}
926
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200927/**
Mario Six8fac2912018-07-10 08:40:17 +0200928 * efi_search_obj() - find the internal EFI object for a handle
929 * @handle: handle to find
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200930 *
Mario Six8fac2912018-07-10 08:40:17 +0200931 * Return: EFI object
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200932 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100933struct efi_object *efi_search_obj(const efi_handle_t handle)
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200934{
Heinrich Schuchardt274cc872017-11-06 21:17:50 +0100935 struct efi_object *efiobj;
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200936
Heinrich Schuchardt274cc872017-11-06 21:17:50 +0100937 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200938 if (efiobj == handle)
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200939 return efiobj;
940 }
941
942 return NULL;
943}
944
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200945/**
Mario Six8fac2912018-07-10 08:40:17 +0200946 * efi_open_protocol_info_entry() - create open protocol info entry and add it
947 * to a protocol
948 * @handler: handler of a protocol
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100949 *
Mario Six8fac2912018-07-10 08:40:17 +0200950 * Return: open protocol info entry
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100951 */
952static struct efi_open_protocol_info_entry *efi_create_open_info(
953 struct efi_handler *handler)
954{
955 struct efi_open_protocol_info_item *item;
956
957 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
958 if (!item)
959 return NULL;
960 /* Append the item to the open protocol info list. */
961 list_add_tail(&item->link, &handler->open_infos);
962
963 return &item->info;
964}
965
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200966/**
Mario Six8fac2912018-07-10 08:40:17 +0200967 * efi_delete_open_info() - remove an open protocol info entry from a protocol
968 * @item: open protocol info entry to delete
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100969 *
Mario Six8fac2912018-07-10 08:40:17 +0200970 * Return: status code
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100971 */
972static efi_status_t efi_delete_open_info(
973 struct efi_open_protocol_info_item *item)
974{
975 list_del(&item->link);
976 free(item);
977 return EFI_SUCCESS;
978}
979
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200980/**
Mario Six8fac2912018-07-10 08:40:17 +0200981 * efi_add_protocol() - install new protocol on a handle
982 * @handle: handle on which the protocol shall be installed
983 * @protocol: GUID of the protocol to be installed
984 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +0200985 *
Mario Six8fac2912018-07-10 08:40:17 +0200986 * Return: status code
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +0200987 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100988efi_status_t efi_add_protocol(const efi_handle_t handle,
989 const efi_guid_t *protocol,
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +0200990 void *protocol_interface)
991{
992 struct efi_object *efiobj;
993 struct efi_handler *handler;
994 efi_status_t ret;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +0200995
996 efiobj = efi_search_obj(handle);
997 if (!efiobj)
998 return EFI_INVALID_PARAMETER;
999 ret = efi_search_protocol(handle, protocol, NULL);
1000 if (ret != EFI_NOT_FOUND)
1001 return EFI_INVALID_PARAMETER;
1002 handler = calloc(1, sizeof(struct efi_handler));
1003 if (!handler)
1004 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001005 handler->guid = protocol;
1006 handler->protocol_interface = protocol_interface;
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001007 INIT_LIST_HEAD(&handler->open_infos);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001008 list_add_tail(&handler->link, &efiobj->protocols);
Heinrich Schuchardt3d2abc32018-01-11 08:16:01 +01001009 if (!guidcmp(&efi_guid_device_path, protocol))
1010 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001011 return EFI_SUCCESS;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001012}
1013
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001014/**
Mario Six8fac2912018-07-10 08:40:17 +02001015 * efi_install_protocol_interface() - install protocol interface
1016 * @handle: handle on which the protocol shall be installed
1017 * @protocol: GUID of the protocol to be installed
1018 * @protocol_interface_type: type of the interface to be installed,
1019 * always EFI_NATIVE_INTERFACE
1020 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001021 *
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001022 * This function implements the InstallProtocolInterface service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001023 *
Mario Six8fac2912018-07-10 08:40:17 +02001024 * See the Unified Extensible Firmware Interface (UEFI) specification for
1025 * details.
1026 *
1027 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001028 */
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001029static efi_status_t EFIAPI efi_install_protocol_interface(
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02001030 efi_handle_t *handle, const efi_guid_t *protocol,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001031 int protocol_interface_type, void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01001032{
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001033 efi_status_t r;
1034
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001035 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
1036 protocol_interface);
1037
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001038 if (!handle || !protocol ||
1039 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1040 r = EFI_INVALID_PARAMETER;
1041 goto out;
1042 }
1043
1044 /* Create new handle if requested. */
1045 if (!*handle) {
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +02001046 r = efi_create_handle(handle);
1047 if (r != EFI_SUCCESS)
1048 goto out;
Heinrich Schuchardt50f02102017-10-26 19:25:43 +02001049 debug("%sEFI: new handle %p\n", indent_string(nesting_level),
1050 *handle);
1051 } else {
1052 debug("%sEFI: handle %p\n", indent_string(nesting_level),
1053 *handle);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001054 }
Heinrich Schuchardt865d5f32017-10-26 19:25:54 +02001055 /* Add new protocol */
1056 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001057out:
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001058 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01001059}
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001060
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001061/**
Mario Six8fac2912018-07-10 08:40:17 +02001062 * efi_get_drivers() - get all drivers associated to a controller
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001063 * @handle: handle of the controller
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001064 * @protocol: protocol GUID (optional)
Mario Six8fac2912018-07-10 08:40:17 +02001065 * @number_of_drivers: number of child controllers
1066 * @driver_handle_buffer: handles of the the drivers
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001067 *
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001068 * The allocated buffer has to be freed with free().
1069 *
Mario Six8fac2912018-07-10 08:40:17 +02001070 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001071 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001072static efi_status_t efi_get_drivers(efi_handle_t handle,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001073 const efi_guid_t *protocol,
1074 efi_uintn_t *number_of_drivers,
1075 efi_handle_t **driver_handle_buffer)
1076{
1077 struct efi_handler *handler;
1078 struct efi_open_protocol_info_item *item;
1079 efi_uintn_t count = 0, i;
1080 bool duplicate;
1081
1082 /* Count all driver associations */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001083 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001084 if (protocol && guidcmp(handler->guid, protocol))
1085 continue;
1086 list_for_each_entry(item, &handler->open_infos, link) {
1087 if (item->info.attributes &
1088 EFI_OPEN_PROTOCOL_BY_DRIVER)
1089 ++count;
1090 }
1091 }
1092 /*
1093 * Create buffer. In case of duplicate driver assignments the buffer
1094 * will be too large. But that does not harm.
1095 */
1096 *number_of_drivers = 0;
1097 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1098 if (!*driver_handle_buffer)
1099 return EFI_OUT_OF_RESOURCES;
1100 /* Collect unique driver handles */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001101 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001102 if (protocol && guidcmp(handler->guid, protocol))
1103 continue;
1104 list_for_each_entry(item, &handler->open_infos, link) {
1105 if (item->info.attributes &
1106 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1107 /* Check this is a new driver */
1108 duplicate = false;
1109 for (i = 0; i < *number_of_drivers; ++i) {
1110 if ((*driver_handle_buffer)[i] ==
1111 item->info.agent_handle)
1112 duplicate = true;
1113 }
1114 /* Copy handle to buffer */
1115 if (!duplicate) {
1116 i = (*number_of_drivers)++;
1117 (*driver_handle_buffer)[i] =
1118 item->info.agent_handle;
1119 }
1120 }
1121 }
1122 }
1123 return EFI_SUCCESS;
1124}
1125
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001126/**
Mario Six8fac2912018-07-10 08:40:17 +02001127 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001128 * @handle: handle of the controller
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001129 * @protocol: protocol GUID (optional)
Mario Six8fac2912018-07-10 08:40:17 +02001130 * @child_handle: handle of the child to destroy
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001131 *
1132 * This function implements the DisconnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02001133 *
1134 * See the Unified Extensible Firmware Interface (UEFI) specification for
1135 * details.
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001136 *
Mario Six8fac2912018-07-10 08:40:17 +02001137 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001138 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001139static efi_status_t efi_disconnect_all_drivers
1140 (efi_handle_t handle,
1141 const efi_guid_t *protocol,
1142 efi_handle_t child_handle)
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001143{
1144 efi_uintn_t number_of_drivers;
1145 efi_handle_t *driver_handle_buffer;
1146 efi_status_t r, ret;
1147
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001148 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001149 &driver_handle_buffer);
1150 if (ret != EFI_SUCCESS)
1151 return ret;
1152
1153 ret = EFI_NOT_FOUND;
1154 while (number_of_drivers) {
1155 r = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001156 handle,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001157 driver_handle_buffer[--number_of_drivers],
1158 child_handle));
1159 if (r == EFI_SUCCESS)
1160 ret = r;
1161 }
1162 free(driver_handle_buffer);
1163 return ret;
1164}
1165
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001166/**
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001167 * efi_uninstall_protocol() - uninstall protocol interface
1168 *
Mario Six8fac2912018-07-10 08:40:17 +02001169 * @handle: handle from which the protocol shall be removed
1170 * @protocol: GUID of the protocol to be removed
1171 * @protocol_interface: interface to be removed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001172 *
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001173 * This function DOES NOT delete a handle without installed protocol.
Mario Six8fac2912018-07-10 08:40:17 +02001174 *
1175 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001176 */
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001177static efi_status_t efi_uninstall_protocol
1178 (efi_handle_t handle, const efi_guid_t *protocol,
1179 void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01001180{
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001181 struct efi_object *efiobj;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001182 struct efi_handler *handler;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001183 struct efi_open_protocol_info_item *item;
1184 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001185 efi_status_t r;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001186
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001187 /* Check handle */
1188 efiobj = efi_search_obj(handle);
1189 if (!efiobj) {
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001190 r = EFI_INVALID_PARAMETER;
1191 goto out;
1192 }
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001193 /* Find the protocol on the handle */
1194 r = efi_search_protocol(handle, protocol, &handler);
1195 if (r != EFI_SUCCESS)
1196 goto out;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001197 /* Disconnect controllers */
1198 efi_disconnect_all_drivers(efiobj, protocol, NULL);
1199 if (!list_empty(&handler->open_infos)) {
1200 r = EFI_ACCESS_DENIED;
1201 goto out;
1202 }
1203 /* Close protocol */
1204 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1205 if (item->info.attributes ==
1206 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1207 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1208 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1209 list_del(&item->link);
1210 }
1211 if (!list_empty(&handler->open_infos)) {
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001212 r = EFI_ACCESS_DENIED;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001213 goto out;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001214 }
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001215 r = efi_remove_protocol(handle, protocol, protocol_interface);
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001216out:
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001217 return r;
Alexander Grafc15d9212016-03-04 01:09:59 +01001218}
1219
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001220/**
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001221 * efi_uninstall_protocol_interface() - uninstall protocol interface
1222 * @handle: handle from which the protocol shall be removed
1223 * @protocol: GUID of the protocol to be removed
1224 * @protocol_interface: interface to be removed
1225 *
1226 * This function implements the UninstallProtocolInterface service.
1227 *
1228 * See the Unified Extensible Firmware Interface (UEFI) specification for
1229 * details.
1230 *
1231 * Return: status code
1232 */
1233static efi_status_t EFIAPI efi_uninstall_protocol_interface
1234 (efi_handle_t handle, const efi_guid_t *protocol,
1235 void *protocol_interface)
1236{
1237 efi_status_t ret;
1238
1239 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1240
1241 ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1242 if (ret != EFI_SUCCESS)
1243 goto out;
1244
1245 /* If the last protocol has been removed, delete the handle. */
1246 if (list_empty(&handle->protocols)) {
1247 list_del(&handle->link);
1248 free(handle);
1249 }
1250out:
1251 return EFI_EXIT(ret);
1252}
1253
1254/**
Mario Six8fac2912018-07-10 08:40:17 +02001255 * efi_register_protocol_notify() - register an event for notification when a
1256 * protocol is installed.
1257 * @protocol: GUID of the protocol whose installation shall be notified
1258 * @event: event to be signaled upon installation of the protocol
1259 * @registration: key for retrieving the registration information
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001260 *
1261 * This function implements the RegisterProtocolNotify service.
1262 * See the Unified Extensible Firmware Interface (UEFI) specification
1263 * for details.
1264 *
Mario Six8fac2912018-07-10 08:40:17 +02001265 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001266 */
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001267static efi_status_t EFIAPI efi_register_protocol_notify(
1268 const efi_guid_t *protocol,
1269 struct efi_event *event,
1270 void **registration)
Alexander Grafc15d9212016-03-04 01:09:59 +01001271{
Rob Clark238f88c2017-09-13 18:05:41 -04001272 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
Alexander Grafc15d9212016-03-04 01:09:59 +01001273 return EFI_EXIT(EFI_OUT_OF_RESOURCES);
1274}
1275
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001276/**
Mario Six8fac2912018-07-10 08:40:17 +02001277 * efi_search() - determine if an EFI handle implements a protocol
1278 * @search_type: selection criterion
1279 * @protocol: GUID of the protocol
1280 * @search_key: registration key
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001281 * @handle: handle
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001282 *
1283 * See the documentation of the LocateHandle service in the UEFI specification.
1284 *
Mario Six8fac2912018-07-10 08:40:17 +02001285 * Return: 0 if the handle implements the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001286 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001287static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001288 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001289 efi_handle_t handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01001290{
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001291 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01001292
1293 switch (search_type) {
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001294 case ALL_HANDLES:
Alexander Grafc15d9212016-03-04 01:09:59 +01001295 return 0;
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001296 case BY_REGISTER_NOTIFY:
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001297 /* TODO: RegisterProtocolNotify is not implemented yet */
Alexander Grafc15d9212016-03-04 01:09:59 +01001298 return -1;
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001299 case BY_PROTOCOL:
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001300 ret = efi_search_protocol(handle, protocol, NULL);
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001301 return (ret != EFI_SUCCESS);
1302 default:
1303 /* Invalid search type */
Alexander Grafc15d9212016-03-04 01:09:59 +01001304 return -1;
1305 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001306}
1307
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001308/**
Mario Six8fac2912018-07-10 08:40:17 +02001309 * efi_locate_handle() - locate handles implementing a protocol
1310 * @search_type: selection criterion
1311 * @protocol: GUID of the protocol
1312 * @search_key: registration key
1313 * @buffer_size: size of the buffer to receive the handles in bytes
1314 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001315 *
1316 * This function is meant for U-Boot internal calls. For the API implementation
1317 * of the LocateHandle service see efi_locate_handle_ext.
1318 *
Mario Six8fac2912018-07-10 08:40:17 +02001319 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001320 */
xypron.glpk@gmx.decab4dd52017-08-09 20:55:00 +02001321static efi_status_t efi_locate_handle(
Alexander Grafc15d9212016-03-04 01:09:59 +01001322 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001323 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001324 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01001325{
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001326 struct efi_object *efiobj;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001327 efi_uintn_t size = 0;
Alexander Grafc15d9212016-03-04 01:09:59 +01001328
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001329 /* Check parameters */
1330 switch (search_type) {
1331 case ALL_HANDLES:
1332 break;
1333 case BY_REGISTER_NOTIFY:
1334 if (!search_key)
1335 return EFI_INVALID_PARAMETER;
1336 /* RegisterProtocolNotify is not implemented yet */
1337 return EFI_UNSUPPORTED;
1338 case BY_PROTOCOL:
1339 if (!protocol)
1340 return EFI_INVALID_PARAMETER;
1341 break;
1342 default:
1343 return EFI_INVALID_PARAMETER;
1344 }
1345
1346 /*
1347 * efi_locate_handle_buffer uses this function for
1348 * the calculation of the necessary buffer size.
1349 * So do not require a buffer for buffersize == 0.
1350 */
1351 if (!buffer_size || (*buffer_size && !buffer))
1352 return EFI_INVALID_PARAMETER;
1353
Alexander Grafc15d9212016-03-04 01:09:59 +01001354 /* Count how much space we need */
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001355 list_for_each_entry(efiobj, &efi_obj_list, link) {
1356 if (!efi_search(search_type, protocol, search_key, efiobj))
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001357 size += sizeof(void *);
Alexander Grafc15d9212016-03-04 01:09:59 +01001358 }
1359
1360 if (*buffer_size < size) {
1361 *buffer_size = size;
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001362 return EFI_BUFFER_TOO_SMALL;
Alexander Grafc15d9212016-03-04 01:09:59 +01001363 }
1364
Rob Clarkcdee3372017-08-06 14:10:07 -04001365 *buffer_size = size;
1366 if (size == 0)
1367 return EFI_NOT_FOUND;
1368
Alexander Grafc15d9212016-03-04 01:09:59 +01001369 /* Then fill the array */
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001370 list_for_each_entry(efiobj, &efi_obj_list, link) {
1371 if (!efi_search(search_type, protocol, search_key, efiobj))
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001372 *buffer++ = efiobj;
Alexander Grafc15d9212016-03-04 01:09:59 +01001373 }
1374
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001375 return EFI_SUCCESS;
1376}
1377
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001378/**
Mario Six8fac2912018-07-10 08:40:17 +02001379 * efi_locate_handle_ext() - locate handles implementing a protocol.
1380 * @search_type: selection criterion
1381 * @protocol: GUID of the protocol
1382 * @search_key: registration key
1383 * @buffer_size: size of the buffer to receive the handles in bytes
1384 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001385 *
1386 * This function implements the LocateHandle service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001387 *
Mario Six8fac2912018-07-10 08:40:17 +02001388 * See the Unified Extensible Firmware Interface (UEFI) specification for
1389 * details.
1390 *
1391 * Return: 0 if the handle implements the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001392 */
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001393static efi_status_t EFIAPI efi_locate_handle_ext(
1394 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001395 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001396 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001397{
Rob Clark238f88c2017-09-13 18:05:41 -04001398 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001399 buffer_size, buffer);
1400
1401 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1402 buffer_size, buffer));
Alexander Grafc15d9212016-03-04 01:09:59 +01001403}
1404
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001405/**
Mario Six8fac2912018-07-10 08:40:17 +02001406 * efi_remove_configuration_table() - collapses configuration table entries,
1407 * removing index i
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001408 *
Mario Six8fac2912018-07-10 08:40:17 +02001409 * @i: index of the table entry to be removed
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001410 */
Alexander Graffe3366f2017-07-26 13:41:04 +02001411static void efi_remove_configuration_table(int i)
1412{
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001413 struct efi_configuration_table *this = &systab.tables[i];
1414 struct efi_configuration_table *next = &systab.tables[i + 1];
1415 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
Alexander Graffe3366f2017-07-26 13:41:04 +02001416
1417 memmove(this, next, (ulong)end - (ulong)next);
1418 systab.nr_tables--;
1419}
1420
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001421/**
Mario Six8fac2912018-07-10 08:40:17 +02001422 * efi_install_configuration_table() - adds, updates, or removes a
1423 * configuration table
1424 * @guid: GUID of the installed table
1425 * @table: table to be installed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001426 *
1427 * This function is used for internal calls. For the API implementation of the
1428 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1429 *
Mario Six8fac2912018-07-10 08:40:17 +02001430 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001431 */
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001432efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1433 void *table)
Alexander Grafc15d9212016-03-04 01:09:59 +01001434{
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001435 struct efi_event *evt;
Alexander Grafc15d9212016-03-04 01:09:59 +01001436 int i;
1437
Heinrich Schuchardt754ce102018-02-18 00:08:00 +01001438 if (!guid)
1439 return EFI_INVALID_PARAMETER;
1440
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001441 /* Check for GUID override */
Alexander Grafc15d9212016-03-04 01:09:59 +01001442 for (i = 0; i < systab.nr_tables; i++) {
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001443 if (!guidcmp(guid, &systab.tables[i].guid)) {
Alexander Graffe3366f2017-07-26 13:41:04 +02001444 if (table)
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001445 systab.tables[i].table = table;
Alexander Graffe3366f2017-07-26 13:41:04 +02001446 else
1447 efi_remove_configuration_table(i);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001448 goto out;
Alexander Grafc15d9212016-03-04 01:09:59 +01001449 }
1450 }
1451
Alexander Graffe3366f2017-07-26 13:41:04 +02001452 if (!table)
1453 return EFI_NOT_FOUND;
1454
Alexander Grafc15d9212016-03-04 01:09:59 +01001455 /* No override, check for overflow */
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001456 if (i >= EFI_MAX_CONFIGURATION_TABLES)
Alexander Grafc5c11632016-08-19 01:23:24 +02001457 return EFI_OUT_OF_RESOURCES;
Alexander Grafc15d9212016-03-04 01:09:59 +01001458
1459 /* Add a new entry */
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001460 memcpy(&systab.tables[i].guid, guid, sizeof(*guid));
1461 systab.tables[i].table = table;
Alexander Graf9982e672016-08-19 01:23:30 +02001462 systab.nr_tables = i + 1;
Alexander Grafc15d9212016-03-04 01:09:59 +01001463
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001464out:
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001465 /* systab.nr_tables may have changed. So we need to update the CRC32 */
Heinrich Schuchardtac2d4da2018-07-07 15:36:05 +02001466 efi_update_table_header_crc32(&systab.hdr);
1467
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001468 /* Notify that the configuration table was changed */
1469 list_for_each_entry(evt, &efi_events, link) {
1470 if (evt->group && !guidcmp(evt->group, guid)) {
1471 efi_signal_event(evt, false);
1472 break;
1473 }
1474 }
1475
Alexander Grafc5c11632016-08-19 01:23:24 +02001476 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +01001477}
1478
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001479/**
Mario Six8fac2912018-07-10 08:40:17 +02001480 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1481 * configuration table.
1482 * @guid: GUID of the installed table
1483 * @table: table to be installed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001484 *
1485 * This function implements the InstallConfigurationTable service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001486 *
Mario Six8fac2912018-07-10 08:40:17 +02001487 * See the Unified Extensible Firmware Interface (UEFI) specification for
1488 * details.
1489 *
1490 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001491 */
Alexander Grafc5c11632016-08-19 01:23:24 +02001492static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1493 void *table)
1494{
Rob Clark238f88c2017-09-13 18:05:41 -04001495 EFI_ENTRY("%pUl, %p", guid, table);
Alexander Grafc5c11632016-08-19 01:23:24 +02001496 return EFI_EXIT(efi_install_configuration_table(guid, table));
1497}
1498
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001499/**
Mario Six8fac2912018-07-10 08:40:17 +02001500 * efi_setup_loaded_image() - initialize a loaded image
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001501 *
1502 * Initialize a loaded_image_info and loaded_image_info object with correct
Rob Clarkf8db9222017-09-13 18:05:33 -04001503 * protocols, boot-device, etc.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001504 *
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001505 * In case of an error *handle_ptr and *info_ptr are set to NULL and an error
1506 * code is returned.
1507 *
1508 * @device_path: device path of the loaded image
1509 * @file_path: file path of the loaded image
1510 * @handle_ptr: handle of the loaded image
1511 * @info_ptr: loaded image protocol
1512 * Return: status code
Rob Clarkf8db9222017-09-13 18:05:33 -04001513 */
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001514efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1515 struct efi_device_path *file_path,
1516 struct efi_loaded_image_obj **handle_ptr,
1517 struct efi_loaded_image **info_ptr)
Rob Clarkf8db9222017-09-13 18:05:33 -04001518{
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001519 efi_status_t ret;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001520 struct efi_loaded_image *info = NULL;
1521 struct efi_loaded_image_obj *obj = NULL;
1522
1523 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1524 *handle_ptr = NULL;
1525 *info_ptr = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001526
1527 info = calloc(1, sizeof(*info));
1528 if (!info)
1529 return EFI_OUT_OF_RESOURCES;
1530 obj = calloc(1, sizeof(*obj));
1531 if (!obj) {
1532 free(info);
1533 return EFI_OUT_OF_RESOURCES;
1534 }
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001535
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +01001536 /* Add internal object to object list */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001537 efi_add_handle(&obj->header);
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001538
Heinrich Schuchardtc47f8702018-07-05 08:17:58 +02001539 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001540 info->file_path = file_path;
Heinrich Schuchardt8a7e09d2018-08-26 15:31:52 +02001541 info->system_table = &systab;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001542
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001543 if (device_path) {
1544 info->device_handle = efi_dp_find_obj(device_path, NULL);
1545 /*
1546 * When asking for the device path interface, return
1547 * bootefi_device_path
1548 */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001549 ret = efi_add_protocol(&obj->header,
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001550 &efi_guid_device_path, device_path);
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001551 if (ret != EFI_SUCCESS)
1552 goto failure;
1553 }
Rob Clarkf8db9222017-09-13 18:05:33 -04001554
1555 /*
1556 * When asking for the loaded_image interface, just
1557 * return handle which points to loaded_image_info
1558 */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001559 ret = efi_add_protocol(&obj->header,
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001560 &efi_guid_loaded_image, info);
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001561 if (ret != EFI_SUCCESS)
1562 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001563
Alexander Graf44be5da2019-02-11 15:24:00 +01001564#if CONFIG_IS_ENABLED(EFI_LOADER_HII)
Leif Lindholm5aab1b82019-01-21 12:12:57 +09001565 ret = efi_add_protocol(&obj->header,
1566 &efi_guid_hii_string_protocol,
1567 (void *)&efi_hii_string);
1568 if (ret != EFI_SUCCESS)
1569 goto failure;
1570
1571 ret = efi_add_protocol(&obj->header,
1572 &efi_guid_hii_database_protocol,
1573 (void *)&efi_hii_database);
1574 if (ret != EFI_SUCCESS)
1575 goto failure;
1576
AKASHI Takahiroca8aa712019-01-21 12:13:00 +09001577 ret = efi_add_protocol(&obj->header,
1578 &efi_guid_hii_config_routing_protocol,
1579 (void *)&efi_hii_config_routing);
1580 if (ret != EFI_SUCCESS)
1581 goto failure;
Alexander Graf44be5da2019-02-11 15:24:00 +01001582#endif
AKASHI Takahiroca8aa712019-01-21 12:13:00 +09001583
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001584 if (info_ptr)
1585 *info_ptr = info;
1586 if (handle_ptr)
1587 *handle_ptr = obj;
1588
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001589 return ret;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001590failure:
1591 printf("ERROR: Failure to install protocols for loaded image\n");
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001592 efi_delete_handle(&obj->header);
1593 free(info);
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001594 return ret;
Rob Clarkf8db9222017-09-13 18:05:33 -04001595}
1596
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001597/**
Mario Six8fac2912018-07-10 08:40:17 +02001598 * efi_load_image_from_path() - load an image using a file path
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001599 *
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001600 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1601 * callers obligation to update the memory type as needed.
1602 *
1603 * @file_path: the path of the image to load
1604 * @buffer: buffer containing the loaded image
1605 * @size: size of the loaded image
1606 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001607 */
Rob Clarkc84c1102017-09-13 18:05:38 -04001608efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001609 void **buffer, efi_uintn_t *size)
Rob Clark857a1222017-09-13 18:05:35 -04001610{
1611 struct efi_file_info *info = NULL;
1612 struct efi_file_handle *f;
1613 static efi_status_t ret;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001614 u64 addr;
Heinrich Schuchardt6b06e0d2018-04-03 22:37:11 +02001615 efi_uintn_t bs;
Rob Clark857a1222017-09-13 18:05:35 -04001616
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001617 /* In case of failure nothing is returned */
1618 *buffer = NULL;
1619 *size = 0;
1620
1621 /* Open file */
Rob Clark857a1222017-09-13 18:05:35 -04001622 f = efi_file_from_path(file_path);
1623 if (!f)
1624 return EFI_DEVICE_ERROR;
1625
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001626 /* Get file size */
Rob Clark857a1222017-09-13 18:05:35 -04001627 bs = 0;
1628 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1629 &bs, info));
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001630 if (ret != EFI_BUFFER_TOO_SMALL) {
1631 ret = EFI_DEVICE_ERROR;
Rob Clark857a1222017-09-13 18:05:35 -04001632 goto error;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001633 }
Rob Clark857a1222017-09-13 18:05:35 -04001634
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001635 info = malloc(bs);
1636 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs,
1637 info));
1638 if (ret != EFI_SUCCESS)
Rob Clark857a1222017-09-13 18:05:35 -04001639 goto error;
1640
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001641 /*
1642 * When reading the file we do not yet know if it contains an
1643 * application, a boottime driver, or a runtime driver. So here we
1644 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1645 * update the reservation according to the image type.
1646 */
Heinrich Schuchardt6b06e0d2018-04-03 22:37:11 +02001647 bs = info->file_size;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001648 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1649 EFI_BOOT_SERVICES_DATA,
1650 efi_size_in_pages(bs), &addr);
Rob Clark857a1222017-09-13 18:05:35 -04001651 if (ret != EFI_SUCCESS) {
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001652 ret = EFI_OUT_OF_RESOURCES;
1653 goto error;
Rob Clark857a1222017-09-13 18:05:35 -04001654 }
1655
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001656 /* Read file */
1657 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1658 if (ret != EFI_SUCCESS)
1659 efi_free_pages(addr, efi_size_in_pages(bs));
1660 *buffer = (void *)(uintptr_t)addr;
1661 *size = bs;
1662error:
1663 EFI_CALL(f->close(f));
1664 free(info);
Rob Clark857a1222017-09-13 18:05:35 -04001665 return ret;
1666}
1667
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001668/**
Mario Six8fac2912018-07-10 08:40:17 +02001669 * efi_load_image() - load an EFI image into memory
1670 * @boot_policy: true for request originating from the boot manager
1671 * @parent_image: the caller's image handle
1672 * @file_path: the path of the image to load
1673 * @source_buffer: memory location from which the image is installed
1674 * @source_size: size of the memory area from which the image is installed
1675 * @image_handle: handle for the newly installed image
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001676 *
1677 * This function implements the LoadImage service.
Mario Six8fac2912018-07-10 08:40:17 +02001678 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001679 * See the Unified Extensible Firmware Interface (UEFI) specification
1680 * for details.
1681 *
Mario Six8fac2912018-07-10 08:40:17 +02001682 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001683 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001684static efi_status_t EFIAPI efi_load_image(bool boot_policy,
1685 efi_handle_t parent_image,
1686 struct efi_device_path *file_path,
1687 void *source_buffer,
Heinrich Schuchardt4cde1fa2018-04-03 22:29:30 +02001688 efi_uintn_t source_size,
Alexander Grafc15d9212016-03-04 01:09:59 +01001689 efi_handle_t *image_handle)
1690{
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001691 struct efi_device_path *dp, *fp;
Tom Rini04c49062018-09-30 10:38:15 -04001692 struct efi_loaded_image *info = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001693 struct efi_loaded_image_obj **image_obj =
1694 (struct efi_loaded_image_obj **)image_handle;
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001695 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01001696
Heinrich Schuchardt4cde1fa2018-04-03 22:29:30 +02001697 EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
Alexander Grafc15d9212016-03-04 01:09:59 +01001698 file_path, source_buffer, source_size, image_handle);
Rob Clark857a1222017-09-13 18:05:35 -04001699
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01001700 if (!image_handle || !parent_image) {
1701 ret = EFI_INVALID_PARAMETER;
1702 goto error;
1703 }
1704
1705 if (!source_buffer && !file_path) {
1706 ret = EFI_NOT_FOUND;
1707 goto error;
1708 }
Rob Clark857a1222017-09-13 18:05:35 -04001709
1710 if (!source_buffer) {
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001711 ret = efi_load_image_from_path(file_path, &source_buffer,
1712 &source_size);
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001713 if (ret != EFI_SUCCESS)
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001714 goto error;
Rob Clark857a1222017-09-13 18:05:35 -04001715 /*
1716 * split file_path which contains both the device and
1717 * file parts:
1718 */
1719 efi_dp_split_file_path(file_path, &dp, &fp);
Rob Clark857a1222017-09-13 18:05:35 -04001720 } else {
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001721 /* In this case, file_path is the "device" path, i.e.
Rob Clark857a1222017-09-13 18:05:35 -04001722 * something like a HARDWARE_DEVICE:MEMORY_MAPPED
1723 */
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001724 u64 addr;
1725 void *dest_buffer;
1726
1727 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1728 EFI_RUNTIME_SERVICES_CODE,
1729 efi_size_in_pages(source_size), &addr);
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001730 if (ret != EFI_SUCCESS)
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001731 goto error;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001732 dest_buffer = (void *)(uintptr_t)addr;
1733 memcpy(dest_buffer, source_buffer, source_size);
1734 source_buffer = dest_buffer;
1735
1736 dp = file_path;
1737 fp = NULL;
Rob Clark857a1222017-09-13 18:05:35 -04001738 }
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001739 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
1740 if (ret != EFI_SUCCESS)
1741 goto error_invalid_image;
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +01001742 ret = efi_load_pe(*image_obj, source_buffer, info);
1743 if (ret != EFI_SUCCESS)
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001744 goto error_invalid_image;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001745 /* Update the type of the allocated memory */
1746 efi_add_memory_map((uintptr_t)source_buffer,
1747 efi_size_in_pages(source_size),
1748 info->image_code_type, false);
Heinrich Schuchardt1c176932017-10-18 18:13:20 +02001749 info->system_table = &systab;
1750 info->parent_handle = parent_image;
Alexander Grafc15d9212016-03-04 01:09:59 +01001751 return EFI_EXIT(EFI_SUCCESS);
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001752error_invalid_image:
1753 /* The image is invalid. Release all associated resources. */
1754 efi_free_pages((uintptr_t)source_buffer,
1755 efi_size_in_pages(source_size));
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001756 efi_delete_handle(*image_handle);
1757 *image_handle = NULL;
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001758 free(info);
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01001759error:
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001760 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001761}
1762
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001763/**
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001764 * efi_start_image() - call the entry point of an image
Mario Six8fac2912018-07-10 08:40:17 +02001765 * @image_handle: handle of the image
1766 * @exit_data_size: size of the buffer
1767 * @exit_data: buffer to receive the exit data of the called image
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001768 *
1769 * This function implements the StartImage service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001770 *
Mario Six8fac2912018-07-10 08:40:17 +02001771 * See the Unified Extensible Firmware Interface (UEFI) specification for
1772 * details.
1773 *
1774 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001775 */
Heinrich Schuchardt2f8eb082018-12-26 13:28:09 +01001776efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
1777 efi_uintn_t *exit_data_size,
1778 u16 **exit_data)
Alexander Grafc15d9212016-03-04 01:09:59 +01001779{
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001780 struct efi_loaded_image_obj *image_obj =
1781 (struct efi_loaded_image_obj *)image_handle;
Heinrich Schuchardt6dcd4842018-01-18 20:28:43 +01001782 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01001783
1784 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
Alexander Grafc15d9212016-03-04 01:09:59 +01001785
Alexander Graffa5246b2018-11-15 21:23:47 +01001786 efi_is_direct_boot = false;
1787
Alexander Grafc15d9212016-03-04 01:09:59 +01001788 /* call the image! */
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001789 if (setjmp(&image_obj->exit_jmp)) {
Heinrich Schuchardt6dcd4842018-01-18 20:28:43 +01001790 /*
1791 * We called the entry point of the child image with EFI_CALL
1792 * in the lines below. The child image called the Exit() boot
1793 * service efi_exit() which executed the long jump that brought
1794 * us to the current line. This implies that the second half
1795 * of the EFI_CALL macro has not been executed.
1796 */
1797#ifdef CONFIG_ARM
1798 /*
1799 * efi_exit() called efi_restore_gd(). We have to undo this
1800 * otherwise __efi_entry_check() will put the wrong value into
1801 * app_gd.
1802 */
1803 gd = app_gd;
1804#endif
1805 /*
1806 * To get ready to call EFI_EXIT below we have to execute the
1807 * missed out steps of EFI_CALL.
1808 */
1809 assert(__efi_entry_check());
1810 debug("%sEFI: %lu returned by started image\n",
1811 __efi_nesting_dec(),
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001812 (unsigned long)((uintptr_t)image_obj->exit_status &
Heinrich Schuchardt6dcd4842018-01-18 20:28:43 +01001813 ~EFI_ERROR_MASK));
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001814 return EFI_EXIT(image_obj->exit_status);
Alexander Graf988c0662016-05-20 23:28:23 +02001815 }
1816
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001817 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
Alexander Grafc15d9212016-03-04 01:09:59 +01001818
Alexander Grafeff317c2018-01-26 00:47:53 +01001819 /*
1820 * Usually UEFI applications call Exit() instead of returning.
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001821 * But because the world doesn't consist of ponies and unicorns,
Alexander Grafeff317c2018-01-26 00:47:53 +01001822 * we're happy to emulate that behavior on behalf of a payload
1823 * that forgot.
1824 */
1825 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
Alexander Grafc15d9212016-03-04 01:09:59 +01001826}
1827
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001828/**
Mario Six8fac2912018-07-10 08:40:17 +02001829 * efi_exit() - leave an EFI application or driver
1830 * @image_handle: handle of the application or driver that is exiting
1831 * @exit_status: status code
1832 * @exit_data_size: size of the buffer in bytes
1833 * @exit_data: buffer with data describing an error
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001834 *
1835 * This function implements the Exit service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001836 *
Mario Six8fac2912018-07-10 08:40:17 +02001837 * See the Unified Extensible Firmware Interface (UEFI) specification for
1838 * details.
1839 *
1840 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001841 */
Alexander Graf988c0662016-05-20 23:28:23 +02001842static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001843 efi_status_t exit_status,
Heinrich Schuchardt23ef39a2018-12-28 12:41:15 +01001844 efi_uintn_t exit_data_size,
1845 u16 *exit_data)
Alexander Grafc15d9212016-03-04 01:09:59 +01001846{
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +01001847 /*
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +01001848 * TODO: We should call the unload procedure of the loaded
1849 * image protocol.
1850 */
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001851 struct efi_loaded_image_obj *image_obj =
1852 (struct efi_loaded_image_obj *)image_handle;
Alexander Graf988c0662016-05-20 23:28:23 +02001853
Heinrich Schuchardt23ef39a2018-12-28 12:41:15 +01001854 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
Alexander Grafc15d9212016-03-04 01:09:59 +01001855 exit_data_size, exit_data);
Alexander Graf988c0662016-05-20 23:28:23 +02001856
Alexander Graf87e787a2017-09-03 14:14:17 +02001857 /* Make sure entry/exit counts for EFI world cross-overs match */
Heinrich Schuchardt6dcd4842018-01-18 20:28:43 +01001858 EFI_EXIT(exit_status);
Heinrich Schuchardt4a4c6462017-08-25 19:53:14 +02001859
Alexander Graf87e787a2017-09-03 14:14:17 +02001860 /*
1861 * But longjmp out with the U-Boot gd, not the application's, as
1862 * the other end is a setjmp call inside EFI context.
1863 */
1864 efi_restore_gd();
1865
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001866 image_obj->exit_status = exit_status;
1867 longjmp(&image_obj->exit_jmp, 1);
Alexander Graf988c0662016-05-20 23:28:23 +02001868
1869 panic("EFI application exited");
Alexander Grafc15d9212016-03-04 01:09:59 +01001870}
1871
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001872/**
Mario Six8fac2912018-07-10 08:40:17 +02001873 * efi_unload_image() - unload an EFI image
1874 * @image_handle: handle of the image to be unloaded
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001875 *
1876 * This function implements the UnloadImage service.
Mario Six8fac2912018-07-10 08:40:17 +02001877 *
1878 * See the Unified Extensible Firmware Interface (UEFI) specification for
1879 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001880 *
Mario Six8fac2912018-07-10 08:40:17 +02001881 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001882 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001883static efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01001884{
1885 struct efi_object *efiobj;
1886
1887 EFI_ENTRY("%p", image_handle);
1888 efiobj = efi_search_obj(image_handle);
1889 if (efiobj)
1890 list_del(&efiobj->link);
1891
1892 return EFI_EXIT(EFI_SUCCESS);
1893}
1894
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001895/**
Alexander Graffa5246b2018-11-15 21:23:47 +01001896 * efi_exit_caches() - fix up caches for EFI payloads if necessary
1897 */
1898static void efi_exit_caches(void)
1899{
1900#if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
1901 /*
1902 * Grub on 32bit ARM needs to have caches disabled before jumping into
1903 * a zImage, but does not know of all cache layers. Give it a hand.
1904 */
1905 if (efi_is_direct_boot)
1906 cleanup_before_linux();
1907#endif
1908}
1909
1910/**
Mario Six8fac2912018-07-10 08:40:17 +02001911 * efi_exit_boot_services() - stop all boot services
1912 * @image_handle: handle of the loaded image
1913 * @map_key: key of the memory map
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001914 *
1915 * This function implements the ExitBootServices service.
Mario Six8fac2912018-07-10 08:40:17 +02001916 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001917 * See the Unified Extensible Firmware Interface (UEFI) specification
1918 * for details.
1919 *
Mario Six8fac2912018-07-10 08:40:17 +02001920 * All timer events are disabled. For exit boot services events the
1921 * notification function is called. The boot services are disabled in the
1922 * system table.
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001923 *
Mario Six8fac2912018-07-10 08:40:17 +02001924 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001925 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001926static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
Alexander Grafc15d9212016-03-04 01:09:59 +01001927 unsigned long map_key)
1928{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001929 struct efi_event *evt;
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001930
Alexander Grafc15d9212016-03-04 01:09:59 +01001931 EFI_ENTRY("%p, %ld", image_handle, map_key);
1932
Heinrich Schuchardt0f233c42018-07-02 12:53:55 +02001933 /* Check that the caller has read the current memory map */
1934 if (map_key != efi_memory_map_key)
1935 return EFI_INVALID_PARAMETER;
1936
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001937 /* Make sure that notification functions are not called anymore */
1938 efi_tpl = TPL_HIGH_LEVEL;
1939
1940 /* Check if ExitBootServices has already been called */
1941 if (!systab.boottime)
1942 return EFI_EXIT(EFI_SUCCESS);
1943
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001944 /* Add related events to the event group */
1945 list_for_each_entry(evt, &efi_events, link) {
1946 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
1947 evt->group = &efi_guid_event_group_exit_boot_services;
1948 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001949 /* Notify that ExitBootServices is invoked. */
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001950 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001951 if (evt->group &&
1952 !guidcmp(evt->group,
1953 &efi_guid_event_group_exit_boot_services)) {
1954 efi_signal_event(evt, false);
1955 break;
1956 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001957 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001958
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001959 /* TODO: Should persist EFI variables here */
Rob Clark15f3d742017-09-13 18:05:37 -04001960
Alexander Graf2ebeb442016-11-17 01:02:57 +01001961 board_quiesce_devices();
1962
Alexander Graffa5246b2018-11-15 21:23:47 +01001963 /* Fix up caches for EFI payloads if necessary */
1964 efi_exit_caches();
1965
Alexander Grafc15d9212016-03-04 01:09:59 +01001966 /* This stops all lingering devices */
1967 bootm_disable_interrupts();
1968
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001969 /* Disable boot time services */
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001970 systab.con_in_handle = NULL;
1971 systab.con_in = NULL;
1972 systab.con_out_handle = NULL;
1973 systab.con_out = NULL;
1974 systab.stderr_handle = NULL;
1975 systab.std_err = NULL;
1976 systab.boottime = NULL;
1977
1978 /* Recalculate CRC32 */
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02001979 efi_update_table_header_crc32(&systab.hdr);
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001980
Alexander Grafc15d9212016-03-04 01:09:59 +01001981 /* Give the payload some time to boot */
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02001982 efi_set_watchdog(0);
Alexander Grafc15d9212016-03-04 01:09:59 +01001983 WATCHDOG_RESET();
1984
1985 return EFI_EXIT(EFI_SUCCESS);
1986}
1987
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001988/**
Mario Six8fac2912018-07-10 08:40:17 +02001989 * efi_get_next_monotonic_count() - get next value of the counter
1990 * @count: returned value of the counter
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001991 *
1992 * This function implements the NextMonotonicCount service.
Mario Six8fac2912018-07-10 08:40:17 +02001993 *
1994 * See the Unified Extensible Firmware Interface (UEFI) specification for
1995 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001996 *
Mario Six8fac2912018-07-10 08:40:17 +02001997 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001998 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001999static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
2000{
Heinrich Schuchardt91064592018-02-18 15:17:49 +01002001 static uint64_t mono;
2002
Alexander Grafc15d9212016-03-04 01:09:59 +01002003 EFI_ENTRY("%p", count);
2004 *count = mono++;
2005 return EFI_EXIT(EFI_SUCCESS);
2006}
2007
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002008/**
Mario Six8fac2912018-07-10 08:40:17 +02002009 * efi_stall() - sleep
2010 * @microseconds: period to sleep in microseconds
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002011 *
Mario Six8fac2912018-07-10 08:40:17 +02002012 * This function implements the Stall service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002013 *
Mario Six8fac2912018-07-10 08:40:17 +02002014 * See the Unified Extensible Firmware Interface (UEFI) specification for
2015 * details.
2016 *
2017 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002018 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002019static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
2020{
2021 EFI_ENTRY("%ld", microseconds);
2022 udelay(microseconds);
2023 return EFI_EXIT(EFI_SUCCESS);
2024}
2025
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002026/**
Mario Six8fac2912018-07-10 08:40:17 +02002027 * efi_set_watchdog_timer() - reset the watchdog timer
2028 * @timeout: seconds before reset by watchdog
2029 * @watchdog_code: code to be logged when resetting
2030 * @data_size: size of buffer in bytes
2031 * @watchdog_data: buffer with data describing the reset reason
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002032 *
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02002033 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002034 *
Mario Six8fac2912018-07-10 08:40:17 +02002035 * See the Unified Extensible Firmware Interface (UEFI) specification for
2036 * details.
2037 *
2038 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002039 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002040static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
2041 uint64_t watchdog_code,
2042 unsigned long data_size,
2043 uint16_t *watchdog_data)
2044{
Masahiro Yamadac7570a32018-08-06 20:47:40 +09002045 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
Alexander Grafc15d9212016-03-04 01:09:59 +01002046 data_size, watchdog_data);
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02002047 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafc15d9212016-03-04 01:09:59 +01002048}
2049
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002050/**
Mario Six8fac2912018-07-10 08:40:17 +02002051 * efi_close_protocol() - close a protocol
2052 * @handle: handle on which the protocol shall be closed
2053 * @protocol: GUID of the protocol to close
2054 * @agent_handle: handle of the driver
2055 * @controller_handle: handle of the controller
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002056 *
2057 * This function implements the CloseProtocol service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002058 *
Mario Six8fac2912018-07-10 08:40:17 +02002059 * See the Unified Extensible Firmware Interface (UEFI) specification for
2060 * details.
2061 *
2062 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002063 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002064static efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002065 const efi_guid_t *protocol,
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002066 efi_handle_t agent_handle,
2067 efi_handle_t controller_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01002068{
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002069 struct efi_handler *handler;
2070 struct efi_open_protocol_info_item *item;
2071 struct efi_open_protocol_info_item *pos;
2072 efi_status_t r;
2073
Rob Clark238f88c2017-09-13 18:05:41 -04002074 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
Alexander Grafc15d9212016-03-04 01:09:59 +01002075 controller_handle);
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002076
2077 if (!agent_handle) {
2078 r = EFI_INVALID_PARAMETER;
2079 goto out;
2080 }
2081 r = efi_search_protocol(handle, protocol, &handler);
2082 if (r != EFI_SUCCESS)
2083 goto out;
2084
2085 r = EFI_NOT_FOUND;
2086 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2087 if (item->info.agent_handle == agent_handle &&
2088 item->info.controller_handle == controller_handle) {
2089 efi_delete_open_info(item);
2090 r = EFI_SUCCESS;
2091 break;
2092 }
2093 }
2094out:
2095 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002096}
2097
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002098/**
Mario Six8fac2912018-07-10 08:40:17 +02002099 * efi_open_protocol_information() - provide information about then open status
2100 * of a protocol on a handle
2101 * @handle: handle for which the information shall be retrieved
2102 * @protocol: GUID of the protocol
2103 * @entry_buffer: buffer to receive the open protocol information
2104 * @entry_count: number of entries available in the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002105 *
2106 * This function implements the OpenProtocolInformation service.
Mario Six8fac2912018-07-10 08:40:17 +02002107 *
2108 * See the Unified Extensible Firmware Interface (UEFI) specification for
2109 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002110 *
Mario Six8fac2912018-07-10 08:40:17 +02002111 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002112 */
Heinrich Schuchardt91064592018-02-18 15:17:49 +01002113static efi_status_t EFIAPI efi_open_protocol_information(
2114 efi_handle_t handle, const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002115 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002116 efi_uintn_t *entry_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01002117{
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002118 unsigned long buffer_size;
2119 unsigned long count;
2120 struct efi_handler *handler;
2121 struct efi_open_protocol_info_item *item;
2122 efi_status_t r;
2123
Rob Clark238f88c2017-09-13 18:05:41 -04002124 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
Alexander Grafc15d9212016-03-04 01:09:59 +01002125 entry_count);
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002126
2127 /* Check parameters */
2128 if (!entry_buffer) {
2129 r = EFI_INVALID_PARAMETER;
2130 goto out;
2131 }
2132 r = efi_search_protocol(handle, protocol, &handler);
2133 if (r != EFI_SUCCESS)
2134 goto out;
2135
2136 /* Count entries */
2137 count = 0;
2138 list_for_each_entry(item, &handler->open_infos, link) {
2139 if (item->info.open_count)
2140 ++count;
2141 }
2142 *entry_count = count;
2143 *entry_buffer = NULL;
2144 if (!count) {
2145 r = EFI_SUCCESS;
2146 goto out;
2147 }
2148
2149 /* Copy entries */
2150 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002151 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002152 (void **)entry_buffer);
2153 if (r != EFI_SUCCESS)
2154 goto out;
2155 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2156 if (item->info.open_count)
2157 (*entry_buffer)[--count] = item->info;
2158 }
2159out:
2160 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002161}
2162
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002163/**
Mario Six8fac2912018-07-10 08:40:17 +02002164 * efi_protocols_per_handle() - get protocols installed on a handle
2165 * @handle: handle for which the information is retrieved
2166 * @protocol_buffer: buffer with protocol GUIDs
2167 * @protocol_buffer_count: number of entries in the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002168 *
2169 * This function implements the ProtocolsPerHandleService.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002170 *
Mario Six8fac2912018-07-10 08:40:17 +02002171 * See the Unified Extensible Firmware Interface (UEFI) specification for
2172 * details.
2173 *
2174 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002175 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002176static efi_status_t EFIAPI efi_protocols_per_handle(
2177 efi_handle_t handle, efi_guid_t ***protocol_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002178 efi_uintn_t *protocol_buffer_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01002179{
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002180 unsigned long buffer_size;
2181 struct efi_object *efiobj;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002182 struct list_head *protocol_handle;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002183 efi_status_t r;
2184
Alexander Grafc15d9212016-03-04 01:09:59 +01002185 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2186 protocol_buffer_count);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002187
2188 if (!handle || !protocol_buffer || !protocol_buffer_count)
2189 return EFI_EXIT(EFI_INVALID_PARAMETER);
2190
2191 *protocol_buffer = NULL;
Rob Clarkd51b8ca2017-07-20 07:59:39 -04002192 *protocol_buffer_count = 0;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002193
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002194 efiobj = efi_search_obj(handle);
2195 if (!efiobj)
2196 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002197
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002198 /* Count protocols */
2199 list_for_each(protocol_handle, &efiobj->protocols) {
2200 ++*protocol_buffer_count;
2201 }
2202
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02002203 /* Copy GUIDs */
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002204 if (*protocol_buffer_count) {
2205 size_t j = 0;
2206
2207 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002208 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002209 (void **)protocol_buffer);
2210 if (r != EFI_SUCCESS)
2211 return EFI_EXIT(r);
2212 list_for_each(protocol_handle, &efiobj->protocols) {
2213 struct efi_handler *protocol;
2214
2215 protocol = list_entry(protocol_handle,
2216 struct efi_handler, link);
2217 (*protocol_buffer)[j] = (void *)protocol->guid;
2218 ++j;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002219 }
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002220 }
2221
2222 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002223}
2224
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002225/**
Mario Six8fac2912018-07-10 08:40:17 +02002226 * efi_locate_handle_buffer() - locate handles implementing a protocol
2227 * @search_type: selection criterion
2228 * @protocol: GUID of the protocol
2229 * @search_key: registration key
2230 * @no_handles: number of returned handles
2231 * @buffer: buffer with the returned handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002232 *
2233 * This function implements the LocateHandleBuffer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002234 *
Mario Six8fac2912018-07-10 08:40:17 +02002235 * See the Unified Extensible Firmware Interface (UEFI) specification for
2236 * details.
2237 *
2238 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002239 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002240static efi_status_t EFIAPI efi_locate_handle_buffer(
2241 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002242 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002243 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01002244{
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002245 efi_status_t r;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002246 efi_uintn_t buffer_size = 0;
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002247
Rob Clark238f88c2017-09-13 18:05:41 -04002248 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafc15d9212016-03-04 01:09:59 +01002249 no_handles, buffer);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002250
2251 if (!no_handles || !buffer) {
2252 r = EFI_INVALID_PARAMETER;
2253 goto out;
2254 }
2255 *no_handles = 0;
2256 *buffer = NULL;
2257 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2258 *buffer);
2259 if (r != EFI_BUFFER_TOO_SMALL)
2260 goto out;
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002261 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002262 (void **)buffer);
2263 if (r != EFI_SUCCESS)
2264 goto out;
2265 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2266 *buffer);
2267 if (r == EFI_SUCCESS)
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002268 *no_handles = buffer_size / sizeof(efi_handle_t);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002269out:
2270 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002271}
2272
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002273/**
Mario Six8fac2912018-07-10 08:40:17 +02002274 * efi_locate_protocol() - find an interface implementing a protocol
2275 * @protocol: GUID of the protocol
2276 * @registration: registration key passed to the notification function
2277 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002278 *
2279 * This function implements the LocateProtocol service.
Mario Six8fac2912018-07-10 08:40:17 +02002280 *
2281 * See the Unified Extensible Firmware Interface (UEFI) specification for
2282 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002283 *
Mario Six8fac2912018-07-10 08:40:17 +02002284 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002285 */
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002286static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002287 void *registration,
2288 void **protocol_interface)
2289{
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002290 struct list_head *lhandle;
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002291 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01002292
Rob Clark238f88c2017-09-13 18:05:41 -04002293 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002294
2295 if (!protocol || !protocol_interface)
2296 return EFI_EXIT(EFI_INVALID_PARAMETER);
2297
2298 list_for_each(lhandle, &efi_obj_list) {
2299 struct efi_object *efiobj;
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002300 struct efi_handler *handler;
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002301
2302 efiobj = list_entry(lhandle, struct efi_object, link);
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002303
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02002304 ret = efi_search_protocol(efiobj, protocol, &handler);
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002305 if (ret == EFI_SUCCESS) {
2306 *protocol_interface = handler->protocol_interface;
2307 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002308 }
2309 }
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002310 *protocol_interface = NULL;
Alexander Grafc15d9212016-03-04 01:09:59 +01002311
2312 return EFI_EXIT(EFI_NOT_FOUND);
2313}
2314
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002315/**
Mario Six8fac2912018-07-10 08:40:17 +02002316 * efi_locate_device_path() - Get the device path and handle of an device
2317 * implementing a protocol
2318 * @protocol: GUID of the protocol
2319 * @device_path: device path
2320 * @device: handle of the device
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002321 *
2322 * This function implements the LocateDevicePath service.
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002323 *
Mario Six8fac2912018-07-10 08:40:17 +02002324 * See the Unified Extensible Firmware Interface (UEFI) specification for
2325 * details.
2326 *
2327 * Return: status code
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002328 */
2329static efi_status_t EFIAPI efi_locate_device_path(
2330 const efi_guid_t *protocol,
2331 struct efi_device_path **device_path,
2332 efi_handle_t *device)
2333{
2334 struct efi_device_path *dp;
2335 size_t i;
2336 struct efi_handler *handler;
2337 efi_handle_t *handles;
2338 size_t len, len_dp;
2339 size_t len_best = 0;
2340 efi_uintn_t no_handles;
2341 u8 *remainder;
2342 efi_status_t ret;
2343
2344 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
2345
2346 if (!protocol || !device_path || !*device_path || !device) {
2347 ret = EFI_INVALID_PARAMETER;
2348 goto out;
2349 }
2350
2351 /* Find end of device path */
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +02002352 len = efi_dp_instance_size(*device_path);
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002353
2354 /* Get all handles implementing the protocol */
2355 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
2356 &no_handles, &handles));
2357 if (ret != EFI_SUCCESS)
2358 goto out;
2359
2360 for (i = 0; i < no_handles; ++i) {
2361 /* Find the device path protocol */
2362 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
2363 &handler);
2364 if (ret != EFI_SUCCESS)
2365 continue;
2366 dp = (struct efi_device_path *)handler->protocol_interface;
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +02002367 len_dp = efi_dp_instance_size(dp);
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002368 /*
2369 * This handle can only be a better fit
2370 * if its device path length is longer than the best fit and
2371 * if its device path length is shorter of equal the searched
2372 * device path.
2373 */
2374 if (len_dp <= len_best || len_dp > len)
2375 continue;
2376 /* Check if dp is a subpath of device_path */
2377 if (memcmp(*device_path, dp, len_dp))
2378 continue;
2379 *device = handles[i];
2380 len_best = len_dp;
2381 }
2382 if (len_best) {
2383 remainder = (u8 *)*device_path + len_best;
2384 *device_path = (struct efi_device_path *)remainder;
2385 ret = EFI_SUCCESS;
2386 } else {
2387 ret = EFI_NOT_FOUND;
2388 }
2389out:
2390 return EFI_EXIT(ret);
2391}
2392
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002393/**
Mario Six8fac2912018-07-10 08:40:17 +02002394 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2395 * interfaces
2396 * @handle: handle on which the protocol interfaces shall be installed
2397 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2398 * interfaces
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002399 *
2400 * This function implements the MultipleProtocolInterfaces service.
Mario Six8fac2912018-07-10 08:40:17 +02002401 *
2402 * See the Unified Extensible Firmware Interface (UEFI) specification for
2403 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002404 *
Mario Six8fac2912018-07-10 08:40:17 +02002405 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002406 */
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002407static efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
2408 (efi_handle_t *handle, ...)
Alexander Grafc15d9212016-03-04 01:09:59 +01002409{
2410 EFI_ENTRY("%p", handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002411
Alexander Graf404a7c82018-06-18 17:23:05 +02002412 efi_va_list argptr;
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002413 const efi_guid_t *protocol;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002414 void *protocol_interface;
2415 efi_status_t r = EFI_SUCCESS;
2416 int i = 0;
2417
2418 if (!handle)
2419 return EFI_EXIT(EFI_INVALID_PARAMETER);
2420
Alexander Graf404a7c82018-06-18 17:23:05 +02002421 efi_va_start(argptr, handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002422 for (;;) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002423 protocol = efi_va_arg(argptr, efi_guid_t*);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002424 if (!protocol)
2425 break;
Alexander Graf404a7c82018-06-18 17:23:05 +02002426 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01002427 r = EFI_CALL(efi_install_protocol_interface(
2428 handle, protocol,
2429 EFI_NATIVE_INTERFACE,
2430 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002431 if (r != EFI_SUCCESS)
2432 break;
2433 i++;
2434 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002435 efi_va_end(argptr);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002436 if (r == EFI_SUCCESS)
2437 return EFI_EXIT(r);
2438
Heinrich Schuchardtec47f3e2017-10-26 19:25:42 +02002439 /* If an error occurred undo all changes. */
Alexander Graf404a7c82018-06-18 17:23:05 +02002440 efi_va_start(argptr, handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002441 for (; i; --i) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002442 protocol = efi_va_arg(argptr, efi_guid_t*);
2443 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002444 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01002445 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002446 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002447 efi_va_end(argptr);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002448
2449 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002450}
2451
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002452/**
Mario Six8fac2912018-07-10 08:40:17 +02002453 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2454 * interfaces
2455 * @handle: handle from which the protocol interfaces shall be removed
2456 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2457 * interfaces
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002458 *
2459 * This function implements the UninstallMultipleProtocolInterfaces service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002460 *
Mario Six8fac2912018-07-10 08:40:17 +02002461 * See the Unified Extensible Firmware Interface (UEFI) specification for
2462 * details.
2463 *
2464 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002465 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002466static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002467 efi_handle_t handle, ...)
Alexander Grafc15d9212016-03-04 01:09:59 +01002468{
2469 EFI_ENTRY("%p", handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002470
Alexander Graf404a7c82018-06-18 17:23:05 +02002471 efi_va_list argptr;
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002472 const efi_guid_t *protocol;
2473 void *protocol_interface;
2474 efi_status_t r = EFI_SUCCESS;
2475 size_t i = 0;
2476
2477 if (!handle)
2478 return EFI_EXIT(EFI_INVALID_PARAMETER);
2479
Alexander Graf404a7c82018-06-18 17:23:05 +02002480 efi_va_start(argptr, handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002481 for (;;) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002482 protocol = efi_va_arg(argptr, efi_guid_t*);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002483 if (!protocol)
2484 break;
Alexander Graf404a7c82018-06-18 17:23:05 +02002485 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002486 r = efi_uninstall_protocol(handle, protocol,
2487 protocol_interface);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002488 if (r != EFI_SUCCESS)
2489 break;
2490 i++;
2491 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002492 efi_va_end(argptr);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002493 if (r == EFI_SUCCESS) {
2494 /* If the last protocol has been removed, delete the handle. */
2495 if (list_empty(&handle->protocols)) {
2496 list_del(&handle->link);
2497 free(handle);
2498 }
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002499 return EFI_EXIT(r);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002500 }
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002501
2502 /* If an error occurred undo all changes. */
Alexander Graf404a7c82018-06-18 17:23:05 +02002503 efi_va_start(argptr, handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002504 for (; i; --i) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002505 protocol = efi_va_arg(argptr, efi_guid_t*);
2506 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002507 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2508 EFI_NATIVE_INTERFACE,
2509 protocol_interface));
2510 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002511 efi_va_end(argptr);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002512
Heinrich Schuchardt1c76eda2018-09-24 19:57:27 +02002513 /* In case of an error always return EFI_INVALID_PARAMETER */
2514 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafc15d9212016-03-04 01:09:59 +01002515}
2516
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002517/**
Mario Six8fac2912018-07-10 08:40:17 +02002518 * efi_calculate_crc32() - calculate cyclic redundancy code
2519 * @data: buffer with data
2520 * @data_size: size of buffer in bytes
2521 * @crc32_p: cyclic redundancy code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002522 *
2523 * This function implements the CalculateCrc32 service.
Mario Six8fac2912018-07-10 08:40:17 +02002524 *
2525 * See the Unified Extensible Firmware Interface (UEFI) specification for
2526 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002527 *
Mario Six8fac2912018-07-10 08:40:17 +02002528 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002529 */
Heinrich Schuchardtf2725582018-07-07 15:36:04 +02002530static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2531 efi_uintn_t data_size,
2532 u32 *crc32_p)
Alexander Grafc15d9212016-03-04 01:09:59 +01002533{
Heinrich Schuchardtf2725582018-07-07 15:36:04 +02002534 EFI_ENTRY("%p, %zu", data, data_size);
Alexander Grafc15d9212016-03-04 01:09:59 +01002535 *crc32_p = crc32(0, data, data_size);
2536 return EFI_EXIT(EFI_SUCCESS);
2537}
2538
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002539/**
Mario Six8fac2912018-07-10 08:40:17 +02002540 * efi_copy_mem() - copy memory
2541 * @destination: destination of the copy operation
2542 * @source: source of the copy operation
2543 * @length: number of bytes to copy
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002544 *
2545 * This function implements the CopyMem service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002546 *
Mario Six8fac2912018-07-10 08:40:17 +02002547 * See the Unified Extensible Firmware Interface (UEFI) specification for
2548 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002549 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002550static void EFIAPI efi_copy_mem(void *destination, const void *source,
2551 size_t length)
Alexander Grafc15d9212016-03-04 01:09:59 +01002552{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002553 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Heinrich Schuchardtefba6ba2019-01-09 21:41:13 +01002554 memmove(destination, source, length);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002555 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002556}
2557
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002558/**
Mario Six8fac2912018-07-10 08:40:17 +02002559 * efi_set_mem() - Fill memory with a byte value.
2560 * @buffer: buffer to fill
2561 * @size: size of buffer in bytes
2562 * @value: byte to copy to the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002563 *
2564 * This function implements the SetMem service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002565 *
Mario Six8fac2912018-07-10 08:40:17 +02002566 * See the Unified Extensible Firmware Interface (UEFI) specification for
2567 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002568 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002569static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafc15d9212016-03-04 01:09:59 +01002570{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002571 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafc15d9212016-03-04 01:09:59 +01002572 memset(buffer, value, size);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002573 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002574}
2575
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002576/**
Mario Six8fac2912018-07-10 08:40:17 +02002577 * efi_protocol_open() - open protocol interface on a handle
2578 * @handler: handler of a protocol
2579 * @protocol_interface: interface implementing the protocol
2580 * @agent_handle: handle of the driver
2581 * @controller_handle: handle of the controller
2582 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002583 *
Mario Six8fac2912018-07-10 08:40:17 +02002584 * Return: status code
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002585 */
2586static efi_status_t efi_protocol_open(
2587 struct efi_handler *handler,
2588 void **protocol_interface, void *agent_handle,
2589 void *controller_handle, uint32_t attributes)
2590{
2591 struct efi_open_protocol_info_item *item;
2592 struct efi_open_protocol_info_entry *match = NULL;
2593 bool opened_by_driver = false;
2594 bool opened_exclusive = false;
2595
2596 /* If there is no agent, only return the interface */
2597 if (!agent_handle)
2598 goto out;
2599
2600 /* For TEST_PROTOCOL ignore interface attribute */
2601 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2602 *protocol_interface = NULL;
2603
2604 /*
2605 * Check if the protocol is already opened by a driver with the same
2606 * attributes or opened exclusively
2607 */
2608 list_for_each_entry(item, &handler->open_infos, link) {
2609 if (item->info.agent_handle == agent_handle) {
2610 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2611 (item->info.attributes == attributes))
2612 return EFI_ALREADY_STARTED;
2613 }
2614 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2615 opened_exclusive = true;
2616 }
2617
2618 /* Only one controller can open the protocol exclusively */
2619 if (opened_exclusive && attributes &
2620 (EFI_OPEN_PROTOCOL_EXCLUSIVE | EFI_OPEN_PROTOCOL_BY_DRIVER))
2621 return EFI_ACCESS_DENIED;
2622
2623 /* Prepare exclusive opening */
2624 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2625 /* Try to disconnect controllers */
2626 list_for_each_entry(item, &handler->open_infos, link) {
2627 if (item->info.attributes ==
2628 EFI_OPEN_PROTOCOL_BY_DRIVER)
2629 EFI_CALL(efi_disconnect_controller(
2630 item->info.controller_handle,
2631 item->info.agent_handle,
2632 NULL));
2633 }
2634 opened_by_driver = false;
2635 /* Check if all controllers are disconnected */
2636 list_for_each_entry(item, &handler->open_infos, link) {
2637 if (item->info.attributes & EFI_OPEN_PROTOCOL_BY_DRIVER)
2638 opened_by_driver = true;
2639 }
Heinrich Schuchardt8d0b45d2018-09-30 13:40:43 +02002640 /* Only one controller can be connected */
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002641 if (opened_by_driver)
2642 return EFI_ACCESS_DENIED;
2643 }
2644
2645 /* Find existing entry */
2646 list_for_each_entry(item, &handler->open_infos, link) {
2647 if (item->info.agent_handle == agent_handle &&
2648 item->info.controller_handle == controller_handle)
2649 match = &item->info;
2650 }
2651 /* None found, create one */
2652 if (!match) {
2653 match = efi_create_open_info(handler);
2654 if (!match)
2655 return EFI_OUT_OF_RESOURCES;
2656 }
2657
2658 match->agent_handle = agent_handle;
2659 match->controller_handle = controller_handle;
2660 match->attributes = attributes;
2661 match->open_count++;
2662
2663out:
2664 /* For TEST_PROTOCOL ignore interface attribute. */
2665 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2666 *protocol_interface = handler->protocol_interface;
2667
2668 return EFI_SUCCESS;
2669}
2670
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002671/**
Mario Six8fac2912018-07-10 08:40:17 +02002672 * efi_open_protocol() - open protocol interface on a handle
2673 * @handle: handle on which the protocol shall be opened
2674 * @protocol: GUID of the protocol
2675 * @protocol_interface: interface implementing the protocol
2676 * @agent_handle: handle of the driver
2677 * @controller_handle: handle of the controller
2678 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002679 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002680 * This function implements the OpenProtocol interface.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002681 *
Mario Six8fac2912018-07-10 08:40:17 +02002682 * See the Unified Extensible Firmware Interface (UEFI) specification for
2683 * details.
2684 *
2685 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002686 */
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002687static efi_status_t EFIAPI efi_open_protocol
2688 (efi_handle_t handle, const efi_guid_t *protocol,
2689 void **protocol_interface, efi_handle_t agent_handle,
2690 efi_handle_t controller_handle, uint32_t attributes)
Alexander Grafc15d9212016-03-04 01:09:59 +01002691{
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002692 struct efi_handler *handler;
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002693 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +01002694
Rob Clark238f88c2017-09-13 18:05:41 -04002695 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002696 protocol_interface, agent_handle, controller_handle,
2697 attributes);
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02002698
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002699 if (!handle || !protocol ||
2700 (!protocol_interface && attributes !=
2701 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02002702 goto out;
2703 }
2704
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002705 switch (attributes) {
2706 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2707 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2708 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2709 break;
2710 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2711 if (controller_handle == handle)
2712 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002713 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002714 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2715 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002716 /* Check that the controller handle is valid */
2717 if (!efi_search_obj(controller_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002718 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002719 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002720 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002721 /* Check that the agent handle is valid */
2722 if (!efi_search_obj(agent_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002723 goto out;
2724 break;
2725 default:
2726 goto out;
2727 }
2728
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002729 r = efi_search_protocol(handle, protocol, &handler);
2730 if (r != EFI_SUCCESS)
2731 goto out;
Alexander Grafc15d9212016-03-04 01:09:59 +01002732
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002733 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2734 controller_handle, attributes);
Alexander Grafc15d9212016-03-04 01:09:59 +01002735out:
2736 return EFI_EXIT(r);
2737}
2738
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002739/**
Mario Six8fac2912018-07-10 08:40:17 +02002740 * efi_handle_protocol() - get interface of a protocol on a handle
2741 * @handle: handle on which the protocol shall be opened
2742 * @protocol: GUID of the protocol
2743 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002744 *
2745 * This function implements the HandleProtocol service.
Mario Six8fac2912018-07-10 08:40:17 +02002746 *
2747 * See the Unified Extensible Firmware Interface (UEFI) specification for
2748 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002749 *
Mario Six8fac2912018-07-10 08:40:17 +02002750 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002751 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002752static efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002753 const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002754 void **protocol_interface)
2755{
xypron.glpk@gmx.de1bf5d872017-06-29 21:16:19 +02002756 return efi_open_protocol(handle, protocol, protocol_interface, NULL,
2757 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafc15d9212016-03-04 01:09:59 +01002758}
2759
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002760/**
Mario Six8fac2912018-07-10 08:40:17 +02002761 * efi_bind_controller() - bind a single driver to a controller
2762 * @controller_handle: controller handle
2763 * @driver_image_handle: driver handle
2764 * @remain_device_path: remaining path
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002765 *
Mario Six8fac2912018-07-10 08:40:17 +02002766 * Return: status code
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002767 */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01002768static efi_status_t efi_bind_controller(
2769 efi_handle_t controller_handle,
2770 efi_handle_t driver_image_handle,
2771 struct efi_device_path *remain_device_path)
2772{
2773 struct efi_driver_binding_protocol *binding_protocol;
2774 efi_status_t r;
2775
2776 r = EFI_CALL(efi_open_protocol(driver_image_handle,
2777 &efi_guid_driver_binding_protocol,
2778 (void **)&binding_protocol,
2779 driver_image_handle, NULL,
2780 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2781 if (r != EFI_SUCCESS)
2782 return r;
2783 r = EFI_CALL(binding_protocol->supported(binding_protocol,
2784 controller_handle,
2785 remain_device_path));
2786 if (r == EFI_SUCCESS)
2787 r = EFI_CALL(binding_protocol->start(binding_protocol,
2788 controller_handle,
2789 remain_device_path));
2790 EFI_CALL(efi_close_protocol(driver_image_handle,
2791 &efi_guid_driver_binding_protocol,
2792 driver_image_handle, NULL));
2793 return r;
2794}
2795
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002796/**
Mario Six8fac2912018-07-10 08:40:17 +02002797 * efi_connect_single_controller() - connect a single driver to a controller
2798 * @controller_handle: controller
2799 * @driver_image_handle: driver
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02002800 * @remain_device_path: remaining path
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002801 *
Mario Six8fac2912018-07-10 08:40:17 +02002802 * Return: status code
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002803 */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01002804static efi_status_t efi_connect_single_controller(
2805 efi_handle_t controller_handle,
2806 efi_handle_t *driver_image_handle,
2807 struct efi_device_path *remain_device_path)
2808{
2809 efi_handle_t *buffer;
2810 size_t count;
2811 size_t i;
2812 efi_status_t r;
2813 size_t connected = 0;
2814
2815 /* Get buffer with all handles with driver binding protocol */
2816 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
2817 &efi_guid_driver_binding_protocol,
2818 NULL, &count, &buffer));
2819 if (r != EFI_SUCCESS)
2820 return r;
2821
2822 /* Context Override */
2823 if (driver_image_handle) {
2824 for (; *driver_image_handle; ++driver_image_handle) {
2825 for (i = 0; i < count; ++i) {
2826 if (buffer[i] == *driver_image_handle) {
2827 buffer[i] = NULL;
2828 r = efi_bind_controller(
2829 controller_handle,
2830 *driver_image_handle,
2831 remain_device_path);
2832 /*
2833 * For drivers that do not support the
2834 * controller or are already connected
2835 * we receive an error code here.
2836 */
2837 if (r == EFI_SUCCESS)
2838 ++connected;
2839 }
2840 }
2841 }
2842 }
2843
2844 /*
2845 * TODO: Some overrides are not yet implemented:
2846 * - Platform Driver Override
2847 * - Driver Family Override Search
2848 * - Bus Specific Driver Override
2849 */
2850
2851 /* Driver Binding Search */
2852 for (i = 0; i < count; ++i) {
2853 if (buffer[i]) {
2854 r = efi_bind_controller(controller_handle,
2855 buffer[i],
2856 remain_device_path);
2857 if (r == EFI_SUCCESS)
2858 ++connected;
2859 }
2860 }
2861
2862 efi_free_pool(buffer);
2863 if (!connected)
2864 return EFI_NOT_FOUND;
2865 return EFI_SUCCESS;
2866}
2867
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002868/**
Mario Six8fac2912018-07-10 08:40:17 +02002869 * efi_connect_controller() - connect a controller to a driver
2870 * @controller_handle: handle of the controller
2871 * @driver_image_handle: handle of the driver
2872 * @remain_device_path: device path of a child controller
2873 * @recursive: true to connect all child controllers
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01002874 *
2875 * This function implements the ConnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02002876 *
2877 * See the Unified Extensible Firmware Interface (UEFI) specification for
2878 * details.
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01002879 *
2880 * First all driver binding protocol handles are tried for binding drivers.
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02002881 * Afterwards all handles that have opened a protocol of the controller
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01002882 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
2883 *
Mario Six8fac2912018-07-10 08:40:17 +02002884 * Return: status code
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01002885 */
2886static efi_status_t EFIAPI efi_connect_controller(
2887 efi_handle_t controller_handle,
2888 efi_handle_t *driver_image_handle,
2889 struct efi_device_path *remain_device_path,
2890 bool recursive)
2891{
2892 efi_status_t r;
2893 efi_status_t ret = EFI_NOT_FOUND;
2894 struct efi_object *efiobj;
2895
Heinrich Schuchardt7c89fb02018-12-09 16:39:20 +01002896 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01002897 remain_device_path, recursive);
2898
2899 efiobj = efi_search_obj(controller_handle);
2900 if (!efiobj) {
2901 ret = EFI_INVALID_PARAMETER;
2902 goto out;
2903 }
2904
2905 r = efi_connect_single_controller(controller_handle,
2906 driver_image_handle,
2907 remain_device_path);
2908 if (r == EFI_SUCCESS)
2909 ret = EFI_SUCCESS;
2910 if (recursive) {
2911 struct efi_handler *handler;
2912 struct efi_open_protocol_info_item *item;
2913
2914 list_for_each_entry(handler, &efiobj->protocols, link) {
2915 list_for_each_entry(item, &handler->open_infos, link) {
2916 if (item->info.attributes &
2917 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
2918 r = EFI_CALL(efi_connect_controller(
2919 item->info.controller_handle,
2920 driver_image_handle,
2921 remain_device_path,
2922 recursive));
2923 if (r == EFI_SUCCESS)
2924 ret = EFI_SUCCESS;
2925 }
2926 }
2927 }
2928 }
2929 /* Check for child controller specified by end node */
2930 if (ret != EFI_SUCCESS && remain_device_path &&
2931 remain_device_path->type == DEVICE_PATH_TYPE_END)
2932 ret = EFI_SUCCESS;
2933out:
2934 return EFI_EXIT(ret);
2935}
2936
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002937/**
Mario Six8fac2912018-07-10 08:40:17 +02002938 * efi_reinstall_protocol_interface() - reinstall protocol interface
2939 * @handle: handle on which the protocol shall be reinstalled
2940 * @protocol: GUID of the protocol to be installed
2941 * @old_interface: interface to be removed
2942 * @new_interface: interface to be installed
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02002943 *
2944 * This function implements the ReinstallProtocolInterface service.
Mario Six8fac2912018-07-10 08:40:17 +02002945 *
2946 * See the Unified Extensible Firmware Interface (UEFI) specification for
2947 * details.
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02002948 *
2949 * The old interface is uninstalled. The new interface is installed.
2950 * Drivers are connected.
2951 *
Mario Six8fac2912018-07-10 08:40:17 +02002952 * Return: status code
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02002953 */
2954static efi_status_t EFIAPI efi_reinstall_protocol_interface(
2955 efi_handle_t handle, const efi_guid_t *protocol,
2956 void *old_interface, void *new_interface)
2957{
2958 efi_status_t ret;
2959
2960 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
2961 new_interface);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002962
2963 /* Uninstall protocol but do not delete handle */
2964 ret = efi_uninstall_protocol(handle, protocol, old_interface);
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02002965 if (ret != EFI_SUCCESS)
2966 goto out;
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002967
2968 /* Install the new protocol */
2969 ret = efi_add_protocol(handle, protocol, new_interface);
2970 /*
2971 * The UEFI spec does not specify what should happen to the handle
2972 * if in case of an error no protocol interface remains on the handle.
2973 * So let's do nothing here.
2974 */
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02002975 if (ret != EFI_SUCCESS)
2976 goto out;
2977 /*
2978 * The returned status code has to be ignored.
2979 * Do not create an error if no suitable driver for the handle exists.
2980 */
2981 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
2982out:
2983 return EFI_EXIT(ret);
2984}
2985
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002986/**
Mario Six8fac2912018-07-10 08:40:17 +02002987 * efi_get_child_controllers() - get all child controllers associated to a driver
2988 * @efiobj: handle of the controller
2989 * @driver_handle: handle of the driver
2990 * @number_of_children: number of child controllers
2991 * @child_handle_buffer: handles of the the child controllers
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002992 *
Heinrich Schuchardte9943282018-01-11 08:16:04 +01002993 * The allocated buffer has to be freed with free().
2994 *
Mario Six8fac2912018-07-10 08:40:17 +02002995 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01002996 */
2997static efi_status_t efi_get_child_controllers(
2998 struct efi_object *efiobj,
2999 efi_handle_t driver_handle,
3000 efi_uintn_t *number_of_children,
3001 efi_handle_t **child_handle_buffer)
3002{
3003 struct efi_handler *handler;
3004 struct efi_open_protocol_info_item *item;
3005 efi_uintn_t count = 0, i;
3006 bool duplicate;
3007
3008 /* Count all child controller associations */
3009 list_for_each_entry(handler, &efiobj->protocols, link) {
3010 list_for_each_entry(item, &handler->open_infos, link) {
3011 if (item->info.agent_handle == driver_handle &&
3012 item->info.attributes &
3013 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3014 ++count;
3015 }
3016 }
3017 /*
3018 * Create buffer. In case of duplicate child controller assignments
3019 * the buffer will be too large. But that does not harm.
3020 */
3021 *number_of_children = 0;
3022 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3023 if (!*child_handle_buffer)
3024 return EFI_OUT_OF_RESOURCES;
3025 /* Copy unique child handles */
3026 list_for_each_entry(handler, &efiobj->protocols, link) {
3027 list_for_each_entry(item, &handler->open_infos, link) {
3028 if (item->info.agent_handle == driver_handle &&
3029 item->info.attributes &
3030 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3031 /* Check this is a new child controller */
3032 duplicate = false;
3033 for (i = 0; i < *number_of_children; ++i) {
3034 if ((*child_handle_buffer)[i] ==
3035 item->info.controller_handle)
3036 duplicate = true;
3037 }
3038 /* Copy handle to buffer */
3039 if (!duplicate) {
3040 i = (*number_of_children)++;
3041 (*child_handle_buffer)[i] =
3042 item->info.controller_handle;
3043 }
3044 }
3045 }
3046 }
3047 return EFI_SUCCESS;
3048}
3049
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003050/**
Mario Six8fac2912018-07-10 08:40:17 +02003051 * efi_disconnect_controller() - disconnect a controller from a driver
3052 * @controller_handle: handle of the controller
3053 * @driver_image_handle: handle of the driver
3054 * @child_handle: handle of the child to destroy
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003055 *
3056 * This function implements the DisconnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02003057 *
3058 * See the Unified Extensible Firmware Interface (UEFI) specification for
3059 * details.
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003060 *
Mario Six8fac2912018-07-10 08:40:17 +02003061 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003062 */
3063static efi_status_t EFIAPI efi_disconnect_controller(
3064 efi_handle_t controller_handle,
3065 efi_handle_t driver_image_handle,
3066 efi_handle_t child_handle)
3067{
3068 struct efi_driver_binding_protocol *binding_protocol;
3069 efi_handle_t *child_handle_buffer = NULL;
3070 size_t number_of_children = 0;
3071 efi_status_t r;
3072 size_t stop_count = 0;
3073 struct efi_object *efiobj;
3074
3075 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3076 child_handle);
3077
3078 efiobj = efi_search_obj(controller_handle);
3079 if (!efiobj) {
3080 r = EFI_INVALID_PARAMETER;
3081 goto out;
3082 }
3083
3084 if (child_handle && !efi_search_obj(child_handle)) {
3085 r = EFI_INVALID_PARAMETER;
3086 goto out;
3087 }
3088
3089 /* If no driver handle is supplied, disconnect all drivers */
3090 if (!driver_image_handle) {
3091 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3092 goto out;
3093 }
3094
3095 /* Create list of child handles */
3096 if (child_handle) {
3097 number_of_children = 1;
3098 child_handle_buffer = &child_handle;
3099 } else {
3100 efi_get_child_controllers(efiobj,
3101 driver_image_handle,
3102 &number_of_children,
3103 &child_handle_buffer);
3104 }
3105
3106 /* Get the driver binding protocol */
3107 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3108 &efi_guid_driver_binding_protocol,
3109 (void **)&binding_protocol,
3110 driver_image_handle, NULL,
3111 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3112 if (r != EFI_SUCCESS)
3113 goto out;
3114 /* Remove the children */
3115 if (number_of_children) {
3116 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3117 controller_handle,
3118 number_of_children,
3119 child_handle_buffer));
3120 if (r == EFI_SUCCESS)
3121 ++stop_count;
3122 }
3123 /* Remove the driver */
3124 if (!child_handle)
3125 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3126 controller_handle,
3127 0, NULL));
3128 if (r == EFI_SUCCESS)
3129 ++stop_count;
3130 EFI_CALL(efi_close_protocol(driver_image_handle,
3131 &efi_guid_driver_binding_protocol,
3132 driver_image_handle, NULL));
3133
3134 if (stop_count)
3135 r = EFI_SUCCESS;
3136 else
3137 r = EFI_NOT_FOUND;
3138out:
3139 if (!child_handle)
3140 free(child_handle_buffer);
3141 return EFI_EXIT(r);
3142}
3143
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003144static struct efi_boot_services efi_boot_services = {
Alexander Grafc15d9212016-03-04 01:09:59 +01003145 .hdr = {
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +02003146 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3147 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +02003148 .headersize = sizeof(struct efi_boot_services),
Alexander Grafc15d9212016-03-04 01:09:59 +01003149 },
3150 .raise_tpl = efi_raise_tpl,
3151 .restore_tpl = efi_restore_tpl,
3152 .allocate_pages = efi_allocate_pages_ext,
3153 .free_pages = efi_free_pages_ext,
3154 .get_memory_map = efi_get_memory_map_ext,
Stefan Brüns5a09aef2016-10-09 22:17:18 +02003155 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns67b67d92016-10-09 22:17:26 +02003156 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +02003157 .create_event = efi_create_event_ext,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +02003158 .set_timer = efi_set_timer_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003159 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02003160 .signal_event = efi_signal_event_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003161 .close_event = efi_close_event,
3162 .check_event = efi_check_event,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01003163 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01003164 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01003165 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01003166 .handle_protocol = efi_handle_protocol,
3167 .reserved = NULL,
3168 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02003169 .locate_handle = efi_locate_handle_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003170 .locate_device_path = efi_locate_device_path,
Alexander Grafc5c11632016-08-19 01:23:24 +02003171 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003172 .load_image = efi_load_image,
3173 .start_image = efi_start_image,
Alexander Graf988c0662016-05-20 23:28:23 +02003174 .exit = efi_exit,
Alexander Grafc15d9212016-03-04 01:09:59 +01003175 .unload_image = efi_unload_image,
3176 .exit_boot_services = efi_exit_boot_services,
3177 .get_next_monotonic_count = efi_get_next_monotonic_count,
3178 .stall = efi_stall,
3179 .set_watchdog_timer = efi_set_watchdog_timer,
3180 .connect_controller = efi_connect_controller,
3181 .disconnect_controller = efi_disconnect_controller,
3182 .open_protocol = efi_open_protocol,
3183 .close_protocol = efi_close_protocol,
3184 .open_protocol_information = efi_open_protocol_information,
3185 .protocols_per_handle = efi_protocols_per_handle,
3186 .locate_handle_buffer = efi_locate_handle_buffer,
3187 .locate_protocol = efi_locate_protocol,
Heinrich Schuchardt91064592018-02-18 15:17:49 +01003188 .install_multiple_protocol_interfaces =
3189 efi_install_multiple_protocol_interfaces,
3190 .uninstall_multiple_protocol_interfaces =
3191 efi_uninstall_multiple_protocol_interfaces,
Alexander Grafc15d9212016-03-04 01:09:59 +01003192 .calculate_crc32 = efi_calculate_crc32,
3193 .copy_mem = efi_copy_mem,
3194 .set_mem = efi_set_mem,
Heinrich Schuchardt717c4582018-02-04 23:05:13 +01003195 .create_event_ex = efi_create_event_ex,
Alexander Grafc15d9212016-03-04 01:09:59 +01003196};
3197
Heinrich Schuchardt27685f72018-06-28 12:45:30 +02003198static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
Alexander Grafc15d9212016-03-04 01:09:59 +01003199
Alexander Graf393dd912016-10-14 13:45:30 +02003200struct efi_system_table __efi_runtime_data systab = {
Alexander Grafc15d9212016-03-04 01:09:59 +01003201 .hdr = {
3202 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +02003203 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +02003204 .headersize = sizeof(struct efi_system_table),
Alexander Grafc15d9212016-03-04 01:09:59 +01003205 },
Heinrich Schuchardt27685f72018-06-28 12:45:30 +02003206 .fw_vendor = firmware_vendor,
3207 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
Heinrich Schuchardt91064592018-02-18 15:17:49 +01003208 .con_in = (void *)&efi_con_in,
3209 .con_out = (void *)&efi_con_out,
3210 .std_err = (void *)&efi_con_out,
3211 .runtime = (void *)&efi_runtime_services,
3212 .boottime = (void *)&efi_boot_services,
Alexander Grafc15d9212016-03-04 01:09:59 +01003213 .nr_tables = 0,
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003214 .tables = NULL,
Alexander Grafc15d9212016-03-04 01:09:59 +01003215};
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003216
3217/**
3218 * efi_initialize_system_table() - Initialize system table
3219 *
Heinrich Schuchardt7b4b2a22018-09-03 05:00:43 +02003220 * Return: status code
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003221 */
3222efi_status_t efi_initialize_system_table(void)
3223{
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003224 efi_status_t ret;
3225
3226 /* Allocate configuration table array */
3227 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3228 EFI_MAX_CONFIGURATION_TABLES *
3229 sizeof(struct efi_configuration_table),
3230 (void **)&systab.tables);
3231
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003232 /* Set CRC32 field in table headers */
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003233 efi_update_table_header_crc32(&systab.hdr);
3234 efi_update_table_header_crc32(&efi_runtime_services.hdr);
3235 efi_update_table_header_crc32(&efi_boot_services.hdr);
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003236
3237 return ret;
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003238}