blob: 1a0e09807ac4cb4d5ef27f1c50c0e04d08f39dd4 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafbee91162016-03-04 01:09:59 +01002/*
3 * EFI application boot time services
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Grafbee91162016-03-04 01:09:59 +01006 */
7
Alexander Grafbee91162016-03-04 01:09:59 +01008#include <common.h>
Heinrich Schuchardt7d963322017-10-05 16:14:14 +02009#include <div64.h>
Alexander Grafbee91162016-03-04 01:09:59 +010010#include <efi_loader.h>
Rob Clarkad644e72017-09-13 18:05:37 -040011#include <environment.h>
Alexander Grafbee91162016-03-04 01:09:59 +010012#include <malloc.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090013#include <linux/libfdt_env.h>
Alexander Grafbee91162016-03-04 01:09:59 +010014#include <u-boot/crc.h>
15#include <bootm.h>
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +020016#include <pe.h>
Alexander Grafbee91162016-03-04 01:09:59 +010017#include <watchdog.h>
18
19DECLARE_GLOBAL_DATA_PTR;
20
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +020021/* Task priority level */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +010022static efi_uintn_t efi_tpl = TPL_APPLICATION;
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +020023
Alexander Grafbee91162016-03-04 01:09:59 +010024/* This list contains all the EFI objects our payload has access to */
25LIST_HEAD(efi_obj_list);
26
Heinrich Schuchardt43bce442018-02-18 15:17:50 +010027/* List of all events */
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +010028LIST_HEAD(efi_events);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +010029
Heinrich Schuchardtab15d412019-05-04 17:27:54 +020030/* List of all events registered by RegisterProtocolNotify() */
31LIST_HEAD(efi_register_notify_events);
32
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +010033/* Handle of the currently executing image */
34static efi_handle_t current_image;
35
Alexander Graff31239a2018-11-15 21:23:47 +010036/*
37 * If we're running on nasty systems (32bit ARM booting into non-EFI Linux)
38 * we need to do trickery with caches. Since we don't want to break the EFI
39 * aware boot path, only apply hacks when loading exiting directly (breaking
40 * direct Linux EFI booting along the way - oh well).
41 */
42static bool efi_is_direct_boot = true;
43
Simon Glass65e4c0b2016-09-25 15:27:35 -060044#ifdef CONFIG_ARM
Alexander Grafbee91162016-03-04 01:09:59 +010045/*
46 * The "gd" pointer lives in a register on ARM and AArch64 that we declare
47 * fixed when compiling U-Boot. However, the payload does not know about that
48 * restriction so we need to manually swap its and our view of that register on
49 * EFI callback entry/exit.
50 */
51static volatile void *efi_gd, *app_gd;
Simon Glass65e4c0b2016-09-25 15:27:35 -060052#endif
Alexander Grafbee91162016-03-04 01:09:59 +010053
Heinrich Schuchardt914df752019-02-09 14:10:39 +010054/* 1 if inside U-Boot code, 0 if inside EFI payload code */
55static int entry_count = 1;
Rob Clarkaf65db82017-07-27 08:04:19 -040056static int nesting_level;
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +010057/* GUID of the device tree table */
58const efi_guid_t efi_guid_fdt = EFI_FDT_GUID;
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +010059/* GUID of the EFI_DRIVER_BINDING_PROTOCOL */
60const efi_guid_t efi_guid_driver_binding_protocol =
61 EFI_DRIVER_BINDING_PROTOCOL_GUID;
Rob Clarkc160d2f2017-07-27 08:04:18 -040062
Heinrich Schuchardta3a28f52018-02-18 15:17:51 +010063/* event group ExitBootServices() invoked */
64const efi_guid_t efi_guid_event_group_exit_boot_services =
65 EFI_EVENT_GROUP_EXIT_BOOT_SERVICES;
66/* event group SetVirtualAddressMap() invoked */
67const efi_guid_t efi_guid_event_group_virtual_address_change =
68 EFI_EVENT_GROUP_VIRTUAL_ADDRESS_CHANGE;
69/* event group memory map changed */
70const efi_guid_t efi_guid_event_group_memory_map_change =
71 EFI_EVENT_GROUP_MEMORY_MAP_CHANGE;
72/* event group boot manager about to boot */
73const efi_guid_t efi_guid_event_group_ready_to_boot =
74 EFI_EVENT_GROUP_READY_TO_BOOT;
75/* event group ResetSystem() invoked (before ExitBootServices) */
76const efi_guid_t efi_guid_event_group_reset_system =
77 EFI_EVENT_GROUP_RESET_SYSTEM;
78
Heinrich Schuchardt2074f702018-01-11 08:16:09 +010079static efi_status_t EFIAPI efi_disconnect_controller(
80 efi_handle_t controller_handle,
81 efi_handle_t driver_image_handle,
82 efi_handle_t child_handle);
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +010083
Rob Clarkc160d2f2017-07-27 08:04:18 -040084/* Called on every callback entry */
85int __efi_entry_check(void)
86{
87 int ret = entry_count++ == 0;
88#ifdef CONFIG_ARM
89 assert(efi_gd);
90 app_gd = gd;
91 gd = efi_gd;
92#endif
93 return ret;
94}
95
96/* Called on every callback exit */
97int __efi_exit_check(void)
98{
99 int ret = --entry_count == 0;
100#ifdef CONFIG_ARM
101 gd = app_gd;
102#endif
103 return ret;
104}
105
Alexander Grafbee91162016-03-04 01:09:59 +0100106/* Called from do_bootefi_exec() */
107void efi_save_gd(void)
108{
Simon Glass65e4c0b2016-09-25 15:27:35 -0600109#ifdef CONFIG_ARM
Alexander Grafbee91162016-03-04 01:09:59 +0100110 efi_gd = gd;
Simon Glass65e4c0b2016-09-25 15:27:35 -0600111#endif
Alexander Grafbee91162016-03-04 01:09:59 +0100112}
113
Rob Clarkc160d2f2017-07-27 08:04:18 -0400114/*
Mario Six78a88f72018-07-10 08:40:17 +0200115 * Special case handler for error/abort that just forces things back to u-boot
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200116 * world so we can dump out an abort message, without any care about returning
117 * back to UEFI world.
Rob Clarkc160d2f2017-07-27 08:04:18 -0400118 */
Alexander Grafbee91162016-03-04 01:09:59 +0100119void efi_restore_gd(void)
120{
Simon Glass65e4c0b2016-09-25 15:27:35 -0600121#ifdef CONFIG_ARM
Alexander Grafbee91162016-03-04 01:09:59 +0100122 /* Only restore if we're already in EFI context */
123 if (!efi_gd)
124 return;
Alexander Grafbee91162016-03-04 01:09:59 +0100125 gd = efi_gd;
Simon Glass65e4c0b2016-09-25 15:27:35 -0600126#endif
Alexander Grafbee91162016-03-04 01:09:59 +0100127}
128
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200129/**
Mario Six78a88f72018-07-10 08:40:17 +0200130 * indent_string() - returns a string for indenting with two spaces per level
131 * @level: indent level
Heinrich Schuchardtc8df80c2018-01-24 19:21:36 +0100132 *
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200133 * A maximum of ten indent levels is supported. Higher indent levels will be
134 * truncated.
135 *
Mario Six78a88f72018-07-10 08:40:17 +0200136 * Return: A string for indenting with two spaces per level is
137 * returned.
Rob Clarkaf65db82017-07-27 08:04:19 -0400138 */
139static const char *indent_string(int level)
140{
141 const char *indent = " ";
142 const int max = strlen(indent);
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +0100143
Rob Clarkaf65db82017-07-27 08:04:19 -0400144 level = min(max, level * 2);
145 return &indent[max - level];
146}
147
Heinrich Schuchardtae0bd3a2017-08-18 17:45:16 +0200148const char *__efi_nesting(void)
149{
150 return indent_string(nesting_level);
151}
152
Rob Clarkaf65db82017-07-27 08:04:19 -0400153const char *__efi_nesting_inc(void)
154{
155 return indent_string(nesting_level++);
156}
157
158const char *__efi_nesting_dec(void)
159{
160 return indent_string(--nesting_level);
161}
162
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200163/**
Mario Six78a88f72018-07-10 08:40:17 +0200164 * efi_queue_event() - queue an EFI event
165 * @event: event to signal
166 * @check_tpl: check the TPL level
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200167 *
168 * This function queues the notification function of the event for future
169 * execution.
170 *
Mario Six78a88f72018-07-10 08:40:17 +0200171 * The notification function is called if the task priority level of the event
172 * is higher than the current task priority level.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200173 *
174 * For the SignalEvent service see efi_signal_event_ext.
175 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200176 */
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100177static void efi_queue_event(struct efi_event *event, bool check_tpl)
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200178{
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200179 if (event->notify_function) {
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200180 event->is_queued = true;
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200181 /* Check TPL */
Heinrich Schuchardt9bc96642018-01-19 20:24:51 +0100182 if (check_tpl && efi_tpl >= event->notify_tpl)
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200183 return;
Heinrich Schuchardt3b985112019-05-11 21:44:59 +0200184 event->is_queued = false;
Heinrich Schuchardtea630ce2017-09-15 10:06:10 +0200185 EFI_CALL_VOID(event->notify_function(event,
186 event->notify_context));
Heinrich Schuchardt3b985112019-05-11 21:44:59 +0200187 } else {
188 event->is_queued = false;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200189 }
190}
191
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200192/**
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200193 * is_valid_tpl() - check if the task priority level is valid
194 *
195 * @tpl: TPL level to check
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200196 * Return: status code
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200197 */
198efi_status_t is_valid_tpl(efi_uintn_t tpl)
199{
200 switch (tpl) {
201 case TPL_APPLICATION:
202 case TPL_CALLBACK:
203 case TPL_NOTIFY:
204 case TPL_HIGH_LEVEL:
205 return EFI_SUCCESS;
206 default:
207 return EFI_INVALID_PARAMETER;
208 }
209}
210
211/**
Mario Six78a88f72018-07-10 08:40:17 +0200212 * efi_signal_event() - signal an EFI event
213 * @event: event to signal
214 * @check_tpl: check the TPL level
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100215 *
Mario Six78a88f72018-07-10 08:40:17 +0200216 * This function signals an event. If the event belongs to an event group all
217 * events of the group are signaled. If they are of type EVT_NOTIFY_SIGNAL
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100218 * their notification function is queued.
219 *
220 * For the SignalEvent service see efi_signal_event_ext.
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100221 */
222void efi_signal_event(struct efi_event *event, bool check_tpl)
223{
224 if (event->group) {
225 struct efi_event *evt;
226
227 /*
228 * The signaled state has to set before executing any
229 * notification function
230 */
231 list_for_each_entry(evt, &efi_events, link) {
232 if (!evt->group || guidcmp(evt->group, event->group))
233 continue;
234 if (evt->is_signaled)
235 continue;
236 evt->is_signaled = true;
237 if (evt->type & EVT_NOTIFY_SIGNAL &&
238 evt->notify_function)
239 evt->is_queued = true;
240 }
241 list_for_each_entry(evt, &efi_events, link) {
242 if (!evt->group || guidcmp(evt->group, event->group))
243 continue;
244 if (evt->is_queued)
245 efi_queue_event(evt, check_tpl);
246 }
Heinrich Schuchardt3626e532019-05-05 00:07:34 +0200247 } else {
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100248 event->is_signaled = true;
249 if (event->type & EVT_NOTIFY_SIGNAL)
250 efi_queue_event(event, check_tpl);
251 }
252}
253
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200254/**
Mario Six78a88f72018-07-10 08:40:17 +0200255 * efi_raise_tpl() - raise the task priority level
256 * @new_tpl: new value of the task priority level
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200257 *
258 * This function implements the RaiseTpl service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200259 *
Mario Six78a88f72018-07-10 08:40:17 +0200260 * See the Unified Extensible Firmware Interface (UEFI) specification for
261 * details.
262 *
263 * Return: old value of the task priority level
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200264 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100265static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
Alexander Grafbee91162016-03-04 01:09:59 +0100266{
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100267 efi_uintn_t old_tpl = efi_tpl;
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200268
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200269 EFI_ENTRY("0x%zx", new_tpl);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200270
271 if (new_tpl < efi_tpl)
Heinrich Schuchardt529886a2019-05-05 11:56:23 +0200272 EFI_PRINT("WARNING: new_tpl < current_tpl in %s\n", __func__);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200273 efi_tpl = new_tpl;
274 if (efi_tpl > TPL_HIGH_LEVEL)
275 efi_tpl = TPL_HIGH_LEVEL;
276
277 EFI_EXIT(EFI_SUCCESS);
278 return old_tpl;
Alexander Grafbee91162016-03-04 01:09:59 +0100279}
280
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200281/**
Mario Six78a88f72018-07-10 08:40:17 +0200282 * efi_restore_tpl() - lower the task priority level
283 * @old_tpl: value of the task priority level to be restored
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200284 *
285 * This function implements the RestoreTpl service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200286 *
Mario Six78a88f72018-07-10 08:40:17 +0200287 * See the Unified Extensible Firmware Interface (UEFI) specification for
288 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200289 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100290static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
Alexander Grafbee91162016-03-04 01:09:59 +0100291{
xypron.glpk@gmx.de503f2692017-07-18 20:17:19 +0200292 EFI_ENTRY("0x%zx", old_tpl);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200293
294 if (old_tpl > efi_tpl)
Heinrich Schuchardt529886a2019-05-05 11:56:23 +0200295 EFI_PRINT("WARNING: old_tpl > current_tpl in %s\n", __func__);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200296 efi_tpl = old_tpl;
297 if (efi_tpl > TPL_HIGH_LEVEL)
298 efi_tpl = TPL_HIGH_LEVEL;
299
Heinrich Schuchardt0f7fcc72018-03-24 18:40:21 +0100300 /*
301 * Lowering the TPL may have made queued events eligible for execution.
302 */
303 efi_timer_check();
304
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200305 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +0100306}
307
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200308/**
Mario Six78a88f72018-07-10 08:40:17 +0200309 * efi_allocate_pages_ext() - allocate memory pages
310 * @type: type of allocation to be performed
311 * @memory_type: usage type of the allocated memory
312 * @pages: number of pages to be allocated
313 * @memory: allocated memory
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200314 *
315 * This function implements the AllocatePages service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200316 *
Mario Six78a88f72018-07-10 08:40:17 +0200317 * See the Unified Extensible Firmware Interface (UEFI) specification for
318 * details.
319 *
320 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200321 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900322static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100323 efi_uintn_t pages,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900324 uint64_t *memory)
Alexander Grafbee91162016-03-04 01:09:59 +0100325{
326 efi_status_t r;
327
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100328 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
Alexander Grafbee91162016-03-04 01:09:59 +0100329 r = efi_allocate_pages(type, memory_type, pages, memory);
330 return EFI_EXIT(r);
331}
332
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200333/**
Mario Six78a88f72018-07-10 08:40:17 +0200334 * efi_free_pages_ext() - Free memory pages.
335 * @memory: start of the memory area to be freed
336 * @pages: number of pages to be freed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200337 *
338 * This function implements the FreePages service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200339 *
Mario Six78a88f72018-07-10 08:40:17 +0200340 * See the Unified Extensible Firmware Interface (UEFI) specification for
341 * details.
342 *
343 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200344 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900345static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100346 efi_uintn_t pages)
Alexander Grafbee91162016-03-04 01:09:59 +0100347{
348 efi_status_t r;
349
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900350 EFI_ENTRY("%llx, 0x%zx", memory, pages);
Alexander Grafbee91162016-03-04 01:09:59 +0100351 r = efi_free_pages(memory, pages);
352 return EFI_EXIT(r);
353}
354
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200355/**
Mario Six78a88f72018-07-10 08:40:17 +0200356 * efi_get_memory_map_ext() - get map describing memory usage
357 * @memory_map_size: on entry the size, in bytes, of the memory map buffer,
358 * on exit the size of the copied memory map
359 * @memory_map: buffer to which the memory map is written
360 * @map_key: key for the memory map
361 * @descriptor_size: size of an individual memory descriptor
362 * @descriptor_version: version number of the memory descriptor structure
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200363 *
364 * This function implements the GetMemoryMap service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200365 *
Mario Six78a88f72018-07-10 08:40:17 +0200366 * See the Unified Extensible Firmware Interface (UEFI) specification for
367 * details.
368 *
369 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200370 */
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900371static efi_status_t EFIAPI efi_get_memory_map_ext(
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100372 efi_uintn_t *memory_map_size,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900373 struct efi_mem_desc *memory_map,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100374 efi_uintn_t *map_key,
375 efi_uintn_t *descriptor_size,
Masahiro Yamada6e0bf8d2017-06-22 17:49:03 +0900376 uint32_t *descriptor_version)
Alexander Grafbee91162016-03-04 01:09:59 +0100377{
378 efi_status_t r;
379
380 EFI_ENTRY("%p, %p, %p, %p, %p", memory_map_size, memory_map,
381 map_key, descriptor_size, descriptor_version);
382 r = efi_get_memory_map(memory_map_size, memory_map, map_key,
383 descriptor_size, descriptor_version);
384 return EFI_EXIT(r);
385}
386
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200387/**
Mario Six78a88f72018-07-10 08:40:17 +0200388 * efi_allocate_pool_ext() - allocate memory from pool
389 * @pool_type: type of the pool from which memory is to be allocated
390 * @size: number of bytes to be allocated
391 * @buffer: allocated memory
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200392 *
393 * This function implements the AllocatePool service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200394 *
Mario Six78a88f72018-07-10 08:40:17 +0200395 * See the Unified Extensible Firmware Interface (UEFI) specification for
396 * details.
397 *
398 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200399 */
Stefan Brünsead12742016-10-09 22:17:18 +0200400static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100401 efi_uintn_t size,
Stefan Brünsead12742016-10-09 22:17:18 +0200402 void **buffer)
Alexander Grafbee91162016-03-04 01:09:59 +0100403{
Alexander Graf1cd29f02016-03-24 01:37:37 +0100404 efi_status_t r;
405
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100406 EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
Stefan Brünsead12742016-10-09 22:17:18 +0200407 r = efi_allocate_pool(pool_type, size, buffer);
Alexander Graf1cd29f02016-03-24 01:37:37 +0100408 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +0100409}
410
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200411/**
Mario Six78a88f72018-07-10 08:40:17 +0200412 * efi_free_pool_ext() - free memory from pool
413 * @buffer: start of memory to be freed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200414 *
415 * This function implements the FreePool service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200416 *
Mario Six78a88f72018-07-10 08:40:17 +0200417 * See the Unified Extensible Firmware Interface (UEFI) specification for
418 * details.
419 *
420 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200421 */
Stefan Brüns42417bc2016-10-09 22:17:26 +0200422static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
Alexander Grafbee91162016-03-04 01:09:59 +0100423{
Alexander Graf1cd29f02016-03-24 01:37:37 +0100424 efi_status_t r;
425
426 EFI_ENTRY("%p", buffer);
Stefan Brüns42417bc2016-10-09 22:17:26 +0200427 r = efi_free_pool(buffer);
Alexander Graf1cd29f02016-03-24 01:37:37 +0100428 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +0100429}
430
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200431/**
Heinrich Schuchardte6023be2019-05-01 09:42:39 +0200432 * efi_add_handle() - add a new handle to the object list
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100433 *
Heinrich Schuchardte6023be2019-05-01 09:42:39 +0200434 * @handle: handle to be added
435 *
436 * The protocols list is initialized. The handle is added to the list of known
437 * UEFI objects.
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100438 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200439void efi_add_handle(efi_handle_t handle)
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100440{
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200441 if (!handle)
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100442 return;
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200443 INIT_LIST_HEAD(&handle->protocols);
444 list_add_tail(&handle->link, &efi_obj_list);
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100445}
446
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200447/**
Mario Six78a88f72018-07-10 08:40:17 +0200448 * efi_create_handle() - create handle
449 * @handle: new handle
Heinrich Schuchardt2edab5e2017-10-26 19:25:49 +0200450 *
Mario Six78a88f72018-07-10 08:40:17 +0200451 * Return: status code
Heinrich Schuchardt2edab5e2017-10-26 19:25:49 +0200452 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100453efi_status_t efi_create_handle(efi_handle_t *handle)
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200454{
455 struct efi_object *obj;
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200456
Heinrich Schuchardtd29e7822018-05-27 16:47:21 +0200457 obj = calloc(1, sizeof(struct efi_object));
458 if (!obj)
459 return EFI_OUT_OF_RESOURCES;
460
Heinrich Schuchardt44549d62017-11-26 14:05:23 +0100461 efi_add_handle(obj);
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200462 *handle = obj;
Heinrich Schuchardtd29e7822018-05-27 16:47:21 +0200463
464 return EFI_SUCCESS;
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +0200465}
466
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200467/**
Mario Six78a88f72018-07-10 08:40:17 +0200468 * efi_search_protocol() - find a protocol on a handle.
469 * @handle: handle
470 * @protocol_guid: GUID of the protocol
471 * @handler: reference to the protocol
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100472 *
Mario Six78a88f72018-07-10 08:40:17 +0200473 * Return: status code
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100474 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100475efi_status_t efi_search_protocol(const efi_handle_t handle,
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100476 const efi_guid_t *protocol_guid,
477 struct efi_handler **handler)
478{
479 struct efi_object *efiobj;
480 struct list_head *lhandle;
481
482 if (!handle || !protocol_guid)
483 return EFI_INVALID_PARAMETER;
484 efiobj = efi_search_obj(handle);
485 if (!efiobj)
486 return EFI_INVALID_PARAMETER;
487 list_for_each(lhandle, &efiobj->protocols) {
488 struct efi_handler *protocol;
489
490 protocol = list_entry(lhandle, struct efi_handler, link);
491 if (!guidcmp(protocol->guid, protocol_guid)) {
492 if (handler)
493 *handler = protocol;
494 return EFI_SUCCESS;
495 }
496 }
497 return EFI_NOT_FOUND;
498}
499
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200500/**
Mario Six78a88f72018-07-10 08:40:17 +0200501 * efi_remove_protocol() - delete protocol from a handle
502 * @handle: handle from which the protocol shall be deleted
503 * @protocol: GUID of the protocol to be deleted
504 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100505 *
Mario Six78a88f72018-07-10 08:40:17 +0200506 * Return: status code
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100507 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100508efi_status_t efi_remove_protocol(const efi_handle_t handle,
509 const efi_guid_t *protocol,
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100510 void *protocol_interface)
511{
512 struct efi_handler *handler;
513 efi_status_t ret;
514
515 ret = efi_search_protocol(handle, protocol, &handler);
516 if (ret != EFI_SUCCESS)
517 return ret;
Heinrich Schuchardt1f470e12018-05-11 12:09:21 +0200518 if (handler->protocol_interface != protocol_interface)
Heinrich Schuchardt96aa99c2019-05-10 20:06:48 +0200519 return EFI_NOT_FOUND;
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100520 list_del(&handler->link);
521 free(handler);
522 return EFI_SUCCESS;
523}
524
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200525/**
Mario Six78a88f72018-07-10 08:40:17 +0200526 * efi_remove_all_protocols() - delete all protocols from a handle
527 * @handle: handle from which the protocols shall be deleted
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100528 *
Mario Six78a88f72018-07-10 08:40:17 +0200529 * Return: status code
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100530 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100531efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100532{
533 struct efi_object *efiobj;
Heinrich Schuchardt32e6fed2018-01-11 08:15:55 +0100534 struct efi_handler *protocol;
535 struct efi_handler *pos;
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100536
537 efiobj = efi_search_obj(handle);
538 if (!efiobj)
539 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt32e6fed2018-01-11 08:15:55 +0100540 list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100541 efi_status_t ret;
542
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100543 ret = efi_remove_protocol(handle, protocol->guid,
544 protocol->protocol_interface);
545 if (ret != EFI_SUCCESS)
546 return ret;
547 }
548 return EFI_SUCCESS;
549}
550
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200551/**
Mario Six78a88f72018-07-10 08:40:17 +0200552 * efi_delete_handle() - delete handle
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100553 *
Mario Six78a88f72018-07-10 08:40:17 +0200554 * @obj: handle to delete
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100555 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200556void efi_delete_handle(efi_handle_t handle)
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100557{
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200558 if (!handle)
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100559 return;
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200560 efi_remove_all_protocols(handle);
561 list_del(&handle->link);
562 free(handle);
Heinrich Schuchardt678e03a2017-12-04 18:03:02 +0100563}
564
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200565/**
Mario Six78a88f72018-07-10 08:40:17 +0200566 * efi_is_event() - check if a pointer is a valid event
567 * @event: pointer to check
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100568 *
Mario Six78a88f72018-07-10 08:40:17 +0200569 * Return: status code
Alexander Grafbee91162016-03-04 01:09:59 +0100570 */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100571static efi_status_t efi_is_event(const struct efi_event *event)
572{
573 const struct efi_event *evt;
574
575 if (!event)
576 return EFI_INVALID_PARAMETER;
577 list_for_each_entry(evt, &efi_events, link) {
578 if (evt == event)
579 return EFI_SUCCESS;
580 }
581 return EFI_INVALID_PARAMETER;
582}
Alexander Grafbee91162016-03-04 01:09:59 +0100583
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200584/**
Mario Six78a88f72018-07-10 08:40:17 +0200585 * efi_create_event() - create an event
586 * @type: type of the event to create
587 * @notify_tpl: task priority level of the event
588 * @notify_function: notification function of the event
589 * @notify_context: pointer passed to the notification function
590 * @group: event group
591 * @event: created event
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200592 *
593 * This function is used inside U-Boot code to create an event.
594 *
595 * For the API function implementing the CreateEvent service see
596 * efi_create_event_ext.
597 *
Mario Six78a88f72018-07-10 08:40:17 +0200598 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200599 */
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100600efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200601 void (EFIAPI *notify_function) (
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200602 struct efi_event *event,
603 void *context),
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100604 void *notify_context, efi_guid_t *group,
605 struct efi_event **event)
Alexander Grafbee91162016-03-04 01:09:59 +0100606{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100607 struct efi_event *evt;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200608
Jonathan Graya95343b2017-03-12 19:26:07 +1100609 if (event == NULL)
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200610 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100611
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200612 switch (type) {
613 case 0:
614 case EVT_TIMER:
615 case EVT_NOTIFY_SIGNAL:
616 case EVT_TIMER | EVT_NOTIFY_SIGNAL:
617 case EVT_NOTIFY_WAIT:
618 case EVT_TIMER | EVT_NOTIFY_WAIT:
619 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
620 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
621 break;
622 default:
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200623 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt21b3edf2018-07-02 12:53:52 +0200624 }
Jonathan Graya95343b2017-03-12 19:26:07 +1100625
AKASHI Takahiro3748ed92018-08-10 15:36:32 +0900626 if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) &&
Heinrich Schuchardt751e9282019-04-25 07:30:41 +0200627 (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS))
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200628 return EFI_INVALID_PARAMETER;
Jonathan Graya95343b2017-03-12 19:26:07 +1100629
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100630 evt = calloc(1, sizeof(struct efi_event));
631 if (!evt)
632 return EFI_OUT_OF_RESOURCES;
633 evt->type = type;
634 evt->notify_tpl = notify_tpl;
635 evt->notify_function = notify_function;
636 evt->notify_context = notify_context;
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100637 evt->group = group;
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200638 /* Disable timers on boot up */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100639 evt->trigger_next = -1ULL;
640 evt->is_queued = false;
641 evt->is_signaled = false;
642 list_add_tail(&evt->link, &efi_events);
643 *event = evt;
644 return EFI_SUCCESS;
Alexander Grafbee91162016-03-04 01:09:59 +0100645}
646
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200647/*
Mario Six78a88f72018-07-10 08:40:17 +0200648 * efi_create_event_ex() - create an event in a group
649 * @type: type of the event to create
650 * @notify_tpl: task priority level of the event
651 * @notify_function: notification function of the event
652 * @notify_context: pointer passed to the notification function
653 * @event: created event
654 * @event_group: event group
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100655 *
656 * This function implements the CreateEventEx service.
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100657 *
Mario Six78a88f72018-07-10 08:40:17 +0200658 * See the Unified Extensible Firmware Interface (UEFI) specification for
659 * details.
660 *
661 * Return: status code
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100662 */
663efi_status_t EFIAPI efi_create_event_ex(uint32_t type, efi_uintn_t notify_tpl,
664 void (EFIAPI *notify_function) (
665 struct efi_event *event,
666 void *context),
667 void *notify_context,
668 efi_guid_t *event_group,
669 struct efi_event **event)
670{
Heinrich Schuchardt18845122019-05-04 10:12:50 +0200671 efi_status_t ret;
672
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100673 EFI_ENTRY("%d, 0x%zx, %p, %p, %pUl", type, notify_tpl, notify_function,
674 notify_context, event_group);
Heinrich Schuchardt18845122019-05-04 10:12:50 +0200675
676 /*
677 * The allowable input parameters are the same as in CreateEvent()
678 * except for the following two disallowed event types.
679 */
680 switch (type) {
681 case EVT_SIGNAL_EXIT_BOOT_SERVICES:
682 case EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE:
683 ret = EFI_INVALID_PARAMETER;
684 goto out;
685 }
686
687 ret = efi_create_event(type, notify_tpl, notify_function,
688 notify_context, event_group, event);
689out:
690 return EFI_EXIT(ret);
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +0100691}
692
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200693/**
Mario Six78a88f72018-07-10 08:40:17 +0200694 * efi_create_event_ext() - create an event
695 * @type: type of the event to create
696 * @notify_tpl: task priority level of the event
697 * @notify_function: notification function of the event
698 * @notify_context: pointer passed to the notification function
699 * @event: created event
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200700 *
701 * This function implements the CreateEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200702 *
Mario Six78a88f72018-07-10 08:40:17 +0200703 * See the Unified Extensible Firmware Interface (UEFI) specification for
704 * details.
705 *
706 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200707 */
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200708static efi_status_t EFIAPI efi_create_event_ext(
Heinrich Schuchardt152cade2017-11-06 21:17:47 +0100709 uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200710 void (EFIAPI *notify_function) (
711 struct efi_event *event,
712 void *context),
713 void *notify_context, struct efi_event **event)
714{
715 EFI_ENTRY("%d, 0x%zx, %p, %p", type, notify_tpl, notify_function,
716 notify_context);
717 return EFI_EXIT(efi_create_event(type, notify_tpl, notify_function,
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100718 notify_context, NULL, event));
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +0200719}
720
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200721/**
Mario Six78a88f72018-07-10 08:40:17 +0200722 * efi_timer_check() - check if a timer event has occurred
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200723 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200724 * Check if a timer event has occurred or a queued notification function should
725 * be called.
726 *
Alexander Grafbee91162016-03-04 01:09:59 +0100727 * Our timers have to work without interrupts, so we check whenever keyboard
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200728 * input or disk accesses happen if enough time elapsed for them to fire.
Alexander Grafbee91162016-03-04 01:09:59 +0100729 */
730void efi_timer_check(void)
731{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100732 struct efi_event *evt;
Alexander Grafbee91162016-03-04 01:09:59 +0100733 u64 now = timer_get_us();
734
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100735 list_for_each_entry(evt, &efi_events, link) {
736 if (evt->is_queued)
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100737 efi_queue_event(evt, true);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100738 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next)
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200739 continue;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100740 switch (evt->trigger_type) {
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200741 case EFI_TIMER_RELATIVE:
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100742 evt->trigger_type = EFI_TIMER_STOP;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200743 break;
744 case EFI_TIMER_PERIODIC:
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100745 evt->trigger_next += evt->trigger_time;
Heinrich Schuchardtca62a4f2017-09-15 10:06:13 +0200746 break;
747 default:
748 continue;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200749 }
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100750 evt->is_signaled = false;
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100751 efi_signal_event(evt, true);
Alexander Grafbee91162016-03-04 01:09:59 +0100752 }
Alexander Grafbee91162016-03-04 01:09:59 +0100753 WATCHDOG_RESET();
754}
755
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200756/**
Mario Six78a88f72018-07-10 08:40:17 +0200757 * efi_set_timer() - set the trigger time for a timer event or stop the event
758 * @event: event for which the timer is set
759 * @type: type of the timer
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200760 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200761 *
762 * This is the function for internal usage in U-Boot. For the API function
763 * implementing the SetTimer service see efi_set_timer_ext.
764 *
Mario Six78a88f72018-07-10 08:40:17 +0200765 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200766 */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200767efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200768 uint64_t trigger_time)
Alexander Grafbee91162016-03-04 01:09:59 +0100769{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100770 /* Check that the event is valid */
771 if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER))
772 return EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +0100773
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200774 /*
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200775 * The parameter defines a multiple of 100 ns.
776 * We use multiples of 1000 ns. So divide by 10.
xypron.glpk@gmx.de8787b022017-07-18 20:17:23 +0200777 */
Heinrich Schuchardt7d963322017-10-05 16:14:14 +0200778 do_div(trigger_time, 10);
Alexander Grafbee91162016-03-04 01:09:59 +0100779
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100780 switch (type) {
781 case EFI_TIMER_STOP:
782 event->trigger_next = -1ULL;
783 break;
784 case EFI_TIMER_PERIODIC:
785 case EFI_TIMER_RELATIVE:
786 event->trigger_next = timer_get_us() + trigger_time;
787 break;
788 default:
789 return EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +0100790 }
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100791 event->trigger_type = type;
792 event->trigger_time = trigger_time;
793 event->is_signaled = false;
794 return EFI_SUCCESS;
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200795}
796
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200797/**
Mario Six78a88f72018-07-10 08:40:17 +0200798 * efi_set_timer_ext() - Set the trigger time for a timer event or stop the
799 * event
800 * @event: event for which the timer is set
801 * @type: type of the timer
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +0200802 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200803 *
804 * This function implements the SetTimer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200805 *
Mario Six78a88f72018-07-10 08:40:17 +0200806 * See the Unified Extensible Firmware Interface (UEFI) specification for
807 * details.
808 *
809 *
810 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200811 */
xypron.glpk@gmx.deb521d292017-07-19 19:22:34 +0200812static efi_status_t EFIAPI efi_set_timer_ext(struct efi_event *event,
813 enum efi_timer_delay type,
814 uint64_t trigger_time)
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200815{
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900816 EFI_ENTRY("%p, %d, %llx", event, type, trigger_time);
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +0200817 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
Alexander Grafbee91162016-03-04 01:09:59 +0100818}
819
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200820/**
Mario Six78a88f72018-07-10 08:40:17 +0200821 * efi_wait_for_event() - wait for events to be signaled
822 * @num_events: number of events to be waited for
823 * @event: events to be waited for
824 * @index: index of the event that was signaled
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200825 *
826 * This function implements the WaitForEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200827 *
Mario Six78a88f72018-07-10 08:40:17 +0200828 * See the Unified Extensible Firmware Interface (UEFI) specification for
829 * details.
830 *
831 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200832 */
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100833static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200834 struct efi_event **event,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100835 efi_uintn_t *index)
Alexander Grafbee91162016-03-04 01:09:59 +0100836{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100837 int i;
Alexander Grafbee91162016-03-04 01:09:59 +0100838
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +0100839 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
Alexander Grafbee91162016-03-04 01:09:59 +0100840
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200841 /* Check parameters */
842 if (!num_events || !event)
843 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt32f4b2f2017-09-15 10:06:16 +0200844 /* Check TPL */
845 if (efi_tpl != TPL_APPLICATION)
846 return EFI_EXIT(EFI_UNSUPPORTED);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200847 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100848 if (efi_is_event(event[i]) != EFI_SUCCESS)
849 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200850 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
851 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200852 if (!event[i]->is_signaled)
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100853 efi_queue_event(event[i], true);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200854 }
855
856 /* Wait for signal */
857 for (;;) {
858 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200859 if (event[i]->is_signaled)
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200860 goto out;
861 }
862 /* Allow events to occur. */
863 efi_timer_check();
864 }
865
866out:
867 /*
868 * Reset the signal which is passed to the caller to allow periodic
869 * events to occur.
870 */
Heinrich Schuchardte190e892017-10-04 15:03:24 +0200871 event[i]->is_signaled = false;
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200872 if (index)
873 *index = i;
Alexander Grafbee91162016-03-04 01:09:59 +0100874
875 return EFI_EXIT(EFI_SUCCESS);
876}
877
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200878/**
Mario Six78a88f72018-07-10 08:40:17 +0200879 * efi_signal_event_ext() - signal an EFI event
880 * @event: event to signal
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200881 *
882 * This function implements the SignalEvent service.
Mario Six78a88f72018-07-10 08:40:17 +0200883 *
884 * See the Unified Extensible Firmware Interface (UEFI) specification for
885 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200886 *
887 * This functions sets the signaled state of the event and queues the
888 * notification function for execution.
889 *
Mario Six78a88f72018-07-10 08:40:17 +0200890 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200891 */
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200892static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100893{
894 EFI_ENTRY("%p", event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100895 if (efi_is_event(event) != EFI_SUCCESS)
896 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100897 efi_signal_event(event, true);
Alexander Grafbee91162016-03-04 01:09:59 +0100898 return EFI_EXIT(EFI_SUCCESS);
899}
900
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200901/**
Mario Six78a88f72018-07-10 08:40:17 +0200902 * efi_close_event() - close an EFI event
903 * @event: event to close
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200904 *
905 * This function implements the CloseEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200906 *
Mario Six78a88f72018-07-10 08:40:17 +0200907 * See the Unified Extensible Firmware Interface (UEFI) specification for
908 * details.
909 *
910 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200911 */
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200912static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100913{
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200914 struct efi_register_notify_event *item, *next;
915
Alexander Grafbee91162016-03-04 01:09:59 +0100916 EFI_ENTRY("%p", event);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100917 if (efi_is_event(event) != EFI_SUCCESS)
918 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200919
920 /* Remove protocol notify registrations for the event */
921 list_for_each_entry_safe(item, next, &efi_register_notify_events,
922 link) {
923 if (event == item->event) {
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +0200924 struct efi_protocol_notification *hitem, *hnext;
925
926 /* Remove signaled handles */
927 list_for_each_entry_safe(hitem, hnext, &item->handles,
928 link) {
929 list_del(&hitem->link);
930 free(hitem);
931 }
Heinrich Schuchardtab15d412019-05-04 17:27:54 +0200932 list_del(&item->link);
933 free(item);
934 }
935 }
936
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100937 list_del(&event->link);
938 free(event);
939 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +0100940}
941
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200942/**
Mario Six78a88f72018-07-10 08:40:17 +0200943 * efi_check_event() - check if an event is signaled
944 * @event: event to check
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200945 *
946 * This function implements the CheckEvent service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200947 *
Mario Six78a88f72018-07-10 08:40:17 +0200948 * See the Unified Extensible Firmware Interface (UEFI) specification for
949 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200950 *
Mario Six78a88f72018-07-10 08:40:17 +0200951 * If an event is not signaled yet, the notification function is queued. The
952 * signaled state is cleared.
953 *
954 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +0200955 */
xypron.glpk@gmx.de2fd945f2017-07-18 20:17:17 +0200956static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
Alexander Grafbee91162016-03-04 01:09:59 +0100957{
958 EFI_ENTRY("%p", event);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200959 efi_timer_check();
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100960 if (efi_is_event(event) != EFI_SUCCESS ||
961 event->type & EVT_NOTIFY_SIGNAL)
962 return EFI_EXIT(EFI_INVALID_PARAMETER);
963 if (!event->is_signaled)
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +0100964 efi_queue_event(event, true);
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100965 if (event->is_signaled) {
966 event->is_signaled = false;
967 return EFI_EXIT(EFI_SUCCESS);
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +0200968 }
Heinrich Schuchardt43bce442018-02-18 15:17:50 +0100969 return EFI_EXIT(EFI_NOT_READY);
Alexander Grafbee91162016-03-04 01:09:59 +0100970}
971
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200972/**
Mario Six78a88f72018-07-10 08:40:17 +0200973 * efi_search_obj() - find the internal EFI object for a handle
974 * @handle: handle to find
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +0200975 *
Mario Six78a88f72018-07-10 08:40:17 +0200976 * Return: EFI object
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +0200977 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100978struct efi_object *efi_search_obj(const efi_handle_t handle)
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +0200979{
Heinrich Schuchardt1b681532017-11-06 21:17:50 +0100980 struct efi_object *efiobj;
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +0200981
Heinrich Schuchardtec163fa2019-05-05 10:37:51 +0200982 if (!handle)
983 return NULL;
984
Heinrich Schuchardt1b681532017-11-06 21:17:50 +0100985 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardtfae01182018-09-26 05:27:55 +0200986 if (efiobj == handle)
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +0200987 return efiobj;
988 }
Heinrich Schuchardt7b9f8ad2017-10-18 18:13:03 +0200989 return NULL;
990}
991
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +0200992/**
Mario Six78a88f72018-07-10 08:40:17 +0200993 * efi_open_protocol_info_entry() - create open protocol info entry and add it
994 * to a protocol
995 * @handler: handler of a protocol
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +0100996 *
Mario Six78a88f72018-07-10 08:40:17 +0200997 * Return: open protocol info entry
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +0100998 */
999static struct efi_open_protocol_info_entry *efi_create_open_info(
1000 struct efi_handler *handler)
1001{
1002 struct efi_open_protocol_info_item *item;
1003
1004 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
1005 if (!item)
1006 return NULL;
1007 /* Append the item to the open protocol info list. */
1008 list_add_tail(&item->link, &handler->open_infos);
1009
1010 return &item->info;
1011}
1012
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001013/**
Mario Six78a88f72018-07-10 08:40:17 +02001014 * efi_delete_open_info() - remove an open protocol info entry from a protocol
1015 * @item: open protocol info entry to delete
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001016 *
Mario Six78a88f72018-07-10 08:40:17 +02001017 * Return: status code
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001018 */
1019static efi_status_t efi_delete_open_info(
1020 struct efi_open_protocol_info_item *item)
1021{
1022 list_del(&item->link);
1023 free(item);
1024 return EFI_SUCCESS;
1025}
1026
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001027/**
Mario Six78a88f72018-07-10 08:40:17 +02001028 * efi_add_protocol() - install new protocol on a handle
1029 * @handle: handle on which the protocol shall be installed
1030 * @protocol: GUID of the protocol to be installed
1031 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001032 *
Mario Six78a88f72018-07-10 08:40:17 +02001033 * Return: status code
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001034 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01001035efi_status_t efi_add_protocol(const efi_handle_t handle,
1036 const efi_guid_t *protocol,
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001037 void *protocol_interface)
1038{
1039 struct efi_object *efiobj;
1040 struct efi_handler *handler;
1041 efi_status_t ret;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001042 struct efi_register_notify_event *event;
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001043
1044 efiobj = efi_search_obj(handle);
1045 if (!efiobj)
1046 return EFI_INVALID_PARAMETER;
1047 ret = efi_search_protocol(handle, protocol, NULL);
1048 if (ret != EFI_NOT_FOUND)
1049 return EFI_INVALID_PARAMETER;
1050 handler = calloc(1, sizeof(struct efi_handler));
1051 if (!handler)
1052 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001053 handler->guid = protocol;
1054 handler->protocol_interface = protocol_interface;
Heinrich Schuchardtfe1599d2018-01-11 08:15:57 +01001055 INIT_LIST_HEAD(&handler->open_infos);
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001056 list_add_tail(&handler->link, &efiobj->protocols);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001057
1058 /* Notify registered events */
1059 list_for_each_entry(event, &efi_register_notify_events, link) {
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001060 if (!guidcmp(protocol, &event->protocol)) {
1061 struct efi_protocol_notification *notif;
1062
1063 notif = calloc(1, sizeof(*notif));
1064 if (!notif) {
1065 list_del(&handler->link);
1066 free(handler);
1067 return EFI_OUT_OF_RESOURCES;
1068 }
1069 notif->handle = handle;
1070 list_add_tail(&notif->link, &event->handles);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001071 efi_signal_event(event->event, true);
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001072 }
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001073 }
1074
Heinrich Schuchardtd5504142018-01-11 08:16:01 +01001075 if (!guidcmp(&efi_guid_device_path, protocol))
1076 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01001077 return EFI_SUCCESS;
Heinrich Schuchardt3f79a2b2017-10-26 19:25:53 +02001078}
1079
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001080/**
Mario Six78a88f72018-07-10 08:40:17 +02001081 * efi_install_protocol_interface() - install protocol interface
1082 * @handle: handle on which the protocol shall be installed
1083 * @protocol: GUID of the protocol to be installed
1084 * @protocol_interface_type: type of the interface to be installed,
1085 * always EFI_NATIVE_INTERFACE
1086 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001087 *
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001088 * This function implements the InstallProtocolInterface service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001089 *
Mario Six78a88f72018-07-10 08:40:17 +02001090 * See the Unified Extensible Firmware Interface (UEFI) specification for
1091 * details.
1092 *
1093 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001094 */
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001095static efi_status_t EFIAPI efi_install_protocol_interface(
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02001096 efi_handle_t *handle, const efi_guid_t *protocol,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001097 int protocol_interface_type, void *protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01001098{
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001099 efi_status_t r;
1100
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001101 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
1102 protocol_interface);
1103
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001104 if (!handle || !protocol ||
1105 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1106 r = EFI_INVALID_PARAMETER;
1107 goto out;
1108 }
1109
1110 /* Create new handle if requested. */
1111 if (!*handle) {
Heinrich Schuchardt3cc6e3f2017-08-27 00:51:09 +02001112 r = efi_create_handle(handle);
1113 if (r != EFI_SUCCESS)
1114 goto out;
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02001115 EFI_PRINT("new handle %p\n", *handle);
Heinrich Schuchardtaf1408e2017-10-26 19:25:43 +02001116 } else {
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02001117 EFI_PRINT("handle %p\n", *handle);
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001118 }
Heinrich Schuchardt12025302017-10-26 19:25:54 +02001119 /* Add new protocol */
1120 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001121out:
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01001122 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01001123}
xypron.glpk@gmx.dee0549f82017-07-11 22:06:16 +02001124
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001125/**
Mario Six78a88f72018-07-10 08:40:17 +02001126 * efi_get_drivers() - get all drivers associated to a controller
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001127 * @handle: handle of the controller
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001128 * @protocol: protocol GUID (optional)
Mario Six78a88f72018-07-10 08:40:17 +02001129 * @number_of_drivers: number of child controllers
1130 * @driver_handle_buffer: handles of the the drivers
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001131 *
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001132 * The allocated buffer has to be freed with free().
1133 *
Mario Six78a88f72018-07-10 08:40:17 +02001134 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001135 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001136static efi_status_t efi_get_drivers(efi_handle_t handle,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001137 const efi_guid_t *protocol,
1138 efi_uintn_t *number_of_drivers,
1139 efi_handle_t **driver_handle_buffer)
1140{
1141 struct efi_handler *handler;
1142 struct efi_open_protocol_info_item *item;
1143 efi_uintn_t count = 0, i;
1144 bool duplicate;
1145
1146 /* Count all driver associations */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001147 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001148 if (protocol && guidcmp(handler->guid, protocol))
1149 continue;
1150 list_for_each_entry(item, &handler->open_infos, link) {
1151 if (item->info.attributes &
1152 EFI_OPEN_PROTOCOL_BY_DRIVER)
1153 ++count;
1154 }
1155 }
1156 /*
1157 * Create buffer. In case of duplicate driver assignments the buffer
1158 * will be too large. But that does not harm.
1159 */
1160 *number_of_drivers = 0;
1161 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1162 if (!*driver_handle_buffer)
1163 return EFI_OUT_OF_RESOURCES;
1164 /* Collect unique driver handles */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001165 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001166 if (protocol && guidcmp(handler->guid, protocol))
1167 continue;
1168 list_for_each_entry(item, &handler->open_infos, link) {
1169 if (item->info.attributes &
1170 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1171 /* Check this is a new driver */
1172 duplicate = false;
1173 for (i = 0; i < *number_of_drivers; ++i) {
1174 if ((*driver_handle_buffer)[i] ==
1175 item->info.agent_handle)
1176 duplicate = true;
1177 }
1178 /* Copy handle to buffer */
1179 if (!duplicate) {
1180 i = (*number_of_drivers)++;
1181 (*driver_handle_buffer)[i] =
1182 item->info.agent_handle;
1183 }
1184 }
1185 }
1186 }
1187 return EFI_SUCCESS;
1188}
1189
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001190/**
Mario Six78a88f72018-07-10 08:40:17 +02001191 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001192 * @handle: handle of the controller
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001193 * @protocol: protocol GUID (optional)
Mario Six78a88f72018-07-10 08:40:17 +02001194 * @child_handle: handle of the child to destroy
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001195 *
1196 * This function implements the DisconnectController service.
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001197 *
Mario Six78a88f72018-07-10 08:40:17 +02001198 * See the Unified Extensible Firmware Interface (UEFI) specification for
1199 * details.
1200 *
1201 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001202 */
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001203static efi_status_t efi_disconnect_all_drivers
1204 (efi_handle_t handle,
1205 const efi_guid_t *protocol,
1206 efi_handle_t child_handle)
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001207{
1208 efi_uintn_t number_of_drivers;
1209 efi_handle_t *driver_handle_buffer;
1210 efi_status_t r, ret;
1211
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001212 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001213 &driver_handle_buffer);
1214 if (ret != EFI_SUCCESS)
1215 return ret;
1216
1217 ret = EFI_NOT_FOUND;
1218 while (number_of_drivers) {
1219 r = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001220 handle,
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01001221 driver_handle_buffer[--number_of_drivers],
1222 child_handle));
1223 if (r == EFI_SUCCESS)
1224 ret = r;
1225 }
1226 free(driver_handle_buffer);
1227 return ret;
1228}
1229
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001230/**
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001231 * efi_uninstall_protocol() - uninstall protocol interface
1232 *
Mario Six78a88f72018-07-10 08:40:17 +02001233 * @handle: handle from which the protocol shall be removed
1234 * @protocol: GUID of the protocol to be removed
1235 * @protocol_interface: interface to be removed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001236 *
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001237 * This function DOES NOT delete a handle without installed protocol.
Mario Six78a88f72018-07-10 08:40:17 +02001238 *
1239 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001240 */
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001241static efi_status_t efi_uninstall_protocol
1242 (efi_handle_t handle, const efi_guid_t *protocol,
1243 void *protocol_interface)
Alexander Grafbee91162016-03-04 01:09:59 +01001244{
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001245 struct efi_object *efiobj;
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001246 struct efi_handler *handler;
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001247 struct efi_open_protocol_info_item *item;
1248 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001249 efi_status_t r;
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001250
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001251 /* Check handle */
1252 efiobj = efi_search_obj(handle);
1253 if (!efiobj) {
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001254 r = EFI_INVALID_PARAMETER;
1255 goto out;
1256 }
Heinrich Schuchardt58105112017-10-26 19:25:56 +02001257 /* Find the protocol on the handle */
1258 r = efi_search_protocol(handle, protocol, &handler);
1259 if (r != EFI_SUCCESS)
1260 goto out;
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001261 /* Disconnect controllers */
1262 efi_disconnect_all_drivers(efiobj, protocol, NULL);
Heinrich Schuchardtad973732018-01-11 08:16:05 +01001263 /* Close protocol */
1264 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1265 if (item->info.attributes ==
1266 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1267 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1268 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1269 list_del(&item->link);
1270 }
1271 if (!list_empty(&handler->open_infos)) {
1272 r = EFI_ACCESS_DENIED;
1273 goto out;
1274 }
1275 r = efi_remove_protocol(handle, protocol, protocol_interface);
xypron.glpk@gmx.de4b6ed0d2017-07-11 22:06:17 +02001276out:
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02001277 return r;
1278}
1279
1280/**
1281 * efi_uninstall_protocol_interface() - uninstall protocol interface
1282 * @handle: handle from which the protocol shall be removed
1283 * @protocol: GUID of the protocol to be removed
1284 * @protocol_interface: interface to be removed
1285 *
1286 * This function implements the UninstallProtocolInterface service.
1287 *
1288 * See the Unified Extensible Firmware Interface (UEFI) specification for
1289 * details.
1290 *
1291 * Return: status code
1292 */
1293static efi_status_t EFIAPI efi_uninstall_protocol_interface
1294 (efi_handle_t handle, const efi_guid_t *protocol,
1295 void *protocol_interface)
1296{
1297 efi_status_t ret;
1298
1299 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1300
1301 ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1302 if (ret != EFI_SUCCESS)
1303 goto out;
1304
1305 /* If the last protocol has been removed, delete the handle. */
1306 if (list_empty(&handle->protocols)) {
1307 list_del(&handle->link);
1308 free(handle);
1309 }
1310out:
1311 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001312}
1313
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001314/**
Mario Six78a88f72018-07-10 08:40:17 +02001315 * efi_register_protocol_notify() - register an event for notification when a
1316 * protocol is installed.
1317 * @protocol: GUID of the protocol whose installation shall be notified
1318 * @event: event to be signaled upon installation of the protocol
1319 * @registration: key for retrieving the registration information
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001320 *
1321 * This function implements the RegisterProtocolNotify service.
1322 * See the Unified Extensible Firmware Interface (UEFI) specification
1323 * for details.
1324 *
Mario Six78a88f72018-07-10 08:40:17 +02001325 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001326 */
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001327static efi_status_t EFIAPI efi_register_protocol_notify(
1328 const efi_guid_t *protocol,
1329 struct efi_event *event,
1330 void **registration)
Alexander Grafbee91162016-03-04 01:09:59 +01001331{
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001332 struct efi_register_notify_event *item;
1333 efi_status_t ret = EFI_SUCCESS;
1334
Rob Clark778e6af2017-09-13 18:05:41 -04001335 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001336
1337 if (!protocol || !event || !registration) {
1338 ret = EFI_INVALID_PARAMETER;
1339 goto out;
1340 }
1341
1342 item = calloc(1, sizeof(struct efi_register_notify_event));
1343 if (!item) {
1344 ret = EFI_OUT_OF_RESOURCES;
1345 goto out;
1346 }
1347
1348 item->event = event;
1349 memcpy(&item->protocol, protocol, sizeof(efi_guid_t));
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001350 INIT_LIST_HEAD(&item->handles);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001351
1352 list_add_tail(&item->link, &efi_register_notify_events);
1353
1354 *registration = item;
1355out:
1356 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001357}
1358
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001359/**
Mario Six78a88f72018-07-10 08:40:17 +02001360 * efi_search() - determine if an EFI handle implements a protocol
1361 * @search_type: selection criterion
1362 * @protocol: GUID of the protocol
1363 * @search_key: registration key
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001364 * @handle: handle
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001365 *
1366 * See the documentation of the LocateHandle service in the UEFI specification.
1367 *
Mario Six78a88f72018-07-10 08:40:17 +02001368 * Return: 0 if the handle implements the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001369 */
Alexander Grafbee91162016-03-04 01:09:59 +01001370static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001371 const efi_guid_t *protocol, efi_handle_t handle)
Alexander Grafbee91162016-03-04 01:09:59 +01001372{
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +02001373 efi_status_t ret;
Alexander Grafbee91162016-03-04 01:09:59 +01001374
1375 switch (search_type) {
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +01001376 case ALL_HANDLES:
Alexander Grafbee91162016-03-04 01:09:59 +01001377 return 0;
Heinrich Schuchardt9f0770f2017-11-06 21:17:42 +01001378 case BY_PROTOCOL:
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02001379 ret = efi_search_protocol(handle, protocol, NULL);
Heinrich Schuchardt42cf1242017-10-26 19:25:55 +02001380 return (ret != EFI_SUCCESS);
1381 default:
1382 /* Invalid search type */
Alexander Grafbee91162016-03-04 01:09:59 +01001383 return -1;
1384 }
Alexander Grafbee91162016-03-04 01:09:59 +01001385}
1386
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001387/**
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001388 * efi_check_register_notify_event() - check if registration key is valid
1389 *
1390 * Check that a pointer is a valid registration key as returned by
1391 * RegisterProtocolNotify().
1392 *
1393 * @key: registration key
1394 * Return: valid registration key or NULL
1395 */
1396static struct efi_register_notify_event *efi_check_register_notify_event
1397 (void *key)
1398{
1399 struct efi_register_notify_event *event;
1400
1401 list_for_each_entry(event, &efi_register_notify_events, link) {
1402 if (event == (struct efi_register_notify_event *)key)
1403 return event;
1404 }
1405 return NULL;
1406}
1407
1408/**
Mario Six78a88f72018-07-10 08:40:17 +02001409 * efi_locate_handle() - locate handles implementing a protocol
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001410 *
1411 * @search_type: selection criterion
1412 * @protocol: GUID of the protocol
1413 * @search_key: registration key
1414 * @buffer_size: size of the buffer to receive the handles in bytes
1415 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001416 *
1417 * This function is meant for U-Boot internal calls. For the API implementation
1418 * of the LocateHandle service see efi_locate_handle_ext.
1419 *
Mario Six78a88f72018-07-10 08:40:17 +02001420 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001421 */
xypron.glpk@gmx.deebf199b2017-08-09 20:55:00 +02001422static efi_status_t efi_locate_handle(
Alexander Grafbee91162016-03-04 01:09:59 +01001423 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001424 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001425 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafbee91162016-03-04 01:09:59 +01001426{
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001427 struct efi_object *efiobj;
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001428 efi_uintn_t size = 0;
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001429 struct efi_register_notify_event *event;
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001430 struct efi_protocol_notification *handle = NULL;
Alexander Grafbee91162016-03-04 01:09:59 +01001431
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001432 /* Check parameters */
1433 switch (search_type) {
1434 case ALL_HANDLES:
1435 break;
1436 case BY_REGISTER_NOTIFY:
1437 if (!search_key)
1438 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001439 /* Check that the registration key is valid */
Heinrich Schuchardtb8abd742019-05-29 07:46:33 +02001440 event = efi_check_register_notify_event(search_key);
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001441 if (!event)
1442 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtab15d412019-05-04 17:27:54 +02001443 break;
Heinrich Schuchardtcaf864e2017-11-06 21:17:49 +01001444 case BY_PROTOCOL:
1445 if (!protocol)
1446 return EFI_INVALID_PARAMETER;
1447 break;
1448 default:
1449 return EFI_INVALID_PARAMETER;
1450 }
1451
Alexander Grafbee91162016-03-04 01:09:59 +01001452 /* Count how much space we need */
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001453 if (search_type == BY_REGISTER_NOTIFY) {
1454 if (list_empty(&event->handles))
1455 return EFI_NOT_FOUND;
1456 handle = list_first_entry(&event->handles,
1457 struct efi_protocol_notification,
1458 link);
1459 efiobj = handle->handle;
1460 size += sizeof(void *);
1461 } else {
1462 list_for_each_entry(efiobj, &efi_obj_list, link) {
1463 if (!efi_search(search_type, protocol, efiobj))
1464 size += sizeof(void *);
1465 }
1466 if (size == 0)
1467 return EFI_NOT_FOUND;
Alexander Grafbee91162016-03-04 01:09:59 +01001468 }
1469
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001470 if (!buffer_size)
1471 return EFI_INVALID_PARAMETER;
1472
Alexander Grafbee91162016-03-04 01:09:59 +01001473 if (*buffer_size < size) {
1474 *buffer_size = size;
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001475 return EFI_BUFFER_TOO_SMALL;
Alexander Grafbee91162016-03-04 01:09:59 +01001476 }
1477
Rob Clark796a78c2017-08-06 14:10:07 -04001478 *buffer_size = size;
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001479
Heinrich Schuchardt0a843192019-05-10 19:03:49 +02001480 /* The buffer size is sufficient but there is no buffer */
Heinrich Schuchardt8dfb5e62019-05-04 17:37:32 +02001481 if (!buffer)
1482 return EFI_INVALID_PARAMETER;
Rob Clark796a78c2017-08-06 14:10:07 -04001483
Alexander Grafbee91162016-03-04 01:09:59 +01001484 /* Then fill the array */
Heinrich Schuchardtf09cea32019-05-21 18:19:01 +02001485 if (search_type == BY_REGISTER_NOTIFY) {
1486 *buffer = efiobj;
1487 list_del(&handle->link);
1488 } else {
1489 list_for_each_entry(efiobj, &efi_obj_list, link) {
1490 if (!efi_search(search_type, protocol, efiobj))
1491 *buffer++ = efiobj;
1492 }
Alexander Grafbee91162016-03-04 01:09:59 +01001493 }
1494
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001495 return EFI_SUCCESS;
1496}
1497
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001498/**
Mario Six78a88f72018-07-10 08:40:17 +02001499 * efi_locate_handle_ext() - locate handles implementing a protocol.
1500 * @search_type: selection criterion
1501 * @protocol: GUID of the protocol
1502 * @search_key: registration key
1503 * @buffer_size: size of the buffer to receive the handles in bytes
1504 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001505 *
1506 * This function implements the LocateHandle service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001507 *
Mario Six78a88f72018-07-10 08:40:17 +02001508 * See the Unified Extensible Firmware Interface (UEFI) specification for
1509 * details.
1510 *
1511 * Return: 0 if the handle implements the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001512 */
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001513static efi_status_t EFIAPI efi_locate_handle_ext(
1514 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02001515 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01001516 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001517{
Rob Clark778e6af2017-09-13 18:05:41 -04001518 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02001519 buffer_size, buffer);
1520
1521 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1522 buffer_size, buffer));
Alexander Grafbee91162016-03-04 01:09:59 +01001523}
1524
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001525/**
Mario Six78a88f72018-07-10 08:40:17 +02001526 * efi_remove_configuration_table() - collapses configuration table entries,
1527 * removing index i
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001528 *
Mario Six78a88f72018-07-10 08:40:17 +02001529 * @i: index of the table entry to be removed
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001530 */
Alexander Grafd98cdf62017-07-26 13:41:04 +02001531static void efi_remove_configuration_table(int i)
1532{
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001533 struct efi_configuration_table *this = &systab.tables[i];
1534 struct efi_configuration_table *next = &systab.tables[i + 1];
1535 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
Alexander Grafd98cdf62017-07-26 13:41:04 +02001536
1537 memmove(this, next, (ulong)end - (ulong)next);
1538 systab.nr_tables--;
1539}
1540
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001541/**
Mario Six78a88f72018-07-10 08:40:17 +02001542 * efi_install_configuration_table() - adds, updates, or removes a
1543 * configuration table
1544 * @guid: GUID of the installed table
1545 * @table: table to be installed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001546 *
1547 * This function is used for internal calls. For the API implementation of the
1548 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1549 *
Mario Six78a88f72018-07-10 08:40:17 +02001550 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001551 */
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01001552efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1553 void *table)
Alexander Grafbee91162016-03-04 01:09:59 +01001554{
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001555 struct efi_event *evt;
Alexander Grafbee91162016-03-04 01:09:59 +01001556 int i;
1557
Heinrich Schuchardteb68b4e2018-02-18 00:08:00 +01001558 if (!guid)
1559 return EFI_INVALID_PARAMETER;
1560
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001561 /* Check for GUID override */
Alexander Grafbee91162016-03-04 01:09:59 +01001562 for (i = 0; i < systab.nr_tables; i++) {
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001563 if (!guidcmp(guid, &systab.tables[i].guid)) {
Alexander Grafd98cdf62017-07-26 13:41:04 +02001564 if (table)
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001565 systab.tables[i].table = table;
Alexander Grafd98cdf62017-07-26 13:41:04 +02001566 else
1567 efi_remove_configuration_table(i);
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001568 goto out;
Alexander Grafbee91162016-03-04 01:09:59 +01001569 }
1570 }
1571
Alexander Grafd98cdf62017-07-26 13:41:04 +02001572 if (!table)
1573 return EFI_NOT_FOUND;
1574
Alexander Grafbee91162016-03-04 01:09:59 +01001575 /* No override, check for overflow */
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001576 if (i >= EFI_MAX_CONFIGURATION_TABLES)
Alexander Graf488bf122016-08-19 01:23:24 +02001577 return EFI_OUT_OF_RESOURCES;
Alexander Grafbee91162016-03-04 01:09:59 +01001578
1579 /* Add a new entry */
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02001580 memcpy(&systab.tables[i].guid, guid, sizeof(*guid));
1581 systab.tables[i].table = table;
Alexander Grafaba5e912016-08-19 01:23:30 +02001582 systab.nr_tables = i + 1;
Alexander Grafbee91162016-03-04 01:09:59 +01001583
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001584out:
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001585 /* systab.nr_tables may have changed. So we need to update the CRC32 */
Heinrich Schuchardt55d8ee32018-07-07 15:36:05 +02001586 efi_update_table_header_crc32(&systab.hdr);
1587
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001588 /* Notify that the configuration table was changed */
1589 list_for_each_entry(evt, &efi_events, link) {
1590 if (evt->group && !guidcmp(evt->group, guid)) {
1591 efi_signal_event(evt, false);
1592 break;
1593 }
1594 }
1595
Alexander Graf488bf122016-08-19 01:23:24 +02001596 return EFI_SUCCESS;
1597}
1598
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001599/**
Mario Six78a88f72018-07-10 08:40:17 +02001600 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1601 * configuration table.
1602 * @guid: GUID of the installed table
1603 * @table: table to be installed
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001604 *
1605 * This function implements the InstallConfigurationTable service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001606 *
Mario Six78a88f72018-07-10 08:40:17 +02001607 * See the Unified Extensible Firmware Interface (UEFI) specification for
1608 * details.
1609 *
1610 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001611 */
Alexander Graf488bf122016-08-19 01:23:24 +02001612static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1613 void *table)
1614{
Rob Clark778e6af2017-09-13 18:05:41 -04001615 EFI_ENTRY("%pUl, %p", guid, table);
Alexander Graf488bf122016-08-19 01:23:24 +02001616 return EFI_EXIT(efi_install_configuration_table(guid, table));
Alexander Grafbee91162016-03-04 01:09:59 +01001617}
1618
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001619/**
Mario Six78a88f72018-07-10 08:40:17 +02001620 * efi_setup_loaded_image() - initialize a loaded image
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001621 *
1622 * Initialize a loaded_image_info and loaded_image_info object with correct
Rob Clark95c55532017-09-13 18:05:33 -04001623 * protocols, boot-device, etc.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001624 *
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001625 * In case of an error *handle_ptr and *info_ptr are set to NULL and an error
1626 * code is returned.
1627 *
1628 * @device_path: device path of the loaded image
1629 * @file_path: file path of the loaded image
1630 * @handle_ptr: handle of the loaded image
1631 * @info_ptr: loaded image protocol
1632 * Return: status code
Rob Clark95c55532017-09-13 18:05:33 -04001633 */
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001634efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1635 struct efi_device_path *file_path,
1636 struct efi_loaded_image_obj **handle_ptr,
1637 struct efi_loaded_image **info_ptr)
Rob Clark95c55532017-09-13 18:05:33 -04001638{
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001639 efi_status_t ret;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001640 struct efi_loaded_image *info = NULL;
1641 struct efi_loaded_image_obj *obj = NULL;
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001642 struct efi_device_path *dp;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001643
1644 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1645 *handle_ptr = NULL;
1646 *info_ptr = NULL;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001647
1648 info = calloc(1, sizeof(*info));
1649 if (!info)
1650 return EFI_OUT_OF_RESOURCES;
1651 obj = calloc(1, sizeof(*obj));
1652 if (!obj) {
1653 free(info);
1654 return EFI_OUT_OF_RESOURCES;
1655 }
Heinrich Schuchardtcd73aba2019-05-01 14:20:18 +02001656 obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001657
Heinrich Schuchardt44549d62017-11-26 14:05:23 +01001658 /* Add internal object to object list */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +02001659 efi_add_handle(&obj->header);
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001660
Heinrich Schuchardt95147312018-07-05 08:17:58 +02001661 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
Rob Clark95c55532017-09-13 18:05:33 -04001662 info->file_path = file_path;
Heinrich Schuchardt7e1effc2018-08-26 15:31:52 +02001663 info->system_table = &systab;
Rob Clark95c55532017-09-13 18:05:33 -04001664
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001665 if (device_path) {
1666 info->device_handle = efi_dp_find_obj(device_path, NULL);
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001667
1668 dp = efi_dp_append(device_path, file_path);
1669 if (!dp) {
1670 ret = EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001671 goto failure;
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001672 }
1673 } else {
1674 dp = NULL;
Heinrich Schuchardt7df5af62018-01-26 06:50:54 +01001675 }
AKASHI Takahirobc8fc322019-03-27 13:40:32 +09001676 ret = efi_add_protocol(&obj->header,
1677 &efi_guid_loaded_image_device_path, dp);
1678 if (ret != EFI_SUCCESS)
1679 goto failure;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001680
1681 /*
1682 * When asking for the loaded_image interface, just
1683 * return handle which points to loaded_image_info
1684 */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +02001685 ret = efi_add_protocol(&obj->header,
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001686 &efi_guid_loaded_image, info);
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001687 if (ret != EFI_SUCCESS)
1688 goto failure;
1689
Heinrich Schuchardtd5974af2019-03-19 18:58:58 +01001690 *info_ptr = info;
1691 *handle_ptr = obj;
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001692
Heinrich Schuchardt56d92882017-12-04 18:03:01 +01001693 return ret;
Heinrich Schuchardt48b66232017-10-26 19:25:58 +02001694failure:
1695 printf("ERROR: Failure to install protocols for loaded image\n");
Heinrich Schuchardt16112f92019-02-06 19:41:29 +01001696 efi_delete_handle(&obj->header);
1697 free(info);
Heinrich Schuchardt56d92882017-12-04 18:03:01 +01001698 return ret;
Rob Clark95c55532017-09-13 18:05:33 -04001699}
1700
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001701/**
Mario Six78a88f72018-07-10 08:40:17 +02001702 * efi_load_image_from_path() - load an image using a file path
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001703 *
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001704 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1705 * callers obligation to update the memory type as needed.
1706 *
1707 * @file_path: the path of the image to load
1708 * @buffer: buffer containing the loaded image
1709 * @size: size of the loaded image
1710 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001711 */
AKASHI Takahiro6b95b382019-04-19 12:22:35 +09001712static
Rob Clark9975fe92017-09-13 18:05:38 -04001713efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001714 void **buffer, efi_uintn_t *size)
Rob Clark838ee4b2017-09-13 18:05:35 -04001715{
1716 struct efi_file_info *info = NULL;
1717 struct efi_file_handle *f;
1718 static efi_status_t ret;
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001719 u64 addr;
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +02001720 efi_uintn_t bs;
Rob Clark838ee4b2017-09-13 18:05:35 -04001721
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001722 /* In case of failure nothing is returned */
1723 *buffer = NULL;
1724 *size = 0;
1725
1726 /* Open file */
Rob Clark838ee4b2017-09-13 18:05:35 -04001727 f = efi_file_from_path(file_path);
1728 if (!f)
1729 return EFI_DEVICE_ERROR;
1730
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001731 /* Get file size */
Rob Clark838ee4b2017-09-13 18:05:35 -04001732 bs = 0;
1733 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1734 &bs, info));
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001735 if (ret != EFI_BUFFER_TOO_SMALL) {
1736 ret = EFI_DEVICE_ERROR;
1737 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04001738 }
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001739
1740 info = malloc(bs);
1741 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs,
1742 info));
Rob Clark838ee4b2017-09-13 18:05:35 -04001743 if (ret != EFI_SUCCESS)
1744 goto error;
1745
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001746 /*
1747 * When reading the file we do not yet know if it contains an
1748 * application, a boottime driver, or a runtime driver. So here we
1749 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1750 * update the reservation according to the image type.
1751 */
Heinrich Schuchardtb6dd5772018-04-03 22:37:11 +02001752 bs = info->file_size;
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001753 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1754 EFI_BOOT_SERVICES_DATA,
1755 efi_size_in_pages(bs), &addr);
Rob Clark838ee4b2017-09-13 18:05:35 -04001756 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001757 ret = EFI_OUT_OF_RESOURCES;
1758 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04001759 }
1760
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001761 /* Read file */
1762 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1763 if (ret != EFI_SUCCESS)
1764 efi_free_pages(addr, efi_size_in_pages(bs));
1765 *buffer = (void *)(uintptr_t)addr;
1766 *size = bs;
1767error:
1768 EFI_CALL(f->close(f));
1769 free(info);
Rob Clark838ee4b2017-09-13 18:05:35 -04001770 return ret;
1771}
1772
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001773/**
Mario Six78a88f72018-07-10 08:40:17 +02001774 * efi_load_image() - load an EFI image into memory
1775 * @boot_policy: true for request originating from the boot manager
1776 * @parent_image: the caller's image handle
1777 * @file_path: the path of the image to load
1778 * @source_buffer: memory location from which the image is installed
1779 * @source_size: size of the memory area from which the image is installed
1780 * @image_handle: handle for the newly installed image
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001781 *
1782 * This function implements the LoadImage service.
Mario Six78a88f72018-07-10 08:40:17 +02001783 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001784 * See the Unified Extensible Firmware Interface (UEFI) specification
1785 * for details.
1786 *
Mario Six78a88f72018-07-10 08:40:17 +02001787 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001788 */
AKASHI Takahirod7e0b012019-03-05 14:53:31 +09001789efi_status_t EFIAPI efi_load_image(bool boot_policy,
1790 efi_handle_t parent_image,
1791 struct efi_device_path *file_path,
1792 void *source_buffer,
1793 efi_uintn_t source_size,
1794 efi_handle_t *image_handle)
Alexander Grafbee91162016-03-04 01:09:59 +01001795{
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001796 struct efi_device_path *dp, *fp;
Tom Rini1c3b2f42018-09-30 10:38:15 -04001797 struct efi_loaded_image *info = NULL;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +02001798 struct efi_loaded_image_obj **image_obj =
1799 (struct efi_loaded_image_obj **)image_handle;
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01001800 efi_status_t ret;
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01001801 void *dest_buffer;
Alexander Grafbee91162016-03-04 01:09:59 +01001802
Heinrich Schuchardt7fb96a12018-04-03 22:29:30 +02001803 EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
Alexander Grafbee91162016-03-04 01:09:59 +01001804 file_path, source_buffer, source_size, image_handle);
Rob Clark838ee4b2017-09-13 18:05:35 -04001805
Heinrich Schuchardt84a918e2019-05-05 16:55:06 +02001806 if (!image_handle || !efi_search_obj(parent_image)) {
Heinrich Schuchardt28a4fd42018-03-07 02:40:51 +01001807 ret = EFI_INVALID_PARAMETER;
1808 goto error;
1809 }
1810
1811 if (!source_buffer && !file_path) {
1812 ret = EFI_NOT_FOUND;
1813 goto error;
1814 }
Heinrich Schuchardt84a918e2019-05-05 16:55:06 +02001815 /* The parent image handle must refer to a loaded image */
1816 if (!parent_image->type) {
1817 ret = EFI_INVALID_PARAMETER;
1818 goto error;
1819 }
Heinrich Schuchardt28a4fd42018-03-07 02:40:51 +01001820
Rob Clark838ee4b2017-09-13 18:05:35 -04001821 if (!source_buffer) {
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01001822 ret = efi_load_image_from_path(file_path, &dest_buffer,
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001823 &source_size);
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01001824 if (ret != EFI_SUCCESS)
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001825 goto error;
Rob Clark838ee4b2017-09-13 18:05:35 -04001826 } else {
Heinrich Schuchardt470dfa52019-05-05 16:55:06 +02001827 if (!source_size) {
1828 ret = EFI_LOAD_ERROR;
1829 goto error;
1830 }
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01001831 dest_buffer = source_buffer;
Rob Clark838ee4b2017-09-13 18:05:35 -04001832 }
Heinrich Schuchardt1e15a9c2019-04-20 19:24:43 +00001833 /* split file_path which contains both the device and file parts */
1834 efi_dp_split_file_path(file_path, &dp, &fp);
Heinrich Schuchardt0e18f582018-12-24 09:19:07 +01001835 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
Heinrich Schuchardtb0c3c342019-03-04 17:50:05 +01001836 if (ret == EFI_SUCCESS)
1837 ret = efi_load_pe(*image_obj, dest_buffer, info);
1838 if (!source_buffer)
1839 /* Release buffer to which file was loaded */
1840 efi_free_pages((uintptr_t)dest_buffer,
1841 efi_size_in_pages(source_size));
1842 if (ret == EFI_SUCCESS) {
1843 info->system_table = &systab;
1844 info->parent_handle = parent_image;
1845 } else {
1846 /* The image is invalid. Release all associated resources. */
1847 efi_delete_handle(*image_handle);
1848 *image_handle = NULL;
1849 free(info);
1850 }
Heinrich Schuchardt28a4fd42018-03-07 02:40:51 +01001851error:
Heinrich Schuchardtb9b17592017-12-04 18:03:03 +01001852 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001853}
1854
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001855/**
Alexander Graff31239a2018-11-15 21:23:47 +01001856 * efi_exit_caches() - fix up caches for EFI payloads if necessary
1857 */
1858static void efi_exit_caches(void)
1859{
1860#if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
1861 /*
1862 * Grub on 32bit ARM needs to have caches disabled before jumping into
1863 * a zImage, but does not know of all cache layers. Give it a hand.
1864 */
1865 if (efi_is_direct_boot)
1866 cleanup_before_linux();
1867#endif
1868}
1869
1870/**
Mario Six78a88f72018-07-10 08:40:17 +02001871 * efi_exit_boot_services() - stop all boot services
1872 * @image_handle: handle of the loaded image
1873 * @map_key: key of the memory map
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001874 *
1875 * This function implements the ExitBootServices service.
Mario Six78a88f72018-07-10 08:40:17 +02001876 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001877 * See the Unified Extensible Firmware Interface (UEFI) specification
1878 * for details.
1879 *
Mario Six78a88f72018-07-10 08:40:17 +02001880 * All timer events are disabled. For exit boot services events the
1881 * notification function is called. The boot services are disabled in the
1882 * system table.
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01001883 *
Mario Six78a88f72018-07-10 08:40:17 +02001884 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001885 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01001886static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
Heinrich Schuchardtb015ab52019-05-05 21:58:35 +02001887 efi_uintn_t map_key)
Alexander Grafbee91162016-03-04 01:09:59 +01001888{
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001889 struct efi_event *evt;
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02001890
Heinrich Schuchardtb015ab52019-05-05 21:58:35 +02001891 EFI_ENTRY("%p, %zx", image_handle, map_key);
Alexander Grafbee91162016-03-04 01:09:59 +01001892
Heinrich Schuchardt1fcb7ea2018-07-02 12:53:55 +02001893 /* Check that the caller has read the current memory map */
1894 if (map_key != efi_memory_map_key)
1895 return EFI_INVALID_PARAMETER;
1896
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01001897 /* Make sure that notification functions are not called anymore */
1898 efi_tpl = TPL_HIGH_LEVEL;
1899
1900 /* Check if ExitBootServices has already been called */
1901 if (!systab.boottime)
1902 return EFI_EXIT(EFI_SUCCESS);
1903
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001904 /* Add related events to the event group */
1905 list_for_each_entry(evt, &efi_events, link) {
1906 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
1907 evt->group = &efi_guid_event_group_exit_boot_services;
1908 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02001909 /* Notify that ExitBootServices is invoked. */
Heinrich Schuchardt43bce442018-02-18 15:17:50 +01001910 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardtb095f3c2018-02-18 15:17:52 +01001911 if (evt->group &&
1912 !guidcmp(evt->group,
1913 &efi_guid_event_group_exit_boot_services)) {
1914 efi_signal_event(evt, false);
1915 break;
1916 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02001917 }
Heinrich Schuchardt152a2632017-09-15 10:06:18 +02001918
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001919 /* TODO: Should persist EFI variables here */
Rob Clarkad644e72017-09-13 18:05:37 -04001920
Alexander Grafb7b84102016-11-17 01:02:57 +01001921 board_quiesce_devices();
1922
Alexander Graff31239a2018-11-15 21:23:47 +01001923 /* Fix up caches for EFI payloads if necessary */
1924 efi_exit_caches();
1925
Alexander Grafbee91162016-03-04 01:09:59 +01001926 /* This stops all lingering devices */
1927 bootm_disable_interrupts();
1928
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02001929 /* Disable boot time services */
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01001930 systab.con_in_handle = NULL;
1931 systab.con_in = NULL;
1932 systab.con_out_handle = NULL;
1933 systab.con_out = NULL;
1934 systab.stderr_handle = NULL;
1935 systab.std_err = NULL;
1936 systab.boottime = NULL;
1937
1938 /* Recalculate CRC32 */
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02001939 efi_update_table_header_crc32(&systab.hdr);
Heinrich Schuchardtcc20ed02018-01-19 20:24:52 +01001940
Alexander Grafbee91162016-03-04 01:09:59 +01001941 /* Give the payload some time to boot */
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02001942 efi_set_watchdog(0);
Alexander Grafbee91162016-03-04 01:09:59 +01001943 WATCHDOG_RESET();
1944
1945 return EFI_EXIT(EFI_SUCCESS);
1946}
1947
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001948/**
Mario Six78a88f72018-07-10 08:40:17 +02001949 * efi_get_next_monotonic_count() - get next value of the counter
1950 * @count: returned value of the counter
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001951 *
1952 * This function implements the NextMonotonicCount service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001953 *
Mario Six78a88f72018-07-10 08:40:17 +02001954 * See the Unified Extensible Firmware Interface (UEFI) specification for
1955 * details.
1956 *
1957 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001958 */
Alexander Grafbee91162016-03-04 01:09:59 +01001959static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
1960{
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01001961 static uint64_t mono;
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02001962 efi_status_t ret;
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01001963
Alexander Grafbee91162016-03-04 01:09:59 +01001964 EFI_ENTRY("%p", count);
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02001965 if (!count) {
1966 ret = EFI_INVALID_PARAMETER;
1967 goto out;
1968 }
Alexander Grafbee91162016-03-04 01:09:59 +01001969 *count = mono++;
Heinrich Schuchardt1344f7d2019-05-17 12:47:17 +02001970 ret = EFI_SUCCESS;
1971out:
1972 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01001973}
1974
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001975/**
Mario Six78a88f72018-07-10 08:40:17 +02001976 * efi_stall() - sleep
1977 * @microseconds: period to sleep in microseconds
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001978 *
Mario Six78a88f72018-07-10 08:40:17 +02001979 * This function implements the Stall service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001980 *
Mario Six78a88f72018-07-10 08:40:17 +02001981 * See the Unified Extensible Firmware Interface (UEFI) specification for
1982 * details.
1983 *
1984 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001985 */
Alexander Grafbee91162016-03-04 01:09:59 +01001986static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
1987{
1988 EFI_ENTRY("%ld", microseconds);
1989 udelay(microseconds);
1990 return EFI_EXIT(EFI_SUCCESS);
1991}
1992
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02001993/**
Mario Six78a88f72018-07-10 08:40:17 +02001994 * efi_set_watchdog_timer() - reset the watchdog timer
1995 * @timeout: seconds before reset by watchdog
1996 * @watchdog_code: code to be logged when resetting
1997 * @data_size: size of buffer in bytes
1998 * @watchdog_data: buffer with data describing the reset reason
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02001999 *
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002000 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002001 *
Mario Six78a88f72018-07-10 08:40:17 +02002002 * See the Unified Extensible Firmware Interface (UEFI) specification for
2003 * details.
2004 *
2005 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002006 */
Alexander Grafbee91162016-03-04 01:09:59 +01002007static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
2008 uint64_t watchdog_code,
2009 unsigned long data_size,
2010 uint16_t *watchdog_data)
2011{
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09002012 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
Alexander Grafbee91162016-03-04 01:09:59 +01002013 data_size, watchdog_data);
Heinrich Schuchardtb3d60902017-10-18 18:13:04 +02002014 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafbee91162016-03-04 01:09:59 +01002015}
2016
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002017/**
Mario Six78a88f72018-07-10 08:40:17 +02002018 * efi_close_protocol() - close a protocol
2019 * @handle: handle on which the protocol shall be closed
2020 * @protocol: GUID of the protocol to close
2021 * @agent_handle: handle of the driver
2022 * @controller_handle: handle of the controller
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002023 *
2024 * This function implements the CloseProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002025 *
Mario Six78a88f72018-07-10 08:40:17 +02002026 * See the Unified Extensible Firmware Interface (UEFI) specification for
2027 * details.
2028 *
2029 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002030 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002031static efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002032 const efi_guid_t *protocol,
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002033 efi_handle_t agent_handle,
2034 efi_handle_t controller_handle)
Alexander Grafbee91162016-03-04 01:09:59 +01002035{
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002036 struct efi_handler *handler;
2037 struct efi_open_protocol_info_item *item;
2038 struct efi_open_protocol_info_item *pos;
2039 efi_status_t r;
2040
Rob Clark778e6af2017-09-13 18:05:41 -04002041 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
Alexander Grafbee91162016-03-04 01:09:59 +01002042 controller_handle);
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002043
Heinrich Schuchardtec163fa2019-05-05 10:37:51 +02002044 if (!efi_search_obj(agent_handle) ||
2045 (controller_handle && !efi_search_obj(controller_handle))) {
Heinrich Schuchardt3b8a4892018-01-11 08:15:59 +01002046 r = EFI_INVALID_PARAMETER;
2047 goto out;
2048 }
2049 r = efi_search_protocol(handle, protocol, &handler);
2050 if (r != EFI_SUCCESS)
2051 goto out;
2052
2053 r = EFI_NOT_FOUND;
2054 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2055 if (item->info.agent_handle == agent_handle &&
2056 item->info.controller_handle == controller_handle) {
2057 efi_delete_open_info(item);
2058 r = EFI_SUCCESS;
2059 break;
2060 }
2061 }
2062out:
2063 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002064}
2065
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002066/**
Mario Six78a88f72018-07-10 08:40:17 +02002067 * efi_open_protocol_information() - provide information about then open status
2068 * of a protocol on a handle
2069 * @handle: handle for which the information shall be retrieved
2070 * @protocol: GUID of the protocol
2071 * @entry_buffer: buffer to receive the open protocol information
2072 * @entry_count: number of entries available in the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002073 *
2074 * This function implements the OpenProtocolInformation service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002075 *
Mario Six78a88f72018-07-10 08:40:17 +02002076 * See the Unified Extensible Firmware Interface (UEFI) specification for
2077 * details.
2078 *
2079 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002080 */
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01002081static efi_status_t EFIAPI efi_open_protocol_information(
2082 efi_handle_t handle, const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002083 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002084 efi_uintn_t *entry_count)
Alexander Grafbee91162016-03-04 01:09:59 +01002085{
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002086 unsigned long buffer_size;
2087 unsigned long count;
2088 struct efi_handler *handler;
2089 struct efi_open_protocol_info_item *item;
2090 efi_status_t r;
2091
Rob Clark778e6af2017-09-13 18:05:41 -04002092 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
Alexander Grafbee91162016-03-04 01:09:59 +01002093 entry_count);
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002094
2095 /* Check parameters */
2096 if (!entry_buffer) {
2097 r = EFI_INVALID_PARAMETER;
2098 goto out;
2099 }
2100 r = efi_search_protocol(handle, protocol, &handler);
2101 if (r != EFI_SUCCESS)
2102 goto out;
2103
2104 /* Count entries */
2105 count = 0;
2106 list_for_each_entry(item, &handler->open_infos, link) {
2107 if (item->info.open_count)
2108 ++count;
2109 }
2110 *entry_count = count;
2111 *entry_buffer = NULL;
2112 if (!count) {
2113 r = EFI_SUCCESS;
2114 goto out;
2115 }
2116
2117 /* Copy entries */
2118 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002119 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardte3fbbc32018-01-11 08:16:00 +01002120 (void **)entry_buffer);
2121 if (r != EFI_SUCCESS)
2122 goto out;
2123 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2124 if (item->info.open_count)
2125 (*entry_buffer)[--count] = item->info;
2126 }
2127out:
2128 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002129}
2130
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002131/**
Mario Six78a88f72018-07-10 08:40:17 +02002132 * efi_protocols_per_handle() - get protocols installed on a handle
2133 * @handle: handle for which the information is retrieved
2134 * @protocol_buffer: buffer with protocol GUIDs
2135 * @protocol_buffer_count: number of entries in the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002136 *
2137 * This function implements the ProtocolsPerHandleService.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002138 *
Mario Six78a88f72018-07-10 08:40:17 +02002139 * See the Unified Extensible Firmware Interface (UEFI) specification for
2140 * details.
2141 *
2142 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002143 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002144static efi_status_t EFIAPI efi_protocols_per_handle(
2145 efi_handle_t handle, efi_guid_t ***protocol_buffer,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002146 efi_uintn_t *protocol_buffer_count)
Alexander Grafbee91162016-03-04 01:09:59 +01002147{
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002148 unsigned long buffer_size;
2149 struct efi_object *efiobj;
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002150 struct list_head *protocol_handle;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002151 efi_status_t r;
2152
Alexander Grafbee91162016-03-04 01:09:59 +01002153 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2154 protocol_buffer_count);
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002155
2156 if (!handle || !protocol_buffer || !protocol_buffer_count)
2157 return EFI_EXIT(EFI_INVALID_PARAMETER);
2158
2159 *protocol_buffer = NULL;
Rob Clark661c8322017-07-20 07:59:39 -04002160 *protocol_buffer_count = 0;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002161
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002162 efiobj = efi_search_obj(handle);
2163 if (!efiobj)
2164 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002165
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002166 /* Count protocols */
2167 list_for_each(protocol_handle, &efiobj->protocols) {
2168 ++*protocol_buffer_count;
2169 }
2170
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02002171 /* Copy GUIDs */
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002172 if (*protocol_buffer_count) {
2173 size_t j = 0;
2174
2175 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002176 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardt69fb6b12017-11-26 14:05:17 +01002177 (void **)protocol_buffer);
2178 if (r != EFI_SUCCESS)
2179 return EFI_EXIT(r);
2180 list_for_each(protocol_handle, &efiobj->protocols) {
2181 struct efi_handler *protocol;
2182
2183 protocol = list_entry(protocol_handle,
2184 struct efi_handler, link);
2185 (*protocol_buffer)[j] = (void *)protocol->guid;
2186 ++j;
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002187 }
xypron.glpk@gmx.dec0ebfc82017-07-13 23:24:32 +02002188 }
2189
2190 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002191}
2192
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002193/**
Mario Six78a88f72018-07-10 08:40:17 +02002194 * efi_locate_handle_buffer() - locate handles implementing a protocol
2195 * @search_type: selection criterion
2196 * @protocol: GUID of the protocol
2197 * @search_key: registration key
2198 * @no_handles: number of returned handles
2199 * @buffer: buffer with the returned handles
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002200 *
2201 * This function implements the LocateHandleBuffer service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002202 *
Mario Six78a88f72018-07-10 08:40:17 +02002203 * See the Unified Extensible Firmware Interface (UEFI) specification for
2204 * details.
2205 *
2206 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002207 */
Alexander Grafbee91162016-03-04 01:09:59 +01002208static efi_status_t EFIAPI efi_locate_handle_buffer(
2209 enum efi_locate_search_type search_type,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002210 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002211 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafbee91162016-03-04 01:09:59 +01002212{
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002213 efi_status_t r;
Heinrich Schuchardtf5a2a932017-11-06 21:17:48 +01002214 efi_uintn_t buffer_size = 0;
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002215
Rob Clark778e6af2017-09-13 18:05:41 -04002216 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafbee91162016-03-04 01:09:59 +01002217 no_handles, buffer);
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002218
2219 if (!no_handles || !buffer) {
2220 r = EFI_INVALID_PARAMETER;
2221 goto out;
2222 }
2223 *no_handles = 0;
2224 *buffer = NULL;
2225 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2226 *buffer);
2227 if (r != EFI_BUFFER_TOO_SMALL)
2228 goto out;
Heinrich Schuchardteee65302018-10-03 20:02:29 +02002229 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002230 (void **)buffer);
2231 if (r != EFI_SUCCESS)
2232 goto out;
2233 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2234 *buffer);
2235 if (r == EFI_SUCCESS)
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01002236 *no_handles = buffer_size / sizeof(efi_handle_t);
xypron.glpk@gmx.dec2e703f2017-07-11 22:06:22 +02002237out:
2238 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002239}
2240
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002241/**
Mario Six78a88f72018-07-10 08:40:17 +02002242 * efi_locate_protocol() - find an interface implementing a protocol
2243 * @protocol: GUID of the protocol
2244 * @registration: registration key passed to the notification function
2245 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002246 *
2247 * This function implements the LocateProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002248 *
Mario Six78a88f72018-07-10 08:40:17 +02002249 * See the Unified Extensible Firmware Interface (UEFI) specification for
2250 * details.
2251 *
2252 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002253 */
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002254static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002255 void *registration,
2256 void **protocol_interface)
2257{
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002258 struct efi_handler *handler;
Heinrich Schuchardt9172cd92017-10-26 19:25:57 +02002259 efi_status_t ret;
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002260 struct efi_object *efiobj;
Alexander Grafbee91162016-03-04 01:09:59 +01002261
Rob Clark778e6af2017-09-13 18:05:41 -04002262 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002263
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002264 /*
2265 * The UEFI spec explicitly requires a protocol even if a registration
2266 * key is provided. This differs from the logic in LocateHandle().
2267 */
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002268 if (!protocol || !protocol_interface)
2269 return EFI_EXIT(EFI_INVALID_PARAMETER);
2270
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002271 if (registration) {
2272 struct efi_register_notify_event *event;
2273 struct efi_protocol_notification *handle;
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002274
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002275 event = efi_check_register_notify_event(registration);
2276 if (!event)
2277 return EFI_EXIT(EFI_INVALID_PARAMETER);
2278 /*
2279 * The UEFI spec requires to return EFI_NOT_FOUND if no
2280 * protocol instance matches protocol and registration.
2281 * So let's do the same for a mismatch between protocol and
2282 * registration.
2283 */
2284 if (guidcmp(&event->protocol, protocol))
2285 goto not_found;
2286 if (list_empty(&event->handles))
2287 goto not_found;
2288 handle = list_first_entry(&event->handles,
2289 struct efi_protocol_notification,
2290 link);
2291 efiobj = handle->handle;
2292 list_del(&handle->link);
2293 free(handle);
Heinrich Schuchardtfae01182018-09-26 05:27:55 +02002294 ret = efi_search_protocol(efiobj, protocol, &handler);
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002295 if (ret == EFI_SUCCESS)
2296 goto found;
2297 } else {
2298 list_for_each_entry(efiobj, &efi_obj_list, link) {
2299 ret = efi_search_protocol(efiobj, protocol, &handler);
2300 if (ret == EFI_SUCCESS)
2301 goto found;
Alexander Grafbee91162016-03-04 01:09:59 +01002302 }
2303 }
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002304not_found:
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +02002305 *protocol_interface = NULL;
Alexander Grafbee91162016-03-04 01:09:59 +01002306 return EFI_EXIT(EFI_NOT_FOUND);
Heinrich Schuchardte31b3b12019-05-29 18:06:46 +02002307found:
2308 *protocol_interface = handler->protocol_interface;
2309 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002310}
2311
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002312/**
Mario Six78a88f72018-07-10 08:40:17 +02002313 * efi_locate_device_path() - Get the device path and handle of an device
2314 * implementing a protocol
2315 * @protocol: GUID of the protocol
2316 * @device_path: device path
2317 * @device: handle of the device
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002318 *
2319 * This function implements the LocateDevicePath service.
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002320 *
Mario Six78a88f72018-07-10 08:40:17 +02002321 * See the Unified Extensible Firmware Interface (UEFI) specification for
2322 * details.
2323 *
2324 * Return: status code
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002325 */
2326static efi_status_t EFIAPI efi_locate_device_path(
2327 const efi_guid_t *protocol,
2328 struct efi_device_path **device_path,
2329 efi_handle_t *device)
2330{
2331 struct efi_device_path *dp;
2332 size_t i;
2333 struct efi_handler *handler;
2334 efi_handle_t *handles;
2335 size_t len, len_dp;
2336 size_t len_best = 0;
2337 efi_uintn_t no_handles;
2338 u8 *remainder;
2339 efi_status_t ret;
2340
2341 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
2342
Heinrich Schuchardtab557142019-05-10 19:21:41 +02002343 if (!protocol || !device_path || !*device_path) {
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002344 ret = EFI_INVALID_PARAMETER;
2345 goto out;
2346 }
2347
2348 /* Find end of device path */
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +02002349 len = efi_dp_instance_size(*device_path);
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002350
2351 /* Get all handles implementing the protocol */
2352 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
2353 &no_handles, &handles));
2354 if (ret != EFI_SUCCESS)
2355 goto out;
2356
2357 for (i = 0; i < no_handles; ++i) {
2358 /* Find the device path protocol */
2359 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
2360 &handler);
2361 if (ret != EFI_SUCCESS)
2362 continue;
2363 dp = (struct efi_device_path *)handler->protocol_interface;
Heinrich Schuchardtf6dd3f32018-04-16 07:59:08 +02002364 len_dp = efi_dp_instance_size(dp);
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002365 /*
2366 * This handle can only be a better fit
2367 * if its device path length is longer than the best fit and
2368 * if its device path length is shorter of equal the searched
2369 * device path.
2370 */
2371 if (len_dp <= len_best || len_dp > len)
2372 continue;
2373 /* Check if dp is a subpath of device_path */
2374 if (memcmp(*device_path, dp, len_dp))
2375 continue;
Heinrich Schuchardtab557142019-05-10 19:21:41 +02002376 if (!device) {
2377 ret = EFI_INVALID_PARAMETER;
2378 goto out;
2379 }
Heinrich Schuchardtae2c85c2017-11-26 14:05:10 +01002380 *device = handles[i];
2381 len_best = len_dp;
2382 }
2383 if (len_best) {
2384 remainder = (u8 *)*device_path + len_best;
2385 *device_path = (struct efi_device_path *)remainder;
2386 ret = EFI_SUCCESS;
2387 } else {
2388 ret = EFI_NOT_FOUND;
2389 }
2390out:
2391 return EFI_EXIT(ret);
2392}
2393
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002394/**
Mario Six78a88f72018-07-10 08:40:17 +02002395 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2396 * interfaces
2397 * @handle: handle on which the protocol interfaces shall be installed
2398 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2399 * interfaces
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002400 *
2401 * This function implements the MultipleProtocolInterfaces service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002402 *
Mario Six78a88f72018-07-10 08:40:17 +02002403 * See the Unified Extensible Firmware Interface (UEFI) specification for
2404 * details.
2405 *
2406 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002407 */
Heinrich Schuchardt7657ae12019-04-12 06:59:49 +02002408efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002409 (efi_handle_t *handle, ...)
Alexander Grafbee91162016-03-04 01:09:59 +01002410{
2411 EFI_ENTRY("%p", handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002412
Alexander Grafbeb077a2018-06-18 17:23:05 +02002413 efi_va_list argptr;
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02002414 const efi_guid_t *protocol;
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002415 void *protocol_interface;
Heinrich Schuchardt226cddb2019-05-16 21:54:04 +02002416 efi_handle_t old_handle;
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002417 efi_status_t r = EFI_SUCCESS;
2418 int i = 0;
2419
2420 if (!handle)
2421 return EFI_EXIT(EFI_INVALID_PARAMETER);
2422
Alexander Grafbeb077a2018-06-18 17:23:05 +02002423 efi_va_start(argptr, handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002424 for (;;) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002425 protocol = efi_va_arg(argptr, efi_guid_t*);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002426 if (!protocol)
2427 break;
Alexander Grafbeb077a2018-06-18 17:23:05 +02002428 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt226cddb2019-05-16 21:54:04 +02002429 /* Check that a device path has not been installed before */
2430 if (!guidcmp(protocol, &efi_guid_device_path)) {
2431 struct efi_device_path *dp = protocol_interface;
2432
2433 r = EFI_CALL(efi_locate_device_path(protocol, &dp,
2434 &old_handle));
Heinrich Schuchardt20562892019-05-20 19:55:18 +00002435 if (r == EFI_SUCCESS &&
2436 dp->type == DEVICE_PATH_TYPE_END) {
2437 EFI_PRINT("Path %pD already installed\n",
2438 protocol_interface);
Heinrich Schuchardt226cddb2019-05-16 21:54:04 +02002439 r = EFI_ALREADY_STARTED;
2440 break;
2441 }
2442 }
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01002443 r = EFI_CALL(efi_install_protocol_interface(
2444 handle, protocol,
2445 EFI_NATIVE_INTERFACE,
2446 protocol_interface));
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002447 if (r != EFI_SUCCESS)
2448 break;
2449 i++;
2450 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002451 efi_va_end(argptr);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002452 if (r == EFI_SUCCESS)
2453 return EFI_EXIT(r);
2454
Heinrich Schuchardt62471e42017-10-26 19:25:42 +02002455 /* If an error occurred undo all changes. */
Alexander Grafbeb077a2018-06-18 17:23:05 +02002456 efi_va_start(argptr, handle);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002457 for (; i; --i) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002458 protocol = efi_va_arg(argptr, efi_guid_t*);
2459 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002460 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
Heinrich Schuchardtcd534082017-11-06 21:17:45 +01002461 protocol_interface));
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002462 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002463 efi_va_end(argptr);
xypron.glpk@gmx.de58b83582017-07-11 22:06:20 +02002464
2465 return EFI_EXIT(r);
Alexander Grafbee91162016-03-04 01:09:59 +01002466}
2467
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002468/**
Mario Six78a88f72018-07-10 08:40:17 +02002469 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2470 * interfaces
2471 * @handle: handle from which the protocol interfaces shall be removed
2472 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2473 * interfaces
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002474 *
2475 * This function implements the UninstallMultipleProtocolInterfaces service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002476 *
Mario Six78a88f72018-07-10 08:40:17 +02002477 * See the Unified Extensible Firmware Interface (UEFI) specification for
2478 * details.
2479 *
2480 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002481 */
Alexander Grafbee91162016-03-04 01:09:59 +01002482static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002483 efi_handle_t handle, ...)
Alexander Grafbee91162016-03-04 01:09:59 +01002484{
2485 EFI_ENTRY("%p", handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002486
Alexander Grafbeb077a2018-06-18 17:23:05 +02002487 efi_va_list argptr;
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002488 const efi_guid_t *protocol;
2489 void *protocol_interface;
2490 efi_status_t r = EFI_SUCCESS;
2491 size_t i = 0;
2492
2493 if (!handle)
2494 return EFI_EXIT(EFI_INVALID_PARAMETER);
2495
Alexander Grafbeb077a2018-06-18 17:23:05 +02002496 efi_va_start(argptr, handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002497 for (;;) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002498 protocol = efi_va_arg(argptr, efi_guid_t*);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002499 if (!protocol)
2500 break;
Alexander Grafbeb077a2018-06-18 17:23:05 +02002501 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02002502 r = efi_uninstall_protocol(handle, protocol,
2503 protocol_interface);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002504 if (r != EFI_SUCCESS)
2505 break;
2506 i++;
2507 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002508 efi_va_end(argptr);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02002509 if (r == EFI_SUCCESS) {
2510 /* If the last protocol has been removed, delete the handle. */
2511 if (list_empty(&handle->protocols)) {
2512 list_del(&handle->link);
2513 free(handle);
2514 }
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002515 return EFI_EXIT(r);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02002516 }
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002517
2518 /* If an error occurred undo all changes. */
Alexander Grafbeb077a2018-06-18 17:23:05 +02002519 efi_va_start(argptr, handle);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002520 for (; i; --i) {
Alexander Grafbeb077a2018-06-18 17:23:05 +02002521 protocol = efi_va_arg(argptr, efi_guid_t*);
2522 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002523 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2524 EFI_NATIVE_INTERFACE,
2525 protocol_interface));
2526 }
Alexander Grafbeb077a2018-06-18 17:23:05 +02002527 efi_va_end(argptr);
Heinrich Schuchardt843ce542017-10-26 19:25:44 +02002528
Heinrich Schuchardte2373022018-09-24 19:57:27 +02002529 /* In case of an error always return EFI_INVALID_PARAMETER */
2530 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafbee91162016-03-04 01:09:59 +01002531}
2532
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002533/**
Mario Six78a88f72018-07-10 08:40:17 +02002534 * efi_calculate_crc32() - calculate cyclic redundancy code
2535 * @data: buffer with data
2536 * @data_size: size of buffer in bytes
2537 * @crc32_p: cyclic redundancy code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002538 *
2539 * This function implements the CalculateCrc32 service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002540 *
Mario Six78a88f72018-07-10 08:40:17 +02002541 * See the Unified Extensible Firmware Interface (UEFI) specification for
2542 * details.
2543 *
2544 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002545 */
Heinrich Schuchardt8aa83602018-07-07 15:36:04 +02002546static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2547 efi_uintn_t data_size,
2548 u32 *crc32_p)
Alexander Grafbee91162016-03-04 01:09:59 +01002549{
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002550 efi_status_t ret = EFI_SUCCESS;
2551
Heinrich Schuchardt8aa83602018-07-07 15:36:04 +02002552 EFI_ENTRY("%p, %zu", data, data_size);
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002553 if (!data || !data_size || !crc32_p) {
2554 ret = EFI_INVALID_PARAMETER;
2555 goto out;
2556 }
Alexander Grafbee91162016-03-04 01:09:59 +01002557 *crc32_p = crc32(0, data, data_size);
Heinrich Schuchardtdb80fe32019-05-16 23:31:29 +02002558out:
2559 return EFI_EXIT(ret);
Alexander Grafbee91162016-03-04 01:09:59 +01002560}
2561
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002562/**
Mario Six78a88f72018-07-10 08:40:17 +02002563 * efi_copy_mem() - copy memory
2564 * @destination: destination of the copy operation
2565 * @source: source of the copy operation
2566 * @length: number of bytes to copy
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002567 *
2568 * This function implements the CopyMem service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002569 *
Mario Six78a88f72018-07-10 08:40:17 +02002570 * See the Unified Extensible Firmware Interface (UEFI) specification for
2571 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002572 */
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002573static void EFIAPI efi_copy_mem(void *destination, const void *source,
2574 size_t length)
Alexander Grafbee91162016-03-04 01:09:59 +01002575{
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002576 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Heinrich Schuchardt0bc81a72019-01-09 21:41:13 +01002577 memmove(destination, source, length);
Heinrich Schuchardtf7c78172017-10-05 16:35:51 +02002578 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002579}
2580
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002581/**
Mario Six78a88f72018-07-10 08:40:17 +02002582 * efi_set_mem() - Fill memory with a byte value.
2583 * @buffer: buffer to fill
2584 * @size: size of buffer in bytes
2585 * @value: byte to copy to the buffer
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002586 *
2587 * This function implements the SetMem service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002588 *
Mario Six78a88f72018-07-10 08:40:17 +02002589 * See the Unified Extensible Firmware Interface (UEFI) specification for
2590 * details.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002591 */
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002592static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafbee91162016-03-04 01:09:59 +01002593{
Heinrich Schuchardtfc05a952017-10-05 16:35:52 +02002594 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafbee91162016-03-04 01:09:59 +01002595 memset(buffer, value, size);
Heinrich Schuchardtf7c78172017-10-05 16:35:51 +02002596 EFI_EXIT(EFI_SUCCESS);
Alexander Grafbee91162016-03-04 01:09:59 +01002597}
2598
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002599/**
Mario Six78a88f72018-07-10 08:40:17 +02002600 * efi_protocol_open() - open protocol interface on a handle
2601 * @handler: handler of a protocol
2602 * @protocol_interface: interface implementing the protocol
2603 * @agent_handle: handle of the driver
2604 * @controller_handle: handle of the controller
2605 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002606 *
Mario Six78a88f72018-07-10 08:40:17 +02002607 * Return: status code
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002608 */
2609static efi_status_t efi_protocol_open(
2610 struct efi_handler *handler,
2611 void **protocol_interface, void *agent_handle,
2612 void *controller_handle, uint32_t attributes)
2613{
2614 struct efi_open_protocol_info_item *item;
2615 struct efi_open_protocol_info_entry *match = NULL;
2616 bool opened_by_driver = false;
2617 bool opened_exclusive = false;
2618
2619 /* If there is no agent, only return the interface */
2620 if (!agent_handle)
2621 goto out;
2622
2623 /* For TEST_PROTOCOL ignore interface attribute */
2624 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2625 *protocol_interface = NULL;
2626
2627 /*
2628 * Check if the protocol is already opened by a driver with the same
2629 * attributes or opened exclusively
2630 */
2631 list_for_each_entry(item, &handler->open_infos, link) {
2632 if (item->info.agent_handle == agent_handle) {
2633 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2634 (item->info.attributes == attributes))
2635 return EFI_ALREADY_STARTED;
Heinrich Schuchardt399a39e2019-05-30 14:16:31 +02002636 } else {
2637 if (item->info.attributes &
2638 EFI_OPEN_PROTOCOL_BY_DRIVER)
2639 opened_by_driver = true;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002640 }
2641 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2642 opened_exclusive = true;
2643 }
2644
2645 /* Only one controller can open the protocol exclusively */
Heinrich Schuchardt399a39e2019-05-30 14:16:31 +02002646 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2647 if (opened_exclusive)
2648 return EFI_ACCESS_DENIED;
2649 } else if (attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
2650 if (opened_exclusive || opened_by_driver)
2651 return EFI_ACCESS_DENIED;
2652 }
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002653
2654 /* Prepare exclusive opening */
2655 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2656 /* Try to disconnect controllers */
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002657disconnect_next:
2658 opened_by_driver = false;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002659 list_for_each_entry(item, &handler->open_infos, link) {
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002660 efi_status_t ret;
2661
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002662 if (item->info.attributes ==
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002663 EFI_OPEN_PROTOCOL_BY_DRIVER) {
2664 ret = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002665 item->info.controller_handle,
2666 item->info.agent_handle,
2667 NULL));
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002668 if (ret == EFI_SUCCESS)
2669 /*
2670 * Child controllers may have been
2671 * removed from the open_infos list. So
2672 * let's restart the loop.
2673 */
2674 goto disconnect_next;
2675 else
2676 opened_by_driver = true;
2677 }
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002678 }
Heinrich Schuchardtdae7ce42019-05-30 14:16:31 +02002679 /* Only one driver can be connected */
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002680 if (opened_by_driver)
2681 return EFI_ACCESS_DENIED;
2682 }
2683
2684 /* Find existing entry */
2685 list_for_each_entry(item, &handler->open_infos, link) {
2686 if (item->info.agent_handle == agent_handle &&
Heinrich Schuchardtb4863ba2019-06-01 20:15:10 +02002687 item->info.controller_handle == controller_handle &&
2688 item->info.attributes == attributes)
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002689 match = &item->info;
2690 }
2691 /* None found, create one */
2692 if (!match) {
2693 match = efi_create_open_info(handler);
2694 if (!match)
2695 return EFI_OUT_OF_RESOURCES;
2696 }
2697
2698 match->agent_handle = agent_handle;
2699 match->controller_handle = controller_handle;
2700 match->attributes = attributes;
2701 match->open_count++;
2702
2703out:
2704 /* For TEST_PROTOCOL ignore interface attribute. */
2705 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2706 *protocol_interface = handler->protocol_interface;
2707
2708 return EFI_SUCCESS;
2709}
2710
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002711/**
Mario Six78a88f72018-07-10 08:40:17 +02002712 * efi_open_protocol() - open protocol interface on a handle
2713 * @handle: handle on which the protocol shall be opened
2714 * @protocol: GUID of the protocol
2715 * @protocol_interface: interface implementing the protocol
2716 * @agent_handle: handle of the driver
2717 * @controller_handle: handle of the controller
2718 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002719 *
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002720 * This function implements the OpenProtocol interface.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002721 *
Mario Six78a88f72018-07-10 08:40:17 +02002722 * See the Unified Extensible Firmware Interface (UEFI) specification for
2723 * details.
2724 *
2725 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02002726 */
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +02002727static efi_status_t EFIAPI efi_open_protocol
2728 (efi_handle_t handle, const efi_guid_t *protocol,
2729 void **protocol_interface, efi_handle_t agent_handle,
2730 efi_handle_t controller_handle, uint32_t attributes)
Alexander Grafbee91162016-03-04 01:09:59 +01002731{
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01002732 struct efi_handler *handler;
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002733 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafbee91162016-03-04 01:09:59 +01002734
Rob Clark778e6af2017-09-13 18:05:41 -04002735 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01002736 protocol_interface, agent_handle, controller_handle,
2737 attributes);
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02002738
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002739 if (!handle || !protocol ||
2740 (!protocol_interface && attributes !=
2741 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
2742 goto out;
2743 }
2744
2745 switch (attributes) {
2746 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2747 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2748 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2749 break;
2750 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2751 if (controller_handle == handle)
2752 goto out;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002753 /* fall-through */
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002754 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2755 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002756 /* Check that the controller handle is valid */
2757 if (!efi_search_obj(controller_handle))
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002758 goto out;
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002759 /* fall-through */
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002760 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002761 /* Check that the agent handle is valid */
2762 if (!efi_search_obj(agent_handle))
xypron.glpk@gmx.de69baec62017-07-11 22:06:15 +02002763 goto out;
2764 break;
2765 default:
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +02002766 goto out;
2767 }
2768
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01002769 r = efi_search_protocol(handle, protocol, &handler);
Heinrich Schuchardte7c3cd62019-05-05 11:24:53 +02002770 switch (r) {
2771 case EFI_SUCCESS:
2772 break;
2773 case EFI_NOT_FOUND:
2774 r = EFI_UNSUPPORTED;
Heinrich Schuchardt80286e82017-11-26 14:05:15 +01002775 goto out;
Heinrich Schuchardte7c3cd62019-05-05 11:24:53 +02002776 default:
2777 goto out;
2778 }
Alexander Grafbee91162016-03-04 01:09:59 +01002779
Heinrich Schuchardt191a41c2018-01-11 08:15:58 +01002780 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2781 controller_handle, attributes);
Alexander Grafbee91162016-03-04 01:09:59 +01002782out:
2783 return EFI_EXIT(r);
2784}
2785
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02002786/**
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002787 * efi_start_image() - call the entry point of an image
2788 * @image_handle: handle of the image
2789 * @exit_data_size: size of the buffer
2790 * @exit_data: buffer to receive the exit data of the called image
2791 *
2792 * This function implements the StartImage service.
2793 *
2794 * See the Unified Extensible Firmware Interface (UEFI) specification for
2795 * details.
2796 *
2797 * Return: status code
2798 */
2799efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
2800 efi_uintn_t *exit_data_size,
2801 u16 **exit_data)
2802{
2803 struct efi_loaded_image_obj *image_obj =
2804 (struct efi_loaded_image_obj *)image_handle;
2805 efi_status_t ret;
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002806 void *info;
2807 efi_handle_t parent_image = current_image;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002808
2809 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
2810
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002811 /* Check parameters */
2812 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2813 &info, NULL, NULL,
2814 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2815 if (ret != EFI_SUCCESS)
2816 return EFI_EXIT(EFI_INVALID_PARAMETER);
2817
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002818 efi_is_direct_boot = false;
2819
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02002820 image_obj->exit_data_size = exit_data_size;
2821 image_obj->exit_data = exit_data;
2822
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002823 /* call the image! */
2824 if (setjmp(&image_obj->exit_jmp)) {
2825 /*
2826 * We called the entry point of the child image with EFI_CALL
2827 * in the lines below. The child image called the Exit() boot
2828 * service efi_exit() which executed the long jump that brought
2829 * us to the current line. This implies that the second half
2830 * of the EFI_CALL macro has not been executed.
2831 */
2832#ifdef CONFIG_ARM
2833 /*
2834 * efi_exit() called efi_restore_gd(). We have to undo this
2835 * otherwise __efi_entry_check() will put the wrong value into
2836 * app_gd.
2837 */
2838 gd = app_gd;
2839#endif
2840 /*
2841 * To get ready to call EFI_EXIT below we have to execute the
2842 * missed out steps of EFI_CALL.
2843 */
2844 assert(__efi_entry_check());
Heinrich Schuchardt529886a2019-05-05 11:56:23 +02002845 EFI_PRINT("%lu returned by started image\n",
2846 (unsigned long)((uintptr_t)image_obj->exit_status &
2847 ~EFI_ERROR_MASK));
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002848 current_image = parent_image;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002849 return EFI_EXIT(image_obj->exit_status);
2850 }
2851
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002852 current_image = image_handle;
Heinrich Schuchardtcd73aba2019-05-01 14:20:18 +02002853 image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +09002854 EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002855 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
2856
2857 /*
2858 * Usually UEFI applications call Exit() instead of returning.
2859 * But because the world doesn't consist of ponies and unicorns,
2860 * we're happy to emulate that behavior on behalf of a payload
2861 * that forgot.
2862 */
2863 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
2864}
2865
2866/**
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02002867 * efi_delete_image() - delete loaded image from memory)
2868 *
2869 * @image_obj: handle of the loaded image
2870 * @loaded_image_protocol: loaded image protocol
2871 */
2872static void efi_delete_image(struct efi_loaded_image_obj *image_obj,
2873 struct efi_loaded_image *loaded_image_protocol)
2874{
2875 efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
2876 efi_size_in_pages(loaded_image_protocol->image_size));
2877 efi_delete_handle(&image_obj->header);
2878}
2879
2880/**
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02002881 * efi_unload_image() - unload an EFI image
2882 * @image_handle: handle of the image to be unloaded
2883 *
2884 * This function implements the UnloadImage service.
2885 *
2886 * See the Unified Extensible Firmware Interface (UEFI) specification for
2887 * details.
2888 *
2889 * Return: status code
2890 */
2891efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
2892{
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02002893 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02002894 struct efi_object *efiobj;
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02002895 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02002896
2897 EFI_ENTRY("%p", image_handle);
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02002898
Heinrich Schuchardtdf116e82019-05-01 18:25:45 +02002899 efiobj = efi_search_obj(image_handle);
2900 if (!efiobj) {
2901 ret = EFI_INVALID_PARAMETER;
2902 goto out;
2903 }
2904 /* Find the loaded image protocol */
2905 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2906 (void **)&loaded_image_protocol,
2907 NULL, NULL,
2908 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2909 if (ret != EFI_SUCCESS) {
2910 ret = EFI_INVALID_PARAMETER;
2911 goto out;
2912 }
2913 switch (efiobj->type) {
2914 case EFI_OBJECT_TYPE_STARTED_IMAGE:
2915 /* Call the unload function */
2916 if (!loaded_image_protocol->unload) {
2917 ret = EFI_UNSUPPORTED;
2918 goto out;
2919 }
2920 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
2921 if (ret != EFI_SUCCESS)
2922 goto out;
2923 break;
2924 case EFI_OBJECT_TYPE_LOADED_IMAGE:
2925 break;
2926 default:
2927 ret = EFI_INVALID_PARAMETER;
2928 goto out;
2929 }
2930 efi_delete_image((struct efi_loaded_image_obj *)efiobj,
2931 loaded_image_protocol);
2932out:
2933 return EFI_EXIT(ret);
Heinrich Schuchardt46e99a92019-05-01 19:04:32 +02002934}
2935
2936/**
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02002937 * efi_update_exit_data() - fill exit data parameters of StartImage()
2938 *
2939 * @image_obj image handle
2940 * @exit_data_size size of the exit data buffer
2941 * @exit_data buffer with data returned by UEFI payload
2942 * Return: status code
2943 */
2944static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
2945 efi_uintn_t exit_data_size,
2946 u16 *exit_data)
2947{
2948 efi_status_t ret;
2949
2950 /*
2951 * If exit_data is not provided to StartImage(), exit_data_size must be
2952 * ignored.
2953 */
2954 if (!image_obj->exit_data)
2955 return EFI_SUCCESS;
2956 if (image_obj->exit_data_size)
2957 *image_obj->exit_data_size = exit_data_size;
2958 if (exit_data_size && exit_data) {
2959 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
2960 exit_data_size,
2961 (void **)image_obj->exit_data);
2962 if (ret != EFI_SUCCESS)
2963 return ret;
2964 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
2965 } else {
2966 image_obj->exit_data = NULL;
2967 }
2968 return EFI_SUCCESS;
2969}
2970
2971/**
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002972 * efi_exit() - leave an EFI application or driver
2973 * @image_handle: handle of the application or driver that is exiting
2974 * @exit_status: status code
2975 * @exit_data_size: size of the buffer in bytes
2976 * @exit_data: buffer with data describing an error
2977 *
2978 * This function implements the Exit service.
2979 *
2980 * See the Unified Extensible Firmware Interface (UEFI) specification for
2981 * details.
2982 *
2983 * Return: status code
2984 */
2985static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
2986 efi_status_t exit_status,
2987 efi_uintn_t exit_data_size,
2988 u16 *exit_data)
2989{
2990 /*
2991 * TODO: We should call the unload procedure of the loaded
2992 * image protocol.
2993 */
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01002994 efi_status_t ret;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02002995 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardta115d562019-03-26 19:02:05 +01002996 struct efi_loaded_image_obj *image_obj =
2997 (struct efi_loaded_image_obj *)image_handle;
2998
2999 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
3000 exit_data_size, exit_data);
3001
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003002 /* Check parameters */
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003003 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003004 (void **)&loaded_image_protocol,
3005 NULL, NULL,
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003006 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003007 if (ret != EFI_SUCCESS) {
3008 ret = EFI_INVALID_PARAMETER;
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003009 goto out;
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003010 }
3011
3012 /* Unloading of unstarted images */
3013 switch (image_obj->header.type) {
3014 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3015 break;
3016 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3017 efi_delete_image(image_obj, loaded_image_protocol);
3018 ret = EFI_SUCCESS;
3019 goto out;
3020 default:
3021 /* Handle does not refer to loaded image */
3022 ret = EFI_INVALID_PARAMETER;
3023 goto out;
3024 }
3025 /* A started image can only be unloaded it is the last one started. */
3026 if (image_handle != current_image) {
3027 ret = EFI_INVALID_PARAMETER;
3028 goto out;
3029 }
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003030
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003031 /* Exit data is only foreseen in case of failure. */
3032 if (exit_status != EFI_SUCCESS) {
3033 ret = efi_update_exit_data(image_obj, exit_data_size,
3034 exit_data);
3035 /* Exiting has priority. Don't return error to caller. */
3036 if (ret != EFI_SUCCESS)
3037 EFI_PRINT("%s: out of memory\n", __func__);
3038 }
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003039 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
3040 exit_status != EFI_SUCCESS)
3041 efi_delete_image(image_obj, loaded_image_protocol);
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +02003042
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003043 /* Make sure entry/exit counts for EFI world cross-overs match */
3044 EFI_EXIT(exit_status);
3045
3046 /*
3047 * But longjmp out with the U-Boot gd, not the application's, as
3048 * the other end is a setjmp call inside EFI context.
3049 */
3050 efi_restore_gd();
3051
3052 image_obj->exit_status = exit_status;
3053 longjmp(&image_obj->exit_jmp, 1);
3054
3055 panic("EFI application exited");
Heinrich Schuchardtbb31c3f2019-03-26 19:03:17 +01003056out:
Heinrich Schuchardt126a43f2019-05-01 20:07:04 +02003057 return EFI_EXIT(ret);
Heinrich Schuchardta115d562019-03-26 19:02:05 +01003058}
3059
3060/**
Mario Six78a88f72018-07-10 08:40:17 +02003061 * efi_handle_protocol() - get interface of a protocol on a handle
3062 * @handle: handle on which the protocol shall be opened
3063 * @protocol: GUID of the protocol
3064 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003065 *
3066 * This function implements the HandleProtocol service.
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003067 *
Mario Six78a88f72018-07-10 08:40:17 +02003068 * See the Unified Extensible Firmware Interface (UEFI) specification for
3069 * details.
3070 *
3071 * Return: status code
Heinrich Schuchardt332468f2017-09-21 18:30:11 +02003072 */
Heinrich Schuchardt2074f702018-01-11 08:16:09 +01003073static efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
Heinrich Schuchardt5a9682d2017-10-05 16:35:53 +02003074 const efi_guid_t *protocol,
Alexander Grafbee91162016-03-04 01:09:59 +01003075 void **protocol_interface)
3076{
Heinrich Schuchardt755d42d2019-06-01 19:29:39 +02003077 return efi_open_protocol(handle, protocol, protocol_interface, efi_root,
xypron.glpk@gmx.de8e1d3292017-06-29 21:16:19 +02003078 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafbee91162016-03-04 01:09:59 +01003079}
3080
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003081/**
Mario Six78a88f72018-07-10 08:40:17 +02003082 * efi_bind_controller() - bind a single driver to a controller
3083 * @controller_handle: controller handle
3084 * @driver_image_handle: driver handle
3085 * @remain_device_path: remaining path
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003086 *
Mario Six78a88f72018-07-10 08:40:17 +02003087 * Return: status code
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003088 */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003089static efi_status_t efi_bind_controller(
3090 efi_handle_t controller_handle,
3091 efi_handle_t driver_image_handle,
3092 struct efi_device_path *remain_device_path)
3093{
3094 struct efi_driver_binding_protocol *binding_protocol;
3095 efi_status_t r;
3096
3097 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3098 &efi_guid_driver_binding_protocol,
3099 (void **)&binding_protocol,
3100 driver_image_handle, NULL,
3101 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3102 if (r != EFI_SUCCESS)
3103 return r;
3104 r = EFI_CALL(binding_protocol->supported(binding_protocol,
3105 controller_handle,
3106 remain_device_path));
3107 if (r == EFI_SUCCESS)
3108 r = EFI_CALL(binding_protocol->start(binding_protocol,
3109 controller_handle,
3110 remain_device_path));
3111 EFI_CALL(efi_close_protocol(driver_image_handle,
3112 &efi_guid_driver_binding_protocol,
3113 driver_image_handle, NULL));
3114 return r;
3115}
3116
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003117/**
Mario Six78a88f72018-07-10 08:40:17 +02003118 * efi_connect_single_controller() - connect a single driver to a controller
3119 * @controller_handle: controller
3120 * @driver_image_handle: driver
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003121 * @remain_device_path: remaining path
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003122 *
Mario Six78a88f72018-07-10 08:40:17 +02003123 * Return: status code
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003124 */
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003125static efi_status_t efi_connect_single_controller(
3126 efi_handle_t controller_handle,
3127 efi_handle_t *driver_image_handle,
3128 struct efi_device_path *remain_device_path)
3129{
3130 efi_handle_t *buffer;
3131 size_t count;
3132 size_t i;
3133 efi_status_t r;
3134 size_t connected = 0;
3135
3136 /* Get buffer with all handles with driver binding protocol */
3137 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3138 &efi_guid_driver_binding_protocol,
3139 NULL, &count, &buffer));
3140 if (r != EFI_SUCCESS)
3141 return r;
3142
3143 /* Context Override */
3144 if (driver_image_handle) {
3145 for (; *driver_image_handle; ++driver_image_handle) {
3146 for (i = 0; i < count; ++i) {
3147 if (buffer[i] == *driver_image_handle) {
3148 buffer[i] = NULL;
3149 r = efi_bind_controller(
3150 controller_handle,
3151 *driver_image_handle,
3152 remain_device_path);
3153 /*
3154 * For drivers that do not support the
3155 * controller or are already connected
3156 * we receive an error code here.
3157 */
3158 if (r == EFI_SUCCESS)
3159 ++connected;
3160 }
3161 }
3162 }
3163 }
3164
3165 /*
3166 * TODO: Some overrides are not yet implemented:
3167 * - Platform Driver Override
3168 * - Driver Family Override Search
3169 * - Bus Specific Driver Override
3170 */
3171
3172 /* Driver Binding Search */
3173 for (i = 0; i < count; ++i) {
3174 if (buffer[i]) {
3175 r = efi_bind_controller(controller_handle,
3176 buffer[i],
3177 remain_device_path);
3178 if (r == EFI_SUCCESS)
3179 ++connected;
3180 }
3181 }
3182
3183 efi_free_pool(buffer);
3184 if (!connected)
3185 return EFI_NOT_FOUND;
3186 return EFI_SUCCESS;
3187}
3188
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003189/**
Mario Six78a88f72018-07-10 08:40:17 +02003190 * efi_connect_controller() - connect a controller to a driver
3191 * @controller_handle: handle of the controller
3192 * @driver_image_handle: handle of the driver
3193 * @remain_device_path: device path of a child controller
3194 * @recursive: true to connect all child controllers
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003195 *
3196 * This function implements the ConnectController service.
Mario Six78a88f72018-07-10 08:40:17 +02003197 *
3198 * See the Unified Extensible Firmware Interface (UEFI) specification for
3199 * details.
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003200 *
3201 * First all driver binding protocol handles are tried for binding drivers.
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003202 * Afterwards all handles that have opened a protocol of the controller
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003203 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3204 *
Mario Six78a88f72018-07-10 08:40:17 +02003205 * Return: status code
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003206 */
3207static efi_status_t EFIAPI efi_connect_controller(
3208 efi_handle_t controller_handle,
3209 efi_handle_t *driver_image_handle,
3210 struct efi_device_path *remain_device_path,
3211 bool recursive)
3212{
3213 efi_status_t r;
3214 efi_status_t ret = EFI_NOT_FOUND;
3215 struct efi_object *efiobj;
3216
Heinrich Schuchardtd1788362018-12-09 16:39:20 +01003217 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
Heinrich Schuchardtf0959db2018-01-11 08:16:02 +01003218 remain_device_path, recursive);
3219
3220 efiobj = efi_search_obj(controller_handle);
3221 if (!efiobj) {
3222 ret = EFI_INVALID_PARAMETER;
3223 goto out;
3224 }
3225
3226 r = efi_connect_single_controller(controller_handle,
3227 driver_image_handle,
3228 remain_device_path);
3229 if (r == EFI_SUCCESS)
3230 ret = EFI_SUCCESS;
3231 if (recursive) {
3232 struct efi_handler *handler;
3233 struct efi_open_protocol_info_item *item;
3234
3235 list_for_each_entry(handler, &efiobj->protocols, link) {
3236 list_for_each_entry(item, &handler->open_infos, link) {
3237 if (item->info.attributes &
3238 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3239 r = EFI_CALL(efi_connect_controller(
3240 item->info.controller_handle,
3241 driver_image_handle,
3242 remain_device_path,
3243 recursive));
3244 if (r == EFI_SUCCESS)
3245 ret = EFI_SUCCESS;
3246 }
3247 }
3248 }
3249 }
3250 /* Check for child controller specified by end node */
3251 if (ret != EFI_SUCCESS && remain_device_path &&
3252 remain_device_path->type == DEVICE_PATH_TYPE_END)
3253 ret = EFI_SUCCESS;
3254out:
3255 return EFI_EXIT(ret);
3256}
3257
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003258/**
Mario Six78a88f72018-07-10 08:40:17 +02003259 * efi_reinstall_protocol_interface() - reinstall protocol interface
3260 * @handle: handle on which the protocol shall be reinstalled
3261 * @protocol: GUID of the protocol to be installed
3262 * @old_interface: interface to be removed
3263 * @new_interface: interface to be installed
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003264 *
3265 * This function implements the ReinstallProtocolInterface service.
Mario Six78a88f72018-07-10 08:40:17 +02003266 *
3267 * See the Unified Extensible Firmware Interface (UEFI) specification for
3268 * details.
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003269 *
3270 * The old interface is uninstalled. The new interface is installed.
3271 * Drivers are connected.
3272 *
Mario Six78a88f72018-07-10 08:40:17 +02003273 * Return: status code
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003274 */
3275static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3276 efi_handle_t handle, const efi_guid_t *protocol,
3277 void *old_interface, void *new_interface)
3278{
3279 efi_status_t ret;
3280
3281 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
3282 new_interface);
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02003283
3284 /* Uninstall protocol but do not delete handle */
3285 ret = efi_uninstall_protocol(handle, protocol, old_interface);
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003286 if (ret != EFI_SUCCESS)
3287 goto out;
Heinrich Schuchardt9b47f132018-09-28 22:14:17 +02003288
3289 /* Install the new protocol */
3290 ret = efi_add_protocol(handle, protocol, new_interface);
3291 /*
3292 * The UEFI spec does not specify what should happen to the handle
3293 * if in case of an error no protocol interface remains on the handle.
3294 * So let's do nothing here.
3295 */
Heinrich Schuchardte861a122018-05-11 12:09:22 +02003296 if (ret != EFI_SUCCESS)
3297 goto out;
3298 /*
3299 * The returned status code has to be ignored.
3300 * Do not create an error if no suitable driver for the handle exists.
3301 */
3302 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3303out:
3304 return EFI_EXIT(ret);
3305}
3306
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003307/**
Mario Six78a88f72018-07-10 08:40:17 +02003308 * efi_get_child_controllers() - get all child controllers associated to a driver
3309 * @efiobj: handle of the controller
3310 * @driver_handle: handle of the driver
3311 * @number_of_children: number of child controllers
3312 * @child_handle_buffer: handles of the the child controllers
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003313 *
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003314 * The allocated buffer has to be freed with free().
3315 *
Mario Six78a88f72018-07-10 08:40:17 +02003316 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003317 */
3318static efi_status_t efi_get_child_controllers(
3319 struct efi_object *efiobj,
3320 efi_handle_t driver_handle,
3321 efi_uintn_t *number_of_children,
3322 efi_handle_t **child_handle_buffer)
3323{
3324 struct efi_handler *handler;
3325 struct efi_open_protocol_info_item *item;
3326 efi_uintn_t count = 0, i;
3327 bool duplicate;
3328
3329 /* Count all child controller associations */
3330 list_for_each_entry(handler, &efiobj->protocols, link) {
3331 list_for_each_entry(item, &handler->open_infos, link) {
3332 if (item->info.agent_handle == driver_handle &&
3333 item->info.attributes &
3334 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3335 ++count;
3336 }
3337 }
3338 /*
3339 * Create buffer. In case of duplicate child controller assignments
3340 * the buffer will be too large. But that does not harm.
3341 */
3342 *number_of_children = 0;
3343 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3344 if (!*child_handle_buffer)
3345 return EFI_OUT_OF_RESOURCES;
3346 /* Copy unique child handles */
3347 list_for_each_entry(handler, &efiobj->protocols, link) {
3348 list_for_each_entry(item, &handler->open_infos, link) {
3349 if (item->info.agent_handle == driver_handle &&
3350 item->info.attributes &
3351 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3352 /* Check this is a new child controller */
3353 duplicate = false;
3354 for (i = 0; i < *number_of_children; ++i) {
3355 if ((*child_handle_buffer)[i] ==
3356 item->info.controller_handle)
3357 duplicate = true;
3358 }
3359 /* Copy handle to buffer */
3360 if (!duplicate) {
3361 i = (*number_of_children)++;
3362 (*child_handle_buffer)[i] =
3363 item->info.controller_handle;
3364 }
3365 }
3366 }
3367 }
3368 return EFI_SUCCESS;
3369}
3370
Heinrich Schuchardt6b03cd12018-05-11 18:15:41 +02003371/**
Mario Six78a88f72018-07-10 08:40:17 +02003372 * efi_disconnect_controller() - disconnect a controller from a driver
3373 * @controller_handle: handle of the controller
3374 * @driver_image_handle: handle of the driver
3375 * @child_handle: handle of the child to destroy
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003376 *
3377 * This function implements the DisconnectController service.
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003378 *
Mario Six78a88f72018-07-10 08:40:17 +02003379 * See the Unified Extensible Firmware Interface (UEFI) specification for
3380 * details.
3381 *
3382 * Return: status code
Heinrich Schuchardt3f9b0042018-01-11 08:16:04 +01003383 */
3384static efi_status_t EFIAPI efi_disconnect_controller(
3385 efi_handle_t controller_handle,
3386 efi_handle_t driver_image_handle,
3387 efi_handle_t child_handle)
3388{
3389 struct efi_driver_binding_protocol *binding_protocol;
3390 efi_handle_t *child_handle_buffer = NULL;
3391 size_t number_of_children = 0;
3392 efi_status_t r;
3393 size_t stop_count = 0;
3394 struct efi_object *efiobj;
3395
3396 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3397 child_handle);
3398
3399 efiobj = efi_search_obj(controller_handle);
3400 if (!efiobj) {
3401 r = EFI_INVALID_PARAMETER;
3402 goto out;
3403 }
3404
3405 if (child_handle && !efi_search_obj(child_handle)) {
3406 r = EFI_INVALID_PARAMETER;
3407 goto out;
3408 }
3409
3410 /* If no driver handle is supplied, disconnect all drivers */
3411 if (!driver_image_handle) {
3412 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3413 goto out;
3414 }
3415
3416 /* Create list of child handles */
3417 if (child_handle) {
3418 number_of_children = 1;
3419 child_handle_buffer = &child_handle;
3420 } else {
3421 efi_get_child_controllers(efiobj,
3422 driver_image_handle,
3423 &number_of_children,
3424 &child_handle_buffer);
3425 }
3426
3427 /* Get the driver binding protocol */
3428 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3429 &efi_guid_driver_binding_protocol,
3430 (void **)&binding_protocol,
3431 driver_image_handle, NULL,
3432 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3433 if (r != EFI_SUCCESS)
3434 goto out;
3435 /* Remove the children */
3436 if (number_of_children) {
3437 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3438 controller_handle,
3439 number_of_children,
3440 child_handle_buffer));
3441 if (r == EFI_SUCCESS)
3442 ++stop_count;
3443 }
3444 /* Remove the driver */
3445 if (!child_handle)
3446 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3447 controller_handle,
3448 0, NULL));
3449 if (r == EFI_SUCCESS)
3450 ++stop_count;
3451 EFI_CALL(efi_close_protocol(driver_image_handle,
3452 &efi_guid_driver_binding_protocol,
3453 driver_image_handle, NULL));
3454
3455 if (stop_count)
3456 r = EFI_SUCCESS;
3457 else
3458 r = EFI_NOT_FOUND;
3459out:
3460 if (!child_handle)
3461 free(child_handle_buffer);
3462 return EFI_EXIT(r);
3463}
3464
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003465static struct efi_boot_services efi_boot_services = {
Alexander Grafbee91162016-03-04 01:09:59 +01003466 .hdr = {
Heinrich Schuchardt112f2432018-06-28 12:45:27 +02003467 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3468 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt71c846a2018-06-28 12:45:29 +02003469 .headersize = sizeof(struct efi_boot_services),
Alexander Grafbee91162016-03-04 01:09:59 +01003470 },
3471 .raise_tpl = efi_raise_tpl,
3472 .restore_tpl = efi_restore_tpl,
3473 .allocate_pages = efi_allocate_pages_ext,
3474 .free_pages = efi_free_pages_ext,
3475 .get_memory_map = efi_get_memory_map_ext,
Stefan Brünsead12742016-10-09 22:17:18 +02003476 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns42417bc2016-10-09 22:17:26 +02003477 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de49deb452017-07-18 20:17:20 +02003478 .create_event = efi_create_event_ext,
xypron.glpk@gmx.debfc72462017-07-18 20:17:21 +02003479 .set_timer = efi_set_timer_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003480 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.dec6841592017-07-18 20:17:18 +02003481 .signal_event = efi_signal_event_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003482 .close_event = efi_close_event,
3483 .check_event = efi_check_event,
Heinrich Schuchardt1760ef52017-11-06 21:17:44 +01003484 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafbee91162016-03-04 01:09:59 +01003485 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardtcd534082017-11-06 21:17:45 +01003486 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafbee91162016-03-04 01:09:59 +01003487 .handle_protocol = efi_handle_protocol,
3488 .reserved = NULL,
3489 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de26329582017-07-11 22:06:21 +02003490 .locate_handle = efi_locate_handle_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003491 .locate_device_path = efi_locate_device_path,
Alexander Graf488bf122016-08-19 01:23:24 +02003492 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafbee91162016-03-04 01:09:59 +01003493 .load_image = efi_load_image,
3494 .start_image = efi_start_image,
Alexander Grafa86aeaf2016-05-20 23:28:23 +02003495 .exit = efi_exit,
Alexander Grafbee91162016-03-04 01:09:59 +01003496 .unload_image = efi_unload_image,
3497 .exit_boot_services = efi_exit_boot_services,
3498 .get_next_monotonic_count = efi_get_next_monotonic_count,
3499 .stall = efi_stall,
3500 .set_watchdog_timer = efi_set_watchdog_timer,
3501 .connect_controller = efi_connect_controller,
3502 .disconnect_controller = efi_disconnect_controller,
3503 .open_protocol = efi_open_protocol,
3504 .close_protocol = efi_close_protocol,
3505 .open_protocol_information = efi_open_protocol_information,
3506 .protocols_per_handle = efi_protocols_per_handle,
3507 .locate_handle_buffer = efi_locate_handle_buffer,
3508 .locate_protocol = efi_locate_protocol,
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01003509 .install_multiple_protocol_interfaces =
3510 efi_install_multiple_protocol_interfaces,
3511 .uninstall_multiple_protocol_interfaces =
3512 efi_uninstall_multiple_protocol_interfaces,
Alexander Grafbee91162016-03-04 01:09:59 +01003513 .calculate_crc32 = efi_calculate_crc32,
3514 .copy_mem = efi_copy_mem,
3515 .set_mem = efi_set_mem,
Heinrich Schuchardt9f0930e2018-02-04 23:05:13 +01003516 .create_event_ex = efi_create_event_ex,
Alexander Grafbee91162016-03-04 01:09:59 +01003517};
3518
Heinrich Schuchardt0b386532018-06-28 12:45:30 +02003519static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
Alexander Grafbee91162016-03-04 01:09:59 +01003520
Alexander Graf3c63db92016-10-14 13:45:30 +02003521struct efi_system_table __efi_runtime_data systab = {
Alexander Grafbee91162016-03-04 01:09:59 +01003522 .hdr = {
3523 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
Heinrich Schuchardt112f2432018-06-28 12:45:27 +02003524 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt71c846a2018-06-28 12:45:29 +02003525 .headersize = sizeof(struct efi_system_table),
Alexander Grafbee91162016-03-04 01:09:59 +01003526 },
Heinrich Schuchardt0b386532018-06-28 12:45:30 +02003527 .fw_vendor = firmware_vendor,
3528 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
Heinrich Schuchardtab9efa92018-02-18 15:17:49 +01003529 .con_in = (void *)&efi_con_in,
3530 .con_out = (void *)&efi_con_out,
3531 .std_err = (void *)&efi_con_out,
3532 .runtime = (void *)&efi_runtime_services,
3533 .boottime = (void *)&efi_boot_services,
Alexander Grafbee91162016-03-04 01:09:59 +01003534 .nr_tables = 0,
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003535 .tables = NULL,
Alexander Grafbee91162016-03-04 01:09:59 +01003536};
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003537
3538/**
3539 * efi_initialize_system_table() - Initialize system table
3540 *
Heinrich Schuchardt04143592018-09-03 05:00:43 +02003541 * Return: status code
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003542 */
3543efi_status_t efi_initialize_system_table(void)
3544{
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003545 efi_status_t ret;
3546
3547 /* Allocate configuration table array */
3548 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3549 EFI_MAX_CONFIGURATION_TABLES *
3550 sizeof(struct efi_configuration_table),
3551 (void **)&systab.tables);
3552
Heinrich Schuchardtb72aaa82018-09-03 19:12:24 +02003553 /* Set CRC32 field in table headers */
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003554 efi_update_table_header_crc32(&systab.hdr);
3555 efi_update_table_header_crc32(&efi_runtime_services.hdr);
3556 efi_update_table_header_crc32(&efi_boot_services.hdr);
Heinrich Schuchardt4182a122018-06-28 12:45:32 +02003557
3558 return ret;
Heinrich Schuchardt640adad2018-06-28 12:45:31 +02003559}