blob: 78c6076e28c41672e3c7a103451fe15e454234ad [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafc15d9212016-03-04 01:09:59 +01002/*
3 * EFI application boot time services
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Grafc15d9212016-03-04 01:09:59 +01006 */
7
Alexander Grafc15d9212016-03-04 01:09:59 +01008#include <common.h>
Heinrich Schuchardt368ca642017-10-05 16:14:14 +02009#include <div64.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010010#include <efi_loader.h>
Rob Clark15f3d742017-09-13 18:05:37 -040011#include <environment.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010012#include <malloc.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090013#include <linux/libfdt_env.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010014#include <u-boot/crc.h>
15#include <bootm.h>
Heinrich Schuchardt37587522019-05-01 20:07:04 +020016#include <pe.h>
Alexander Grafc15d9212016-03-04 01:09:59 +010017#include <watchdog.h>
18
19DECLARE_GLOBAL_DATA_PTR;
20
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +020021/* Task priority level */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +010022static efi_uintn_t efi_tpl = TPL_APPLICATION;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +020023
Alexander Grafc15d9212016-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 Schuchardt370c7a82018-02-18 15:17:50 +010027/* List of all events */
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +010028LIST_HEAD(efi_events);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +010029
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +020030/* List of all events registered by RegisterProtocolNotify() */
31LIST_HEAD(efi_register_notify_events);
32
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +010033/* Handle of the currently executing image */
34static efi_handle_t current_image;
35
Alexander Graffa5246b2018-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 Glasscdfe6962016-09-25 15:27:35 -060044#ifdef CONFIG_ARM
Alexander Grafc15d9212016-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 Glasscdfe6962016-09-25 15:27:35 -060052#endif
Alexander Grafc15d9212016-03-04 01:09:59 +010053
Heinrich Schuchardt72506232019-02-09 14:10:39 +010054/* 1 if inside U-Boot code, 0 if inside EFI payload code */
55static int entry_count = 1;
Rob Clarke7896c32017-07-27 08:04:19 -040056static int nesting_level;
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +010057/* GUID of the device tree table */
58const efi_guid_t efi_guid_fdt = EFI_FDT_GUID;
Heinrich Schuchardt760255f2018-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 Clark86789d52017-07-27 08:04:18 -040062
Heinrich Schuchardt672d99e2018-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 Schuchardtb7cb8b42018-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 Schuchardte9943282018-01-11 08:16:04 +010083
Rob Clark86789d52017-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 Grafc15d9212016-03-04 01:09:59 +0100106/* Called from do_bootefi_exec() */
107void efi_save_gd(void)
108{
Simon Glasscdfe6962016-09-25 15:27:35 -0600109#ifdef CONFIG_ARM
Alexander Grafc15d9212016-03-04 01:09:59 +0100110 efi_gd = gd;
Simon Glasscdfe6962016-09-25 15:27:35 -0600111#endif
Alexander Grafc15d9212016-03-04 01:09:59 +0100112}
113
Rob Clark86789d52017-07-27 08:04:18 -0400114/*
Mario Six8fac2912018-07-10 08:40:17 +0200115 * Special case handler for error/abort that just forces things back to u-boot
Heinrich Schuchardtcf70a732018-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 Clark86789d52017-07-27 08:04:18 -0400118 */
Alexander Grafc15d9212016-03-04 01:09:59 +0100119void efi_restore_gd(void)
120{
Simon Glasscdfe6962016-09-25 15:27:35 -0600121#ifdef CONFIG_ARM
Alexander Grafc15d9212016-03-04 01:09:59 +0100122 /* Only restore if we're already in EFI context */
123 if (!efi_gd)
124 return;
Alexander Grafc15d9212016-03-04 01:09:59 +0100125 gd = efi_gd;
Simon Glasscdfe6962016-09-25 15:27:35 -0600126#endif
Alexander Grafc15d9212016-03-04 01:09:59 +0100127}
128
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200129/**
Mario Six8fac2912018-07-10 08:40:17 +0200130 * indent_string() - returns a string for indenting with two spaces per level
131 * @level: indent level
Heinrich Schuchardt091cf432018-01-24 19:21:36 +0100132 *
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200133 * A maximum of ten indent levels is supported. Higher indent levels will be
134 * truncated.
135 *
Mario Six8fac2912018-07-10 08:40:17 +0200136 * Return: A string for indenting with two spaces per level is
137 * returned.
Rob Clarke7896c32017-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 Schuchardt91064592018-02-18 15:17:49 +0100143
Rob Clarke7896c32017-07-27 08:04:19 -0400144 level = min(max, level * 2);
145 return &indent[max - level];
146}
147
Heinrich Schuchardt4d664892017-08-18 17:45:16 +0200148const char *__efi_nesting(void)
149{
150 return indent_string(nesting_level);
151}
152
Rob Clarke7896c32017-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 Schuchardt59999172018-05-11 18:15:41 +0200163/**
Mario Six8fac2912018-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 Schuchardta40db6e2017-09-21 18:30:11 +0200167 *
168 * This function queues the notification function of the event for future
169 * execution.
170 *
Mario Six8fac2912018-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 Schuchardta40db6e2017-09-21 18:30:11 +0200173 *
174 * For the SignalEvent service see efi_signal_event_ext.
175 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200176 */
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100177static void efi_queue_event(struct efi_event *event, bool check_tpl)
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200178{
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200179 if (event->notify_function) {
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200180 event->is_queued = true;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200181 /* Check TPL */
Heinrich Schuchardtd8b878a2018-01-19 20:24:51 +0100182 if (check_tpl && efi_tpl >= event->notify_tpl)
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200183 return;
Heinrich Schuchardtad559972019-05-11 21:44:59 +0200184 event->is_queued = false;
Heinrich Schuchardt91e5b8a2017-09-15 10:06:10 +0200185 EFI_CALL_VOID(event->notify_function(event,
186 event->notify_context));
Heinrich Schuchardtad559972019-05-11 21:44:59 +0200187 } else {
188 event->is_queued = false;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200189 }
190}
191
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200192/**
Heinrich Schuchardt7f0f0052018-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 Schuchardtcf70a732018-09-03 19:12:24 +0200196 * Return: status code
Heinrich Schuchardt7f0f0052018-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 Six8fac2912018-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 Schuchardtbf7f1692018-02-18 15:17:52 +0100215 *
Mario Six8fac2912018-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 Schuchardtbf7f1692018-02-18 15:17:52 +0100218 * their notification function is queued.
219 *
220 * For the SignalEvent service see efi_signal_event_ext.
Heinrich Schuchardtbf7f1692018-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 Schuchardt66ddc2e2019-05-05 00:07:34 +0200247 } else {
Heinrich Schuchardtbf7f1692018-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 Schuchardt59999172018-05-11 18:15:41 +0200254/**
Mario Six8fac2912018-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 Schuchardta40db6e2017-09-21 18:30:11 +0200257 *
258 * This function implements the RaiseTpl service.
Mario Six8fac2912018-07-10 08:40:17 +0200259 *
260 * See the Unified Extensible Firmware Interface (UEFI) specification for
261 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200262 *
Mario Six8fac2912018-07-10 08:40:17 +0200263 * Return: old value of the task priority level
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200264 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100265static unsigned long EFIAPI efi_raise_tpl(efi_uintn_t new_tpl)
Alexander Grafc15d9212016-03-04 01:09:59 +0100266{
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100267 efi_uintn_t old_tpl = efi_tpl;
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200268
xypron.glpk@gmx.de48df2092017-07-18 20:17:19 +0200269 EFI_ENTRY("0x%zx", new_tpl);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200270
271 if (new_tpl < efi_tpl)
Heinrich Schuchardt952e2062019-05-05 11:56:23 +0200272 EFI_PRINT("WARNING: new_tpl < current_tpl in %s\n", __func__);
Heinrich Schuchardt0c150ca2017-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 Grafc15d9212016-03-04 01:09:59 +0100279}
280
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200281/**
Mario Six8fac2912018-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 Schuchardta40db6e2017-09-21 18:30:11 +0200284 *
285 * This function implements the RestoreTpl service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200286 *
Mario Six8fac2912018-07-10 08:40:17 +0200287 * See the Unified Extensible Firmware Interface (UEFI) specification for
288 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200289 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100290static void EFIAPI efi_restore_tpl(efi_uintn_t old_tpl)
Alexander Grafc15d9212016-03-04 01:09:59 +0100291{
xypron.glpk@gmx.de48df2092017-07-18 20:17:19 +0200292 EFI_ENTRY("0x%zx", old_tpl);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200293
294 if (old_tpl > efi_tpl)
Heinrich Schuchardt952e2062019-05-05 11:56:23 +0200295 EFI_PRINT("WARNING: old_tpl > current_tpl in %s\n", __func__);
Heinrich Schuchardt0c150ca2017-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 Schuchardt59b20952018-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 Schuchardt0c150ca2017-09-15 10:06:16 +0200305 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +0100306}
307
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200308/**
Mario Six8fac2912018-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 Schuchardta40db6e2017-09-21 18:30:11 +0200314 *
315 * This function implements the AllocatePages service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200316 *
Mario Six8fac2912018-07-10 08:40:17 +0200317 * See the Unified Extensible Firmware Interface (UEFI) specification for
318 * details.
319 *
320 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200321 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900322static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100323 efi_uintn_t pages,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900324 uint64_t *memory)
Alexander Grafc15d9212016-03-04 01:09:59 +0100325{
326 efi_status_t r;
327
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100328 EFI_ENTRY("%d, %d, 0x%zx, %p", type, memory_type, pages, memory);
Alexander Grafc15d9212016-03-04 01:09:59 +0100329 r = efi_allocate_pages(type, memory_type, pages, memory);
330 return EFI_EXIT(r);
331}
332
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200333/**
Mario Six8fac2912018-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 Schuchardta40db6e2017-09-21 18:30:11 +0200337 *
338 * This function implements the FreePages service.
Mario Six8fac2912018-07-10 08:40:17 +0200339 *
340 * See the Unified Extensible Firmware Interface (UEFI) specification for
341 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200342 *
Mario Six8fac2912018-07-10 08:40:17 +0200343 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200344 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900345static efi_status_t EFIAPI efi_free_pages_ext(uint64_t memory,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100346 efi_uintn_t pages)
Alexander Grafc15d9212016-03-04 01:09:59 +0100347{
348 efi_status_t r;
349
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900350 EFI_ENTRY("%llx, 0x%zx", memory, pages);
Alexander Grafc15d9212016-03-04 01:09:59 +0100351 r = efi_free_pages(memory, pages);
352 return EFI_EXIT(r);
353}
354
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200355/**
Mario Six8fac2912018-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 Schuchardta40db6e2017-09-21 18:30:11 +0200363 *
364 * This function implements the GetMemoryMap service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200365 *
Mario Six8fac2912018-07-10 08:40:17 +0200366 * See the Unified Extensible Firmware Interface (UEFI) specification for
367 * details.
368 *
369 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200370 */
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900371static efi_status_t EFIAPI efi_get_memory_map_ext(
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100372 efi_uintn_t *memory_map_size,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900373 struct efi_mem_desc *memory_map,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100374 efi_uintn_t *map_key,
375 efi_uintn_t *descriptor_size,
Masahiro Yamadab2a05c12017-06-22 17:49:03 +0900376 uint32_t *descriptor_version)
Alexander Grafc15d9212016-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 Schuchardt59999172018-05-11 18:15:41 +0200387/**
Mario Six8fac2912018-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 Schuchardta40db6e2017-09-21 18:30:11 +0200392 *
393 * This function implements the AllocatePool service.
Mario Six8fac2912018-07-10 08:40:17 +0200394 *
395 * See the Unified Extensible Firmware Interface (UEFI) specification for
396 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200397 *
Mario Six8fac2912018-07-10 08:40:17 +0200398 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200399 */
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200400static efi_status_t EFIAPI efi_allocate_pool_ext(int pool_type,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100401 efi_uintn_t size,
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200402 void **buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +0100403{
Alexander Graf1c34fa82016-03-24 01:37:37 +0100404 efi_status_t r;
405
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100406 EFI_ENTRY("%d, %zd, %p", pool_type, size, buffer);
Stefan Brüns5a09aef2016-10-09 22:17:18 +0200407 r = efi_allocate_pool(pool_type, size, buffer);
Alexander Graf1c34fa82016-03-24 01:37:37 +0100408 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +0100409}
410
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200411/**
Mario Six8fac2912018-07-10 08:40:17 +0200412 * efi_free_pool_ext() - free memory from pool
413 * @buffer: start of memory to be freed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200414 *
415 * This function implements the FreePool service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200416 *
Mario Six8fac2912018-07-10 08:40:17 +0200417 * See the Unified Extensible Firmware Interface (UEFI) specification for
418 * details.
419 *
420 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200421 */
Stefan Brüns67b67d92016-10-09 22:17:26 +0200422static efi_status_t EFIAPI efi_free_pool_ext(void *buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +0100423{
Alexander Graf1c34fa82016-03-24 01:37:37 +0100424 efi_status_t r;
425
426 EFI_ENTRY("%p", buffer);
Stefan Brüns67b67d92016-10-09 22:17:26 +0200427 r = efi_free_pool(buffer);
Alexander Graf1c34fa82016-03-24 01:37:37 +0100428 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +0100429}
430
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200431/**
Heinrich Schuchardt30cd0462019-05-01 09:42:39 +0200432 * efi_add_handle() - add a new handle to the object list
433 *
434 * @handle: handle to be added
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100435 *
Heinrich Schuchardt30cd0462019-05-01 09:42:39 +0200436 * The protocols list is initialized. The handle is added to the list of known
437 * UEFI objects.
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100438 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200439void efi_add_handle(efi_handle_t handle)
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100440{
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200441 if (!handle)
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100442 return;
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200443 INIT_LIST_HEAD(&handle->protocols);
444 list_add_tail(&handle->link, &efi_obj_list);
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100445}
446
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200447/**
Mario Six8fac2912018-07-10 08:40:17 +0200448 * efi_create_handle() - create handle
449 * @handle: new handle
Heinrich Schuchardteb6106e2017-10-26 19:25:49 +0200450 *
Mario Six8fac2912018-07-10 08:40:17 +0200451 * Return: status code
Heinrich Schuchardteb6106e2017-10-26 19:25:49 +0200452 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100453efi_status_t efi_create_handle(efi_handle_t *handle)
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200454{
455 struct efi_object *obj;
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200456
Heinrich Schuchardtae1d2062018-05-27 16:47:21 +0200457 obj = calloc(1, sizeof(struct efi_object));
458 if (!obj)
459 return EFI_OUT_OF_RESOURCES;
460
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +0100461 efi_add_handle(obj);
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200462 *handle = obj;
Heinrich Schuchardtae1d2062018-05-27 16:47:21 +0200463
464 return EFI_SUCCESS;
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +0200465}
466
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200467/**
Mario Six8fac2912018-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 Schuchardt7d135462017-12-04 18:03:02 +0100472 *
Mario Six8fac2912018-07-10 08:40:17 +0200473 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100474 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100475efi_status_t efi_search_protocol(const efi_handle_t handle,
Heinrich Schuchardt7d135462017-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 Schuchardt59999172018-05-11 18:15:41 +0200500/**
Mario Six8fac2912018-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 Schuchardt7d135462017-12-04 18:03:02 +0100505 *
Mario Six8fac2912018-07-10 08:40:17 +0200506 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100507 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100508efi_status_t efi_remove_protocol(const efi_handle_t handle,
509 const efi_guid_t *protocol,
Heinrich Schuchardt7d135462017-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 Schuchardtb27594d2018-05-11 12:09:21 +0200518 if (handler->protocol_interface != protocol_interface)
Heinrich Schuchardtfdeb1f02019-05-10 20:06:48 +0200519 return EFI_NOT_FOUND;
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100520 list_del(&handler->link);
521 free(handler);
522 return EFI_SUCCESS;
523}
524
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200525/**
Mario Six8fac2912018-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 Schuchardt7d135462017-12-04 18:03:02 +0100528 *
Mario Six8fac2912018-07-10 08:40:17 +0200529 * Return: status code
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100530 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100531efi_status_t efi_remove_all_protocols(const efi_handle_t handle)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100532{
533 struct efi_object *efiobj;
Heinrich Schuchardta84731d2018-01-11 08:15:55 +0100534 struct efi_handler *protocol;
535 struct efi_handler *pos;
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100536
537 efiobj = efi_search_obj(handle);
538 if (!efiobj)
539 return EFI_INVALID_PARAMETER;
Heinrich Schuchardta84731d2018-01-11 08:15:55 +0100540 list_for_each_entry_safe(protocol, pos, &efiobj->protocols, link) {
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100541 efi_status_t ret;
542
Heinrich Schuchardt7d135462017-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 Schuchardt59999172018-05-11 18:15:41 +0200551/**
Mario Six8fac2912018-07-10 08:40:17 +0200552 * efi_delete_handle() - delete handle
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100553 *
Mario Six8fac2912018-07-10 08:40:17 +0200554 * @obj: handle to delete
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100555 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200556void efi_delete_handle(efi_handle_t handle)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100557{
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200558 if (!handle)
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100559 return;
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200560 efi_remove_all_protocols(handle);
561 list_del(&handle->link);
562 free(handle);
Heinrich Schuchardt7d135462017-12-04 18:03:02 +0100563}
564
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200565/**
Mario Six8fac2912018-07-10 08:40:17 +0200566 * efi_is_event() - check if a pointer is a valid event
567 * @event: pointer to check
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100568 *
Mario Six8fac2912018-07-10 08:40:17 +0200569 * Return: status code
Alexander Grafc15d9212016-03-04 01:09:59 +0100570 */
Heinrich Schuchardt370c7a82018-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 Grafc15d9212016-03-04 01:09:59 +0100583
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200584/**
Mario Six8fac2912018-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 Schuchardta40db6e2017-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 Six8fac2912018-07-10 08:40:17 +0200598 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200599 */
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100600efi_status_t efi_create_event(uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200601 void (EFIAPI *notify_function) (
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200602 struct efi_event *event,
603 void *context),
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100604 void *notify_context, efi_guid_t *group,
605 struct efi_event **event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100606{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100607 struct efi_event *evt;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200608
Jonathan Gray7758b212017-03-12 19:26:07 +1100609 if (event == NULL)
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200610 return EFI_INVALID_PARAMETER;
Jonathan Gray7758b212017-03-12 19:26:07 +1100611
Heinrich Schuchardt7f0f0052018-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.de852a0e1772017-07-18 20:17:20 +0200623 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt7f0f0052018-07-02 12:53:52 +0200624 }
Jonathan Gray7758b212017-03-12 19:26:07 +1100625
AKASHI Takahiro3f3835d2018-08-10 15:36:32 +0900626 if ((type & (EVT_NOTIFY_WAIT | EVT_NOTIFY_SIGNAL)) &&
Heinrich Schuchardtad7a2152019-04-25 07:30:41 +0200627 (!notify_function || is_valid_tpl(notify_tpl) != EFI_SUCCESS))
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200628 return EFI_INVALID_PARAMETER;
Jonathan Gray7758b212017-03-12 19:26:07 +1100629
Heinrich Schuchardt370c7a82018-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 Schuchardtbf7f1692018-02-18 15:17:52 +0100637 evt->group = group;
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +0200638 /* Disable timers on boot up */
Heinrich Schuchardt370c7a82018-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 Grafc15d9212016-03-04 01:09:59 +0100645}
646
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200647/*
Mario Six8fac2912018-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 Schuchardt717c4582018-02-04 23:05:13 +0100655 *
656 * This function implements the CreateEventEx service.
Heinrich Schuchardt717c4582018-02-04 23:05:13 +0100657 *
Mario Six8fac2912018-07-10 08:40:17 +0200658 * See the Unified Extensible Firmware Interface (UEFI) specification for
659 * details.
660 *
661 * Return: status code
Heinrich Schuchardt717c4582018-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 Schuchardtce664992019-05-04 10:12:50 +0200671 efi_status_t ret;
672
Heinrich Schuchardt717c4582018-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 Schuchardtce664992019-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 Schuchardt717c4582018-02-04 23:05:13 +0100691}
692
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200693/**
Mario Six8fac2912018-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 Schuchardta40db6e2017-09-21 18:30:11 +0200700 *
701 * This function implements the CreateEvent service.
Mario Six8fac2912018-07-10 08:40:17 +0200702 *
703 * See the Unified Extensible Firmware Interface (UEFI) specification for
704 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200705 *
Mario Six8fac2912018-07-10 08:40:17 +0200706 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200707 */
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200708static efi_status_t EFIAPI efi_create_event_ext(
Heinrich Schuchardtf8d4ec32017-11-06 21:17:47 +0100709 uint32_t type, efi_uintn_t notify_tpl,
xypron.glpk@gmx.de852a0e1772017-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 Schuchardtbf7f1692018-02-18 15:17:52 +0100718 notify_context, NULL, event));
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +0200719}
720
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200721/**
Mario Six8fac2912018-07-10 08:40:17 +0200722 * efi_timer_check() - check if a timer event has occurred
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200723 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200724 * Check if a timer event has occurred or a queued notification function should
725 * be called.
726 *
Alexander Grafc15d9212016-03-04 01:09:59 +0100727 * Our timers have to work without interrupts, so we check whenever keyboard
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200728 * input or disk accesses happen if enough time elapsed for them to fire.
Alexander Grafc15d9212016-03-04 01:09:59 +0100729 */
730void efi_timer_check(void)
731{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100732 struct efi_event *evt;
Alexander Grafc15d9212016-03-04 01:09:59 +0100733 u64 now = timer_get_us();
734
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100735 list_for_each_entry(evt, &efi_events, link) {
736 if (evt->is_queued)
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100737 efi_queue_event(evt, true);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100738 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next)
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200739 continue;
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100740 switch (evt->trigger_type) {
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200741 case EFI_TIMER_RELATIVE:
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100742 evt->trigger_type = EFI_TIMER_STOP;
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200743 break;
744 case EFI_TIMER_PERIODIC:
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100745 evt->trigger_next += evt->trigger_time;
Heinrich Schuchardt8b11a8a2017-09-15 10:06:13 +0200746 break;
747 default:
748 continue;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200749 }
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100750 evt->is_signaled = false;
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100751 efi_signal_event(evt, true);
Alexander Grafc15d9212016-03-04 01:09:59 +0100752 }
Alexander Grafc15d9212016-03-04 01:09:59 +0100753 WATCHDOG_RESET();
754}
755
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200756/**
Mario Six8fac2912018-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 Schuchardtcf70a732018-09-03 19:12:24 +0200760 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardta40db6e2017-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 Six8fac2912018-07-10 08:40:17 +0200765 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200766 */
xypron.glpk@gmx.de3ecc6bd2017-07-19 19:22:34 +0200767efi_status_t efi_set_timer(struct efi_event *event, enum efi_timer_delay type,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200768 uint64_t trigger_time)
Alexander Grafc15d9212016-03-04 01:09:59 +0100769{
Heinrich Schuchardt370c7a82018-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 Grafc15d9212016-03-04 01:09:59 +0100773
xypron.glpk@gmx.de44c4be02017-07-18 20:17:23 +0200774 /*
Heinrich Schuchardtcf70a732018-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.de44c4be02017-07-18 20:17:23 +0200777 */
Heinrich Schuchardt368ca642017-10-05 16:14:14 +0200778 do_div(trigger_time, 10);
Alexander Grafc15d9212016-03-04 01:09:59 +0100779
Heinrich Schuchardt370c7a82018-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 Grafc15d9212016-03-04 01:09:59 +0100790 }
Heinrich Schuchardt370c7a82018-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;
Alexander Grafc15d9212016-03-04 01:09:59 +0100795}
796
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200797/**
Mario Six8fac2912018-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 Schuchardtcf70a732018-09-03 19:12:24 +0200802 * @trigger_time: trigger period in multiples of 100 ns
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200803 *
804 * This function implements the SetTimer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200805 *
Mario Six8fac2912018-07-10 08:40:17 +0200806 * See the Unified Extensible Firmware Interface (UEFI) specification for
807 * details.
808 *
809 *
810 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200811 */
xypron.glpk@gmx.de3ecc6bd2017-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.dea587fd12017-07-18 20:17:21 +0200815{
Masahiro Yamadac7570a32018-08-06 20:47:40 +0900816 EFI_ENTRY("%p, %d, %llx", event, type, trigger_time);
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +0200817 return EFI_EXIT(efi_set_timer(event, type, trigger_time));
818}
819
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200820/**
Mario Six8fac2912018-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 Schuchardta40db6e2017-09-21 18:30:11 +0200825 *
826 * This function implements the WaitForEvent service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200827 *
Mario Six8fac2912018-07-10 08:40:17 +0200828 * See the Unified Extensible Firmware Interface (UEFI) specification for
829 * details.
830 *
831 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200832 */
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100833static efi_status_t EFIAPI efi_wait_for_event(efi_uintn_t num_events,
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200834 struct efi_event **event,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100835 efi_uintn_t *index)
Alexander Grafc15d9212016-03-04 01:09:59 +0100836{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100837 int i;
Alexander Grafc15d9212016-03-04 01:09:59 +0100838
Heinrich Schuchardt798a4412017-11-06 21:17:48 +0100839 EFI_ENTRY("%zd, %p, %p", num_events, event, index);
Alexander Grafc15d9212016-03-04 01:09:59 +0100840
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200841 /* Check parameters */
842 if (!num_events || !event)
843 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt0c150ca2017-09-15 10:06:16 +0200844 /* Check TPL */
845 if (efi_tpl != TPL_APPLICATION)
846 return EFI_EXIT(EFI_UNSUPPORTED);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200847 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100848 if (efi_is_event(event[i]) != EFI_SUCCESS)
849 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200850 if (!event[i]->type || event[i]->type & EVT_NOTIFY_SIGNAL)
851 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200852 if (!event[i]->is_signaled)
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100853 efi_queue_event(event[i], true);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200854 }
855
856 /* Wait for signal */
857 for (;;) {
858 for (i = 0; i < num_events; ++i) {
Heinrich Schuchardt1bbee392017-10-04 15:03:24 +0200859 if (event[i]->is_signaled)
xypron.glpk@gmx.de30708232017-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 Schuchardt1bbee392017-10-04 15:03:24 +0200871 event[i]->is_signaled = false;
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200872 if (index)
873 *index = i;
Alexander Grafc15d9212016-03-04 01:09:59 +0100874
875 return EFI_EXIT(EFI_SUCCESS);
876}
877
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200878/**
Mario Six8fac2912018-07-10 08:40:17 +0200879 * efi_signal_event_ext() - signal an EFI event
880 * @event: event to signal
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200881 *
882 * This function implements the SignalEvent service.
Mario Six8fac2912018-07-10 08:40:17 +0200883 *
884 * See the Unified Extensible Firmware Interface (UEFI) specification for
885 * details.
Heinrich Schuchardta40db6e2017-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 Six8fac2912018-07-10 08:40:17 +0200890 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200891 */
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200892static efi_status_t EFIAPI efi_signal_event_ext(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100893{
894 EFI_ENTRY("%p", event);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100895 if (efi_is_event(event) != EFI_SUCCESS)
896 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100897 efi_signal_event(event, true);
Alexander Grafc15d9212016-03-04 01:09:59 +0100898 return EFI_EXIT(EFI_SUCCESS);
899}
900
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200901/**
Mario Six8fac2912018-07-10 08:40:17 +0200902 * efi_close_event() - close an EFI event
903 * @event: event to close
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200904 *
905 * This function implements the CloseEvent service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200906 *
Mario Six8fac2912018-07-10 08:40:17 +0200907 * See the Unified Extensible Firmware Interface (UEFI) specification for
908 * details.
909 *
910 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200911 */
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200912static efi_status_t EFIAPI efi_close_event(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100913{
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +0200914 struct efi_register_notify_event *item, *next;
915
Alexander Grafc15d9212016-03-04 01:09:59 +0100916 EFI_ENTRY("%p", event);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100917 if (efi_is_event(event) != EFI_SUCCESS)
918 return EFI_EXIT(EFI_INVALID_PARAMETER);
Heinrich Schuchardt6eec42d2019-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) {
924 list_del(&item->link);
925 free(item);
926 }
927 }
928
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100929 list_del(&event->link);
930 free(event);
931 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +0100932}
933
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200934/**
Mario Six8fac2912018-07-10 08:40:17 +0200935 * efi_check_event() - check if an event is signaled
936 * @event: event to check
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200937 *
938 * This function implements the CheckEvent service.
Mario Six8fac2912018-07-10 08:40:17 +0200939 *
940 * See the Unified Extensible Firmware Interface (UEFI) specification for
941 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200942 *
Mario Six8fac2912018-07-10 08:40:17 +0200943 * If an event is not signaled yet, the notification function is queued. The
944 * signaled state is cleared.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200945 *
Mario Six8fac2912018-07-10 08:40:17 +0200946 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200947 */
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200948static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100949{
950 EFI_ENTRY("%p", event);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200951 efi_timer_check();
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100952 if (efi_is_event(event) != EFI_SUCCESS ||
953 event->type & EVT_NOTIFY_SIGNAL)
954 return EFI_EXIT(EFI_INVALID_PARAMETER);
955 if (!event->is_signaled)
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100956 efi_queue_event(event, true);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100957 if (event->is_signaled) {
958 event->is_signaled = false;
959 return EFI_EXIT(EFI_SUCCESS);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200960 }
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100961 return EFI_EXIT(EFI_NOT_READY);
Alexander Grafc15d9212016-03-04 01:09:59 +0100962}
963
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200964/**
Mario Six8fac2912018-07-10 08:40:17 +0200965 * efi_search_obj() - find the internal EFI object for a handle
966 * @handle: handle to find
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200967 *
Mario Six8fac2912018-07-10 08:40:17 +0200968 * Return: EFI object
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200969 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100970struct efi_object *efi_search_obj(const efi_handle_t handle)
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200971{
Heinrich Schuchardt274cc872017-11-06 21:17:50 +0100972 struct efi_object *efiobj;
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200973
Heinrich Schuchardt5d8231b2019-05-05 10:37:51 +0200974 if (!handle)
975 return NULL;
976
Heinrich Schuchardt274cc872017-11-06 21:17:50 +0100977 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200978 if (efiobj == handle)
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200979 return efiobj;
980 }
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200981 return NULL;
982}
983
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200984/**
Mario Six8fac2912018-07-10 08:40:17 +0200985 * efi_open_protocol_info_entry() - create open protocol info entry and add it
986 * to a protocol
987 * @handler: handler of a protocol
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100988 *
Mario Six8fac2912018-07-10 08:40:17 +0200989 * Return: open protocol info entry
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100990 */
991static struct efi_open_protocol_info_entry *efi_create_open_info(
992 struct efi_handler *handler)
993{
994 struct efi_open_protocol_info_item *item;
995
996 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
997 if (!item)
998 return NULL;
999 /* Append the item to the open protocol info list. */
1000 list_add_tail(&item->link, &handler->open_infos);
1001
1002 return &item->info;
1003}
1004
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001005/**
Mario Six8fac2912018-07-10 08:40:17 +02001006 * efi_delete_open_info() - remove an open protocol info entry from a protocol
1007 * @item: open protocol info entry to delete
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001008 *
Mario Six8fac2912018-07-10 08:40:17 +02001009 * Return: status code
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001010 */
1011static efi_status_t efi_delete_open_info(
1012 struct efi_open_protocol_info_item *item)
1013{
1014 list_del(&item->link);
1015 free(item);
1016 return EFI_SUCCESS;
1017}
1018
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001019/**
Mario Six8fac2912018-07-10 08:40:17 +02001020 * efi_add_protocol() - install new protocol on a handle
1021 * @handle: handle on which the protocol shall be installed
1022 * @protocol: GUID of the protocol to be installed
1023 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001024 *
Mario Six8fac2912018-07-10 08:40:17 +02001025 * Return: status code
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001026 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001027efi_status_t efi_add_protocol(const efi_handle_t handle,
1028 const efi_guid_t *protocol,
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001029 void *protocol_interface)
1030{
1031 struct efi_object *efiobj;
1032 struct efi_handler *handler;
1033 efi_status_t ret;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001034 struct efi_register_notify_event *event;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001035
1036 efiobj = efi_search_obj(handle);
1037 if (!efiobj)
1038 return EFI_INVALID_PARAMETER;
1039 ret = efi_search_protocol(handle, protocol, NULL);
1040 if (ret != EFI_NOT_FOUND)
1041 return EFI_INVALID_PARAMETER;
1042 handler = calloc(1, sizeof(struct efi_handler));
1043 if (!handler)
1044 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001045 handler->guid = protocol;
1046 handler->protocol_interface = protocol_interface;
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001047 INIT_LIST_HEAD(&handler->open_infos);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001048 list_add_tail(&handler->link, &efiobj->protocols);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001049
1050 /* Notify registered events */
1051 list_for_each_entry(event, &efi_register_notify_events, link) {
1052 if (!guidcmp(protocol, &event->protocol))
1053 efi_signal_event(event->event, true);
1054 }
1055
Heinrich Schuchardt3d2abc32018-01-11 08:16:01 +01001056 if (!guidcmp(&efi_guid_device_path, protocol))
1057 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001058 return EFI_SUCCESS;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001059}
1060
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001061/**
Mario Six8fac2912018-07-10 08:40:17 +02001062 * efi_install_protocol_interface() - install protocol interface
1063 * @handle: handle on which the protocol shall be installed
1064 * @protocol: GUID of the protocol to be installed
1065 * @protocol_interface_type: type of the interface to be installed,
1066 * always EFI_NATIVE_INTERFACE
1067 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001068 *
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001069 * This function implements the InstallProtocolInterface service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001070 *
Mario Six8fac2912018-07-10 08:40:17 +02001071 * See the Unified Extensible Firmware Interface (UEFI) specification for
1072 * details.
1073 *
1074 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001075 */
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001076static efi_status_t EFIAPI efi_install_protocol_interface(
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02001077 efi_handle_t *handle, const efi_guid_t *protocol,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001078 int protocol_interface_type, void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01001079{
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001080 efi_status_t r;
1081
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001082 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
1083 protocol_interface);
1084
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001085 if (!handle || !protocol ||
1086 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1087 r = EFI_INVALID_PARAMETER;
1088 goto out;
1089 }
1090
1091 /* Create new handle if requested. */
1092 if (!*handle) {
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +02001093 r = efi_create_handle(handle);
1094 if (r != EFI_SUCCESS)
1095 goto out;
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02001096 EFI_PRINT("new handle %p\n", *handle);
Heinrich Schuchardt50f02102017-10-26 19:25:43 +02001097 } else {
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02001098 EFI_PRINT("handle %p\n", *handle);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001099 }
Heinrich Schuchardt865d5f32017-10-26 19:25:54 +02001100 /* Add new protocol */
1101 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001102out:
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001103 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01001104}
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001105
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001106/**
Mario Six8fac2912018-07-10 08:40:17 +02001107 * efi_get_drivers() - get all drivers associated to a controller
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001108 * @handle: handle of the controller
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001109 * @protocol: protocol GUID (optional)
Mario Six8fac2912018-07-10 08:40:17 +02001110 * @number_of_drivers: number of child controllers
1111 * @driver_handle_buffer: handles of the the drivers
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001112 *
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001113 * The allocated buffer has to be freed with free().
1114 *
Mario Six8fac2912018-07-10 08:40:17 +02001115 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001116 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001117static efi_status_t efi_get_drivers(efi_handle_t handle,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001118 const efi_guid_t *protocol,
1119 efi_uintn_t *number_of_drivers,
1120 efi_handle_t **driver_handle_buffer)
1121{
1122 struct efi_handler *handler;
1123 struct efi_open_protocol_info_item *item;
1124 efi_uintn_t count = 0, i;
1125 bool duplicate;
1126
1127 /* Count all driver associations */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001128 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001129 if (protocol && guidcmp(handler->guid, protocol))
1130 continue;
1131 list_for_each_entry(item, &handler->open_infos, link) {
1132 if (item->info.attributes &
1133 EFI_OPEN_PROTOCOL_BY_DRIVER)
1134 ++count;
1135 }
1136 }
Heinrich Schuchardt7416aef2019-06-02 01:43:33 +02001137 *number_of_drivers = 0;
1138 if (!count) {
1139 *driver_handle_buffer = NULL;
1140 return EFI_SUCCESS;
1141 }
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001142 /*
1143 * Create buffer. In case of duplicate driver assignments the buffer
1144 * will be too large. But that does not harm.
1145 */
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001146 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1147 if (!*driver_handle_buffer)
1148 return EFI_OUT_OF_RESOURCES;
1149 /* Collect unique driver handles */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001150 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001151 if (protocol && guidcmp(handler->guid, protocol))
1152 continue;
1153 list_for_each_entry(item, &handler->open_infos, link) {
1154 if (item->info.attributes &
1155 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1156 /* Check this is a new driver */
1157 duplicate = false;
1158 for (i = 0; i < *number_of_drivers; ++i) {
1159 if ((*driver_handle_buffer)[i] ==
1160 item->info.agent_handle)
1161 duplicate = true;
1162 }
1163 /* Copy handle to buffer */
1164 if (!duplicate) {
1165 i = (*number_of_drivers)++;
1166 (*driver_handle_buffer)[i] =
1167 item->info.agent_handle;
1168 }
1169 }
1170 }
1171 }
1172 return EFI_SUCCESS;
1173}
1174
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001175/**
Mario Six8fac2912018-07-10 08:40:17 +02001176 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001177 * @handle: handle of the controller
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001178 * @protocol: protocol GUID (optional)
Mario Six8fac2912018-07-10 08:40:17 +02001179 * @child_handle: handle of the child to destroy
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001180 *
1181 * This function implements the DisconnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02001182 *
1183 * See the Unified Extensible Firmware Interface (UEFI) specification for
1184 * details.
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001185 *
Mario Six8fac2912018-07-10 08:40:17 +02001186 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001187 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001188static efi_status_t efi_disconnect_all_drivers
1189 (efi_handle_t handle,
1190 const efi_guid_t *protocol,
1191 efi_handle_t child_handle)
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001192{
1193 efi_uintn_t number_of_drivers;
1194 efi_handle_t *driver_handle_buffer;
1195 efi_status_t r, ret;
1196
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001197 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001198 &driver_handle_buffer);
1199 if (ret != EFI_SUCCESS)
1200 return ret;
Heinrich Schuchardt7416aef2019-06-02 01:43:33 +02001201 if (!number_of_drivers)
1202 return EFI_SUCCESS;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001203 ret = EFI_NOT_FOUND;
1204 while (number_of_drivers) {
1205 r = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001206 handle,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001207 driver_handle_buffer[--number_of_drivers],
1208 child_handle));
1209 if (r == EFI_SUCCESS)
1210 ret = r;
1211 }
1212 free(driver_handle_buffer);
1213 return ret;
1214}
1215
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001216/**
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001217 * efi_uninstall_protocol() - uninstall protocol interface
1218 *
Mario Six8fac2912018-07-10 08:40:17 +02001219 * @handle: handle from which the protocol shall be removed
1220 * @protocol: GUID of the protocol to be removed
1221 * @protocol_interface: interface to be removed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001222 *
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001223 * This function DOES NOT delete a handle without installed protocol.
Mario Six8fac2912018-07-10 08:40:17 +02001224 *
1225 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001226 */
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001227static efi_status_t efi_uninstall_protocol
1228 (efi_handle_t handle, const efi_guid_t *protocol,
1229 void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01001230{
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001231 struct efi_object *efiobj;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001232 struct efi_handler *handler;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001233 struct efi_open_protocol_info_item *item;
1234 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001235 efi_status_t r;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001236
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001237 /* Check handle */
1238 efiobj = efi_search_obj(handle);
1239 if (!efiobj) {
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001240 r = EFI_INVALID_PARAMETER;
1241 goto out;
1242 }
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001243 /* Find the protocol on the handle */
1244 r = efi_search_protocol(handle, protocol, &handler);
1245 if (r != EFI_SUCCESS)
1246 goto out;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001247 /* Disconnect controllers */
1248 efi_disconnect_all_drivers(efiobj, protocol, NULL);
1249 if (!list_empty(&handler->open_infos)) {
1250 r = EFI_ACCESS_DENIED;
1251 goto out;
1252 }
1253 /* Close protocol */
1254 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1255 if (item->info.attributes ==
1256 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1257 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1258 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1259 list_del(&item->link);
1260 }
1261 if (!list_empty(&handler->open_infos)) {
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001262 r = EFI_ACCESS_DENIED;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001263 goto out;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001264 }
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001265 r = efi_remove_protocol(handle, protocol, protocol_interface);
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001266out:
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001267 return r;
Alexander Grafc15d9212016-03-04 01:09:59 +01001268}
1269
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001270/**
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001271 * efi_uninstall_protocol_interface() - uninstall protocol interface
1272 * @handle: handle from which the protocol shall be removed
1273 * @protocol: GUID of the protocol to be removed
1274 * @protocol_interface: interface to be removed
1275 *
1276 * This function implements the UninstallProtocolInterface service.
1277 *
1278 * See the Unified Extensible Firmware Interface (UEFI) specification for
1279 * details.
1280 *
1281 * Return: status code
1282 */
1283static efi_status_t EFIAPI efi_uninstall_protocol_interface
1284 (efi_handle_t handle, const efi_guid_t *protocol,
1285 void *protocol_interface)
1286{
1287 efi_status_t ret;
1288
1289 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1290
1291 ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1292 if (ret != EFI_SUCCESS)
1293 goto out;
1294
1295 /* If the last protocol has been removed, delete the handle. */
1296 if (list_empty(&handle->protocols)) {
1297 list_del(&handle->link);
1298 free(handle);
1299 }
1300out:
1301 return EFI_EXIT(ret);
1302}
1303
1304/**
Mario Six8fac2912018-07-10 08:40:17 +02001305 * efi_register_protocol_notify() - register an event for notification when a
1306 * protocol is installed.
1307 * @protocol: GUID of the protocol whose installation shall be notified
1308 * @event: event to be signaled upon installation of the protocol
1309 * @registration: key for retrieving the registration information
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001310 *
1311 * This function implements the RegisterProtocolNotify service.
1312 * See the Unified Extensible Firmware Interface (UEFI) specification
1313 * for details.
1314 *
Mario Six8fac2912018-07-10 08:40:17 +02001315 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001316 */
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001317static efi_status_t EFIAPI efi_register_protocol_notify(
1318 const efi_guid_t *protocol,
1319 struct efi_event *event,
1320 void **registration)
Alexander Grafc15d9212016-03-04 01:09:59 +01001321{
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001322 struct efi_register_notify_event *item;
1323 efi_status_t ret = EFI_SUCCESS;
1324
Rob Clark238f88c2017-09-13 18:05:41 -04001325 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001326
1327 if (!protocol || !event || !registration) {
1328 ret = EFI_INVALID_PARAMETER;
1329 goto out;
1330 }
1331
1332 item = calloc(1, sizeof(struct efi_register_notify_event));
1333 if (!item) {
1334 ret = EFI_OUT_OF_RESOURCES;
1335 goto out;
1336 }
1337
1338 item->event = event;
1339 memcpy(&item->protocol, protocol, sizeof(efi_guid_t));
1340
1341 list_add_tail(&item->link, &efi_register_notify_events);
1342
1343 *registration = item;
1344out:
1345 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001346}
1347
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001348/**
Mario Six8fac2912018-07-10 08:40:17 +02001349 * efi_search() - determine if an EFI handle implements a protocol
1350 * @search_type: selection criterion
1351 * @protocol: GUID of the protocol
1352 * @search_key: registration key
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001353 * @handle: handle
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001354 *
1355 * See the documentation of the LocateHandle service in the UEFI specification.
1356 *
Mario Six8fac2912018-07-10 08:40:17 +02001357 * Return: 0 if the handle implements the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001358 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001359static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001360 const efi_guid_t *protocol, efi_handle_t handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01001361{
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001362 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01001363
1364 switch (search_type) {
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001365 case ALL_HANDLES:
Alexander Grafc15d9212016-03-04 01:09:59 +01001366 return 0;
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001367 case BY_REGISTER_NOTIFY:
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001368 case BY_PROTOCOL:
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001369 ret = efi_search_protocol(handle, protocol, NULL);
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001370 return (ret != EFI_SUCCESS);
1371 default:
1372 /* Invalid search type */
Alexander Grafc15d9212016-03-04 01:09:59 +01001373 return -1;
1374 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001375}
1376
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001377/**
Mario Six8fac2912018-07-10 08:40:17 +02001378 * efi_locate_handle() - locate handles implementing a protocol
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001379 *
1380 * @search_type: selection criterion
1381 * @protocol: GUID of the protocol
1382 * @search_key: registration key
1383 * @buffer_size: size of the buffer to receive the handles in bytes
1384 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001385 *
1386 * This function is meant for U-Boot internal calls. For the API implementation
1387 * of the LocateHandle service see efi_locate_handle_ext.
1388 *
Mario Six8fac2912018-07-10 08:40:17 +02001389 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001390 */
xypron.glpk@gmx.decab4dd52017-08-09 20:55:00 +02001391static efi_status_t efi_locate_handle(
Alexander Grafc15d9212016-03-04 01:09:59 +01001392 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001393 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001394 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01001395{
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001396 struct efi_object *efiobj;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001397 efi_uintn_t size = 0;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001398 struct efi_register_notify_event *item, *event = NULL;
Alexander Grafc15d9212016-03-04 01:09:59 +01001399
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001400 /* Check parameters */
1401 switch (search_type) {
1402 case ALL_HANDLES:
1403 break;
1404 case BY_REGISTER_NOTIFY:
1405 if (!search_key)
1406 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001407 /* Check that the registration key is valid */
1408 list_for_each_entry(item, &efi_register_notify_events, link) {
1409 if (item ==
1410 (struct efi_register_notify_event *)search_key) {
1411 event = item;
1412 break;
1413 }
1414 }
1415 if (!event)
1416 return EFI_INVALID_PARAMETER;
1417
1418 protocol = &event->protocol;
1419 break;
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001420 case BY_PROTOCOL:
1421 if (!protocol)
1422 return EFI_INVALID_PARAMETER;
1423 break;
1424 default:
1425 return EFI_INVALID_PARAMETER;
1426 }
1427
Alexander Grafc15d9212016-03-04 01:09:59 +01001428 /* Count how much space we need */
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001429 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001430 if (!efi_search(search_type, protocol, efiobj))
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001431 size += sizeof(void *);
Alexander Grafc15d9212016-03-04 01:09:59 +01001432 }
1433
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001434 if (size == 0)
1435 return EFI_NOT_FOUND;
1436
1437 if (!buffer_size)
1438 return EFI_INVALID_PARAMETER;
1439
Alexander Grafc15d9212016-03-04 01:09:59 +01001440 if (*buffer_size < size) {
1441 *buffer_size = size;
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001442 return EFI_BUFFER_TOO_SMALL;
Alexander Grafc15d9212016-03-04 01:09:59 +01001443 }
1444
Rob Clarkcdee3372017-08-06 14:10:07 -04001445 *buffer_size = size;
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001446
Heinrich Schuchardtc97f9472019-05-10 19:03:49 +02001447 /* The buffer size is sufficient but there is no buffer */
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001448 if (!buffer)
1449 return EFI_INVALID_PARAMETER;
Rob Clarkcdee3372017-08-06 14:10:07 -04001450
Alexander Grafc15d9212016-03-04 01:09:59 +01001451 /* Then fill the array */
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001452 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001453 if (!efi_search(search_type, protocol, efiobj))
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001454 *buffer++ = efiobj;
Alexander Grafc15d9212016-03-04 01:09:59 +01001455 }
1456
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001457 return EFI_SUCCESS;
1458}
1459
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001460/**
Mario Six8fac2912018-07-10 08:40:17 +02001461 * efi_locate_handle_ext() - locate handles implementing a protocol.
1462 * @search_type: selection criterion
1463 * @protocol: GUID of the protocol
1464 * @search_key: registration key
1465 * @buffer_size: size of the buffer to receive the handles in bytes
1466 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001467 *
1468 * This function implements the LocateHandle service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001469 *
Mario Six8fac2912018-07-10 08:40:17 +02001470 * See the Unified Extensible Firmware Interface (UEFI) specification for
1471 * details.
1472 *
1473 * Return: 0 if the handle implements the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001474 */
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001475static efi_status_t EFIAPI efi_locate_handle_ext(
1476 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001477 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001478 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001479{
Rob Clark238f88c2017-09-13 18:05:41 -04001480 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001481 buffer_size, buffer);
1482
1483 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1484 buffer_size, buffer));
Alexander Grafc15d9212016-03-04 01:09:59 +01001485}
1486
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001487/**
Mario Six8fac2912018-07-10 08:40:17 +02001488 * efi_remove_configuration_table() - collapses configuration table entries,
1489 * removing index i
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001490 *
Mario Six8fac2912018-07-10 08:40:17 +02001491 * @i: index of the table entry to be removed
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001492 */
Alexander Graffe3366f2017-07-26 13:41:04 +02001493static void efi_remove_configuration_table(int i)
1494{
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001495 struct efi_configuration_table *this = &systab.tables[i];
1496 struct efi_configuration_table *next = &systab.tables[i + 1];
1497 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
Alexander Graffe3366f2017-07-26 13:41:04 +02001498
1499 memmove(this, next, (ulong)end - (ulong)next);
1500 systab.nr_tables--;
1501}
1502
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001503/**
Mario Six8fac2912018-07-10 08:40:17 +02001504 * efi_install_configuration_table() - adds, updates, or removes a
1505 * configuration table
1506 * @guid: GUID of the installed table
1507 * @table: table to be installed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001508 *
1509 * This function is used for internal calls. For the API implementation of the
1510 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1511 *
Mario Six8fac2912018-07-10 08:40:17 +02001512 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001513 */
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001514efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1515 void *table)
Alexander Grafc15d9212016-03-04 01:09:59 +01001516{
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001517 struct efi_event *evt;
Alexander Grafc15d9212016-03-04 01:09:59 +01001518 int i;
1519
Heinrich Schuchardt754ce102018-02-18 00:08:00 +01001520 if (!guid)
1521 return EFI_INVALID_PARAMETER;
1522
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001523 /* Check for GUID override */
Alexander Grafc15d9212016-03-04 01:09:59 +01001524 for (i = 0; i < systab.nr_tables; i++) {
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001525 if (!guidcmp(guid, &systab.tables[i].guid)) {
Alexander Graffe3366f2017-07-26 13:41:04 +02001526 if (table)
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001527 systab.tables[i].table = table;
Alexander Graffe3366f2017-07-26 13:41:04 +02001528 else
1529 efi_remove_configuration_table(i);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001530 goto out;
Alexander Grafc15d9212016-03-04 01:09:59 +01001531 }
1532 }
1533
Alexander Graffe3366f2017-07-26 13:41:04 +02001534 if (!table)
1535 return EFI_NOT_FOUND;
1536
Alexander Grafc15d9212016-03-04 01:09:59 +01001537 /* No override, check for overflow */
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001538 if (i >= EFI_MAX_CONFIGURATION_TABLES)
Alexander Grafc5c11632016-08-19 01:23:24 +02001539 return EFI_OUT_OF_RESOURCES;
Alexander Grafc15d9212016-03-04 01:09:59 +01001540
1541 /* Add a new entry */
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001542 memcpy(&systab.tables[i].guid, guid, sizeof(*guid));
1543 systab.tables[i].table = table;
Alexander Graf9982e672016-08-19 01:23:30 +02001544 systab.nr_tables = i + 1;
Alexander Grafc15d9212016-03-04 01:09:59 +01001545
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001546out:
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001547 /* systab.nr_tables may have changed. So we need to update the CRC32 */
Heinrich Schuchardtac2d4da2018-07-07 15:36:05 +02001548 efi_update_table_header_crc32(&systab.hdr);
1549
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001550 /* Notify that the configuration table was changed */
1551 list_for_each_entry(evt, &efi_events, link) {
1552 if (evt->group && !guidcmp(evt->group, guid)) {
1553 efi_signal_event(evt, false);
1554 break;
1555 }
1556 }
1557
Alexander Grafc5c11632016-08-19 01:23:24 +02001558 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +01001559}
1560
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001561/**
Mario Six8fac2912018-07-10 08:40:17 +02001562 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1563 * configuration table.
1564 * @guid: GUID of the installed table
1565 * @table: table to be installed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001566 *
1567 * This function implements the InstallConfigurationTable service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001568 *
Mario Six8fac2912018-07-10 08:40:17 +02001569 * See the Unified Extensible Firmware Interface (UEFI) specification for
1570 * details.
1571 *
1572 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001573 */
Alexander Grafc5c11632016-08-19 01:23:24 +02001574static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1575 void *table)
1576{
Rob Clark238f88c2017-09-13 18:05:41 -04001577 EFI_ENTRY("%pUl, %p", guid, table);
Alexander Grafc5c11632016-08-19 01:23:24 +02001578 return EFI_EXIT(efi_install_configuration_table(guid, table));
1579}
1580
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001581/**
Mario Six8fac2912018-07-10 08:40:17 +02001582 * efi_setup_loaded_image() - initialize a loaded image
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001583 *
1584 * Initialize a loaded_image_info and loaded_image_info object with correct
Rob Clarkf8db9222017-09-13 18:05:33 -04001585 * protocols, boot-device, etc.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001586 *
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001587 * In case of an error *handle_ptr and *info_ptr are set to NULL and an error
1588 * code is returned.
1589 *
1590 * @device_path: device path of the loaded image
1591 * @file_path: file path of the loaded image
1592 * @handle_ptr: handle of the loaded image
1593 * @info_ptr: loaded image protocol
1594 * Return: status code
Rob Clarkf8db9222017-09-13 18:05:33 -04001595 */
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001596efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1597 struct efi_device_path *file_path,
1598 struct efi_loaded_image_obj **handle_ptr,
1599 struct efi_loaded_image **info_ptr)
Rob Clarkf8db9222017-09-13 18:05:33 -04001600{
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001601 efi_status_t ret;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001602 struct efi_loaded_image *info = NULL;
1603 struct efi_loaded_image_obj *obj = NULL;
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001604 struct efi_device_path *dp;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001605
1606 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1607 *handle_ptr = NULL;
1608 *info_ptr = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001609
1610 info = calloc(1, sizeof(*info));
1611 if (!info)
1612 return EFI_OUT_OF_RESOURCES;
1613 obj = calloc(1, sizeof(*obj));
1614 if (!obj) {
1615 free(info);
1616 return EFI_OUT_OF_RESOURCES;
1617 }
Heinrich Schuchardtb27ced42019-05-01 14:20:18 +02001618 obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001619
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +01001620 /* Add internal object to object list */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001621 efi_add_handle(&obj->header);
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001622
Heinrich Schuchardtc47f8702018-07-05 08:17:58 +02001623 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001624 info->file_path = file_path;
Heinrich Schuchardt8a7e09d2018-08-26 15:31:52 +02001625 info->system_table = &systab;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001626
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001627 if (device_path) {
1628 info->device_handle = efi_dp_find_obj(device_path, NULL);
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001629
1630 dp = efi_dp_append(device_path, file_path);
1631 if (!dp) {
1632 ret = EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001633 goto failure;
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001634 }
1635 } else {
1636 dp = NULL;
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001637 }
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001638 ret = efi_add_protocol(&obj->header,
1639 &efi_guid_loaded_image_device_path, dp);
1640 if (ret != EFI_SUCCESS)
1641 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001642
1643 /*
1644 * When asking for the loaded_image interface, just
1645 * return handle which points to loaded_image_info
1646 */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001647 ret = efi_add_protocol(&obj->header,
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001648 &efi_guid_loaded_image, info);
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001649 if (ret != EFI_SUCCESS)
1650 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001651
Heinrich Schuchardtd20f5122019-03-19 18:58:58 +01001652 *info_ptr = info;
1653 *handle_ptr = obj;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001654
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001655 return ret;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001656failure:
1657 printf("ERROR: Failure to install protocols for loaded image\n");
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001658 efi_delete_handle(&obj->header);
1659 free(info);
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001660 return ret;
Rob Clarkf8db9222017-09-13 18:05:33 -04001661}
1662
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001663/**
Mario Six8fac2912018-07-10 08:40:17 +02001664 * efi_load_image_from_path() - load an image using a file path
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001665 *
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001666 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1667 * callers obligation to update the memory type as needed.
1668 *
1669 * @file_path: the path of the image to load
1670 * @buffer: buffer containing the loaded image
1671 * @size: size of the loaded image
1672 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001673 */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +09001674static
Rob Clarkc84c1102017-09-13 18:05:38 -04001675efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001676 void **buffer, efi_uintn_t *size)
Rob Clark857a1222017-09-13 18:05:35 -04001677{
1678 struct efi_file_info *info = NULL;
1679 struct efi_file_handle *f;
1680 static efi_status_t ret;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001681 u64 addr;
Heinrich Schuchardt6b06e0d2018-04-03 22:37:11 +02001682 efi_uintn_t bs;
Rob Clark857a1222017-09-13 18:05:35 -04001683
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001684 /* In case of failure nothing is returned */
1685 *buffer = NULL;
1686 *size = 0;
1687
1688 /* Open file */
Rob Clark857a1222017-09-13 18:05:35 -04001689 f = efi_file_from_path(file_path);
1690 if (!f)
1691 return EFI_DEVICE_ERROR;
1692
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001693 /* Get file size */
Rob Clark857a1222017-09-13 18:05:35 -04001694 bs = 0;
1695 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1696 &bs, info));
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001697 if (ret != EFI_BUFFER_TOO_SMALL) {
1698 ret = EFI_DEVICE_ERROR;
Rob Clark857a1222017-09-13 18:05:35 -04001699 goto error;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001700 }
Rob Clark857a1222017-09-13 18:05:35 -04001701
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001702 info = malloc(bs);
1703 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs,
1704 info));
1705 if (ret != EFI_SUCCESS)
Rob Clark857a1222017-09-13 18:05:35 -04001706 goto error;
1707
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001708 /*
1709 * When reading the file we do not yet know if it contains an
1710 * application, a boottime driver, or a runtime driver. So here we
1711 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1712 * update the reservation according to the image type.
1713 */
Heinrich Schuchardt6b06e0d2018-04-03 22:37:11 +02001714 bs = info->file_size;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001715 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1716 EFI_BOOT_SERVICES_DATA,
1717 efi_size_in_pages(bs), &addr);
Rob Clark857a1222017-09-13 18:05:35 -04001718 if (ret != EFI_SUCCESS) {
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001719 ret = EFI_OUT_OF_RESOURCES;
1720 goto error;
Rob Clark857a1222017-09-13 18:05:35 -04001721 }
1722
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001723 /* Read file */
1724 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1725 if (ret != EFI_SUCCESS)
1726 efi_free_pages(addr, efi_size_in_pages(bs));
1727 *buffer = (void *)(uintptr_t)addr;
1728 *size = bs;
1729error:
1730 EFI_CALL(f->close(f));
1731 free(info);
Rob Clark857a1222017-09-13 18:05:35 -04001732 return ret;
1733}
1734
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001735/**
Mario Six8fac2912018-07-10 08:40:17 +02001736 * efi_load_image() - load an EFI image into memory
1737 * @boot_policy: true for request originating from the boot manager
1738 * @parent_image: the caller's image handle
1739 * @file_path: the path of the image to load
1740 * @source_buffer: memory location from which the image is installed
1741 * @source_size: size of the memory area from which the image is installed
1742 * @image_handle: handle for the newly installed image
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001743 *
1744 * This function implements the LoadImage service.
Mario Six8fac2912018-07-10 08:40:17 +02001745 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001746 * See the Unified Extensible Firmware Interface (UEFI) specification
1747 * for details.
1748 *
Mario Six8fac2912018-07-10 08:40:17 +02001749 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001750 */
AKASHI Takahirob0ad9052019-03-05 14:53:31 +09001751efi_status_t EFIAPI efi_load_image(bool boot_policy,
1752 efi_handle_t parent_image,
1753 struct efi_device_path *file_path,
1754 void *source_buffer,
1755 efi_uintn_t source_size,
1756 efi_handle_t *image_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01001757{
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001758 struct efi_device_path *dp, *fp;
Tom Rini04c49062018-09-30 10:38:15 -04001759 struct efi_loaded_image *info = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001760 struct efi_loaded_image_obj **image_obj =
1761 (struct efi_loaded_image_obj **)image_handle;
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001762 efi_status_t ret;
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01001763 void *dest_buffer;
Alexander Grafc15d9212016-03-04 01:09:59 +01001764
Heinrich Schuchardt4cde1fa2018-04-03 22:29:30 +02001765 EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
Alexander Grafc15d9212016-03-04 01:09:59 +01001766 file_path, source_buffer, source_size, image_handle);
Rob Clark857a1222017-09-13 18:05:35 -04001767
Heinrich Schuchardt2e0a7902019-05-05 16:55:06 +02001768 if (!image_handle || !efi_search_obj(parent_image)) {
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01001769 ret = EFI_INVALID_PARAMETER;
1770 goto error;
1771 }
1772
1773 if (!source_buffer && !file_path) {
1774 ret = EFI_NOT_FOUND;
1775 goto error;
1776 }
Heinrich Schuchardt2e0a7902019-05-05 16:55:06 +02001777 /* The parent image handle must refer to a loaded image */
1778 if (!parent_image->type) {
1779 ret = EFI_INVALID_PARAMETER;
1780 goto error;
1781 }
Rob Clark857a1222017-09-13 18:05:35 -04001782
1783 if (!source_buffer) {
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01001784 ret = efi_load_image_from_path(file_path, &dest_buffer,
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001785 &source_size);
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001786 if (ret != EFI_SUCCESS)
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001787 goto error;
Rob Clark857a1222017-09-13 18:05:35 -04001788 } else {
Heinrich Schuchardt78a23b52019-05-05 16:55:06 +02001789 if (!source_size) {
1790 ret = EFI_LOAD_ERROR;
1791 goto error;
1792 }
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01001793 dest_buffer = source_buffer;
Rob Clark857a1222017-09-13 18:05:35 -04001794 }
Heinrich Schuchardt28b39172019-04-20 19:24:43 +00001795 /* split file_path which contains both the device and file parts */
1796 efi_dp_split_file_path(file_path, &dp, &fp);
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001797 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01001798 if (ret == EFI_SUCCESS)
1799 ret = efi_load_pe(*image_obj, dest_buffer, info);
1800 if (!source_buffer)
1801 /* Release buffer to which file was loaded */
1802 efi_free_pages((uintptr_t)dest_buffer,
1803 efi_size_in_pages(source_size));
1804 if (ret == EFI_SUCCESS) {
1805 info->system_table = &systab;
1806 info->parent_handle = parent_image;
1807 } else {
1808 /* The image is invalid. Release all associated resources. */
1809 efi_delete_handle(*image_handle);
1810 *image_handle = NULL;
1811 free(info);
1812 }
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01001813error:
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001814 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001815}
1816
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001817/**
Alexander Graffa5246b2018-11-15 21:23:47 +01001818 * efi_exit_caches() - fix up caches for EFI payloads if necessary
1819 */
1820static void efi_exit_caches(void)
1821{
1822#if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
1823 /*
1824 * Grub on 32bit ARM needs to have caches disabled before jumping into
1825 * a zImage, but does not know of all cache layers. Give it a hand.
1826 */
1827 if (efi_is_direct_boot)
1828 cleanup_before_linux();
1829#endif
1830}
1831
1832/**
Mario Six8fac2912018-07-10 08:40:17 +02001833 * efi_exit_boot_services() - stop all boot services
1834 * @image_handle: handle of the loaded image
1835 * @map_key: key of the memory map
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001836 *
1837 * This function implements the ExitBootServices service.
Mario Six8fac2912018-07-10 08:40:17 +02001838 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001839 * See the Unified Extensible Firmware Interface (UEFI) specification
1840 * for details.
1841 *
Mario Six8fac2912018-07-10 08:40:17 +02001842 * All timer events are disabled. For exit boot services events the
1843 * notification function is called. The boot services are disabled in the
1844 * system table.
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001845 *
Mario Six8fac2912018-07-10 08:40:17 +02001846 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001847 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001848static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
Heinrich Schuchardt8bd4f412019-05-05 21:58:35 +02001849 efi_uintn_t map_key)
Alexander Grafc15d9212016-03-04 01:09:59 +01001850{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001851 struct efi_event *evt;
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001852
Heinrich Schuchardt8bd4f412019-05-05 21:58:35 +02001853 EFI_ENTRY("%p, %zx", image_handle, map_key);
Alexander Grafc15d9212016-03-04 01:09:59 +01001854
Heinrich Schuchardt0f233c42018-07-02 12:53:55 +02001855 /* Check that the caller has read the current memory map */
1856 if (map_key != efi_memory_map_key)
1857 return EFI_INVALID_PARAMETER;
1858
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001859 /* Make sure that notification functions are not called anymore */
1860 efi_tpl = TPL_HIGH_LEVEL;
1861
1862 /* Check if ExitBootServices has already been called */
1863 if (!systab.boottime)
1864 return EFI_EXIT(EFI_SUCCESS);
1865
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001866 /* Add related events to the event group */
1867 list_for_each_entry(evt, &efi_events, link) {
1868 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
1869 evt->group = &efi_guid_event_group_exit_boot_services;
1870 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001871 /* Notify that ExitBootServices is invoked. */
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001872 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001873 if (evt->group &&
1874 !guidcmp(evt->group,
1875 &efi_guid_event_group_exit_boot_services)) {
1876 efi_signal_event(evt, false);
1877 break;
1878 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001879 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001880
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001881 /* TODO: Should persist EFI variables here */
Rob Clark15f3d742017-09-13 18:05:37 -04001882
Alexander Graf2ebeb442016-11-17 01:02:57 +01001883 board_quiesce_devices();
1884
Alexander Graffa5246b2018-11-15 21:23:47 +01001885 /* Fix up caches for EFI payloads if necessary */
1886 efi_exit_caches();
1887
Alexander Grafc15d9212016-03-04 01:09:59 +01001888 /* This stops all lingering devices */
1889 bootm_disable_interrupts();
1890
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001891 /* Disable boot time services */
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001892 systab.con_in_handle = NULL;
1893 systab.con_in = NULL;
1894 systab.con_out_handle = NULL;
1895 systab.con_out = NULL;
1896 systab.stderr_handle = NULL;
1897 systab.std_err = NULL;
1898 systab.boottime = NULL;
1899
1900 /* Recalculate CRC32 */
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02001901 efi_update_table_header_crc32(&systab.hdr);
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001902
Alexander Grafc15d9212016-03-04 01:09:59 +01001903 /* Give the payload some time to boot */
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02001904 efi_set_watchdog(0);
Alexander Grafc15d9212016-03-04 01:09:59 +01001905 WATCHDOG_RESET();
1906
1907 return EFI_EXIT(EFI_SUCCESS);
1908}
1909
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001910/**
Mario Six8fac2912018-07-10 08:40:17 +02001911 * efi_get_next_monotonic_count() - get next value of the counter
1912 * @count: returned value of the counter
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001913 *
1914 * This function implements the NextMonotonicCount service.
Mario Six8fac2912018-07-10 08:40:17 +02001915 *
1916 * See the Unified Extensible Firmware Interface (UEFI) specification for
1917 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001918 *
Mario Six8fac2912018-07-10 08:40:17 +02001919 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001920 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001921static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
1922{
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001923 static uint64_t mono;
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02001924 efi_status_t ret;
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001925
Alexander Grafc15d9212016-03-04 01:09:59 +01001926 EFI_ENTRY("%p", count);
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02001927 if (!count) {
1928 ret = EFI_INVALID_PARAMETER;
1929 goto out;
1930 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001931 *count = mono++;
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02001932 ret = EFI_SUCCESS;
1933out:
1934 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001935}
1936
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001937/**
Mario Six8fac2912018-07-10 08:40:17 +02001938 * efi_stall() - sleep
1939 * @microseconds: period to sleep in microseconds
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001940 *
Mario Six8fac2912018-07-10 08:40:17 +02001941 * This function implements the Stall service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001942 *
Mario Six8fac2912018-07-10 08:40:17 +02001943 * See the Unified Extensible Firmware Interface (UEFI) specification for
1944 * details.
1945 *
1946 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001947 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001948static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
1949{
Heinrich Schuchardt9912c032019-06-02 21:12:17 +02001950 u64 end_tick;
1951
Alexander Grafc15d9212016-03-04 01:09:59 +01001952 EFI_ENTRY("%ld", microseconds);
Heinrich Schuchardt9912c032019-06-02 21:12:17 +02001953
1954 end_tick = get_ticks() + usec_to_tick(microseconds);
1955 while (get_ticks() < end_tick)
1956 efi_timer_check();
1957
Alexander Grafc15d9212016-03-04 01:09:59 +01001958 return EFI_EXIT(EFI_SUCCESS);
1959}
1960
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001961/**
Mario Six8fac2912018-07-10 08:40:17 +02001962 * efi_set_watchdog_timer() - reset the watchdog timer
1963 * @timeout: seconds before reset by watchdog
1964 * @watchdog_code: code to be logged when resetting
1965 * @data_size: size of buffer in bytes
1966 * @watchdog_data: buffer with data describing the reset reason
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001967 *
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02001968 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001969 *
Mario Six8fac2912018-07-10 08:40:17 +02001970 * See the Unified Extensible Firmware Interface (UEFI) specification for
1971 * details.
1972 *
1973 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001974 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001975static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
1976 uint64_t watchdog_code,
1977 unsigned long data_size,
1978 uint16_t *watchdog_data)
1979{
Masahiro Yamadac7570a32018-08-06 20:47:40 +09001980 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
Alexander Grafc15d9212016-03-04 01:09:59 +01001981 data_size, watchdog_data);
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02001982 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafc15d9212016-03-04 01:09:59 +01001983}
1984
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001985/**
Mario Six8fac2912018-07-10 08:40:17 +02001986 * efi_close_protocol() - close a protocol
1987 * @handle: handle on which the protocol shall be closed
1988 * @protocol: GUID of the protocol to close
1989 * @agent_handle: handle of the driver
1990 * @controller_handle: handle of the controller
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001991 *
1992 * This function implements the CloseProtocol service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001993 *
Mario Six8fac2912018-07-10 08:40:17 +02001994 * See the Unified Extensible Firmware Interface (UEFI) specification for
1995 * details.
1996 *
1997 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001998 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001999static efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002000 const efi_guid_t *protocol,
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002001 efi_handle_t agent_handle,
2002 efi_handle_t controller_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01002003{
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002004 struct efi_handler *handler;
2005 struct efi_open_protocol_info_item *item;
2006 struct efi_open_protocol_info_item *pos;
2007 efi_status_t r;
2008
Rob Clark238f88c2017-09-13 18:05:41 -04002009 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
Alexander Grafc15d9212016-03-04 01:09:59 +01002010 controller_handle);
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002011
Heinrich Schuchardt5d8231b2019-05-05 10:37:51 +02002012 if (!efi_search_obj(agent_handle) ||
2013 (controller_handle && !efi_search_obj(controller_handle))) {
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002014 r = EFI_INVALID_PARAMETER;
2015 goto out;
2016 }
2017 r = efi_search_protocol(handle, protocol, &handler);
2018 if (r != EFI_SUCCESS)
2019 goto out;
2020
2021 r = EFI_NOT_FOUND;
2022 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2023 if (item->info.agent_handle == agent_handle &&
2024 item->info.controller_handle == controller_handle) {
2025 efi_delete_open_info(item);
2026 r = EFI_SUCCESS;
2027 break;
2028 }
2029 }
2030out:
2031 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002032}
2033
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002034/**
Mario Six8fac2912018-07-10 08:40:17 +02002035 * efi_open_protocol_information() - provide information about then open status
2036 * of a protocol on a handle
2037 * @handle: handle for which the information shall be retrieved
2038 * @protocol: GUID of the protocol
2039 * @entry_buffer: buffer to receive the open protocol information
2040 * @entry_count: number of entries available in the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002041 *
2042 * This function implements the OpenProtocolInformation service.
Mario Six8fac2912018-07-10 08:40:17 +02002043 *
2044 * See the Unified Extensible Firmware Interface (UEFI) specification for
2045 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002046 *
Mario Six8fac2912018-07-10 08:40:17 +02002047 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002048 */
Heinrich Schuchardt91064592018-02-18 15:17:49 +01002049static efi_status_t EFIAPI efi_open_protocol_information(
2050 efi_handle_t handle, const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002051 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002052 efi_uintn_t *entry_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01002053{
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002054 unsigned long buffer_size;
2055 unsigned long count;
2056 struct efi_handler *handler;
2057 struct efi_open_protocol_info_item *item;
2058 efi_status_t r;
2059
Rob Clark238f88c2017-09-13 18:05:41 -04002060 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
Alexander Grafc15d9212016-03-04 01:09:59 +01002061 entry_count);
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002062
2063 /* Check parameters */
2064 if (!entry_buffer) {
2065 r = EFI_INVALID_PARAMETER;
2066 goto out;
2067 }
2068 r = efi_search_protocol(handle, protocol, &handler);
2069 if (r != EFI_SUCCESS)
2070 goto out;
2071
2072 /* Count entries */
2073 count = 0;
2074 list_for_each_entry(item, &handler->open_infos, link) {
2075 if (item->info.open_count)
2076 ++count;
2077 }
2078 *entry_count = count;
2079 *entry_buffer = NULL;
2080 if (!count) {
2081 r = EFI_SUCCESS;
2082 goto out;
2083 }
2084
2085 /* Copy entries */
2086 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002087 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002088 (void **)entry_buffer);
2089 if (r != EFI_SUCCESS)
2090 goto out;
2091 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2092 if (item->info.open_count)
2093 (*entry_buffer)[--count] = item->info;
2094 }
2095out:
2096 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002097}
2098
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002099/**
Mario Six8fac2912018-07-10 08:40:17 +02002100 * efi_protocols_per_handle() - get protocols installed on a handle
2101 * @handle: handle for which the information is retrieved
2102 * @protocol_buffer: buffer with protocol GUIDs
2103 * @protocol_buffer_count: number of entries in the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002104 *
2105 * This function implements the ProtocolsPerHandleService.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002106 *
Mario Six8fac2912018-07-10 08:40:17 +02002107 * See the Unified Extensible Firmware Interface (UEFI) specification for
2108 * details.
2109 *
2110 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002111 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002112static efi_status_t EFIAPI efi_protocols_per_handle(
2113 efi_handle_t handle, efi_guid_t ***protocol_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002114 efi_uintn_t *protocol_buffer_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01002115{
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002116 unsigned long buffer_size;
2117 struct efi_object *efiobj;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002118 struct list_head *protocol_handle;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002119 efi_status_t r;
2120
Alexander Grafc15d9212016-03-04 01:09:59 +01002121 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2122 protocol_buffer_count);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002123
2124 if (!handle || !protocol_buffer || !protocol_buffer_count)
2125 return EFI_EXIT(EFI_INVALID_PARAMETER);
2126
2127 *protocol_buffer = NULL;
Rob Clarkd51b8ca2017-07-20 07:59:39 -04002128 *protocol_buffer_count = 0;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002129
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002130 efiobj = efi_search_obj(handle);
2131 if (!efiobj)
2132 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002133
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002134 /* Count protocols */
2135 list_for_each(protocol_handle, &efiobj->protocols) {
2136 ++*protocol_buffer_count;
2137 }
2138
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02002139 /* Copy GUIDs */
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002140 if (*protocol_buffer_count) {
2141 size_t j = 0;
2142
2143 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002144 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002145 (void **)protocol_buffer);
2146 if (r != EFI_SUCCESS)
2147 return EFI_EXIT(r);
2148 list_for_each(protocol_handle, &efiobj->protocols) {
2149 struct efi_handler *protocol;
2150
2151 protocol = list_entry(protocol_handle,
2152 struct efi_handler, link);
2153 (*protocol_buffer)[j] = (void *)protocol->guid;
2154 ++j;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002155 }
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002156 }
2157
2158 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002159}
2160
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002161/**
Mario Six8fac2912018-07-10 08:40:17 +02002162 * efi_locate_handle_buffer() - locate handles implementing a protocol
2163 * @search_type: selection criterion
2164 * @protocol: GUID of the protocol
2165 * @search_key: registration key
2166 * @no_handles: number of returned handles
2167 * @buffer: buffer with the returned handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002168 *
2169 * This function implements the LocateHandleBuffer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002170 *
Mario Six8fac2912018-07-10 08:40:17 +02002171 * See the Unified Extensible Firmware Interface (UEFI) specification for
2172 * details.
2173 *
2174 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002175 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002176static efi_status_t EFIAPI efi_locate_handle_buffer(
2177 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002178 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002179 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01002180{
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002181 efi_status_t r;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002182 efi_uintn_t buffer_size = 0;
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002183
Rob Clark238f88c2017-09-13 18:05:41 -04002184 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafc15d9212016-03-04 01:09:59 +01002185 no_handles, buffer);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002186
2187 if (!no_handles || !buffer) {
2188 r = EFI_INVALID_PARAMETER;
2189 goto out;
2190 }
2191 *no_handles = 0;
2192 *buffer = NULL;
2193 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2194 *buffer);
2195 if (r != EFI_BUFFER_TOO_SMALL)
2196 goto out;
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002197 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002198 (void **)buffer);
2199 if (r != EFI_SUCCESS)
2200 goto out;
2201 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2202 *buffer);
2203 if (r == EFI_SUCCESS)
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002204 *no_handles = buffer_size / sizeof(efi_handle_t);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002205out:
2206 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002207}
2208
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002209/**
Mario Six8fac2912018-07-10 08:40:17 +02002210 * efi_locate_protocol() - find an interface implementing a protocol
2211 * @protocol: GUID of the protocol
2212 * @registration: registration key passed to the notification function
2213 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002214 *
2215 * This function implements the LocateProtocol service.
Mario Six8fac2912018-07-10 08:40:17 +02002216 *
2217 * See the Unified Extensible Firmware Interface (UEFI) specification for
2218 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002219 *
Mario Six8fac2912018-07-10 08:40:17 +02002220 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002221 */
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002222static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002223 void *registration,
2224 void **protocol_interface)
2225{
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002226 struct list_head *lhandle;
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002227 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01002228
Rob Clark238f88c2017-09-13 18:05:41 -04002229 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002230
2231 if (!protocol || !protocol_interface)
2232 return EFI_EXIT(EFI_INVALID_PARAMETER);
2233
2234 list_for_each(lhandle, &efi_obj_list) {
2235 struct efi_object *efiobj;
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002236 struct efi_handler *handler;
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002237
2238 efiobj = list_entry(lhandle, struct efi_object, link);
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002239
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02002240 ret = efi_search_protocol(efiobj, protocol, &handler);
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002241 if (ret == EFI_SUCCESS) {
2242 *protocol_interface = handler->protocol_interface;
2243 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002244 }
2245 }
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002246 *protocol_interface = NULL;
Alexander Grafc15d9212016-03-04 01:09:59 +01002247
2248 return EFI_EXIT(EFI_NOT_FOUND);
2249}
2250
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002251/**
Mario Six8fac2912018-07-10 08:40:17 +02002252 * efi_locate_device_path() - Get the device path and handle of an device
2253 * implementing a protocol
2254 * @protocol: GUID of the protocol
2255 * @device_path: device path
2256 * @device: handle of the device
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002257 *
2258 * This function implements the LocateDevicePath service.
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002259 *
Mario Six8fac2912018-07-10 08:40:17 +02002260 * See the Unified Extensible Firmware Interface (UEFI) specification for
2261 * details.
2262 *
2263 * Return: status code
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002264 */
2265static efi_status_t EFIAPI efi_locate_device_path(
2266 const efi_guid_t *protocol,
2267 struct efi_device_path **device_path,
2268 efi_handle_t *device)
2269{
2270 struct efi_device_path *dp;
2271 size_t i;
2272 struct efi_handler *handler;
2273 efi_handle_t *handles;
2274 size_t len, len_dp;
2275 size_t len_best = 0;
2276 efi_uintn_t no_handles;
2277 u8 *remainder;
2278 efi_status_t ret;
2279
2280 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
2281
Heinrich Schuchardt6db1e5c2019-05-10 19:21:41 +02002282 if (!protocol || !device_path || !*device_path) {
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002283 ret = EFI_INVALID_PARAMETER;
2284 goto out;
2285 }
2286
2287 /* Find end of device path */
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +02002288 len = efi_dp_instance_size(*device_path);
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002289
2290 /* Get all handles implementing the protocol */
2291 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
2292 &no_handles, &handles));
2293 if (ret != EFI_SUCCESS)
2294 goto out;
2295
2296 for (i = 0; i < no_handles; ++i) {
2297 /* Find the device path protocol */
2298 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
2299 &handler);
2300 if (ret != EFI_SUCCESS)
2301 continue;
2302 dp = (struct efi_device_path *)handler->protocol_interface;
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +02002303 len_dp = efi_dp_instance_size(dp);
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002304 /*
2305 * This handle can only be a better fit
2306 * if its device path length is longer than the best fit and
2307 * if its device path length is shorter of equal the searched
2308 * device path.
2309 */
2310 if (len_dp <= len_best || len_dp > len)
2311 continue;
2312 /* Check if dp is a subpath of device_path */
2313 if (memcmp(*device_path, dp, len_dp))
2314 continue;
Heinrich Schuchardt6db1e5c2019-05-10 19:21:41 +02002315 if (!device) {
2316 ret = EFI_INVALID_PARAMETER;
2317 goto out;
2318 }
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002319 *device = handles[i];
2320 len_best = len_dp;
2321 }
2322 if (len_best) {
2323 remainder = (u8 *)*device_path + len_best;
2324 *device_path = (struct efi_device_path *)remainder;
2325 ret = EFI_SUCCESS;
2326 } else {
2327 ret = EFI_NOT_FOUND;
2328 }
2329out:
2330 return EFI_EXIT(ret);
2331}
2332
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002333/**
Mario Six8fac2912018-07-10 08:40:17 +02002334 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2335 * interfaces
2336 * @handle: handle on which the protocol interfaces shall be installed
2337 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2338 * interfaces
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002339 *
2340 * This function implements the MultipleProtocolInterfaces service.
Mario Six8fac2912018-07-10 08:40:17 +02002341 *
2342 * See the Unified Extensible Firmware Interface (UEFI) specification for
2343 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002344 *
Mario Six8fac2912018-07-10 08:40:17 +02002345 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002346 */
Heinrich Schuchardt744d83e2019-04-12 06:59:49 +02002347efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002348 (efi_handle_t *handle, ...)
Alexander Grafc15d9212016-03-04 01:09:59 +01002349{
2350 EFI_ENTRY("%p", handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002351
Alexander Graf404a7c82018-06-18 17:23:05 +02002352 efi_va_list argptr;
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002353 const efi_guid_t *protocol;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002354 void *protocol_interface;
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002355 efi_handle_t old_handle;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002356 efi_status_t r = EFI_SUCCESS;
2357 int i = 0;
2358
2359 if (!handle)
2360 return EFI_EXIT(EFI_INVALID_PARAMETER);
2361
Alexander Graf404a7c82018-06-18 17:23:05 +02002362 efi_va_start(argptr, handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002363 for (;;) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002364 protocol = efi_va_arg(argptr, efi_guid_t*);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002365 if (!protocol)
2366 break;
Alexander Graf404a7c82018-06-18 17:23:05 +02002367 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002368 /* Check that a device path has not been installed before */
2369 if (!guidcmp(protocol, &efi_guid_device_path)) {
2370 struct efi_device_path *dp = protocol_interface;
2371
2372 r = EFI_CALL(efi_locate_device_path(protocol, &dp,
2373 &old_handle));
Heinrich Schuchardt29344972019-05-20 19:55:18 +00002374 if (r == EFI_SUCCESS &&
2375 dp->type == DEVICE_PATH_TYPE_END) {
2376 EFI_PRINT("Path %pD already installed\n",
2377 protocol_interface);
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002378 r = EFI_ALREADY_STARTED;
2379 break;
2380 }
2381 }
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01002382 r = EFI_CALL(efi_install_protocol_interface(
2383 handle, protocol,
2384 EFI_NATIVE_INTERFACE,
2385 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002386 if (r != EFI_SUCCESS)
2387 break;
2388 i++;
2389 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002390 efi_va_end(argptr);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002391 if (r == EFI_SUCCESS)
2392 return EFI_EXIT(r);
2393
Heinrich Schuchardtec47f3e2017-10-26 19:25:42 +02002394 /* If an error occurred undo all changes. */
Alexander Graf404a7c82018-06-18 17:23:05 +02002395 efi_va_start(argptr, handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002396 for (; i; --i) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002397 protocol = efi_va_arg(argptr, efi_guid_t*);
2398 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002399 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01002400 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002401 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002402 efi_va_end(argptr);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002403
2404 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002405}
2406
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002407/**
Mario Six8fac2912018-07-10 08:40:17 +02002408 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2409 * interfaces
2410 * @handle: handle from which the protocol interfaces shall be removed
2411 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2412 * interfaces
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002413 *
2414 * This function implements the UninstallMultipleProtocolInterfaces service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002415 *
Mario Six8fac2912018-07-10 08:40:17 +02002416 * See the Unified Extensible Firmware Interface (UEFI) specification for
2417 * details.
2418 *
2419 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002420 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002421static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002422 efi_handle_t handle, ...)
Alexander Grafc15d9212016-03-04 01:09:59 +01002423{
2424 EFI_ENTRY("%p", handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002425
Alexander Graf404a7c82018-06-18 17:23:05 +02002426 efi_va_list argptr;
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002427 const efi_guid_t *protocol;
2428 void *protocol_interface;
2429 efi_status_t r = EFI_SUCCESS;
2430 size_t i = 0;
2431
2432 if (!handle)
2433 return EFI_EXIT(EFI_INVALID_PARAMETER);
2434
Alexander Graf404a7c82018-06-18 17:23:05 +02002435 efi_va_start(argptr, handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002436 for (;;) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002437 protocol = efi_va_arg(argptr, efi_guid_t*);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002438 if (!protocol)
2439 break;
Alexander Graf404a7c82018-06-18 17:23:05 +02002440 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002441 r = efi_uninstall_protocol(handle, protocol,
2442 protocol_interface);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002443 if (r != EFI_SUCCESS)
2444 break;
2445 i++;
2446 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002447 efi_va_end(argptr);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002448 if (r == EFI_SUCCESS) {
2449 /* If the last protocol has been removed, delete the handle. */
2450 if (list_empty(&handle->protocols)) {
2451 list_del(&handle->link);
2452 free(handle);
2453 }
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002454 return EFI_EXIT(r);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002455 }
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002456
2457 /* If an error occurred undo all changes. */
Alexander Graf404a7c82018-06-18 17:23:05 +02002458 efi_va_start(argptr, handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002459 for (; i; --i) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002460 protocol = efi_va_arg(argptr, efi_guid_t*);
2461 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002462 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2463 EFI_NATIVE_INTERFACE,
2464 protocol_interface));
2465 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002466 efi_va_end(argptr);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002467
Heinrich Schuchardt1c76eda2018-09-24 19:57:27 +02002468 /* In case of an error always return EFI_INVALID_PARAMETER */
2469 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafc15d9212016-03-04 01:09:59 +01002470}
2471
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002472/**
Mario Six8fac2912018-07-10 08:40:17 +02002473 * efi_calculate_crc32() - calculate cyclic redundancy code
2474 * @data: buffer with data
2475 * @data_size: size of buffer in bytes
2476 * @crc32_p: cyclic redundancy code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002477 *
2478 * This function implements the CalculateCrc32 service.
Mario Six8fac2912018-07-10 08:40:17 +02002479 *
2480 * See the Unified Extensible Firmware Interface (UEFI) specification for
2481 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002482 *
Mario Six8fac2912018-07-10 08:40:17 +02002483 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002484 */
Heinrich Schuchardtf2725582018-07-07 15:36:04 +02002485static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2486 efi_uintn_t data_size,
2487 u32 *crc32_p)
Alexander Grafc15d9212016-03-04 01:09:59 +01002488{
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002489 efi_status_t ret = EFI_SUCCESS;
2490
Heinrich Schuchardtf2725582018-07-07 15:36:04 +02002491 EFI_ENTRY("%p, %zu", data, data_size);
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002492 if (!data || !data_size || !crc32_p) {
2493 ret = EFI_INVALID_PARAMETER;
2494 goto out;
2495 }
Alexander Grafc15d9212016-03-04 01:09:59 +01002496 *crc32_p = crc32(0, data, data_size);
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002497out:
2498 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002499}
2500
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002501/**
Mario Six8fac2912018-07-10 08:40:17 +02002502 * efi_copy_mem() - copy memory
2503 * @destination: destination of the copy operation
2504 * @source: source of the copy operation
2505 * @length: number of bytes to copy
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002506 *
2507 * This function implements the CopyMem service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002508 *
Mario Six8fac2912018-07-10 08:40:17 +02002509 * See the Unified Extensible Firmware Interface (UEFI) specification for
2510 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002511 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002512static void EFIAPI efi_copy_mem(void *destination, const void *source,
2513 size_t length)
Alexander Grafc15d9212016-03-04 01:09:59 +01002514{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002515 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Heinrich Schuchardtefba6ba2019-01-09 21:41:13 +01002516 memmove(destination, source, length);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002517 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002518}
2519
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002520/**
Mario Six8fac2912018-07-10 08:40:17 +02002521 * efi_set_mem() - Fill memory with a byte value.
2522 * @buffer: buffer to fill
2523 * @size: size of buffer in bytes
2524 * @value: byte to copy to the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002525 *
2526 * This function implements the SetMem service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002527 *
Mario Six8fac2912018-07-10 08:40:17 +02002528 * See the Unified Extensible Firmware Interface (UEFI) specification for
2529 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002530 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002531static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafc15d9212016-03-04 01:09:59 +01002532{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002533 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafc15d9212016-03-04 01:09:59 +01002534 memset(buffer, value, size);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002535 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002536}
2537
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002538/**
Mario Six8fac2912018-07-10 08:40:17 +02002539 * efi_protocol_open() - open protocol interface on a handle
2540 * @handler: handler of a protocol
2541 * @protocol_interface: interface implementing the protocol
2542 * @agent_handle: handle of the driver
2543 * @controller_handle: handle of the controller
2544 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002545 *
Mario Six8fac2912018-07-10 08:40:17 +02002546 * Return: status code
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002547 */
2548static efi_status_t efi_protocol_open(
2549 struct efi_handler *handler,
2550 void **protocol_interface, void *agent_handle,
2551 void *controller_handle, uint32_t attributes)
2552{
2553 struct efi_open_protocol_info_item *item;
2554 struct efi_open_protocol_info_entry *match = NULL;
2555 bool opened_by_driver = false;
2556 bool opened_exclusive = false;
2557
2558 /* If there is no agent, only return the interface */
2559 if (!agent_handle)
2560 goto out;
2561
2562 /* For TEST_PROTOCOL ignore interface attribute */
2563 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2564 *protocol_interface = NULL;
2565
2566 /*
2567 * Check if the protocol is already opened by a driver with the same
2568 * attributes or opened exclusively
2569 */
2570 list_for_each_entry(item, &handler->open_infos, link) {
2571 if (item->info.agent_handle == agent_handle) {
2572 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2573 (item->info.attributes == attributes))
2574 return EFI_ALREADY_STARTED;
2575 }
2576 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2577 opened_exclusive = true;
2578 }
2579
2580 /* Only one controller can open the protocol exclusively */
2581 if (opened_exclusive && attributes &
2582 (EFI_OPEN_PROTOCOL_EXCLUSIVE | EFI_OPEN_PROTOCOL_BY_DRIVER))
2583 return EFI_ACCESS_DENIED;
2584
2585 /* Prepare exclusive opening */
2586 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2587 /* Try to disconnect controllers */
2588 list_for_each_entry(item, &handler->open_infos, link) {
2589 if (item->info.attributes ==
2590 EFI_OPEN_PROTOCOL_BY_DRIVER)
2591 EFI_CALL(efi_disconnect_controller(
2592 item->info.controller_handle,
2593 item->info.agent_handle,
2594 NULL));
2595 }
2596 opened_by_driver = false;
2597 /* Check if all controllers are disconnected */
2598 list_for_each_entry(item, &handler->open_infos, link) {
2599 if (item->info.attributes & EFI_OPEN_PROTOCOL_BY_DRIVER)
2600 opened_by_driver = true;
2601 }
Heinrich Schuchardt8d0b45d2018-09-30 13:40:43 +02002602 /* Only one controller can be connected */
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002603 if (opened_by_driver)
2604 return EFI_ACCESS_DENIED;
2605 }
2606
2607 /* Find existing entry */
2608 list_for_each_entry(item, &handler->open_infos, link) {
2609 if (item->info.agent_handle == agent_handle &&
2610 item->info.controller_handle == controller_handle)
2611 match = &item->info;
2612 }
2613 /* None found, create one */
2614 if (!match) {
2615 match = efi_create_open_info(handler);
2616 if (!match)
2617 return EFI_OUT_OF_RESOURCES;
2618 }
2619
2620 match->agent_handle = agent_handle;
2621 match->controller_handle = controller_handle;
2622 match->attributes = attributes;
2623 match->open_count++;
2624
2625out:
2626 /* For TEST_PROTOCOL ignore interface attribute. */
2627 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2628 *protocol_interface = handler->protocol_interface;
2629
2630 return EFI_SUCCESS;
2631}
2632
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002633/**
Mario Six8fac2912018-07-10 08:40:17 +02002634 * efi_open_protocol() - open protocol interface on a handle
2635 * @handle: handle on which the protocol shall be opened
2636 * @protocol: GUID of the protocol
2637 * @protocol_interface: interface implementing the protocol
2638 * @agent_handle: handle of the driver
2639 * @controller_handle: handle of the controller
2640 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002641 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002642 * This function implements the OpenProtocol interface.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002643 *
Mario Six8fac2912018-07-10 08:40:17 +02002644 * See the Unified Extensible Firmware Interface (UEFI) specification for
2645 * details.
2646 *
2647 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002648 */
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002649static efi_status_t EFIAPI efi_open_protocol
2650 (efi_handle_t handle, const efi_guid_t *protocol,
2651 void **protocol_interface, efi_handle_t agent_handle,
2652 efi_handle_t controller_handle, uint32_t attributes)
Alexander Grafc15d9212016-03-04 01:09:59 +01002653{
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002654 struct efi_handler *handler;
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002655 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +01002656
Rob Clark238f88c2017-09-13 18:05:41 -04002657 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002658 protocol_interface, agent_handle, controller_handle,
2659 attributes);
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02002660
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002661 if (!handle || !protocol ||
2662 (!protocol_interface && attributes !=
2663 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02002664 goto out;
2665 }
2666
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002667 switch (attributes) {
2668 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2669 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2670 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2671 break;
2672 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2673 if (controller_handle == handle)
2674 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002675 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002676 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2677 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002678 /* Check that the controller handle is valid */
2679 if (!efi_search_obj(controller_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002680 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002681 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002682 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002683 /* Check that the agent handle is valid */
2684 if (!efi_search_obj(agent_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002685 goto out;
2686 break;
2687 default:
2688 goto out;
2689 }
2690
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002691 r = efi_search_protocol(handle, protocol, &handler);
Heinrich Schuchardtb673e4b2019-05-05 11:24:53 +02002692 switch (r) {
2693 case EFI_SUCCESS:
2694 break;
2695 case EFI_NOT_FOUND:
2696 r = EFI_UNSUPPORTED;
2697 goto out;
2698 default:
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002699 goto out;
Heinrich Schuchardtb673e4b2019-05-05 11:24:53 +02002700 }
Alexander Grafc15d9212016-03-04 01:09:59 +01002701
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002702 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2703 controller_handle, attributes);
Alexander Grafc15d9212016-03-04 01:09:59 +01002704out:
2705 return EFI_EXIT(r);
2706}
2707
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002708/**
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002709 * efi_start_image() - call the entry point of an image
2710 * @image_handle: handle of the image
2711 * @exit_data_size: size of the buffer
2712 * @exit_data: buffer to receive the exit data of the called image
2713 *
2714 * This function implements the StartImage service.
2715 *
2716 * See the Unified Extensible Firmware Interface (UEFI) specification for
2717 * details.
2718 *
2719 * Return: status code
2720 */
2721efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
2722 efi_uintn_t *exit_data_size,
2723 u16 **exit_data)
2724{
2725 struct efi_loaded_image_obj *image_obj =
2726 (struct efi_loaded_image_obj *)image_handle;
2727 efi_status_t ret;
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002728 void *info;
2729 efi_handle_t parent_image = current_image;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002730
2731 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
2732
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002733 /* Check parameters */
2734 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2735 &info, NULL, NULL,
2736 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2737 if (ret != EFI_SUCCESS)
2738 return EFI_EXIT(EFI_INVALID_PARAMETER);
2739
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002740 efi_is_direct_boot = false;
2741
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02002742 image_obj->exit_data_size = exit_data_size;
2743 image_obj->exit_data = exit_data;
2744
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002745 /* call the image! */
2746 if (setjmp(&image_obj->exit_jmp)) {
2747 /*
2748 * We called the entry point of the child image with EFI_CALL
2749 * in the lines below. The child image called the Exit() boot
2750 * service efi_exit() which executed the long jump that brought
2751 * us to the current line. This implies that the second half
2752 * of the EFI_CALL macro has not been executed.
2753 */
2754#ifdef CONFIG_ARM
2755 /*
2756 * efi_exit() called efi_restore_gd(). We have to undo this
2757 * otherwise __efi_entry_check() will put the wrong value into
2758 * app_gd.
2759 */
2760 gd = app_gd;
2761#endif
2762 /*
2763 * To get ready to call EFI_EXIT below we have to execute the
2764 * missed out steps of EFI_CALL.
2765 */
2766 assert(__efi_entry_check());
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02002767 EFI_PRINT("%lu returned by started image\n",
2768 (unsigned long)((uintptr_t)image_obj->exit_status &
2769 ~EFI_ERROR_MASK));
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002770 current_image = parent_image;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002771 return EFI_EXIT(image_obj->exit_status);
2772 }
2773
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002774 current_image = image_handle;
Heinrich Schuchardtb27ced42019-05-01 14:20:18 +02002775 image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +09002776 EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002777 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
2778
2779 /*
2780 * Usually UEFI applications call Exit() instead of returning.
2781 * But because the world doesn't consist of ponies and unicorns,
2782 * we're happy to emulate that behavior on behalf of a payload
2783 * that forgot.
2784 */
2785 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
2786}
2787
2788/**
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002789 * efi_delete_image() - delete loaded image from memory)
2790 *
2791 * @image_obj: handle of the loaded image
2792 * @loaded_image_protocol: loaded image protocol
2793 */
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02002794static efi_status_t efi_delete_image
2795 (struct efi_loaded_image_obj *image_obj,
2796 struct efi_loaded_image *loaded_image_protocol)
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002797{
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02002798 struct efi_object *efiobj;
2799 efi_status_t r, ret = EFI_SUCCESS;
2800
2801close_next:
2802 list_for_each_entry(efiobj, &efi_obj_list, link) {
2803 struct efi_handler *protocol;
2804
2805 list_for_each_entry(protocol, &efiobj->protocols, link) {
2806 struct efi_open_protocol_info_item *info;
2807
2808 list_for_each_entry(info, &protocol->open_infos, link) {
2809 if (info->info.agent_handle !=
2810 (efi_handle_t)image_obj)
2811 continue;
2812 r = EFI_CALL(efi_close_protocol
2813 (efiobj, protocol->guid,
2814 info->info.agent_handle,
2815 info->info.controller_handle
2816 ));
2817 if (r != EFI_SUCCESS)
2818 ret = r;
2819 /*
2820 * Closing protocols may results in further
2821 * items being deleted. To play it safe loop
2822 * over all elements again.
2823 */
2824 goto close_next;
2825 }
2826 }
2827 }
2828
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002829 efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
2830 efi_size_in_pages(loaded_image_protocol->image_size));
2831 efi_delete_handle(&image_obj->header);
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02002832
2833 return ret;
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002834}
2835
2836/**
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002837 * efi_unload_image() - unload an EFI image
2838 * @image_handle: handle of the image to be unloaded
2839 *
2840 * This function implements the UnloadImage service.
2841 *
2842 * See the Unified Extensible Firmware Interface (UEFI) specification for
2843 * details.
2844 *
2845 * Return: status code
2846 */
2847efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
2848{
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002849 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002850 struct efi_object *efiobj;
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002851 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002852
2853 EFI_ENTRY("%p", image_handle);
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002854
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002855 efiobj = efi_search_obj(image_handle);
2856 if (!efiobj) {
2857 ret = EFI_INVALID_PARAMETER;
2858 goto out;
2859 }
2860 /* Find the loaded image protocol */
2861 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2862 (void **)&loaded_image_protocol,
2863 NULL, NULL,
2864 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2865 if (ret != EFI_SUCCESS) {
2866 ret = EFI_INVALID_PARAMETER;
2867 goto out;
2868 }
2869 switch (efiobj->type) {
2870 case EFI_OBJECT_TYPE_STARTED_IMAGE:
2871 /* Call the unload function */
2872 if (!loaded_image_protocol->unload) {
2873 ret = EFI_UNSUPPORTED;
2874 goto out;
2875 }
2876 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
2877 if (ret != EFI_SUCCESS)
2878 goto out;
2879 break;
2880 case EFI_OBJECT_TYPE_LOADED_IMAGE:
2881 break;
2882 default:
2883 ret = EFI_INVALID_PARAMETER;
2884 goto out;
2885 }
2886 efi_delete_image((struct efi_loaded_image_obj *)efiobj,
2887 loaded_image_protocol);
2888out:
2889 return EFI_EXIT(ret);
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002890}
2891
2892/**
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02002893 * efi_update_exit_data() - fill exit data parameters of StartImage()
2894 *
2895 * @image_obj image handle
2896 * @exit_data_size size of the exit data buffer
2897 * @exit_data buffer with data returned by UEFI payload
2898 * Return: status code
2899 */
2900static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
2901 efi_uintn_t exit_data_size,
2902 u16 *exit_data)
2903{
2904 efi_status_t ret;
2905
2906 /*
2907 * If exit_data is not provided to StartImage(), exit_data_size must be
2908 * ignored.
2909 */
2910 if (!image_obj->exit_data)
2911 return EFI_SUCCESS;
2912 if (image_obj->exit_data_size)
2913 *image_obj->exit_data_size = exit_data_size;
2914 if (exit_data_size && exit_data) {
2915 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
2916 exit_data_size,
2917 (void **)image_obj->exit_data);
2918 if (ret != EFI_SUCCESS)
2919 return ret;
2920 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
2921 } else {
2922 image_obj->exit_data = NULL;
2923 }
2924 return EFI_SUCCESS;
2925}
2926
2927/**
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002928 * efi_exit() - leave an EFI application or driver
2929 * @image_handle: handle of the application or driver that is exiting
2930 * @exit_status: status code
2931 * @exit_data_size: size of the buffer in bytes
2932 * @exit_data: buffer with data describing an error
2933 *
2934 * This function implements the Exit service.
2935 *
2936 * See the Unified Extensible Firmware Interface (UEFI) specification for
2937 * details.
2938 *
2939 * Return: status code
2940 */
2941static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
2942 efi_status_t exit_status,
2943 efi_uintn_t exit_data_size,
2944 u16 *exit_data)
2945{
2946 /*
2947 * TODO: We should call the unload procedure of the loaded
2948 * image protocol.
2949 */
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002950 efi_status_t ret;
Heinrich Schuchardt37587522019-05-01 20:07:04 +02002951 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002952 struct efi_loaded_image_obj *image_obj =
2953 (struct efi_loaded_image_obj *)image_handle;
2954
2955 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
2956 exit_data_size, exit_data);
2957
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002958 /* Check parameters */
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002959 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
Heinrich Schuchardt37587522019-05-01 20:07:04 +02002960 (void **)&loaded_image_protocol,
2961 NULL, NULL,
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002962 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt37587522019-05-01 20:07:04 +02002963 if (ret != EFI_SUCCESS) {
2964 ret = EFI_INVALID_PARAMETER;
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002965 goto out;
Heinrich Schuchardt37587522019-05-01 20:07:04 +02002966 }
2967
2968 /* Unloading of unstarted images */
2969 switch (image_obj->header.type) {
2970 case EFI_OBJECT_TYPE_STARTED_IMAGE:
2971 break;
2972 case EFI_OBJECT_TYPE_LOADED_IMAGE:
2973 efi_delete_image(image_obj, loaded_image_protocol);
2974 ret = EFI_SUCCESS;
2975 goto out;
2976 default:
2977 /* Handle does not refer to loaded image */
2978 ret = EFI_INVALID_PARAMETER;
2979 goto out;
2980 }
2981 /* A started image can only be unloaded it is the last one started. */
2982 if (image_handle != current_image) {
2983 ret = EFI_INVALID_PARAMETER;
2984 goto out;
2985 }
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002986
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02002987 /* Exit data is only foreseen in case of failure. */
2988 if (exit_status != EFI_SUCCESS) {
2989 ret = efi_update_exit_data(image_obj, exit_data_size,
2990 exit_data);
2991 /* Exiting has priority. Don't return error to caller. */
2992 if (ret != EFI_SUCCESS)
2993 EFI_PRINT("%s: out of memory\n", __func__);
2994 }
Heinrich Schuchardt37587522019-05-01 20:07:04 +02002995 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
2996 exit_status != EFI_SUCCESS)
2997 efi_delete_image(image_obj, loaded_image_protocol);
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02002998
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002999 /* Make sure entry/exit counts for EFI world cross-overs match */
3000 EFI_EXIT(exit_status);
3001
3002 /*
3003 * But longjmp out with the U-Boot gd, not the application's, as
3004 * the other end is a setjmp call inside EFI context.
3005 */
3006 efi_restore_gd();
3007
3008 image_obj->exit_status = exit_status;
3009 longjmp(&image_obj->exit_jmp, 1);
3010
3011 panic("EFI application exited");
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003012out:
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003013 return EFI_EXIT(ret);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003014}
3015
3016/**
Mario Six8fac2912018-07-10 08:40:17 +02003017 * efi_handle_protocol() - get interface of a protocol on a handle
3018 * @handle: handle on which the protocol shall be opened
3019 * @protocol: GUID of the protocol
3020 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003021 *
3022 * This function implements the HandleProtocol service.
Mario Six8fac2912018-07-10 08:40:17 +02003023 *
3024 * See the Unified Extensible Firmware Interface (UEFI) specification for
3025 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003026 *
Mario Six8fac2912018-07-10 08:40:17 +02003027 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003028 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01003029static efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02003030 const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01003031 void **protocol_interface)
3032{
xypron.glpk@gmx.de1bf5d872017-06-29 21:16:19 +02003033 return efi_open_protocol(handle, protocol, protocol_interface, NULL,
3034 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafc15d9212016-03-04 01:09:59 +01003035}
3036
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003037/**
Mario Six8fac2912018-07-10 08:40:17 +02003038 * efi_bind_controller() - bind a single driver to a controller
3039 * @controller_handle: controller handle
3040 * @driver_image_handle: driver handle
3041 * @remain_device_path: remaining path
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003042 *
Mario Six8fac2912018-07-10 08:40:17 +02003043 * Return: status code
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003044 */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003045static efi_status_t efi_bind_controller(
3046 efi_handle_t controller_handle,
3047 efi_handle_t driver_image_handle,
3048 struct efi_device_path *remain_device_path)
3049{
3050 struct efi_driver_binding_protocol *binding_protocol;
3051 efi_status_t r;
3052
3053 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3054 &efi_guid_driver_binding_protocol,
3055 (void **)&binding_protocol,
3056 driver_image_handle, NULL,
3057 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3058 if (r != EFI_SUCCESS)
3059 return r;
3060 r = EFI_CALL(binding_protocol->supported(binding_protocol,
3061 controller_handle,
3062 remain_device_path));
3063 if (r == EFI_SUCCESS)
3064 r = EFI_CALL(binding_protocol->start(binding_protocol,
3065 controller_handle,
3066 remain_device_path));
3067 EFI_CALL(efi_close_protocol(driver_image_handle,
3068 &efi_guid_driver_binding_protocol,
3069 driver_image_handle, NULL));
3070 return r;
3071}
3072
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003073/**
Mario Six8fac2912018-07-10 08:40:17 +02003074 * efi_connect_single_controller() - connect a single driver to a controller
3075 * @controller_handle: controller
3076 * @driver_image_handle: driver
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003077 * @remain_device_path: remaining path
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003078 *
Mario Six8fac2912018-07-10 08:40:17 +02003079 * Return: status code
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003080 */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003081static efi_status_t efi_connect_single_controller(
3082 efi_handle_t controller_handle,
3083 efi_handle_t *driver_image_handle,
3084 struct efi_device_path *remain_device_path)
3085{
3086 efi_handle_t *buffer;
3087 size_t count;
3088 size_t i;
3089 efi_status_t r;
3090 size_t connected = 0;
3091
3092 /* Get buffer with all handles with driver binding protocol */
3093 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3094 &efi_guid_driver_binding_protocol,
3095 NULL, &count, &buffer));
3096 if (r != EFI_SUCCESS)
3097 return r;
3098
3099 /* Context Override */
3100 if (driver_image_handle) {
3101 for (; *driver_image_handle; ++driver_image_handle) {
3102 for (i = 0; i < count; ++i) {
3103 if (buffer[i] == *driver_image_handle) {
3104 buffer[i] = NULL;
3105 r = efi_bind_controller(
3106 controller_handle,
3107 *driver_image_handle,
3108 remain_device_path);
3109 /*
3110 * For drivers that do not support the
3111 * controller or are already connected
3112 * we receive an error code here.
3113 */
3114 if (r == EFI_SUCCESS)
3115 ++connected;
3116 }
3117 }
3118 }
3119 }
3120
3121 /*
3122 * TODO: Some overrides are not yet implemented:
3123 * - Platform Driver Override
3124 * - Driver Family Override Search
3125 * - Bus Specific Driver Override
3126 */
3127
3128 /* Driver Binding Search */
3129 for (i = 0; i < count; ++i) {
3130 if (buffer[i]) {
3131 r = efi_bind_controller(controller_handle,
3132 buffer[i],
3133 remain_device_path);
3134 if (r == EFI_SUCCESS)
3135 ++connected;
3136 }
3137 }
3138
3139 efi_free_pool(buffer);
3140 if (!connected)
3141 return EFI_NOT_FOUND;
3142 return EFI_SUCCESS;
3143}
3144
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003145/**
Mario Six8fac2912018-07-10 08:40:17 +02003146 * efi_connect_controller() - connect a controller to a driver
3147 * @controller_handle: handle of the controller
3148 * @driver_image_handle: handle of the driver
3149 * @remain_device_path: device path of a child controller
3150 * @recursive: true to connect all child controllers
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003151 *
3152 * This function implements the ConnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02003153 *
3154 * See the Unified Extensible Firmware Interface (UEFI) specification for
3155 * details.
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003156 *
3157 * First all driver binding protocol handles are tried for binding drivers.
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003158 * Afterwards all handles that have opened a protocol of the controller
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003159 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3160 *
Mario Six8fac2912018-07-10 08:40:17 +02003161 * Return: status code
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003162 */
3163static efi_status_t EFIAPI efi_connect_controller(
3164 efi_handle_t controller_handle,
3165 efi_handle_t *driver_image_handle,
3166 struct efi_device_path *remain_device_path,
3167 bool recursive)
3168{
3169 efi_status_t r;
3170 efi_status_t ret = EFI_NOT_FOUND;
3171 struct efi_object *efiobj;
3172
Heinrich Schuchardt7c89fb02018-12-09 16:39:20 +01003173 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003174 remain_device_path, recursive);
3175
3176 efiobj = efi_search_obj(controller_handle);
3177 if (!efiobj) {
3178 ret = EFI_INVALID_PARAMETER;
3179 goto out;
3180 }
3181
3182 r = efi_connect_single_controller(controller_handle,
3183 driver_image_handle,
3184 remain_device_path);
3185 if (r == EFI_SUCCESS)
3186 ret = EFI_SUCCESS;
3187 if (recursive) {
3188 struct efi_handler *handler;
3189 struct efi_open_protocol_info_item *item;
3190
3191 list_for_each_entry(handler, &efiobj->protocols, link) {
3192 list_for_each_entry(item, &handler->open_infos, link) {
3193 if (item->info.attributes &
3194 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3195 r = EFI_CALL(efi_connect_controller(
3196 item->info.controller_handle,
3197 driver_image_handle,
3198 remain_device_path,
3199 recursive));
3200 if (r == EFI_SUCCESS)
3201 ret = EFI_SUCCESS;
3202 }
3203 }
3204 }
3205 }
3206 /* Check for child controller specified by end node */
3207 if (ret != EFI_SUCCESS && remain_device_path &&
3208 remain_device_path->type == DEVICE_PATH_TYPE_END)
3209 ret = EFI_SUCCESS;
3210out:
3211 return EFI_EXIT(ret);
3212}
3213
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003214/**
Mario Six8fac2912018-07-10 08:40:17 +02003215 * efi_reinstall_protocol_interface() - reinstall protocol interface
3216 * @handle: handle on which the protocol shall be reinstalled
3217 * @protocol: GUID of the protocol to be installed
3218 * @old_interface: interface to be removed
3219 * @new_interface: interface to be installed
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003220 *
3221 * This function implements the ReinstallProtocolInterface service.
Mario Six8fac2912018-07-10 08:40:17 +02003222 *
3223 * See the Unified Extensible Firmware Interface (UEFI) specification for
3224 * details.
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003225 *
3226 * The old interface is uninstalled. The new interface is installed.
3227 * Drivers are connected.
3228 *
Mario Six8fac2912018-07-10 08:40:17 +02003229 * Return: status code
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003230 */
3231static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3232 efi_handle_t handle, const efi_guid_t *protocol,
3233 void *old_interface, void *new_interface)
3234{
3235 efi_status_t ret;
3236
3237 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
3238 new_interface);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02003239
3240 /* Uninstall protocol but do not delete handle */
3241 ret = efi_uninstall_protocol(handle, protocol, old_interface);
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003242 if (ret != EFI_SUCCESS)
3243 goto out;
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02003244
3245 /* Install the new protocol */
3246 ret = efi_add_protocol(handle, protocol, new_interface);
3247 /*
3248 * The UEFI spec does not specify what should happen to the handle
3249 * if in case of an error no protocol interface remains on the handle.
3250 * So let's do nothing here.
3251 */
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003252 if (ret != EFI_SUCCESS)
3253 goto out;
3254 /*
3255 * The returned status code has to be ignored.
3256 * Do not create an error if no suitable driver for the handle exists.
3257 */
3258 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3259out:
3260 return EFI_EXIT(ret);
3261}
3262
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003263/**
Mario Six8fac2912018-07-10 08:40:17 +02003264 * efi_get_child_controllers() - get all child controllers associated to a driver
3265 * @efiobj: handle of the controller
3266 * @driver_handle: handle of the driver
3267 * @number_of_children: number of child controllers
3268 * @child_handle_buffer: handles of the the child controllers
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003269 *
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003270 * The allocated buffer has to be freed with free().
3271 *
Mario Six8fac2912018-07-10 08:40:17 +02003272 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003273 */
3274static efi_status_t efi_get_child_controllers(
3275 struct efi_object *efiobj,
3276 efi_handle_t driver_handle,
3277 efi_uintn_t *number_of_children,
3278 efi_handle_t **child_handle_buffer)
3279{
3280 struct efi_handler *handler;
3281 struct efi_open_protocol_info_item *item;
3282 efi_uintn_t count = 0, i;
3283 bool duplicate;
3284
3285 /* Count all child controller associations */
3286 list_for_each_entry(handler, &efiobj->protocols, link) {
3287 list_for_each_entry(item, &handler->open_infos, link) {
3288 if (item->info.agent_handle == driver_handle &&
3289 item->info.attributes &
3290 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3291 ++count;
3292 }
3293 }
3294 /*
3295 * Create buffer. In case of duplicate child controller assignments
3296 * the buffer will be too large. But that does not harm.
3297 */
3298 *number_of_children = 0;
3299 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3300 if (!*child_handle_buffer)
3301 return EFI_OUT_OF_RESOURCES;
3302 /* Copy unique child handles */
3303 list_for_each_entry(handler, &efiobj->protocols, link) {
3304 list_for_each_entry(item, &handler->open_infos, link) {
3305 if (item->info.agent_handle == driver_handle &&
3306 item->info.attributes &
3307 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3308 /* Check this is a new child controller */
3309 duplicate = false;
3310 for (i = 0; i < *number_of_children; ++i) {
3311 if ((*child_handle_buffer)[i] ==
3312 item->info.controller_handle)
3313 duplicate = true;
3314 }
3315 /* Copy handle to buffer */
3316 if (!duplicate) {
3317 i = (*number_of_children)++;
3318 (*child_handle_buffer)[i] =
3319 item->info.controller_handle;
3320 }
3321 }
3322 }
3323 }
3324 return EFI_SUCCESS;
3325}
3326
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003327/**
Mario Six8fac2912018-07-10 08:40:17 +02003328 * efi_disconnect_controller() - disconnect a controller from a driver
3329 * @controller_handle: handle of the controller
3330 * @driver_image_handle: handle of the driver
3331 * @child_handle: handle of the child to destroy
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003332 *
3333 * This function implements the DisconnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02003334 *
3335 * See the Unified Extensible Firmware Interface (UEFI) specification for
3336 * details.
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003337 *
Mario Six8fac2912018-07-10 08:40:17 +02003338 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003339 */
3340static efi_status_t EFIAPI efi_disconnect_controller(
3341 efi_handle_t controller_handle,
3342 efi_handle_t driver_image_handle,
3343 efi_handle_t child_handle)
3344{
3345 struct efi_driver_binding_protocol *binding_protocol;
3346 efi_handle_t *child_handle_buffer = NULL;
3347 size_t number_of_children = 0;
3348 efi_status_t r;
3349 size_t stop_count = 0;
3350 struct efi_object *efiobj;
3351
3352 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3353 child_handle);
3354
3355 efiobj = efi_search_obj(controller_handle);
3356 if (!efiobj) {
3357 r = EFI_INVALID_PARAMETER;
3358 goto out;
3359 }
3360
3361 if (child_handle && !efi_search_obj(child_handle)) {
3362 r = EFI_INVALID_PARAMETER;
3363 goto out;
3364 }
3365
3366 /* If no driver handle is supplied, disconnect all drivers */
3367 if (!driver_image_handle) {
3368 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3369 goto out;
3370 }
3371
3372 /* Create list of child handles */
3373 if (child_handle) {
3374 number_of_children = 1;
3375 child_handle_buffer = &child_handle;
3376 } else {
3377 efi_get_child_controllers(efiobj,
3378 driver_image_handle,
3379 &number_of_children,
3380 &child_handle_buffer);
3381 }
3382
3383 /* Get the driver binding protocol */
3384 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3385 &efi_guid_driver_binding_protocol,
3386 (void **)&binding_protocol,
3387 driver_image_handle, NULL,
3388 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3389 if (r != EFI_SUCCESS)
3390 goto out;
3391 /* Remove the children */
3392 if (number_of_children) {
3393 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3394 controller_handle,
3395 number_of_children,
3396 child_handle_buffer));
3397 if (r == EFI_SUCCESS)
3398 ++stop_count;
3399 }
3400 /* Remove the driver */
3401 if (!child_handle)
3402 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3403 controller_handle,
3404 0, NULL));
3405 if (r == EFI_SUCCESS)
3406 ++stop_count;
3407 EFI_CALL(efi_close_protocol(driver_image_handle,
3408 &efi_guid_driver_binding_protocol,
3409 driver_image_handle, NULL));
3410
3411 if (stop_count)
3412 r = EFI_SUCCESS;
3413 else
3414 r = EFI_NOT_FOUND;
3415out:
3416 if (!child_handle)
3417 free(child_handle_buffer);
3418 return EFI_EXIT(r);
3419}
3420
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003421static struct efi_boot_services efi_boot_services = {
Alexander Grafc15d9212016-03-04 01:09:59 +01003422 .hdr = {
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +02003423 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3424 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +02003425 .headersize = sizeof(struct efi_boot_services),
Alexander Grafc15d9212016-03-04 01:09:59 +01003426 },
3427 .raise_tpl = efi_raise_tpl,
3428 .restore_tpl = efi_restore_tpl,
3429 .allocate_pages = efi_allocate_pages_ext,
3430 .free_pages = efi_free_pages_ext,
3431 .get_memory_map = efi_get_memory_map_ext,
Stefan Brüns5a09aef2016-10-09 22:17:18 +02003432 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns67b67d92016-10-09 22:17:26 +02003433 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +02003434 .create_event = efi_create_event_ext,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +02003435 .set_timer = efi_set_timer_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003436 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02003437 .signal_event = efi_signal_event_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003438 .close_event = efi_close_event,
3439 .check_event = efi_check_event,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01003440 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01003441 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01003442 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01003443 .handle_protocol = efi_handle_protocol,
3444 .reserved = NULL,
3445 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02003446 .locate_handle = efi_locate_handle_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003447 .locate_device_path = efi_locate_device_path,
Alexander Grafc5c11632016-08-19 01:23:24 +02003448 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003449 .load_image = efi_load_image,
3450 .start_image = efi_start_image,
Alexander Graf988c0662016-05-20 23:28:23 +02003451 .exit = efi_exit,
Alexander Grafc15d9212016-03-04 01:09:59 +01003452 .unload_image = efi_unload_image,
3453 .exit_boot_services = efi_exit_boot_services,
3454 .get_next_monotonic_count = efi_get_next_monotonic_count,
3455 .stall = efi_stall,
3456 .set_watchdog_timer = efi_set_watchdog_timer,
3457 .connect_controller = efi_connect_controller,
3458 .disconnect_controller = efi_disconnect_controller,
3459 .open_protocol = efi_open_protocol,
3460 .close_protocol = efi_close_protocol,
3461 .open_protocol_information = efi_open_protocol_information,
3462 .protocols_per_handle = efi_protocols_per_handle,
3463 .locate_handle_buffer = efi_locate_handle_buffer,
3464 .locate_protocol = efi_locate_protocol,
Heinrich Schuchardt91064592018-02-18 15:17:49 +01003465 .install_multiple_protocol_interfaces =
3466 efi_install_multiple_protocol_interfaces,
3467 .uninstall_multiple_protocol_interfaces =
3468 efi_uninstall_multiple_protocol_interfaces,
Alexander Grafc15d9212016-03-04 01:09:59 +01003469 .calculate_crc32 = efi_calculate_crc32,
3470 .copy_mem = efi_copy_mem,
3471 .set_mem = efi_set_mem,
Heinrich Schuchardt717c4582018-02-04 23:05:13 +01003472 .create_event_ex = efi_create_event_ex,
Alexander Grafc15d9212016-03-04 01:09:59 +01003473};
3474
Heinrich Schuchardt27685f72018-06-28 12:45:30 +02003475static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
Alexander Grafc15d9212016-03-04 01:09:59 +01003476
Alexander Graf393dd912016-10-14 13:45:30 +02003477struct efi_system_table __efi_runtime_data systab = {
Alexander Grafc15d9212016-03-04 01:09:59 +01003478 .hdr = {
3479 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +02003480 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +02003481 .headersize = sizeof(struct efi_system_table),
Alexander Grafc15d9212016-03-04 01:09:59 +01003482 },
Heinrich Schuchardt27685f72018-06-28 12:45:30 +02003483 .fw_vendor = firmware_vendor,
3484 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
Heinrich Schuchardt91064592018-02-18 15:17:49 +01003485 .con_in = (void *)&efi_con_in,
3486 .con_out = (void *)&efi_con_out,
3487 .std_err = (void *)&efi_con_out,
3488 .runtime = (void *)&efi_runtime_services,
3489 .boottime = (void *)&efi_boot_services,
Alexander Grafc15d9212016-03-04 01:09:59 +01003490 .nr_tables = 0,
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003491 .tables = NULL,
Alexander Grafc15d9212016-03-04 01:09:59 +01003492};
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003493
3494/**
3495 * efi_initialize_system_table() - Initialize system table
3496 *
Heinrich Schuchardt7b4b2a22018-09-03 05:00:43 +02003497 * Return: status code
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003498 */
3499efi_status_t efi_initialize_system_table(void)
3500{
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003501 efi_status_t ret;
3502
3503 /* Allocate configuration table array */
3504 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3505 EFI_MAX_CONFIGURATION_TABLES *
3506 sizeof(struct efi_configuration_table),
3507 (void **)&systab.tables);
3508
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003509 /* Set CRC32 field in table headers */
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003510 efi_update_table_header_crc32(&systab.hdr);
3511 efi_update_table_header_crc32(&efi_runtime_services.hdr);
3512 efi_update_table_header_crc32(&efi_boot_services.hdr);
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003513
3514 return ret;
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003515}