blob: 7d1d6e92138ed297251104b5d2f91cdd888875ab [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) {
Heinrich Schuchardtd375e752019-05-21 18:19:01 +0200924 struct efi_protocol_notification *hitem, *hnext;
925
926 /* Remove signaled handles */
927 list_for_each_entry_safe(hitem, hnext, &item->handles,
928 link) {
929 list_del(&hitem->link);
930 free(hitem);
931 }
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +0200932 list_del(&item->link);
933 free(item);
934 }
935 }
936
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100937 list_del(&event->link);
938 free(event);
939 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +0100940}
941
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200942/**
Mario Six8fac2912018-07-10 08:40:17 +0200943 * efi_check_event() - check if an event is signaled
944 * @event: event to check
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200945 *
946 * This function implements the CheckEvent service.
Mario Six8fac2912018-07-10 08:40:17 +0200947 *
948 * See the Unified Extensible Firmware Interface (UEFI) specification for
949 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200950 *
Mario Six8fac2912018-07-10 08:40:17 +0200951 * If an event is not signaled yet, the notification function is queued. The
952 * signaled state is cleared.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200953 *
Mario Six8fac2912018-07-10 08:40:17 +0200954 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +0200955 */
xypron.glpk@gmx.decdbf3ac2017-07-18 20:17:17 +0200956static efi_status_t EFIAPI efi_check_event(struct efi_event *event)
Alexander Grafc15d9212016-03-04 01:09:59 +0100957{
958 EFI_ENTRY("%p", event);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200959 efi_timer_check();
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100960 if (efi_is_event(event) != EFI_SUCCESS ||
961 event->type & EVT_NOTIFY_SIGNAL)
962 return EFI_EXIT(EFI_INVALID_PARAMETER);
963 if (!event->is_signaled)
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +0100964 efi_queue_event(event, true);
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100965 if (event->is_signaled) {
966 event->is_signaled = false;
967 return EFI_EXIT(EFI_SUCCESS);
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +0200968 }
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +0100969 return EFI_EXIT(EFI_NOT_READY);
Alexander Grafc15d9212016-03-04 01:09:59 +0100970}
971
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200972/**
Mario Six8fac2912018-07-10 08:40:17 +0200973 * efi_search_obj() - find the internal EFI object for a handle
974 * @handle: handle to find
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200975 *
Mario Six8fac2912018-07-10 08:40:17 +0200976 * Return: EFI object
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200977 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100978struct efi_object *efi_search_obj(const efi_handle_t handle)
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200979{
Heinrich Schuchardt274cc872017-11-06 21:17:50 +0100980 struct efi_object *efiobj;
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200981
Heinrich Schuchardt5d8231b2019-05-05 10:37:51 +0200982 if (!handle)
983 return NULL;
984
Heinrich Schuchardt274cc872017-11-06 21:17:50 +0100985 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +0200986 if (efiobj == handle)
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200987 return efiobj;
988 }
Heinrich Schuchardt37ebcba2017-10-18 18:13:03 +0200989 return NULL;
990}
991
Heinrich Schuchardt59999172018-05-11 18:15:41 +0200992/**
Mario Six8fac2912018-07-10 08:40:17 +0200993 * efi_open_protocol_info_entry() - create open protocol info entry and add it
994 * to a protocol
995 * @handler: handler of a protocol
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100996 *
Mario Six8fac2912018-07-10 08:40:17 +0200997 * Return: open protocol info entry
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +0100998 */
999static struct efi_open_protocol_info_entry *efi_create_open_info(
1000 struct efi_handler *handler)
1001{
1002 struct efi_open_protocol_info_item *item;
1003
1004 item = calloc(1, sizeof(struct efi_open_protocol_info_item));
1005 if (!item)
1006 return NULL;
1007 /* Append the item to the open protocol info list. */
1008 list_add_tail(&item->link, &handler->open_infos);
1009
1010 return &item->info;
1011}
1012
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001013/**
Mario Six8fac2912018-07-10 08:40:17 +02001014 * efi_delete_open_info() - remove an open protocol info entry from a protocol
1015 * @item: open protocol info entry to delete
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001016 *
Mario Six8fac2912018-07-10 08:40:17 +02001017 * Return: status code
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001018 */
1019static efi_status_t efi_delete_open_info(
1020 struct efi_open_protocol_info_item *item)
1021{
1022 list_del(&item->link);
1023 free(item);
1024 return EFI_SUCCESS;
1025}
1026
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001027/**
Mario Six8fac2912018-07-10 08:40:17 +02001028 * efi_add_protocol() - install new protocol on a handle
1029 * @handle: handle on which the protocol shall be installed
1030 * @protocol: GUID of the protocol to be installed
1031 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001032 *
Mario Six8fac2912018-07-10 08:40:17 +02001033 * Return: status code
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001034 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001035efi_status_t efi_add_protocol(const efi_handle_t handle,
1036 const efi_guid_t *protocol,
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001037 void *protocol_interface)
1038{
1039 struct efi_object *efiobj;
1040 struct efi_handler *handler;
1041 efi_status_t ret;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001042 struct efi_register_notify_event *event;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001043
1044 efiobj = efi_search_obj(handle);
1045 if (!efiobj)
1046 return EFI_INVALID_PARAMETER;
1047 ret = efi_search_protocol(handle, protocol, NULL);
1048 if (ret != EFI_NOT_FOUND)
1049 return EFI_INVALID_PARAMETER;
1050 handler = calloc(1, sizeof(struct efi_handler));
1051 if (!handler)
1052 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001053 handler->guid = protocol;
1054 handler->protocol_interface = protocol_interface;
Heinrich Schuchardta277d3a2018-01-11 08:15:57 +01001055 INIT_LIST_HEAD(&handler->open_infos);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001056 list_add_tail(&handler->link, &efiobj->protocols);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001057
1058 /* Notify registered events */
1059 list_for_each_entry(event, &efi_register_notify_events, link) {
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001060 if (!guidcmp(protocol, &event->protocol)) {
1061 struct efi_protocol_notification *notif;
1062
1063 notif = calloc(1, sizeof(*notif));
1064 if (!notif) {
1065 list_del(&handler->link);
1066 free(handler);
1067 return EFI_OUT_OF_RESOURCES;
1068 }
1069 notif->handle = handle;
1070 list_add_tail(&notif->link, &event->handles);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001071 efi_signal_event(event->event, true);
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001072 }
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001073 }
1074
Heinrich Schuchardt3d2abc32018-01-11 08:16:01 +01001075 if (!guidcmp(&efi_guid_device_path, protocol))
1076 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001077 return EFI_SUCCESS;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001078}
1079
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001080/**
Mario Six8fac2912018-07-10 08:40:17 +02001081 * efi_install_protocol_interface() - install protocol interface
1082 * @handle: handle on which the protocol shall be installed
1083 * @protocol: GUID of the protocol to be installed
1084 * @protocol_interface_type: type of the interface to be installed,
1085 * always EFI_NATIVE_INTERFACE
1086 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001087 *
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001088 * This function implements the InstallProtocolInterface service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001089 *
Mario Six8fac2912018-07-10 08:40:17 +02001090 * See the Unified Extensible Firmware Interface (UEFI) specification for
1091 * details.
1092 *
1093 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001094 */
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001095static efi_status_t EFIAPI efi_install_protocol_interface(
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02001096 efi_handle_t *handle, const efi_guid_t *protocol,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001097 int protocol_interface_type, void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01001098{
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001099 efi_status_t r;
1100
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001101 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
1102 protocol_interface);
1103
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001104 if (!handle || !protocol ||
1105 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1106 r = EFI_INVALID_PARAMETER;
1107 goto out;
1108 }
1109
1110 /* Create new handle if requested. */
1111 if (!*handle) {
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +02001112 r = efi_create_handle(handle);
1113 if (r != EFI_SUCCESS)
1114 goto out;
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02001115 EFI_PRINT("new handle %p\n", *handle);
Heinrich Schuchardt50f02102017-10-26 19:25:43 +02001116 } else {
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02001117 EFI_PRINT("handle %p\n", *handle);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001118 }
Heinrich Schuchardt865d5f32017-10-26 19:25:54 +02001119 /* Add new protocol */
1120 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001121out:
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001122 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01001123}
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001124
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001125/**
Mario Six8fac2912018-07-10 08:40:17 +02001126 * efi_get_drivers() - get all drivers associated to a controller
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001127 * @handle: handle of the controller
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001128 * @protocol: protocol GUID (optional)
Mario Six8fac2912018-07-10 08:40:17 +02001129 * @number_of_drivers: number of child controllers
1130 * @driver_handle_buffer: handles of the the drivers
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001131 *
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001132 * The allocated buffer has to be freed with free().
1133 *
Mario Six8fac2912018-07-10 08:40:17 +02001134 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001135 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001136static efi_status_t efi_get_drivers(efi_handle_t handle,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001137 const efi_guid_t *protocol,
1138 efi_uintn_t *number_of_drivers,
1139 efi_handle_t **driver_handle_buffer)
1140{
1141 struct efi_handler *handler;
1142 struct efi_open_protocol_info_item *item;
1143 efi_uintn_t count = 0, i;
1144 bool duplicate;
1145
1146 /* Count all driver associations */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001147 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001148 if (protocol && guidcmp(handler->guid, protocol))
1149 continue;
1150 list_for_each_entry(item, &handler->open_infos, link) {
1151 if (item->info.attributes &
1152 EFI_OPEN_PROTOCOL_BY_DRIVER)
1153 ++count;
1154 }
1155 }
Heinrich Schuchardt7416aef2019-06-02 01:43:33 +02001156 *number_of_drivers = 0;
1157 if (!count) {
1158 *driver_handle_buffer = NULL;
1159 return EFI_SUCCESS;
1160 }
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001161 /*
1162 * Create buffer. In case of duplicate driver assignments the buffer
1163 * will be too large. But that does not harm.
1164 */
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001165 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1166 if (!*driver_handle_buffer)
1167 return EFI_OUT_OF_RESOURCES;
1168 /* Collect unique driver handles */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001169 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001170 if (protocol && guidcmp(handler->guid, protocol))
1171 continue;
1172 list_for_each_entry(item, &handler->open_infos, link) {
1173 if (item->info.attributes &
1174 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1175 /* Check this is a new driver */
1176 duplicate = false;
1177 for (i = 0; i < *number_of_drivers; ++i) {
1178 if ((*driver_handle_buffer)[i] ==
1179 item->info.agent_handle)
1180 duplicate = true;
1181 }
1182 /* Copy handle to buffer */
1183 if (!duplicate) {
1184 i = (*number_of_drivers)++;
1185 (*driver_handle_buffer)[i] =
1186 item->info.agent_handle;
1187 }
1188 }
1189 }
1190 }
1191 return EFI_SUCCESS;
1192}
1193
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001194/**
Mario Six8fac2912018-07-10 08:40:17 +02001195 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001196 * @handle: handle of the controller
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001197 * @protocol: protocol GUID (optional)
Mario Six8fac2912018-07-10 08:40:17 +02001198 * @child_handle: handle of the child to destroy
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001199 *
1200 * This function implements the DisconnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02001201 *
1202 * See the Unified Extensible Firmware Interface (UEFI) specification for
1203 * details.
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001204 *
Mario Six8fac2912018-07-10 08:40:17 +02001205 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001206 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001207static efi_status_t efi_disconnect_all_drivers
1208 (efi_handle_t handle,
1209 const efi_guid_t *protocol,
1210 efi_handle_t child_handle)
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001211{
1212 efi_uintn_t number_of_drivers;
1213 efi_handle_t *driver_handle_buffer;
1214 efi_status_t r, ret;
1215
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001216 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001217 &driver_handle_buffer);
1218 if (ret != EFI_SUCCESS)
1219 return ret;
Heinrich Schuchardt7416aef2019-06-02 01:43:33 +02001220 if (!number_of_drivers)
1221 return EFI_SUCCESS;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001222 ret = EFI_NOT_FOUND;
1223 while (number_of_drivers) {
1224 r = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001225 handle,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001226 driver_handle_buffer[--number_of_drivers],
1227 child_handle));
1228 if (r == EFI_SUCCESS)
1229 ret = r;
1230 }
1231 free(driver_handle_buffer);
1232 return ret;
1233}
1234
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001235/**
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001236 * efi_uninstall_protocol() - uninstall protocol interface
1237 *
Mario Six8fac2912018-07-10 08:40:17 +02001238 * @handle: handle from which the protocol shall be removed
1239 * @protocol: GUID of the protocol to be removed
1240 * @protocol_interface: interface to be removed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001241 *
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001242 * This function DOES NOT delete a handle without installed protocol.
Mario Six8fac2912018-07-10 08:40:17 +02001243 *
1244 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001245 */
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001246static efi_status_t efi_uninstall_protocol
1247 (efi_handle_t handle, const efi_guid_t *protocol,
1248 void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01001249{
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001250 struct efi_object *efiobj;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001251 struct efi_handler *handler;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001252 struct efi_open_protocol_info_item *item;
1253 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001254 efi_status_t r;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001255
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001256 /* Check handle */
1257 efiobj = efi_search_obj(handle);
1258 if (!efiobj) {
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001259 r = EFI_INVALID_PARAMETER;
1260 goto out;
1261 }
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001262 /* Find the protocol on the handle */
1263 r = efi_search_protocol(handle, protocol, &handler);
1264 if (r != EFI_SUCCESS)
1265 goto out;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001266 /* Disconnect controllers */
1267 efi_disconnect_all_drivers(efiobj, protocol, NULL);
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001268 /* Close protocol */
1269 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1270 if (item->info.attributes ==
1271 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1272 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1273 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1274 list_del(&item->link);
1275 }
1276 if (!list_empty(&handler->open_infos)) {
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001277 r = EFI_ACCESS_DENIED;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001278 goto out;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001279 }
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001280 r = efi_remove_protocol(handle, protocol, protocol_interface);
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001281out:
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001282 return r;
Alexander Grafc15d9212016-03-04 01:09:59 +01001283}
1284
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001285/**
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001286 * efi_uninstall_protocol_interface() - uninstall protocol interface
1287 * @handle: handle from which the protocol shall be removed
1288 * @protocol: GUID of the protocol to be removed
1289 * @protocol_interface: interface to be removed
1290 *
1291 * This function implements the UninstallProtocolInterface service.
1292 *
1293 * See the Unified Extensible Firmware Interface (UEFI) specification for
1294 * details.
1295 *
1296 * Return: status code
1297 */
1298static efi_status_t EFIAPI efi_uninstall_protocol_interface
1299 (efi_handle_t handle, const efi_guid_t *protocol,
1300 void *protocol_interface)
1301{
1302 efi_status_t ret;
1303
1304 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1305
1306 ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1307 if (ret != EFI_SUCCESS)
1308 goto out;
1309
1310 /* If the last protocol has been removed, delete the handle. */
1311 if (list_empty(&handle->protocols)) {
1312 list_del(&handle->link);
1313 free(handle);
1314 }
1315out:
1316 return EFI_EXIT(ret);
1317}
1318
1319/**
Mario Six8fac2912018-07-10 08:40:17 +02001320 * efi_register_protocol_notify() - register an event for notification when a
1321 * protocol is installed.
1322 * @protocol: GUID of the protocol whose installation shall be notified
1323 * @event: event to be signaled upon installation of the protocol
1324 * @registration: key for retrieving the registration information
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001325 *
1326 * This function implements the RegisterProtocolNotify service.
1327 * See the Unified Extensible Firmware Interface (UEFI) specification
1328 * for details.
1329 *
Mario Six8fac2912018-07-10 08:40:17 +02001330 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001331 */
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001332static efi_status_t EFIAPI efi_register_protocol_notify(
1333 const efi_guid_t *protocol,
1334 struct efi_event *event,
1335 void **registration)
Alexander Grafc15d9212016-03-04 01:09:59 +01001336{
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001337 struct efi_register_notify_event *item;
1338 efi_status_t ret = EFI_SUCCESS;
1339
Rob Clark238f88c2017-09-13 18:05:41 -04001340 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001341
1342 if (!protocol || !event || !registration) {
1343 ret = EFI_INVALID_PARAMETER;
1344 goto out;
1345 }
1346
1347 item = calloc(1, sizeof(struct efi_register_notify_event));
1348 if (!item) {
1349 ret = EFI_OUT_OF_RESOURCES;
1350 goto out;
1351 }
1352
1353 item->event = event;
1354 memcpy(&item->protocol, protocol, sizeof(efi_guid_t));
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001355 INIT_LIST_HEAD(&item->handles);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001356
1357 list_add_tail(&item->link, &efi_register_notify_events);
1358
1359 *registration = item;
1360out:
1361 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001362}
1363
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001364/**
Mario Six8fac2912018-07-10 08:40:17 +02001365 * efi_search() - determine if an EFI handle implements a protocol
1366 * @search_type: selection criterion
1367 * @protocol: GUID of the protocol
1368 * @search_key: registration key
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001369 * @handle: handle
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001370 *
1371 * See the documentation of the LocateHandle service in the UEFI specification.
1372 *
Mario Six8fac2912018-07-10 08:40:17 +02001373 * Return: 0 if the handle implements the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001374 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001375static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001376 const efi_guid_t *protocol, efi_handle_t handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01001377{
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001378 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01001379
1380 switch (search_type) {
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001381 case ALL_HANDLES:
Alexander Grafc15d9212016-03-04 01:09:59 +01001382 return 0;
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001383 case BY_PROTOCOL:
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001384 ret = efi_search_protocol(handle, protocol, NULL);
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001385 return (ret != EFI_SUCCESS);
1386 default:
1387 /* Invalid search type */
Alexander Grafc15d9212016-03-04 01:09:59 +01001388 return -1;
1389 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001390}
1391
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001392/**
Heinrich Schuchardteb616522019-05-29 07:46:33 +02001393 * efi_check_register_notify_event() - check if registration key is valid
1394 *
1395 * Check that a pointer is a valid registration key as returned by
1396 * RegisterProtocolNotify().
1397 *
1398 * @key: registration key
1399 * Return: valid registration key or NULL
1400 */
1401static struct efi_register_notify_event *efi_check_register_notify_event
1402 (void *key)
1403{
1404 struct efi_register_notify_event *event;
1405
1406 list_for_each_entry(event, &efi_register_notify_events, link) {
1407 if (event == (struct efi_register_notify_event *)key)
1408 return event;
1409 }
1410 return NULL;
1411}
1412
1413/**
Mario Six8fac2912018-07-10 08:40:17 +02001414 * efi_locate_handle() - locate handles implementing a protocol
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001415 *
1416 * @search_type: selection criterion
1417 * @protocol: GUID of the protocol
1418 * @search_key: registration key
1419 * @buffer_size: size of the buffer to receive the handles in bytes
1420 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001421 *
1422 * This function is meant for U-Boot internal calls. For the API implementation
1423 * of the LocateHandle service see efi_locate_handle_ext.
1424 *
Mario Six8fac2912018-07-10 08:40:17 +02001425 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001426 */
xypron.glpk@gmx.decab4dd52017-08-09 20:55:00 +02001427static efi_status_t efi_locate_handle(
Alexander Grafc15d9212016-03-04 01:09:59 +01001428 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001429 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001430 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01001431{
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001432 struct efi_object *efiobj;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001433 efi_uintn_t size = 0;
Heinrich Schuchardteb616522019-05-29 07:46:33 +02001434 struct efi_register_notify_event *event;
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001435 struct efi_protocol_notification *handle = NULL;
Alexander Grafc15d9212016-03-04 01:09:59 +01001436
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001437 /* Check parameters */
1438 switch (search_type) {
1439 case ALL_HANDLES:
1440 break;
1441 case BY_REGISTER_NOTIFY:
1442 if (!search_key)
1443 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001444 /* Check that the registration key is valid */
Heinrich Schuchardteb616522019-05-29 07:46:33 +02001445 event = efi_check_register_notify_event(search_key);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001446 if (!event)
1447 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001448 break;
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001449 case BY_PROTOCOL:
1450 if (!protocol)
1451 return EFI_INVALID_PARAMETER;
1452 break;
1453 default:
1454 return EFI_INVALID_PARAMETER;
1455 }
1456
Alexander Grafc15d9212016-03-04 01:09:59 +01001457 /* Count how much space we need */
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001458 if (search_type == BY_REGISTER_NOTIFY) {
1459 if (list_empty(&event->handles))
1460 return EFI_NOT_FOUND;
1461 handle = list_first_entry(&event->handles,
1462 struct efi_protocol_notification,
1463 link);
1464 efiobj = handle->handle;
1465 size += sizeof(void *);
1466 } else {
1467 list_for_each_entry(efiobj, &efi_obj_list, link) {
1468 if (!efi_search(search_type, protocol, efiobj))
1469 size += sizeof(void *);
1470 }
1471 if (size == 0)
1472 return EFI_NOT_FOUND;
Alexander Grafc15d9212016-03-04 01:09:59 +01001473 }
1474
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001475 if (!buffer_size)
1476 return EFI_INVALID_PARAMETER;
1477
Alexander Grafc15d9212016-03-04 01:09:59 +01001478 if (*buffer_size < size) {
1479 *buffer_size = size;
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001480 return EFI_BUFFER_TOO_SMALL;
Alexander Grafc15d9212016-03-04 01:09:59 +01001481 }
1482
Rob Clarkcdee3372017-08-06 14:10:07 -04001483 *buffer_size = size;
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001484
Heinrich Schuchardtc97f9472019-05-10 19:03:49 +02001485 /* The buffer size is sufficient but there is no buffer */
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001486 if (!buffer)
1487 return EFI_INVALID_PARAMETER;
Rob Clarkcdee3372017-08-06 14:10:07 -04001488
Alexander Grafc15d9212016-03-04 01:09:59 +01001489 /* Then fill the array */
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001490 if (search_type == BY_REGISTER_NOTIFY) {
1491 *buffer = efiobj;
1492 list_del(&handle->link);
1493 } else {
1494 list_for_each_entry(efiobj, &efi_obj_list, link) {
1495 if (!efi_search(search_type, protocol, efiobj))
1496 *buffer++ = efiobj;
1497 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001498 }
1499
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001500 return EFI_SUCCESS;
1501}
1502
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001503/**
Mario Six8fac2912018-07-10 08:40:17 +02001504 * efi_locate_handle_ext() - locate handles implementing a protocol.
1505 * @search_type: selection criterion
1506 * @protocol: GUID of the protocol
1507 * @search_key: registration key
1508 * @buffer_size: size of the buffer to receive the handles in bytes
1509 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001510 *
1511 * This function implements the LocateHandle service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001512 *
Mario Six8fac2912018-07-10 08:40:17 +02001513 * See the Unified Extensible Firmware Interface (UEFI) specification for
1514 * details.
1515 *
1516 * Return: 0 if the handle implements the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001517 */
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001518static efi_status_t EFIAPI efi_locate_handle_ext(
1519 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001520 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001521 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001522{
Rob Clark238f88c2017-09-13 18:05:41 -04001523 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001524 buffer_size, buffer);
1525
1526 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1527 buffer_size, buffer));
Alexander Grafc15d9212016-03-04 01:09:59 +01001528}
1529
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001530/**
Mario Six8fac2912018-07-10 08:40:17 +02001531 * efi_remove_configuration_table() - collapses configuration table entries,
1532 * removing index i
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001533 *
Mario Six8fac2912018-07-10 08:40:17 +02001534 * @i: index of the table entry to be removed
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001535 */
Alexander Graffe3366f2017-07-26 13:41:04 +02001536static void efi_remove_configuration_table(int i)
1537{
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001538 struct efi_configuration_table *this = &systab.tables[i];
1539 struct efi_configuration_table *next = &systab.tables[i + 1];
1540 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
Alexander Graffe3366f2017-07-26 13:41:04 +02001541
1542 memmove(this, next, (ulong)end - (ulong)next);
1543 systab.nr_tables--;
1544}
1545
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001546/**
Mario Six8fac2912018-07-10 08:40:17 +02001547 * efi_install_configuration_table() - adds, updates, or removes a
1548 * configuration table
1549 * @guid: GUID of the installed table
1550 * @table: table to be installed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001551 *
1552 * This function is used for internal calls. For the API implementation of the
1553 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1554 *
Mario Six8fac2912018-07-10 08:40:17 +02001555 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001556 */
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001557efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1558 void *table)
Alexander Grafc15d9212016-03-04 01:09:59 +01001559{
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001560 struct efi_event *evt;
Alexander Grafc15d9212016-03-04 01:09:59 +01001561 int i;
1562
Heinrich Schuchardt754ce102018-02-18 00:08:00 +01001563 if (!guid)
1564 return EFI_INVALID_PARAMETER;
1565
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001566 /* Check for GUID override */
Alexander Grafc15d9212016-03-04 01:09:59 +01001567 for (i = 0; i < systab.nr_tables; i++) {
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001568 if (!guidcmp(guid, &systab.tables[i].guid)) {
Alexander Graffe3366f2017-07-26 13:41:04 +02001569 if (table)
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001570 systab.tables[i].table = table;
Alexander Graffe3366f2017-07-26 13:41:04 +02001571 else
1572 efi_remove_configuration_table(i);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001573 goto out;
Alexander Grafc15d9212016-03-04 01:09:59 +01001574 }
1575 }
1576
Alexander Graffe3366f2017-07-26 13:41:04 +02001577 if (!table)
1578 return EFI_NOT_FOUND;
1579
Alexander Grafc15d9212016-03-04 01:09:59 +01001580 /* No override, check for overflow */
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001581 if (i >= EFI_MAX_CONFIGURATION_TABLES)
Alexander Grafc5c11632016-08-19 01:23:24 +02001582 return EFI_OUT_OF_RESOURCES;
Alexander Grafc15d9212016-03-04 01:09:59 +01001583
1584 /* Add a new entry */
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001585 memcpy(&systab.tables[i].guid, guid, sizeof(*guid));
1586 systab.tables[i].table = table;
Alexander Graf9982e672016-08-19 01:23:30 +02001587 systab.nr_tables = i + 1;
Alexander Grafc15d9212016-03-04 01:09:59 +01001588
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001589out:
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001590 /* systab.nr_tables may have changed. So we need to update the CRC32 */
Heinrich Schuchardtac2d4da2018-07-07 15:36:05 +02001591 efi_update_table_header_crc32(&systab.hdr);
1592
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001593 /* Notify that the configuration table was changed */
1594 list_for_each_entry(evt, &efi_events, link) {
1595 if (evt->group && !guidcmp(evt->group, guid)) {
1596 efi_signal_event(evt, false);
1597 break;
1598 }
1599 }
1600
Alexander Grafc5c11632016-08-19 01:23:24 +02001601 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +01001602}
1603
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001604/**
Mario Six8fac2912018-07-10 08:40:17 +02001605 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1606 * configuration table.
1607 * @guid: GUID of the installed table
1608 * @table: table to be installed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001609 *
1610 * This function implements the InstallConfigurationTable service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001611 *
Mario Six8fac2912018-07-10 08:40:17 +02001612 * See the Unified Extensible Firmware Interface (UEFI) specification for
1613 * details.
1614 *
1615 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001616 */
Alexander Grafc5c11632016-08-19 01:23:24 +02001617static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1618 void *table)
1619{
Rob Clark238f88c2017-09-13 18:05:41 -04001620 EFI_ENTRY("%pUl, %p", guid, table);
Alexander Grafc5c11632016-08-19 01:23:24 +02001621 return EFI_EXIT(efi_install_configuration_table(guid, table));
1622}
1623
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001624/**
Mario Six8fac2912018-07-10 08:40:17 +02001625 * efi_setup_loaded_image() - initialize a loaded image
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001626 *
1627 * Initialize a loaded_image_info and loaded_image_info object with correct
Rob Clarkf8db9222017-09-13 18:05:33 -04001628 * protocols, boot-device, etc.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001629 *
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001630 * In case of an error *handle_ptr and *info_ptr are set to NULL and an error
1631 * code is returned.
1632 *
1633 * @device_path: device path of the loaded image
1634 * @file_path: file path of the loaded image
1635 * @handle_ptr: handle of the loaded image
1636 * @info_ptr: loaded image protocol
1637 * Return: status code
Rob Clarkf8db9222017-09-13 18:05:33 -04001638 */
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001639efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1640 struct efi_device_path *file_path,
1641 struct efi_loaded_image_obj **handle_ptr,
1642 struct efi_loaded_image **info_ptr)
Rob Clarkf8db9222017-09-13 18:05:33 -04001643{
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001644 efi_status_t ret;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001645 struct efi_loaded_image *info = NULL;
1646 struct efi_loaded_image_obj *obj = NULL;
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001647 struct efi_device_path *dp;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001648
1649 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1650 *handle_ptr = NULL;
1651 *info_ptr = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001652
1653 info = calloc(1, sizeof(*info));
1654 if (!info)
1655 return EFI_OUT_OF_RESOURCES;
1656 obj = calloc(1, sizeof(*obj));
1657 if (!obj) {
1658 free(info);
1659 return EFI_OUT_OF_RESOURCES;
1660 }
Heinrich Schuchardtb27ced42019-05-01 14:20:18 +02001661 obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001662
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +01001663 /* Add internal object to object list */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001664 efi_add_handle(&obj->header);
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001665
Heinrich Schuchardtc47f8702018-07-05 08:17:58 +02001666 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001667 info->file_path = file_path;
Heinrich Schuchardt8a7e09d2018-08-26 15:31:52 +02001668 info->system_table = &systab;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001669
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001670 if (device_path) {
1671 info->device_handle = efi_dp_find_obj(device_path, NULL);
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001672
1673 dp = efi_dp_append(device_path, file_path);
1674 if (!dp) {
1675 ret = EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001676 goto failure;
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001677 }
1678 } else {
1679 dp = NULL;
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001680 }
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001681 ret = efi_add_protocol(&obj->header,
1682 &efi_guid_loaded_image_device_path, dp);
1683 if (ret != EFI_SUCCESS)
1684 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001685
1686 /*
1687 * When asking for the loaded_image interface, just
1688 * return handle which points to loaded_image_info
1689 */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001690 ret = efi_add_protocol(&obj->header,
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001691 &efi_guid_loaded_image, info);
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001692 if (ret != EFI_SUCCESS)
1693 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001694
Heinrich Schuchardtd20f5122019-03-19 18:58:58 +01001695 *info_ptr = info;
1696 *handle_ptr = obj;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001697
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001698 return ret;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001699failure:
1700 printf("ERROR: Failure to install protocols for loaded image\n");
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001701 efi_delete_handle(&obj->header);
1702 free(info);
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001703 return ret;
Rob Clarkf8db9222017-09-13 18:05:33 -04001704}
1705
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001706/**
Mario Six8fac2912018-07-10 08:40:17 +02001707 * efi_load_image_from_path() - load an image using a file path
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001708 *
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001709 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1710 * callers obligation to update the memory type as needed.
1711 *
1712 * @file_path: the path of the image to load
1713 * @buffer: buffer containing the loaded image
1714 * @size: size of the loaded image
1715 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001716 */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +09001717static
Rob Clarkc84c1102017-09-13 18:05:38 -04001718efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001719 void **buffer, efi_uintn_t *size)
Rob Clark857a1222017-09-13 18:05:35 -04001720{
1721 struct efi_file_info *info = NULL;
1722 struct efi_file_handle *f;
1723 static efi_status_t ret;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001724 u64 addr;
Heinrich Schuchardt6b06e0d2018-04-03 22:37:11 +02001725 efi_uintn_t bs;
Rob Clark857a1222017-09-13 18:05:35 -04001726
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001727 /* In case of failure nothing is returned */
1728 *buffer = NULL;
1729 *size = 0;
1730
1731 /* Open file */
Rob Clark857a1222017-09-13 18:05:35 -04001732 f = efi_file_from_path(file_path);
1733 if (!f)
1734 return EFI_DEVICE_ERROR;
1735
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001736 /* Get file size */
Rob Clark857a1222017-09-13 18:05:35 -04001737 bs = 0;
1738 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1739 &bs, info));
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001740 if (ret != EFI_BUFFER_TOO_SMALL) {
1741 ret = EFI_DEVICE_ERROR;
Rob Clark857a1222017-09-13 18:05:35 -04001742 goto error;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001743 }
Rob Clark857a1222017-09-13 18:05:35 -04001744
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001745 info = malloc(bs);
1746 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs,
1747 info));
1748 if (ret != EFI_SUCCESS)
Rob Clark857a1222017-09-13 18:05:35 -04001749 goto error;
1750
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001751 /*
1752 * When reading the file we do not yet know if it contains an
1753 * application, a boottime driver, or a runtime driver. So here we
1754 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1755 * update the reservation according to the image type.
1756 */
Heinrich Schuchardt6b06e0d2018-04-03 22:37:11 +02001757 bs = info->file_size;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001758 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1759 EFI_BOOT_SERVICES_DATA,
1760 efi_size_in_pages(bs), &addr);
Rob Clark857a1222017-09-13 18:05:35 -04001761 if (ret != EFI_SUCCESS) {
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001762 ret = EFI_OUT_OF_RESOURCES;
1763 goto error;
Rob Clark857a1222017-09-13 18:05:35 -04001764 }
1765
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001766 /* Read file */
1767 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1768 if (ret != EFI_SUCCESS)
1769 efi_free_pages(addr, efi_size_in_pages(bs));
1770 *buffer = (void *)(uintptr_t)addr;
1771 *size = bs;
1772error:
1773 EFI_CALL(f->close(f));
1774 free(info);
Rob Clark857a1222017-09-13 18:05:35 -04001775 return ret;
1776}
1777
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001778/**
Mario Six8fac2912018-07-10 08:40:17 +02001779 * efi_load_image() - load an EFI image into memory
1780 * @boot_policy: true for request originating from the boot manager
1781 * @parent_image: the caller's image handle
1782 * @file_path: the path of the image to load
1783 * @source_buffer: memory location from which the image is installed
1784 * @source_size: size of the memory area from which the image is installed
1785 * @image_handle: handle for the newly installed image
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001786 *
1787 * This function implements the LoadImage service.
Mario Six8fac2912018-07-10 08:40:17 +02001788 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001789 * See the Unified Extensible Firmware Interface (UEFI) specification
1790 * for details.
1791 *
Mario Six8fac2912018-07-10 08:40:17 +02001792 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001793 */
AKASHI Takahirob0ad9052019-03-05 14:53:31 +09001794efi_status_t EFIAPI efi_load_image(bool boot_policy,
1795 efi_handle_t parent_image,
1796 struct efi_device_path *file_path,
1797 void *source_buffer,
1798 efi_uintn_t source_size,
1799 efi_handle_t *image_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01001800{
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001801 struct efi_device_path *dp, *fp;
Tom Rini04c49062018-09-30 10:38:15 -04001802 struct efi_loaded_image *info = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001803 struct efi_loaded_image_obj **image_obj =
1804 (struct efi_loaded_image_obj **)image_handle;
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001805 efi_status_t ret;
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01001806 void *dest_buffer;
Alexander Grafc15d9212016-03-04 01:09:59 +01001807
Heinrich Schuchardt4cde1fa2018-04-03 22:29:30 +02001808 EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
Alexander Grafc15d9212016-03-04 01:09:59 +01001809 file_path, source_buffer, source_size, image_handle);
Rob Clark857a1222017-09-13 18:05:35 -04001810
Heinrich Schuchardt2e0a7902019-05-05 16:55:06 +02001811 if (!image_handle || !efi_search_obj(parent_image)) {
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01001812 ret = EFI_INVALID_PARAMETER;
1813 goto error;
1814 }
1815
1816 if (!source_buffer && !file_path) {
1817 ret = EFI_NOT_FOUND;
1818 goto error;
1819 }
Heinrich Schuchardt2e0a7902019-05-05 16:55:06 +02001820 /* The parent image handle must refer to a loaded image */
1821 if (!parent_image->type) {
1822 ret = EFI_INVALID_PARAMETER;
1823 goto error;
1824 }
Rob Clark857a1222017-09-13 18:05:35 -04001825
1826 if (!source_buffer) {
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01001827 ret = efi_load_image_from_path(file_path, &dest_buffer,
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001828 &source_size);
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001829 if (ret != EFI_SUCCESS)
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001830 goto error;
Rob Clark857a1222017-09-13 18:05:35 -04001831 } else {
Heinrich Schuchardt78a23b52019-05-05 16:55:06 +02001832 if (!source_size) {
1833 ret = EFI_LOAD_ERROR;
1834 goto error;
1835 }
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01001836 dest_buffer = source_buffer;
Rob Clark857a1222017-09-13 18:05:35 -04001837 }
Heinrich Schuchardt28b39172019-04-20 19:24:43 +00001838 /* split file_path which contains both the device and file parts */
1839 efi_dp_split_file_path(file_path, &dp, &fp);
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001840 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01001841 if (ret == EFI_SUCCESS)
1842 ret = efi_load_pe(*image_obj, dest_buffer, info);
1843 if (!source_buffer)
1844 /* Release buffer to which file was loaded */
1845 efi_free_pages((uintptr_t)dest_buffer,
1846 efi_size_in_pages(source_size));
1847 if (ret == EFI_SUCCESS) {
1848 info->system_table = &systab;
1849 info->parent_handle = parent_image;
1850 } else {
1851 /* The image is invalid. Release all associated resources. */
1852 efi_delete_handle(*image_handle);
1853 *image_handle = NULL;
1854 free(info);
1855 }
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01001856error:
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001857 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001858}
1859
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001860/**
Alexander Graffa5246b2018-11-15 21:23:47 +01001861 * efi_exit_caches() - fix up caches for EFI payloads if necessary
1862 */
1863static void efi_exit_caches(void)
1864{
1865#if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
1866 /*
1867 * Grub on 32bit ARM needs to have caches disabled before jumping into
1868 * a zImage, but does not know of all cache layers. Give it a hand.
1869 */
1870 if (efi_is_direct_boot)
1871 cleanup_before_linux();
1872#endif
1873}
1874
1875/**
Mario Six8fac2912018-07-10 08:40:17 +02001876 * efi_exit_boot_services() - stop all boot services
1877 * @image_handle: handle of the loaded image
1878 * @map_key: key of the memory map
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001879 *
1880 * This function implements the ExitBootServices service.
Mario Six8fac2912018-07-10 08:40:17 +02001881 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001882 * See the Unified Extensible Firmware Interface (UEFI) specification
1883 * for details.
1884 *
Mario Six8fac2912018-07-10 08:40:17 +02001885 * All timer events are disabled. For exit boot services events the
1886 * notification function is called. The boot services are disabled in the
1887 * system table.
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001888 *
Mario Six8fac2912018-07-10 08:40:17 +02001889 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001890 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001891static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
Heinrich Schuchardt8bd4f412019-05-05 21:58:35 +02001892 efi_uintn_t map_key)
Alexander Grafc15d9212016-03-04 01:09:59 +01001893{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001894 struct efi_event *evt;
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001895
Heinrich Schuchardt8bd4f412019-05-05 21:58:35 +02001896 EFI_ENTRY("%p, %zx", image_handle, map_key);
Alexander Grafc15d9212016-03-04 01:09:59 +01001897
Heinrich Schuchardt0f233c42018-07-02 12:53:55 +02001898 /* Check that the caller has read the current memory map */
1899 if (map_key != efi_memory_map_key)
1900 return EFI_INVALID_PARAMETER;
1901
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001902 /* Make sure that notification functions are not called anymore */
1903 efi_tpl = TPL_HIGH_LEVEL;
1904
1905 /* Check if ExitBootServices has already been called */
1906 if (!systab.boottime)
1907 return EFI_EXIT(EFI_SUCCESS);
1908
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001909 /* Add related events to the event group */
1910 list_for_each_entry(evt, &efi_events, link) {
1911 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
1912 evt->group = &efi_guid_event_group_exit_boot_services;
1913 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001914 /* Notify that ExitBootServices is invoked. */
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001915 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001916 if (evt->group &&
1917 !guidcmp(evt->group,
1918 &efi_guid_event_group_exit_boot_services)) {
1919 efi_signal_event(evt, false);
1920 break;
1921 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001922 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001923
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001924 /* TODO: Should persist EFI variables here */
Rob Clark15f3d742017-09-13 18:05:37 -04001925
Alexander Graf2ebeb442016-11-17 01:02:57 +01001926 board_quiesce_devices();
1927
Alexander Graffa5246b2018-11-15 21:23:47 +01001928 /* Fix up caches for EFI payloads if necessary */
1929 efi_exit_caches();
1930
Alexander Grafc15d9212016-03-04 01:09:59 +01001931 /* This stops all lingering devices */
1932 bootm_disable_interrupts();
1933
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001934 /* Disable boot time services */
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001935 systab.con_in_handle = NULL;
1936 systab.con_in = NULL;
1937 systab.con_out_handle = NULL;
1938 systab.con_out = NULL;
1939 systab.stderr_handle = NULL;
1940 systab.std_err = NULL;
1941 systab.boottime = NULL;
1942
1943 /* Recalculate CRC32 */
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02001944 efi_update_table_header_crc32(&systab.hdr);
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001945
Alexander Grafc15d9212016-03-04 01:09:59 +01001946 /* Give the payload some time to boot */
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02001947 efi_set_watchdog(0);
Alexander Grafc15d9212016-03-04 01:09:59 +01001948 WATCHDOG_RESET();
1949
1950 return EFI_EXIT(EFI_SUCCESS);
1951}
1952
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001953/**
Mario Six8fac2912018-07-10 08:40:17 +02001954 * efi_get_next_monotonic_count() - get next value of the counter
1955 * @count: returned value of the counter
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001956 *
1957 * This function implements the NextMonotonicCount service.
Mario Six8fac2912018-07-10 08:40:17 +02001958 *
1959 * See the Unified Extensible Firmware Interface (UEFI) specification for
1960 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001961 *
Mario Six8fac2912018-07-10 08:40:17 +02001962 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001963 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001964static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
1965{
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001966 static uint64_t mono;
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02001967 efi_status_t ret;
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001968
Alexander Grafc15d9212016-03-04 01:09:59 +01001969 EFI_ENTRY("%p", count);
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02001970 if (!count) {
1971 ret = EFI_INVALID_PARAMETER;
1972 goto out;
1973 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001974 *count = mono++;
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02001975 ret = EFI_SUCCESS;
1976out:
1977 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001978}
1979
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001980/**
Mario Six8fac2912018-07-10 08:40:17 +02001981 * efi_stall() - sleep
1982 * @microseconds: period to sleep in microseconds
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001983 *
Mario Six8fac2912018-07-10 08:40:17 +02001984 * This function implements the Stall service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001985 *
Mario Six8fac2912018-07-10 08:40:17 +02001986 * See the Unified Extensible Firmware Interface (UEFI) specification for
1987 * details.
1988 *
1989 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001990 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001991static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
1992{
Heinrich Schuchardt9912c032019-06-02 21:12:17 +02001993 u64 end_tick;
1994
Alexander Grafc15d9212016-03-04 01:09:59 +01001995 EFI_ENTRY("%ld", microseconds);
Heinrich Schuchardt9912c032019-06-02 21:12:17 +02001996
1997 end_tick = get_ticks() + usec_to_tick(microseconds);
1998 while (get_ticks() < end_tick)
1999 efi_timer_check();
2000
Alexander Grafc15d9212016-03-04 01:09:59 +01002001 return EFI_EXIT(EFI_SUCCESS);
2002}
2003
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002004/**
Mario Six8fac2912018-07-10 08:40:17 +02002005 * efi_set_watchdog_timer() - reset the watchdog timer
2006 * @timeout: seconds before reset by watchdog
2007 * @watchdog_code: code to be logged when resetting
2008 * @data_size: size of buffer in bytes
2009 * @watchdog_data: buffer with data describing the reset reason
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002010 *
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02002011 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002012 *
Mario Six8fac2912018-07-10 08:40:17 +02002013 * See the Unified Extensible Firmware Interface (UEFI) specification for
2014 * details.
2015 *
2016 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002017 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002018static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
2019 uint64_t watchdog_code,
2020 unsigned long data_size,
2021 uint16_t *watchdog_data)
2022{
Masahiro Yamadac7570a32018-08-06 20:47:40 +09002023 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
Alexander Grafc15d9212016-03-04 01:09:59 +01002024 data_size, watchdog_data);
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02002025 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafc15d9212016-03-04 01:09:59 +01002026}
2027
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002028/**
Mario Six8fac2912018-07-10 08:40:17 +02002029 * efi_close_protocol() - close a protocol
2030 * @handle: handle on which the protocol shall be closed
2031 * @protocol: GUID of the protocol to close
2032 * @agent_handle: handle of the driver
2033 * @controller_handle: handle of the controller
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002034 *
2035 * This function implements the CloseProtocol service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002036 *
Mario Six8fac2912018-07-10 08:40:17 +02002037 * See the Unified Extensible Firmware Interface (UEFI) specification for
2038 * details.
2039 *
2040 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002041 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002042static efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002043 const efi_guid_t *protocol,
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002044 efi_handle_t agent_handle,
2045 efi_handle_t controller_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01002046{
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002047 struct efi_handler *handler;
2048 struct efi_open_protocol_info_item *item;
2049 struct efi_open_protocol_info_item *pos;
2050 efi_status_t r;
2051
Rob Clark238f88c2017-09-13 18:05:41 -04002052 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
Alexander Grafc15d9212016-03-04 01:09:59 +01002053 controller_handle);
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002054
Heinrich Schuchardt5d8231b2019-05-05 10:37:51 +02002055 if (!efi_search_obj(agent_handle) ||
2056 (controller_handle && !efi_search_obj(controller_handle))) {
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002057 r = EFI_INVALID_PARAMETER;
2058 goto out;
2059 }
2060 r = efi_search_protocol(handle, protocol, &handler);
2061 if (r != EFI_SUCCESS)
2062 goto out;
2063
2064 r = EFI_NOT_FOUND;
2065 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2066 if (item->info.agent_handle == agent_handle &&
2067 item->info.controller_handle == controller_handle) {
2068 efi_delete_open_info(item);
2069 r = EFI_SUCCESS;
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002070 }
2071 }
2072out:
2073 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002074}
2075
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002076/**
Mario Six8fac2912018-07-10 08:40:17 +02002077 * efi_open_protocol_information() - provide information about then open status
2078 * of a protocol on a handle
2079 * @handle: handle for which the information shall be retrieved
2080 * @protocol: GUID of the protocol
2081 * @entry_buffer: buffer to receive the open protocol information
2082 * @entry_count: number of entries available in the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002083 *
2084 * This function implements the OpenProtocolInformation service.
Mario Six8fac2912018-07-10 08:40:17 +02002085 *
2086 * See the Unified Extensible Firmware Interface (UEFI) specification for
2087 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002088 *
Mario Six8fac2912018-07-10 08:40:17 +02002089 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002090 */
Heinrich Schuchardt91064592018-02-18 15:17:49 +01002091static efi_status_t EFIAPI efi_open_protocol_information(
2092 efi_handle_t handle, const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002093 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002094 efi_uintn_t *entry_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01002095{
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002096 unsigned long buffer_size;
2097 unsigned long count;
2098 struct efi_handler *handler;
2099 struct efi_open_protocol_info_item *item;
2100 efi_status_t r;
2101
Rob Clark238f88c2017-09-13 18:05:41 -04002102 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
Alexander Grafc15d9212016-03-04 01:09:59 +01002103 entry_count);
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002104
2105 /* Check parameters */
2106 if (!entry_buffer) {
2107 r = EFI_INVALID_PARAMETER;
2108 goto out;
2109 }
2110 r = efi_search_protocol(handle, protocol, &handler);
2111 if (r != EFI_SUCCESS)
2112 goto out;
2113
2114 /* Count entries */
2115 count = 0;
2116 list_for_each_entry(item, &handler->open_infos, link) {
2117 if (item->info.open_count)
2118 ++count;
2119 }
2120 *entry_count = count;
2121 *entry_buffer = NULL;
2122 if (!count) {
2123 r = EFI_SUCCESS;
2124 goto out;
2125 }
2126
2127 /* Copy entries */
2128 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002129 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002130 (void **)entry_buffer);
2131 if (r != EFI_SUCCESS)
2132 goto out;
2133 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2134 if (item->info.open_count)
2135 (*entry_buffer)[--count] = item->info;
2136 }
2137out:
2138 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002139}
2140
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002141/**
Mario Six8fac2912018-07-10 08:40:17 +02002142 * efi_protocols_per_handle() - get protocols installed on a handle
2143 * @handle: handle for which the information is retrieved
2144 * @protocol_buffer: buffer with protocol GUIDs
2145 * @protocol_buffer_count: number of entries in the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002146 *
2147 * This function implements the ProtocolsPerHandleService.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002148 *
Mario Six8fac2912018-07-10 08:40:17 +02002149 * See the Unified Extensible Firmware Interface (UEFI) specification for
2150 * details.
2151 *
2152 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002153 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002154static efi_status_t EFIAPI efi_protocols_per_handle(
2155 efi_handle_t handle, efi_guid_t ***protocol_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002156 efi_uintn_t *protocol_buffer_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01002157{
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002158 unsigned long buffer_size;
2159 struct efi_object *efiobj;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002160 struct list_head *protocol_handle;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002161 efi_status_t r;
2162
Alexander Grafc15d9212016-03-04 01:09:59 +01002163 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2164 protocol_buffer_count);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002165
2166 if (!handle || !protocol_buffer || !protocol_buffer_count)
2167 return EFI_EXIT(EFI_INVALID_PARAMETER);
2168
2169 *protocol_buffer = NULL;
Rob Clarkd51b8ca2017-07-20 07:59:39 -04002170 *protocol_buffer_count = 0;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002171
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002172 efiobj = efi_search_obj(handle);
2173 if (!efiobj)
2174 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002175
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002176 /* Count protocols */
2177 list_for_each(protocol_handle, &efiobj->protocols) {
2178 ++*protocol_buffer_count;
2179 }
2180
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02002181 /* Copy GUIDs */
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002182 if (*protocol_buffer_count) {
2183 size_t j = 0;
2184
2185 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002186 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002187 (void **)protocol_buffer);
2188 if (r != EFI_SUCCESS)
2189 return EFI_EXIT(r);
2190 list_for_each(protocol_handle, &efiobj->protocols) {
2191 struct efi_handler *protocol;
2192
2193 protocol = list_entry(protocol_handle,
2194 struct efi_handler, link);
2195 (*protocol_buffer)[j] = (void *)protocol->guid;
2196 ++j;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002197 }
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002198 }
2199
2200 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002201}
2202
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002203/**
Mario Six8fac2912018-07-10 08:40:17 +02002204 * efi_locate_handle_buffer() - locate handles implementing a protocol
2205 * @search_type: selection criterion
2206 * @protocol: GUID of the protocol
2207 * @search_key: registration key
2208 * @no_handles: number of returned handles
2209 * @buffer: buffer with the returned handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002210 *
2211 * This function implements the LocateHandleBuffer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002212 *
Mario Six8fac2912018-07-10 08:40:17 +02002213 * See the Unified Extensible Firmware Interface (UEFI) specification for
2214 * details.
2215 *
2216 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002217 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002218static efi_status_t EFIAPI efi_locate_handle_buffer(
2219 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002220 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002221 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01002222{
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002223 efi_status_t r;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002224 efi_uintn_t buffer_size = 0;
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002225
Rob Clark238f88c2017-09-13 18:05:41 -04002226 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafc15d9212016-03-04 01:09:59 +01002227 no_handles, buffer);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002228
2229 if (!no_handles || !buffer) {
2230 r = EFI_INVALID_PARAMETER;
2231 goto out;
2232 }
2233 *no_handles = 0;
2234 *buffer = NULL;
2235 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2236 *buffer);
2237 if (r != EFI_BUFFER_TOO_SMALL)
2238 goto out;
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002239 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002240 (void **)buffer);
2241 if (r != EFI_SUCCESS)
2242 goto out;
2243 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2244 *buffer);
2245 if (r == EFI_SUCCESS)
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002246 *no_handles = buffer_size / sizeof(efi_handle_t);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002247out:
2248 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002249}
2250
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002251/**
Mario Six8fac2912018-07-10 08:40:17 +02002252 * efi_locate_protocol() - find an interface implementing a protocol
2253 * @protocol: GUID of the protocol
2254 * @registration: registration key passed to the notification function
2255 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002256 *
2257 * This function implements the LocateProtocol service.
Mario Six8fac2912018-07-10 08:40:17 +02002258 *
2259 * See the Unified Extensible Firmware Interface (UEFI) specification for
2260 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002261 *
Mario Six8fac2912018-07-10 08:40:17 +02002262 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002263 */
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002264static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002265 void *registration,
2266 void **protocol_interface)
2267{
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002268 struct efi_handler *handler;
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002269 efi_status_t ret;
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002270 struct efi_object *efiobj;
Alexander Grafc15d9212016-03-04 01:09:59 +01002271
Rob Clark238f88c2017-09-13 18:05:41 -04002272 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002273
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002274 /*
2275 * The UEFI spec explicitly requires a protocol even if a registration
2276 * key is provided. This differs from the logic in LocateHandle().
2277 */
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002278 if (!protocol || !protocol_interface)
2279 return EFI_EXIT(EFI_INVALID_PARAMETER);
2280
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002281 if (registration) {
2282 struct efi_register_notify_event *event;
2283 struct efi_protocol_notification *handle;
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002284
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002285 event = efi_check_register_notify_event(registration);
2286 if (!event)
2287 return EFI_EXIT(EFI_INVALID_PARAMETER);
2288 /*
2289 * The UEFI spec requires to return EFI_NOT_FOUND if no
2290 * protocol instance matches protocol and registration.
2291 * So let's do the same for a mismatch between protocol and
2292 * registration.
2293 */
2294 if (guidcmp(&event->protocol, protocol))
2295 goto not_found;
2296 if (list_empty(&event->handles))
2297 goto not_found;
2298 handle = list_first_entry(&event->handles,
2299 struct efi_protocol_notification,
2300 link);
2301 efiobj = handle->handle;
2302 list_del(&handle->link);
2303 free(handle);
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02002304 ret = efi_search_protocol(efiobj, protocol, &handler);
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002305 if (ret == EFI_SUCCESS)
2306 goto found;
2307 } else {
2308 list_for_each_entry(efiobj, &efi_obj_list, link) {
2309 ret = efi_search_protocol(efiobj, protocol, &handler);
2310 if (ret == EFI_SUCCESS)
2311 goto found;
Alexander Grafc15d9212016-03-04 01:09:59 +01002312 }
2313 }
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002314not_found:
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002315 *protocol_interface = NULL;
Alexander Grafc15d9212016-03-04 01:09:59 +01002316 return EFI_EXIT(EFI_NOT_FOUND);
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002317found:
2318 *protocol_interface = handler->protocol_interface;
2319 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002320}
2321
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002322/**
Mario Six8fac2912018-07-10 08:40:17 +02002323 * efi_locate_device_path() - Get the device path and handle of an device
2324 * implementing a protocol
2325 * @protocol: GUID of the protocol
2326 * @device_path: device path
2327 * @device: handle of the device
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002328 *
2329 * This function implements the LocateDevicePath service.
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002330 *
Mario Six8fac2912018-07-10 08:40:17 +02002331 * See the Unified Extensible Firmware Interface (UEFI) specification for
2332 * details.
2333 *
2334 * Return: status code
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002335 */
2336static efi_status_t EFIAPI efi_locate_device_path(
2337 const efi_guid_t *protocol,
2338 struct efi_device_path **device_path,
2339 efi_handle_t *device)
2340{
2341 struct efi_device_path *dp;
2342 size_t i;
2343 struct efi_handler *handler;
2344 efi_handle_t *handles;
2345 size_t len, len_dp;
2346 size_t len_best = 0;
2347 efi_uintn_t no_handles;
2348 u8 *remainder;
2349 efi_status_t ret;
2350
2351 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
2352
Heinrich Schuchardt6db1e5c2019-05-10 19:21:41 +02002353 if (!protocol || !device_path || !*device_path) {
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002354 ret = EFI_INVALID_PARAMETER;
2355 goto out;
2356 }
2357
2358 /* Find end of device path */
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +02002359 len = efi_dp_instance_size(*device_path);
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002360
2361 /* Get all handles implementing the protocol */
2362 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
2363 &no_handles, &handles));
2364 if (ret != EFI_SUCCESS)
2365 goto out;
2366
2367 for (i = 0; i < no_handles; ++i) {
2368 /* Find the device path protocol */
2369 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
2370 &handler);
2371 if (ret != EFI_SUCCESS)
2372 continue;
2373 dp = (struct efi_device_path *)handler->protocol_interface;
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +02002374 len_dp = efi_dp_instance_size(dp);
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002375 /*
2376 * This handle can only be a better fit
2377 * if its device path length is longer than the best fit and
2378 * if its device path length is shorter of equal the searched
2379 * device path.
2380 */
2381 if (len_dp <= len_best || len_dp > len)
2382 continue;
2383 /* Check if dp is a subpath of device_path */
2384 if (memcmp(*device_path, dp, len_dp))
2385 continue;
Heinrich Schuchardt6db1e5c2019-05-10 19:21:41 +02002386 if (!device) {
2387 ret = EFI_INVALID_PARAMETER;
2388 goto out;
2389 }
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002390 *device = handles[i];
2391 len_best = len_dp;
2392 }
2393 if (len_best) {
2394 remainder = (u8 *)*device_path + len_best;
2395 *device_path = (struct efi_device_path *)remainder;
2396 ret = EFI_SUCCESS;
2397 } else {
2398 ret = EFI_NOT_FOUND;
2399 }
2400out:
2401 return EFI_EXIT(ret);
2402}
2403
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002404/**
Mario Six8fac2912018-07-10 08:40:17 +02002405 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2406 * interfaces
2407 * @handle: handle on which the protocol interfaces shall be installed
2408 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2409 * interfaces
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002410 *
2411 * This function implements the MultipleProtocolInterfaces service.
Mario Six8fac2912018-07-10 08:40:17 +02002412 *
2413 * See the Unified Extensible Firmware Interface (UEFI) specification for
2414 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002415 *
Mario Six8fac2912018-07-10 08:40:17 +02002416 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002417 */
Heinrich Schuchardt744d83e2019-04-12 06:59:49 +02002418efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002419 (efi_handle_t *handle, ...)
Alexander Grafc15d9212016-03-04 01:09:59 +01002420{
2421 EFI_ENTRY("%p", handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002422
Alexander Graf404a7c82018-06-18 17:23:05 +02002423 efi_va_list argptr;
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002424 const efi_guid_t *protocol;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002425 void *protocol_interface;
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002426 efi_handle_t old_handle;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002427 efi_status_t r = EFI_SUCCESS;
2428 int i = 0;
2429
2430 if (!handle)
2431 return EFI_EXIT(EFI_INVALID_PARAMETER);
2432
Alexander Graf404a7c82018-06-18 17:23:05 +02002433 efi_va_start(argptr, handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002434 for (;;) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002435 protocol = efi_va_arg(argptr, efi_guid_t*);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002436 if (!protocol)
2437 break;
Alexander Graf404a7c82018-06-18 17:23:05 +02002438 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002439 /* Check that a device path has not been installed before */
2440 if (!guidcmp(protocol, &efi_guid_device_path)) {
2441 struct efi_device_path *dp = protocol_interface;
2442
2443 r = EFI_CALL(efi_locate_device_path(protocol, &dp,
2444 &old_handle));
Heinrich Schuchardt29344972019-05-20 19:55:18 +00002445 if (r == EFI_SUCCESS &&
2446 dp->type == DEVICE_PATH_TYPE_END) {
2447 EFI_PRINT("Path %pD already installed\n",
2448 protocol_interface);
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002449 r = EFI_ALREADY_STARTED;
2450 break;
2451 }
2452 }
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01002453 r = EFI_CALL(efi_install_protocol_interface(
2454 handle, protocol,
2455 EFI_NATIVE_INTERFACE,
2456 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002457 if (r != EFI_SUCCESS)
2458 break;
2459 i++;
2460 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002461 efi_va_end(argptr);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002462 if (r == EFI_SUCCESS)
2463 return EFI_EXIT(r);
2464
Heinrich Schuchardtec47f3e2017-10-26 19:25:42 +02002465 /* If an error occurred undo all changes. */
Alexander Graf404a7c82018-06-18 17:23:05 +02002466 efi_va_start(argptr, handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002467 for (; i; --i) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002468 protocol = efi_va_arg(argptr, efi_guid_t*);
2469 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002470 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01002471 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002472 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002473 efi_va_end(argptr);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002474
2475 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002476}
2477
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002478/**
Mario Six8fac2912018-07-10 08:40:17 +02002479 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2480 * interfaces
2481 * @handle: handle from which the protocol interfaces shall be removed
2482 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2483 * interfaces
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002484 *
2485 * This function implements the UninstallMultipleProtocolInterfaces service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002486 *
Mario Six8fac2912018-07-10 08:40:17 +02002487 * See the Unified Extensible Firmware Interface (UEFI) specification for
2488 * details.
2489 *
2490 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002491 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002492static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002493 efi_handle_t handle, ...)
Alexander Grafc15d9212016-03-04 01:09:59 +01002494{
2495 EFI_ENTRY("%p", handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002496
Alexander Graf404a7c82018-06-18 17:23:05 +02002497 efi_va_list argptr;
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002498 const efi_guid_t *protocol;
2499 void *protocol_interface;
2500 efi_status_t r = EFI_SUCCESS;
2501 size_t i = 0;
2502
2503 if (!handle)
2504 return EFI_EXIT(EFI_INVALID_PARAMETER);
2505
Alexander Graf404a7c82018-06-18 17:23:05 +02002506 efi_va_start(argptr, handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002507 for (;;) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002508 protocol = efi_va_arg(argptr, efi_guid_t*);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002509 if (!protocol)
2510 break;
Alexander Graf404a7c82018-06-18 17:23:05 +02002511 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002512 r = efi_uninstall_protocol(handle, protocol,
2513 protocol_interface);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002514 if (r != EFI_SUCCESS)
2515 break;
2516 i++;
2517 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002518 efi_va_end(argptr);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002519 if (r == EFI_SUCCESS) {
2520 /* If the last protocol has been removed, delete the handle. */
2521 if (list_empty(&handle->protocols)) {
2522 list_del(&handle->link);
2523 free(handle);
2524 }
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002525 return EFI_EXIT(r);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002526 }
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002527
2528 /* If an error occurred undo all changes. */
Alexander Graf404a7c82018-06-18 17:23:05 +02002529 efi_va_start(argptr, handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002530 for (; i; --i) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002531 protocol = efi_va_arg(argptr, efi_guid_t*);
2532 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002533 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2534 EFI_NATIVE_INTERFACE,
2535 protocol_interface));
2536 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002537 efi_va_end(argptr);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002538
Heinrich Schuchardt1c76eda2018-09-24 19:57:27 +02002539 /* In case of an error always return EFI_INVALID_PARAMETER */
2540 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafc15d9212016-03-04 01:09:59 +01002541}
2542
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002543/**
Mario Six8fac2912018-07-10 08:40:17 +02002544 * efi_calculate_crc32() - calculate cyclic redundancy code
2545 * @data: buffer with data
2546 * @data_size: size of buffer in bytes
2547 * @crc32_p: cyclic redundancy code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002548 *
2549 * This function implements the CalculateCrc32 service.
Mario Six8fac2912018-07-10 08:40:17 +02002550 *
2551 * See the Unified Extensible Firmware Interface (UEFI) specification for
2552 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002553 *
Mario Six8fac2912018-07-10 08:40:17 +02002554 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002555 */
Heinrich Schuchardtf2725582018-07-07 15:36:04 +02002556static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2557 efi_uintn_t data_size,
2558 u32 *crc32_p)
Alexander Grafc15d9212016-03-04 01:09:59 +01002559{
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002560 efi_status_t ret = EFI_SUCCESS;
2561
Heinrich Schuchardtf2725582018-07-07 15:36:04 +02002562 EFI_ENTRY("%p, %zu", data, data_size);
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002563 if (!data || !data_size || !crc32_p) {
2564 ret = EFI_INVALID_PARAMETER;
2565 goto out;
2566 }
Alexander Grafc15d9212016-03-04 01:09:59 +01002567 *crc32_p = crc32(0, data, data_size);
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002568out:
2569 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002570}
2571
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002572/**
Mario Six8fac2912018-07-10 08:40:17 +02002573 * efi_copy_mem() - copy memory
2574 * @destination: destination of the copy operation
2575 * @source: source of the copy operation
2576 * @length: number of bytes to copy
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002577 *
2578 * This function implements the CopyMem service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002579 *
Mario Six8fac2912018-07-10 08:40:17 +02002580 * See the Unified Extensible Firmware Interface (UEFI) specification for
2581 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002582 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002583static void EFIAPI efi_copy_mem(void *destination, const void *source,
2584 size_t length)
Alexander Grafc15d9212016-03-04 01:09:59 +01002585{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002586 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Heinrich Schuchardtefba6ba2019-01-09 21:41:13 +01002587 memmove(destination, source, length);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002588 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002589}
2590
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002591/**
Mario Six8fac2912018-07-10 08:40:17 +02002592 * efi_set_mem() - Fill memory with a byte value.
2593 * @buffer: buffer to fill
2594 * @size: size of buffer in bytes
2595 * @value: byte to copy to the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002596 *
2597 * This function implements the SetMem service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002598 *
Mario Six8fac2912018-07-10 08:40:17 +02002599 * See the Unified Extensible Firmware Interface (UEFI) specification for
2600 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002601 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002602static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafc15d9212016-03-04 01:09:59 +01002603{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002604 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafc15d9212016-03-04 01:09:59 +01002605 memset(buffer, value, size);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002606 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002607}
2608
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002609/**
Mario Six8fac2912018-07-10 08:40:17 +02002610 * efi_protocol_open() - open protocol interface on a handle
2611 * @handler: handler of a protocol
2612 * @protocol_interface: interface implementing the protocol
2613 * @agent_handle: handle of the driver
2614 * @controller_handle: handle of the controller
2615 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002616 *
Mario Six8fac2912018-07-10 08:40:17 +02002617 * Return: status code
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002618 */
2619static efi_status_t efi_protocol_open(
2620 struct efi_handler *handler,
2621 void **protocol_interface, void *agent_handle,
2622 void *controller_handle, uint32_t attributes)
2623{
2624 struct efi_open_protocol_info_item *item;
2625 struct efi_open_protocol_info_entry *match = NULL;
2626 bool opened_by_driver = false;
2627 bool opened_exclusive = false;
2628
2629 /* If there is no agent, only return the interface */
2630 if (!agent_handle)
2631 goto out;
2632
2633 /* For TEST_PROTOCOL ignore interface attribute */
2634 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2635 *protocol_interface = NULL;
2636
2637 /*
2638 * Check if the protocol is already opened by a driver with the same
2639 * attributes or opened exclusively
2640 */
2641 list_for_each_entry(item, &handler->open_infos, link) {
2642 if (item->info.agent_handle == agent_handle) {
2643 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2644 (item->info.attributes == attributes))
2645 return EFI_ALREADY_STARTED;
Heinrich Schuchardtda433d52019-05-30 14:16:31 +02002646 } else {
2647 if (item->info.attributes &
2648 EFI_OPEN_PROTOCOL_BY_DRIVER)
2649 opened_by_driver = true;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002650 }
2651 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2652 opened_exclusive = true;
2653 }
2654
2655 /* Only one controller can open the protocol exclusively */
Heinrich Schuchardtda433d52019-05-30 14:16:31 +02002656 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2657 if (opened_exclusive)
2658 return EFI_ACCESS_DENIED;
2659 } else if (attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
2660 if (opened_exclusive || opened_by_driver)
2661 return EFI_ACCESS_DENIED;
2662 }
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002663
2664 /* Prepare exclusive opening */
2665 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2666 /* Try to disconnect controllers */
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002667disconnect_next:
2668 opened_by_driver = false;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002669 list_for_each_entry(item, &handler->open_infos, link) {
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002670 efi_status_t ret;
2671
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002672 if (item->info.attributes ==
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002673 EFI_OPEN_PROTOCOL_BY_DRIVER) {
2674 ret = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002675 item->info.controller_handle,
2676 item->info.agent_handle,
2677 NULL));
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002678 if (ret == EFI_SUCCESS)
2679 /*
2680 * Child controllers may have been
2681 * removed from the open_infos list. So
2682 * let's restart the loop.
2683 */
2684 goto disconnect_next;
2685 else
2686 opened_by_driver = true;
2687 }
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002688 }
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002689 /* Only one driver can be connected */
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002690 if (opened_by_driver)
2691 return EFI_ACCESS_DENIED;
2692 }
2693
2694 /* Find existing entry */
2695 list_for_each_entry(item, &handler->open_infos, link) {
2696 if (item->info.agent_handle == agent_handle &&
Heinrich Schuchardt7d69fc32019-06-01 20:15:10 +02002697 item->info.controller_handle == controller_handle &&
2698 item->info.attributes == attributes)
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002699 match = &item->info;
2700 }
2701 /* None found, create one */
2702 if (!match) {
2703 match = efi_create_open_info(handler);
2704 if (!match)
2705 return EFI_OUT_OF_RESOURCES;
2706 }
2707
2708 match->agent_handle = agent_handle;
2709 match->controller_handle = controller_handle;
2710 match->attributes = attributes;
2711 match->open_count++;
2712
2713out:
2714 /* For TEST_PROTOCOL ignore interface attribute. */
2715 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2716 *protocol_interface = handler->protocol_interface;
2717
2718 return EFI_SUCCESS;
2719}
2720
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002721/**
Mario Six8fac2912018-07-10 08:40:17 +02002722 * efi_open_protocol() - open protocol interface on a handle
2723 * @handle: handle on which the protocol shall be opened
2724 * @protocol: GUID of the protocol
2725 * @protocol_interface: interface implementing the protocol
2726 * @agent_handle: handle of the driver
2727 * @controller_handle: handle of the controller
2728 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002729 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002730 * This function implements the OpenProtocol interface.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002731 *
Mario Six8fac2912018-07-10 08:40:17 +02002732 * See the Unified Extensible Firmware Interface (UEFI) specification for
2733 * details.
2734 *
2735 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002736 */
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002737static efi_status_t EFIAPI efi_open_protocol
2738 (efi_handle_t handle, const efi_guid_t *protocol,
2739 void **protocol_interface, efi_handle_t agent_handle,
2740 efi_handle_t controller_handle, uint32_t attributes)
Alexander Grafc15d9212016-03-04 01:09:59 +01002741{
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002742 struct efi_handler *handler;
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002743 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +01002744
Rob Clark238f88c2017-09-13 18:05:41 -04002745 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002746 protocol_interface, agent_handle, controller_handle,
2747 attributes);
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02002748
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002749 if (!handle || !protocol ||
2750 (!protocol_interface && attributes !=
2751 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02002752 goto out;
2753 }
2754
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002755 switch (attributes) {
2756 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2757 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2758 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2759 break;
2760 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2761 if (controller_handle == handle)
2762 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002763 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002764 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2765 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002766 /* Check that the controller handle is valid */
2767 if (!efi_search_obj(controller_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002768 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002769 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002770 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002771 /* Check that the agent handle is valid */
2772 if (!efi_search_obj(agent_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002773 goto out;
2774 break;
2775 default:
2776 goto out;
2777 }
2778
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002779 r = efi_search_protocol(handle, protocol, &handler);
Heinrich Schuchardtb673e4b2019-05-05 11:24:53 +02002780 switch (r) {
2781 case EFI_SUCCESS:
2782 break;
2783 case EFI_NOT_FOUND:
2784 r = EFI_UNSUPPORTED;
2785 goto out;
2786 default:
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002787 goto out;
Heinrich Schuchardtb673e4b2019-05-05 11:24:53 +02002788 }
Alexander Grafc15d9212016-03-04 01:09:59 +01002789
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002790 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2791 controller_handle, attributes);
Alexander Grafc15d9212016-03-04 01:09:59 +01002792out:
2793 return EFI_EXIT(r);
2794}
2795
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002796/**
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002797 * efi_start_image() - call the entry point of an image
2798 * @image_handle: handle of the image
2799 * @exit_data_size: size of the buffer
2800 * @exit_data: buffer to receive the exit data of the called image
2801 *
2802 * This function implements the StartImage service.
2803 *
2804 * See the Unified Extensible Firmware Interface (UEFI) specification for
2805 * details.
2806 *
2807 * Return: status code
2808 */
2809efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
2810 efi_uintn_t *exit_data_size,
2811 u16 **exit_data)
2812{
2813 struct efi_loaded_image_obj *image_obj =
2814 (struct efi_loaded_image_obj *)image_handle;
2815 efi_status_t ret;
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002816 void *info;
2817 efi_handle_t parent_image = current_image;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002818
2819 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
2820
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002821 /* Check parameters */
2822 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2823 &info, NULL, NULL,
2824 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2825 if (ret != EFI_SUCCESS)
2826 return EFI_EXIT(EFI_INVALID_PARAMETER);
2827
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002828 efi_is_direct_boot = false;
2829
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02002830 image_obj->exit_data_size = exit_data_size;
2831 image_obj->exit_data = exit_data;
2832
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002833 /* call the image! */
2834 if (setjmp(&image_obj->exit_jmp)) {
2835 /*
2836 * We called the entry point of the child image with EFI_CALL
2837 * in the lines below. The child image called the Exit() boot
2838 * service efi_exit() which executed the long jump that brought
2839 * us to the current line. This implies that the second half
2840 * of the EFI_CALL macro has not been executed.
2841 */
2842#ifdef CONFIG_ARM
2843 /*
2844 * efi_exit() called efi_restore_gd(). We have to undo this
2845 * otherwise __efi_entry_check() will put the wrong value into
2846 * app_gd.
2847 */
2848 gd = app_gd;
2849#endif
2850 /*
2851 * To get ready to call EFI_EXIT below we have to execute the
2852 * missed out steps of EFI_CALL.
2853 */
2854 assert(__efi_entry_check());
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02002855 EFI_PRINT("%lu returned by started image\n",
2856 (unsigned long)((uintptr_t)image_obj->exit_status &
2857 ~EFI_ERROR_MASK));
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002858 current_image = parent_image;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002859 return EFI_EXIT(image_obj->exit_status);
2860 }
2861
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002862 current_image = image_handle;
Heinrich Schuchardtb27ced42019-05-01 14:20:18 +02002863 image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +09002864 EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002865 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
2866
2867 /*
2868 * Usually UEFI applications call Exit() instead of returning.
2869 * But because the world doesn't consist of ponies and unicorns,
2870 * we're happy to emulate that behavior on behalf of a payload
2871 * that forgot.
2872 */
2873 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
2874}
2875
2876/**
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002877 * efi_delete_image() - delete loaded image from memory)
2878 *
2879 * @image_obj: handle of the loaded image
2880 * @loaded_image_protocol: loaded image protocol
2881 */
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02002882static efi_status_t efi_delete_image
2883 (struct efi_loaded_image_obj *image_obj,
2884 struct efi_loaded_image *loaded_image_protocol)
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002885{
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02002886 struct efi_object *efiobj;
2887 efi_status_t r, ret = EFI_SUCCESS;
2888
2889close_next:
2890 list_for_each_entry(efiobj, &efi_obj_list, link) {
2891 struct efi_handler *protocol;
2892
2893 list_for_each_entry(protocol, &efiobj->protocols, link) {
2894 struct efi_open_protocol_info_item *info;
2895
2896 list_for_each_entry(info, &protocol->open_infos, link) {
2897 if (info->info.agent_handle !=
2898 (efi_handle_t)image_obj)
2899 continue;
2900 r = EFI_CALL(efi_close_protocol
2901 (efiobj, protocol->guid,
2902 info->info.agent_handle,
2903 info->info.controller_handle
2904 ));
2905 if (r != EFI_SUCCESS)
2906 ret = r;
2907 /*
2908 * Closing protocols may results in further
2909 * items being deleted. To play it safe loop
2910 * over all elements again.
2911 */
2912 goto close_next;
2913 }
2914 }
2915 }
2916
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002917 efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
2918 efi_size_in_pages(loaded_image_protocol->image_size));
2919 efi_delete_handle(&image_obj->header);
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02002920
2921 return ret;
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002922}
2923
2924/**
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002925 * efi_unload_image() - unload an EFI image
2926 * @image_handle: handle of the image to be unloaded
2927 *
2928 * This function implements the UnloadImage service.
2929 *
2930 * See the Unified Extensible Firmware Interface (UEFI) specification for
2931 * details.
2932 *
2933 * Return: status code
2934 */
2935efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
2936{
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002937 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002938 struct efi_object *efiobj;
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002939 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002940
2941 EFI_ENTRY("%p", image_handle);
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002942
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002943 efiobj = efi_search_obj(image_handle);
2944 if (!efiobj) {
2945 ret = EFI_INVALID_PARAMETER;
2946 goto out;
2947 }
2948 /* Find the loaded image protocol */
2949 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2950 (void **)&loaded_image_protocol,
2951 NULL, NULL,
2952 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2953 if (ret != EFI_SUCCESS) {
2954 ret = EFI_INVALID_PARAMETER;
2955 goto out;
2956 }
2957 switch (efiobj->type) {
2958 case EFI_OBJECT_TYPE_STARTED_IMAGE:
2959 /* Call the unload function */
2960 if (!loaded_image_protocol->unload) {
2961 ret = EFI_UNSUPPORTED;
2962 goto out;
2963 }
2964 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
2965 if (ret != EFI_SUCCESS)
2966 goto out;
2967 break;
2968 case EFI_OBJECT_TYPE_LOADED_IMAGE:
2969 break;
2970 default:
2971 ret = EFI_INVALID_PARAMETER;
2972 goto out;
2973 }
2974 efi_delete_image((struct efi_loaded_image_obj *)efiobj,
2975 loaded_image_protocol);
2976out:
2977 return EFI_EXIT(ret);
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002978}
2979
2980/**
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02002981 * efi_update_exit_data() - fill exit data parameters of StartImage()
2982 *
2983 * @image_obj image handle
2984 * @exit_data_size size of the exit data buffer
2985 * @exit_data buffer with data returned by UEFI payload
2986 * Return: status code
2987 */
2988static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
2989 efi_uintn_t exit_data_size,
2990 u16 *exit_data)
2991{
2992 efi_status_t ret;
2993
2994 /*
2995 * If exit_data is not provided to StartImage(), exit_data_size must be
2996 * ignored.
2997 */
2998 if (!image_obj->exit_data)
2999 return EFI_SUCCESS;
3000 if (image_obj->exit_data_size)
3001 *image_obj->exit_data_size = exit_data_size;
3002 if (exit_data_size && exit_data) {
3003 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
3004 exit_data_size,
3005 (void **)image_obj->exit_data);
3006 if (ret != EFI_SUCCESS)
3007 return ret;
3008 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
3009 } else {
3010 image_obj->exit_data = NULL;
3011 }
3012 return EFI_SUCCESS;
3013}
3014
3015/**
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003016 * efi_exit() - leave an EFI application or driver
3017 * @image_handle: handle of the application or driver that is exiting
3018 * @exit_status: status code
3019 * @exit_data_size: size of the buffer in bytes
3020 * @exit_data: buffer with data describing an error
3021 *
3022 * This function implements the Exit service.
3023 *
3024 * See the Unified Extensible Firmware Interface (UEFI) specification for
3025 * details.
3026 *
3027 * Return: status code
3028 */
3029static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
3030 efi_status_t exit_status,
3031 efi_uintn_t exit_data_size,
3032 u16 *exit_data)
3033{
3034 /*
3035 * TODO: We should call the unload procedure of the loaded
3036 * image protocol.
3037 */
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003038 efi_status_t ret;
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003039 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003040 struct efi_loaded_image_obj *image_obj =
3041 (struct efi_loaded_image_obj *)image_handle;
3042
3043 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
3044 exit_data_size, exit_data);
3045
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003046 /* Check parameters */
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003047 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003048 (void **)&loaded_image_protocol,
3049 NULL, NULL,
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003050 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003051 if (ret != EFI_SUCCESS) {
3052 ret = EFI_INVALID_PARAMETER;
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003053 goto out;
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003054 }
3055
3056 /* Unloading of unstarted images */
3057 switch (image_obj->header.type) {
3058 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3059 break;
3060 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3061 efi_delete_image(image_obj, loaded_image_protocol);
3062 ret = EFI_SUCCESS;
3063 goto out;
3064 default:
3065 /* Handle does not refer to loaded image */
3066 ret = EFI_INVALID_PARAMETER;
3067 goto out;
3068 }
3069 /* A started image can only be unloaded it is the last one started. */
3070 if (image_handle != current_image) {
3071 ret = EFI_INVALID_PARAMETER;
3072 goto out;
3073 }
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003074
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003075 /* Exit data is only foreseen in case of failure. */
3076 if (exit_status != EFI_SUCCESS) {
3077 ret = efi_update_exit_data(image_obj, exit_data_size,
3078 exit_data);
3079 /* Exiting has priority. Don't return error to caller. */
3080 if (ret != EFI_SUCCESS)
3081 EFI_PRINT("%s: out of memory\n", __func__);
3082 }
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003083 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
3084 exit_status != EFI_SUCCESS)
3085 efi_delete_image(image_obj, loaded_image_protocol);
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003086
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003087 /* Make sure entry/exit counts for EFI world cross-overs match */
3088 EFI_EXIT(exit_status);
3089
3090 /*
3091 * But longjmp out with the U-Boot gd, not the application's, as
3092 * the other end is a setjmp call inside EFI context.
3093 */
3094 efi_restore_gd();
3095
3096 image_obj->exit_status = exit_status;
3097 longjmp(&image_obj->exit_jmp, 1);
3098
3099 panic("EFI application exited");
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003100out:
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003101 return EFI_EXIT(ret);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003102}
3103
3104/**
Mario Six8fac2912018-07-10 08:40:17 +02003105 * efi_handle_protocol() - get interface of a protocol on a handle
3106 * @handle: handle on which the protocol shall be opened
3107 * @protocol: GUID of the protocol
3108 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003109 *
3110 * This function implements the HandleProtocol service.
Mario Six8fac2912018-07-10 08:40:17 +02003111 *
3112 * See the Unified Extensible Firmware Interface (UEFI) specification for
3113 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003114 *
Mario Six8fac2912018-07-10 08:40:17 +02003115 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003116 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01003117static efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02003118 const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01003119 void **protocol_interface)
3120{
Heinrich Schuchardtef096152019-06-01 19:29:39 +02003121 return efi_open_protocol(handle, protocol, protocol_interface, efi_root,
xypron.glpk@gmx.de1bf5d872017-06-29 21:16:19 +02003122 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafc15d9212016-03-04 01:09:59 +01003123}
3124
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003125/**
Mario Six8fac2912018-07-10 08:40:17 +02003126 * efi_bind_controller() - bind a single driver to a controller
3127 * @controller_handle: controller handle
3128 * @driver_image_handle: driver handle
3129 * @remain_device_path: remaining path
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003130 *
Mario Six8fac2912018-07-10 08:40:17 +02003131 * Return: status code
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003132 */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003133static efi_status_t efi_bind_controller(
3134 efi_handle_t controller_handle,
3135 efi_handle_t driver_image_handle,
3136 struct efi_device_path *remain_device_path)
3137{
3138 struct efi_driver_binding_protocol *binding_protocol;
3139 efi_status_t r;
3140
3141 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3142 &efi_guid_driver_binding_protocol,
3143 (void **)&binding_protocol,
3144 driver_image_handle, NULL,
3145 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3146 if (r != EFI_SUCCESS)
3147 return r;
3148 r = EFI_CALL(binding_protocol->supported(binding_protocol,
3149 controller_handle,
3150 remain_device_path));
3151 if (r == EFI_SUCCESS)
3152 r = EFI_CALL(binding_protocol->start(binding_protocol,
3153 controller_handle,
3154 remain_device_path));
3155 EFI_CALL(efi_close_protocol(driver_image_handle,
3156 &efi_guid_driver_binding_protocol,
3157 driver_image_handle, NULL));
3158 return r;
3159}
3160
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003161/**
Mario Six8fac2912018-07-10 08:40:17 +02003162 * efi_connect_single_controller() - connect a single driver to a controller
3163 * @controller_handle: controller
3164 * @driver_image_handle: driver
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003165 * @remain_device_path: remaining path
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003166 *
Mario Six8fac2912018-07-10 08:40:17 +02003167 * Return: status code
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003168 */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003169static efi_status_t efi_connect_single_controller(
3170 efi_handle_t controller_handle,
3171 efi_handle_t *driver_image_handle,
3172 struct efi_device_path *remain_device_path)
3173{
3174 efi_handle_t *buffer;
3175 size_t count;
3176 size_t i;
3177 efi_status_t r;
3178 size_t connected = 0;
3179
3180 /* Get buffer with all handles with driver binding protocol */
3181 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3182 &efi_guid_driver_binding_protocol,
3183 NULL, &count, &buffer));
3184 if (r != EFI_SUCCESS)
3185 return r;
3186
3187 /* Context Override */
3188 if (driver_image_handle) {
3189 for (; *driver_image_handle; ++driver_image_handle) {
3190 for (i = 0; i < count; ++i) {
3191 if (buffer[i] == *driver_image_handle) {
3192 buffer[i] = NULL;
3193 r = efi_bind_controller(
3194 controller_handle,
3195 *driver_image_handle,
3196 remain_device_path);
3197 /*
3198 * For drivers that do not support the
3199 * controller or are already connected
3200 * we receive an error code here.
3201 */
3202 if (r == EFI_SUCCESS)
3203 ++connected;
3204 }
3205 }
3206 }
3207 }
3208
3209 /*
3210 * TODO: Some overrides are not yet implemented:
3211 * - Platform Driver Override
3212 * - Driver Family Override Search
3213 * - Bus Specific Driver Override
3214 */
3215
3216 /* Driver Binding Search */
3217 for (i = 0; i < count; ++i) {
3218 if (buffer[i]) {
3219 r = efi_bind_controller(controller_handle,
3220 buffer[i],
3221 remain_device_path);
3222 if (r == EFI_SUCCESS)
3223 ++connected;
3224 }
3225 }
3226
3227 efi_free_pool(buffer);
3228 if (!connected)
3229 return EFI_NOT_FOUND;
3230 return EFI_SUCCESS;
3231}
3232
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003233/**
Mario Six8fac2912018-07-10 08:40:17 +02003234 * efi_connect_controller() - connect a controller to a driver
3235 * @controller_handle: handle of the controller
3236 * @driver_image_handle: handle of the driver
3237 * @remain_device_path: device path of a child controller
3238 * @recursive: true to connect all child controllers
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003239 *
3240 * This function implements the ConnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02003241 *
3242 * See the Unified Extensible Firmware Interface (UEFI) specification for
3243 * details.
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003244 *
3245 * First all driver binding protocol handles are tried for binding drivers.
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003246 * Afterwards all handles that have opened a protocol of the controller
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003247 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3248 *
Mario Six8fac2912018-07-10 08:40:17 +02003249 * Return: status code
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003250 */
3251static efi_status_t EFIAPI efi_connect_controller(
3252 efi_handle_t controller_handle,
3253 efi_handle_t *driver_image_handle,
3254 struct efi_device_path *remain_device_path,
3255 bool recursive)
3256{
3257 efi_status_t r;
3258 efi_status_t ret = EFI_NOT_FOUND;
3259 struct efi_object *efiobj;
3260
Heinrich Schuchardt7c89fb02018-12-09 16:39:20 +01003261 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003262 remain_device_path, recursive);
3263
3264 efiobj = efi_search_obj(controller_handle);
3265 if (!efiobj) {
3266 ret = EFI_INVALID_PARAMETER;
3267 goto out;
3268 }
3269
3270 r = efi_connect_single_controller(controller_handle,
3271 driver_image_handle,
3272 remain_device_path);
3273 if (r == EFI_SUCCESS)
3274 ret = EFI_SUCCESS;
3275 if (recursive) {
3276 struct efi_handler *handler;
3277 struct efi_open_protocol_info_item *item;
3278
3279 list_for_each_entry(handler, &efiobj->protocols, link) {
3280 list_for_each_entry(item, &handler->open_infos, link) {
3281 if (item->info.attributes &
3282 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3283 r = EFI_CALL(efi_connect_controller(
3284 item->info.controller_handle,
3285 driver_image_handle,
3286 remain_device_path,
3287 recursive));
3288 if (r == EFI_SUCCESS)
3289 ret = EFI_SUCCESS;
3290 }
3291 }
3292 }
3293 }
3294 /* Check for child controller specified by end node */
3295 if (ret != EFI_SUCCESS && remain_device_path &&
3296 remain_device_path->type == DEVICE_PATH_TYPE_END)
3297 ret = EFI_SUCCESS;
3298out:
3299 return EFI_EXIT(ret);
3300}
3301
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003302/**
Mario Six8fac2912018-07-10 08:40:17 +02003303 * efi_reinstall_protocol_interface() - reinstall protocol interface
3304 * @handle: handle on which the protocol shall be reinstalled
3305 * @protocol: GUID of the protocol to be installed
3306 * @old_interface: interface to be removed
3307 * @new_interface: interface to be installed
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003308 *
3309 * This function implements the ReinstallProtocolInterface service.
Mario Six8fac2912018-07-10 08:40:17 +02003310 *
3311 * See the Unified Extensible Firmware Interface (UEFI) specification for
3312 * details.
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003313 *
3314 * The old interface is uninstalled. The new interface is installed.
3315 * Drivers are connected.
3316 *
Mario Six8fac2912018-07-10 08:40:17 +02003317 * Return: status code
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003318 */
3319static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3320 efi_handle_t handle, const efi_guid_t *protocol,
3321 void *old_interface, void *new_interface)
3322{
3323 efi_status_t ret;
3324
3325 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
3326 new_interface);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02003327
3328 /* Uninstall protocol but do not delete handle */
3329 ret = efi_uninstall_protocol(handle, protocol, old_interface);
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003330 if (ret != EFI_SUCCESS)
3331 goto out;
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02003332
3333 /* Install the new protocol */
3334 ret = efi_add_protocol(handle, protocol, new_interface);
3335 /*
3336 * The UEFI spec does not specify what should happen to the handle
3337 * if in case of an error no protocol interface remains on the handle.
3338 * So let's do nothing here.
3339 */
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003340 if (ret != EFI_SUCCESS)
3341 goto out;
3342 /*
3343 * The returned status code has to be ignored.
3344 * Do not create an error if no suitable driver for the handle exists.
3345 */
3346 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3347out:
3348 return EFI_EXIT(ret);
3349}
3350
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003351/**
Mario Six8fac2912018-07-10 08:40:17 +02003352 * efi_get_child_controllers() - get all child controllers associated to a driver
3353 * @efiobj: handle of the controller
3354 * @driver_handle: handle of the driver
3355 * @number_of_children: number of child controllers
3356 * @child_handle_buffer: handles of the the child controllers
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003357 *
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003358 * The allocated buffer has to be freed with free().
3359 *
Mario Six8fac2912018-07-10 08:40:17 +02003360 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003361 */
3362static efi_status_t efi_get_child_controllers(
3363 struct efi_object *efiobj,
3364 efi_handle_t driver_handle,
3365 efi_uintn_t *number_of_children,
3366 efi_handle_t **child_handle_buffer)
3367{
3368 struct efi_handler *handler;
3369 struct efi_open_protocol_info_item *item;
3370 efi_uintn_t count = 0, i;
3371 bool duplicate;
3372
3373 /* Count all child controller associations */
3374 list_for_each_entry(handler, &efiobj->protocols, link) {
3375 list_for_each_entry(item, &handler->open_infos, link) {
3376 if (item->info.agent_handle == driver_handle &&
3377 item->info.attributes &
3378 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3379 ++count;
3380 }
3381 }
3382 /*
3383 * Create buffer. In case of duplicate child controller assignments
3384 * the buffer will be too large. But that does not harm.
3385 */
3386 *number_of_children = 0;
3387 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3388 if (!*child_handle_buffer)
3389 return EFI_OUT_OF_RESOURCES;
3390 /* Copy unique child handles */
3391 list_for_each_entry(handler, &efiobj->protocols, link) {
3392 list_for_each_entry(item, &handler->open_infos, link) {
3393 if (item->info.agent_handle == driver_handle &&
3394 item->info.attributes &
3395 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3396 /* Check this is a new child controller */
3397 duplicate = false;
3398 for (i = 0; i < *number_of_children; ++i) {
3399 if ((*child_handle_buffer)[i] ==
3400 item->info.controller_handle)
3401 duplicate = true;
3402 }
3403 /* Copy handle to buffer */
3404 if (!duplicate) {
3405 i = (*number_of_children)++;
3406 (*child_handle_buffer)[i] =
3407 item->info.controller_handle;
3408 }
3409 }
3410 }
3411 }
3412 return EFI_SUCCESS;
3413}
3414
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003415/**
Mario Six8fac2912018-07-10 08:40:17 +02003416 * efi_disconnect_controller() - disconnect a controller from a driver
3417 * @controller_handle: handle of the controller
3418 * @driver_image_handle: handle of the driver
3419 * @child_handle: handle of the child to destroy
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003420 *
3421 * This function implements the DisconnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02003422 *
3423 * See the Unified Extensible Firmware Interface (UEFI) specification for
3424 * details.
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003425 *
Mario Six8fac2912018-07-10 08:40:17 +02003426 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003427 */
3428static efi_status_t EFIAPI efi_disconnect_controller(
3429 efi_handle_t controller_handle,
3430 efi_handle_t driver_image_handle,
3431 efi_handle_t child_handle)
3432{
3433 struct efi_driver_binding_protocol *binding_protocol;
3434 efi_handle_t *child_handle_buffer = NULL;
3435 size_t number_of_children = 0;
3436 efi_status_t r;
3437 size_t stop_count = 0;
3438 struct efi_object *efiobj;
3439
3440 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3441 child_handle);
3442
3443 efiobj = efi_search_obj(controller_handle);
3444 if (!efiobj) {
3445 r = EFI_INVALID_PARAMETER;
3446 goto out;
3447 }
3448
3449 if (child_handle && !efi_search_obj(child_handle)) {
3450 r = EFI_INVALID_PARAMETER;
3451 goto out;
3452 }
3453
3454 /* If no driver handle is supplied, disconnect all drivers */
3455 if (!driver_image_handle) {
3456 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3457 goto out;
3458 }
3459
3460 /* Create list of child handles */
3461 if (child_handle) {
3462 number_of_children = 1;
3463 child_handle_buffer = &child_handle;
3464 } else {
3465 efi_get_child_controllers(efiobj,
3466 driver_image_handle,
3467 &number_of_children,
3468 &child_handle_buffer);
3469 }
3470
3471 /* Get the driver binding protocol */
3472 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3473 &efi_guid_driver_binding_protocol,
3474 (void **)&binding_protocol,
3475 driver_image_handle, NULL,
3476 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3477 if (r != EFI_SUCCESS)
3478 goto out;
3479 /* Remove the children */
3480 if (number_of_children) {
3481 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3482 controller_handle,
3483 number_of_children,
3484 child_handle_buffer));
3485 if (r == EFI_SUCCESS)
3486 ++stop_count;
3487 }
3488 /* Remove the driver */
3489 if (!child_handle)
3490 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3491 controller_handle,
3492 0, NULL));
3493 if (r == EFI_SUCCESS)
3494 ++stop_count;
3495 EFI_CALL(efi_close_protocol(driver_image_handle,
3496 &efi_guid_driver_binding_protocol,
3497 driver_image_handle, NULL));
3498
3499 if (stop_count)
3500 r = EFI_SUCCESS;
3501 else
3502 r = EFI_NOT_FOUND;
3503out:
3504 if (!child_handle)
3505 free(child_handle_buffer);
3506 return EFI_EXIT(r);
3507}
3508
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003509static struct efi_boot_services efi_boot_services = {
Alexander Grafc15d9212016-03-04 01:09:59 +01003510 .hdr = {
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +02003511 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3512 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +02003513 .headersize = sizeof(struct efi_boot_services),
Alexander Grafc15d9212016-03-04 01:09:59 +01003514 },
3515 .raise_tpl = efi_raise_tpl,
3516 .restore_tpl = efi_restore_tpl,
3517 .allocate_pages = efi_allocate_pages_ext,
3518 .free_pages = efi_free_pages_ext,
3519 .get_memory_map = efi_get_memory_map_ext,
Stefan Brüns5a09aef2016-10-09 22:17:18 +02003520 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns67b67d92016-10-09 22:17:26 +02003521 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +02003522 .create_event = efi_create_event_ext,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +02003523 .set_timer = efi_set_timer_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003524 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02003525 .signal_event = efi_signal_event_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003526 .close_event = efi_close_event,
3527 .check_event = efi_check_event,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01003528 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01003529 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01003530 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01003531 .handle_protocol = efi_handle_protocol,
3532 .reserved = NULL,
3533 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02003534 .locate_handle = efi_locate_handle_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003535 .locate_device_path = efi_locate_device_path,
Alexander Grafc5c11632016-08-19 01:23:24 +02003536 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003537 .load_image = efi_load_image,
3538 .start_image = efi_start_image,
Alexander Graf988c0662016-05-20 23:28:23 +02003539 .exit = efi_exit,
Alexander Grafc15d9212016-03-04 01:09:59 +01003540 .unload_image = efi_unload_image,
3541 .exit_boot_services = efi_exit_boot_services,
3542 .get_next_monotonic_count = efi_get_next_monotonic_count,
3543 .stall = efi_stall,
3544 .set_watchdog_timer = efi_set_watchdog_timer,
3545 .connect_controller = efi_connect_controller,
3546 .disconnect_controller = efi_disconnect_controller,
3547 .open_protocol = efi_open_protocol,
3548 .close_protocol = efi_close_protocol,
3549 .open_protocol_information = efi_open_protocol_information,
3550 .protocols_per_handle = efi_protocols_per_handle,
3551 .locate_handle_buffer = efi_locate_handle_buffer,
3552 .locate_protocol = efi_locate_protocol,
Heinrich Schuchardt91064592018-02-18 15:17:49 +01003553 .install_multiple_protocol_interfaces =
3554 efi_install_multiple_protocol_interfaces,
3555 .uninstall_multiple_protocol_interfaces =
3556 efi_uninstall_multiple_protocol_interfaces,
Alexander Grafc15d9212016-03-04 01:09:59 +01003557 .calculate_crc32 = efi_calculate_crc32,
3558 .copy_mem = efi_copy_mem,
3559 .set_mem = efi_set_mem,
Heinrich Schuchardt717c4582018-02-04 23:05:13 +01003560 .create_event_ex = efi_create_event_ex,
Alexander Grafc15d9212016-03-04 01:09:59 +01003561};
3562
Heinrich Schuchardt27685f72018-06-28 12:45:30 +02003563static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
Alexander Grafc15d9212016-03-04 01:09:59 +01003564
Alexander Graf393dd912016-10-14 13:45:30 +02003565struct efi_system_table __efi_runtime_data systab = {
Alexander Grafc15d9212016-03-04 01:09:59 +01003566 .hdr = {
3567 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +02003568 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +02003569 .headersize = sizeof(struct efi_system_table),
Alexander Grafc15d9212016-03-04 01:09:59 +01003570 },
Heinrich Schuchardt27685f72018-06-28 12:45:30 +02003571 .fw_vendor = firmware_vendor,
3572 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
Heinrich Schuchardt91064592018-02-18 15:17:49 +01003573 .con_in = (void *)&efi_con_in,
3574 .con_out = (void *)&efi_con_out,
3575 .std_err = (void *)&efi_con_out,
3576 .runtime = (void *)&efi_runtime_services,
3577 .boottime = (void *)&efi_boot_services,
Alexander Grafc15d9212016-03-04 01:09:59 +01003578 .nr_tables = 0,
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003579 .tables = NULL,
Alexander Grafc15d9212016-03-04 01:09:59 +01003580};
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003581
3582/**
3583 * efi_initialize_system_table() - Initialize system table
3584 *
Heinrich Schuchardt7b4b2a22018-09-03 05:00:43 +02003585 * Return: status code
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003586 */
3587efi_status_t efi_initialize_system_table(void)
3588{
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003589 efi_status_t ret;
3590
3591 /* Allocate configuration table array */
3592 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3593 EFI_MAX_CONFIGURATION_TABLES *
3594 sizeof(struct efi_configuration_table),
3595 (void **)&systab.tables);
3596
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003597 /* Set CRC32 field in table headers */
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003598 efi_update_table_header_crc32(&systab.hdr);
3599 efi_update_table_header_crc32(&efi_runtime_services.hdr);
3600 efi_update_table_header_crc32(&efi_boot_services.hdr);
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003601
3602 return ret;
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003603}