blob: c7e2ecbf00f60722c9ead08c3a4aacefb3fccce7 [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 Schuchardtea0f6a82019-06-07 07:43:24 +02001071 event->event->is_signaled = false;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001072 efi_signal_event(event->event, true);
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001073 }
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001074 }
1075
Heinrich Schuchardt3d2abc32018-01-11 08:16:01 +01001076 if (!guidcmp(&efi_guid_device_path, protocol))
1077 EFI_PRINT("installed device path '%pD'\n", protocol_interface);
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01001078 return EFI_SUCCESS;
Heinrich Schuchardt5aef61d2017-10-26 19:25:53 +02001079}
1080
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001081/**
Mario Six8fac2912018-07-10 08:40:17 +02001082 * efi_install_protocol_interface() - install protocol interface
1083 * @handle: handle on which the protocol shall be installed
1084 * @protocol: GUID of the protocol to be installed
1085 * @protocol_interface_type: type of the interface to be installed,
1086 * always EFI_NATIVE_INTERFACE
1087 * @protocol_interface: interface of the protocol implementation
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001088 *
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001089 * This function implements the InstallProtocolInterface service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001090 *
Mario Six8fac2912018-07-10 08:40:17 +02001091 * See the Unified Extensible Firmware Interface (UEFI) specification for
1092 * details.
1093 *
1094 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001095 */
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001096static efi_status_t EFIAPI efi_install_protocol_interface(
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02001097 efi_handle_t *handle, const efi_guid_t *protocol,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001098 int protocol_interface_type, void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01001099{
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001100 efi_status_t r;
1101
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001102 EFI_ENTRY("%p, %pUl, %d, %p", handle, protocol, protocol_interface_type,
1103 protocol_interface);
1104
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001105 if (!handle || !protocol ||
1106 protocol_interface_type != EFI_NATIVE_INTERFACE) {
1107 r = EFI_INVALID_PARAMETER;
1108 goto out;
1109 }
1110
1111 /* Create new handle if requested. */
1112 if (!*handle) {
Heinrich Schuchardtcd522cb2017-08-27 00:51:09 +02001113 r = efi_create_handle(handle);
1114 if (r != EFI_SUCCESS)
1115 goto out;
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02001116 EFI_PRINT("new handle %p\n", *handle);
Heinrich Schuchardt50f02102017-10-26 19:25:43 +02001117 } else {
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02001118 EFI_PRINT("handle %p\n", *handle);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001119 }
Heinrich Schuchardt865d5f32017-10-26 19:25:54 +02001120 /* Add new protocol */
1121 r = efi_add_protocol(*handle, protocol, protocol_interface);
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001122out:
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01001123 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01001124}
xypron.glpk@gmx.de0581fa82017-07-11 22:06:16 +02001125
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001126/**
Mario Six8fac2912018-07-10 08:40:17 +02001127 * efi_get_drivers() - get all drivers associated to a controller
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001128 * @handle: handle of the controller
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001129 * @protocol: protocol GUID (optional)
Mario Six8fac2912018-07-10 08:40:17 +02001130 * @number_of_drivers: number of child controllers
1131 * @driver_handle_buffer: handles of the the drivers
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001132 *
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001133 * The allocated buffer has to be freed with free().
1134 *
Mario Six8fac2912018-07-10 08:40:17 +02001135 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001136 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001137static efi_status_t efi_get_drivers(efi_handle_t handle,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001138 const efi_guid_t *protocol,
1139 efi_uintn_t *number_of_drivers,
1140 efi_handle_t **driver_handle_buffer)
1141{
1142 struct efi_handler *handler;
1143 struct efi_open_protocol_info_item *item;
1144 efi_uintn_t count = 0, i;
1145 bool duplicate;
1146
1147 /* Count all driver associations */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001148 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001149 if (protocol && guidcmp(handler->guid, protocol))
1150 continue;
1151 list_for_each_entry(item, &handler->open_infos, link) {
1152 if (item->info.attributes &
1153 EFI_OPEN_PROTOCOL_BY_DRIVER)
1154 ++count;
1155 }
1156 }
Heinrich Schuchardt7416aef2019-06-02 01:43:33 +02001157 *number_of_drivers = 0;
1158 if (!count) {
1159 *driver_handle_buffer = NULL;
1160 return EFI_SUCCESS;
1161 }
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001162 /*
1163 * Create buffer. In case of duplicate driver assignments the buffer
1164 * will be too large. But that does not harm.
1165 */
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001166 *driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
1167 if (!*driver_handle_buffer)
1168 return EFI_OUT_OF_RESOURCES;
1169 /* Collect unique driver handles */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001170 list_for_each_entry(handler, &handle->protocols, link) {
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001171 if (protocol && guidcmp(handler->guid, protocol))
1172 continue;
1173 list_for_each_entry(item, &handler->open_infos, link) {
1174 if (item->info.attributes &
1175 EFI_OPEN_PROTOCOL_BY_DRIVER) {
1176 /* Check this is a new driver */
1177 duplicate = false;
1178 for (i = 0; i < *number_of_drivers; ++i) {
1179 if ((*driver_handle_buffer)[i] ==
1180 item->info.agent_handle)
1181 duplicate = true;
1182 }
1183 /* Copy handle to buffer */
1184 if (!duplicate) {
1185 i = (*number_of_drivers)++;
1186 (*driver_handle_buffer)[i] =
1187 item->info.agent_handle;
1188 }
1189 }
1190 }
1191 }
1192 return EFI_SUCCESS;
1193}
1194
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001195/**
Mario Six8fac2912018-07-10 08:40:17 +02001196 * efi_disconnect_all_drivers() - disconnect all drivers from a controller
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001197 * @handle: handle of the controller
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001198 * @protocol: protocol GUID (optional)
Mario Six8fac2912018-07-10 08:40:17 +02001199 * @child_handle: handle of the child to destroy
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001200 *
1201 * This function implements the DisconnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02001202 *
1203 * See the Unified Extensible Firmware Interface (UEFI) specification for
1204 * details.
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001205 *
Mario Six8fac2912018-07-10 08:40:17 +02001206 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001207 */
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001208static efi_status_t efi_disconnect_all_drivers
1209 (efi_handle_t handle,
1210 const efi_guid_t *protocol,
1211 efi_handle_t child_handle)
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001212{
1213 efi_uintn_t number_of_drivers;
1214 efi_handle_t *driver_handle_buffer;
1215 efi_status_t r, ret;
1216
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001217 ret = efi_get_drivers(handle, protocol, &number_of_drivers,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001218 &driver_handle_buffer);
1219 if (ret != EFI_SUCCESS)
1220 return ret;
Heinrich Schuchardt7416aef2019-06-02 01:43:33 +02001221 if (!number_of_drivers)
1222 return EFI_SUCCESS;
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001223 ret = EFI_NOT_FOUND;
1224 while (number_of_drivers) {
1225 r = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001226 handle,
Heinrich Schuchardte9943282018-01-11 08:16:04 +01001227 driver_handle_buffer[--number_of_drivers],
1228 child_handle));
1229 if (r == EFI_SUCCESS)
1230 ret = r;
1231 }
1232 free(driver_handle_buffer);
1233 return ret;
1234}
1235
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001236/**
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001237 * efi_uninstall_protocol() - uninstall protocol interface
1238 *
Mario Six8fac2912018-07-10 08:40:17 +02001239 * @handle: handle from which the protocol shall be removed
1240 * @protocol: GUID of the protocol to be removed
1241 * @protocol_interface: interface to be removed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001242 *
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001243 * This function DOES NOT delete a handle without installed protocol.
Mario Six8fac2912018-07-10 08:40:17 +02001244 *
1245 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001246 */
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001247static efi_status_t efi_uninstall_protocol
1248 (efi_handle_t handle, const efi_guid_t *protocol,
1249 void *protocol_interface)
Alexander Grafc15d9212016-03-04 01:09:59 +01001250{
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001251 struct efi_object *efiobj;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001252 struct efi_handler *handler;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001253 struct efi_open_protocol_info_item *item;
1254 struct efi_open_protocol_info_item *pos;
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001255 efi_status_t r;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001256
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001257 /* Check handle */
1258 efiobj = efi_search_obj(handle);
1259 if (!efiobj) {
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001260 r = EFI_INVALID_PARAMETER;
1261 goto out;
1262 }
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001263 /* Find the protocol on the handle */
1264 r = efi_search_protocol(handle, protocol, &handler);
1265 if (r != EFI_SUCCESS)
1266 goto out;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001267 /* Disconnect controllers */
1268 efi_disconnect_all_drivers(efiobj, protocol, NULL);
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001269 /* Close protocol */
1270 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
1271 if (item->info.attributes ==
1272 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL ||
1273 item->info.attributes == EFI_OPEN_PROTOCOL_GET_PROTOCOL ||
1274 item->info.attributes == EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
1275 list_del(&item->link);
1276 }
1277 if (!list_empty(&handler->open_infos)) {
Heinrich Schuchardt7538c272017-10-26 19:25:56 +02001278 r = EFI_ACCESS_DENIED;
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001279 goto out;
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001280 }
Heinrich Schuchardt86637f32018-01-11 08:16:05 +01001281 r = efi_remove_protocol(handle, protocol, protocol_interface);
xypron.glpk@gmx.de2cfad482017-07-11 22:06:17 +02001282out:
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001283 return r;
Alexander Grafc15d9212016-03-04 01:09:59 +01001284}
1285
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001286/**
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02001287 * efi_uninstall_protocol_interface() - uninstall protocol interface
1288 * @handle: handle from which the protocol shall be removed
1289 * @protocol: GUID of the protocol to be removed
1290 * @protocol_interface: interface to be removed
1291 *
1292 * This function implements the UninstallProtocolInterface service.
1293 *
1294 * See the Unified Extensible Firmware Interface (UEFI) specification for
1295 * details.
1296 *
1297 * Return: status code
1298 */
1299static efi_status_t EFIAPI efi_uninstall_protocol_interface
1300 (efi_handle_t handle, const efi_guid_t *protocol,
1301 void *protocol_interface)
1302{
1303 efi_status_t ret;
1304
1305 EFI_ENTRY("%p, %pUl, %p", handle, protocol, protocol_interface);
1306
1307 ret = efi_uninstall_protocol(handle, protocol, protocol_interface);
1308 if (ret != EFI_SUCCESS)
1309 goto out;
1310
1311 /* If the last protocol has been removed, delete the handle. */
1312 if (list_empty(&handle->protocols)) {
1313 list_del(&handle->link);
1314 free(handle);
1315 }
1316out:
1317 return EFI_EXIT(ret);
1318}
1319
1320/**
Mario Six8fac2912018-07-10 08:40:17 +02001321 * efi_register_protocol_notify() - register an event for notification when a
1322 * protocol is installed.
1323 * @protocol: GUID of the protocol whose installation shall be notified
1324 * @event: event to be signaled upon installation of the protocol
1325 * @registration: key for retrieving the registration information
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001326 *
1327 * This function implements the RegisterProtocolNotify service.
1328 * See the Unified Extensible Firmware Interface (UEFI) specification
1329 * for details.
1330 *
Mario Six8fac2912018-07-10 08:40:17 +02001331 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001332 */
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001333static efi_status_t EFIAPI efi_register_protocol_notify(
1334 const efi_guid_t *protocol,
1335 struct efi_event *event,
1336 void **registration)
Alexander Grafc15d9212016-03-04 01:09:59 +01001337{
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001338 struct efi_register_notify_event *item;
1339 efi_status_t ret = EFI_SUCCESS;
1340
Rob Clark238f88c2017-09-13 18:05:41 -04001341 EFI_ENTRY("%pUl, %p, %p", protocol, event, registration);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001342
1343 if (!protocol || !event || !registration) {
1344 ret = EFI_INVALID_PARAMETER;
1345 goto out;
1346 }
1347
1348 item = calloc(1, sizeof(struct efi_register_notify_event));
1349 if (!item) {
1350 ret = EFI_OUT_OF_RESOURCES;
1351 goto out;
1352 }
1353
1354 item->event = event;
1355 memcpy(&item->protocol, protocol, sizeof(efi_guid_t));
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001356 INIT_LIST_HEAD(&item->handles);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001357
1358 list_add_tail(&item->link, &efi_register_notify_events);
1359
1360 *registration = item;
1361out:
1362 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001363}
1364
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001365/**
Mario Six8fac2912018-07-10 08:40:17 +02001366 * efi_search() - determine if an EFI handle implements a protocol
1367 * @search_type: selection criterion
1368 * @protocol: GUID of the protocol
1369 * @search_key: registration key
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001370 * @handle: handle
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001371 *
1372 * See the documentation of the LocateHandle service in the UEFI specification.
1373 *
Mario Six8fac2912018-07-10 08:40:17 +02001374 * Return: 0 if the handle implements the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001375 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001376static int efi_search(enum efi_locate_search_type search_type,
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001377 const efi_guid_t *protocol, efi_handle_t handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01001378{
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001379 efi_status_t ret;
Alexander Grafc15d9212016-03-04 01:09:59 +01001380
1381 switch (search_type) {
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001382 case ALL_HANDLES:
Alexander Grafc15d9212016-03-04 01:09:59 +01001383 return 0;
Heinrich Schuchardt68845f02017-11-06 21:17:42 +01001384 case BY_PROTOCOL:
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02001385 ret = efi_search_protocol(handle, protocol, NULL);
Heinrich Schuchardt6a430752017-10-26 19:25:55 +02001386 return (ret != EFI_SUCCESS);
1387 default:
1388 /* Invalid search type */
Alexander Grafc15d9212016-03-04 01:09:59 +01001389 return -1;
1390 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001391}
1392
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001393/**
Heinrich Schuchardteb616522019-05-29 07:46:33 +02001394 * efi_check_register_notify_event() - check if registration key is valid
1395 *
1396 * Check that a pointer is a valid registration key as returned by
1397 * RegisterProtocolNotify().
1398 *
1399 * @key: registration key
1400 * Return: valid registration key or NULL
1401 */
1402static struct efi_register_notify_event *efi_check_register_notify_event
1403 (void *key)
1404{
1405 struct efi_register_notify_event *event;
1406
1407 list_for_each_entry(event, &efi_register_notify_events, link) {
1408 if (event == (struct efi_register_notify_event *)key)
1409 return event;
1410 }
1411 return NULL;
1412}
1413
1414/**
Mario Six8fac2912018-07-10 08:40:17 +02001415 * efi_locate_handle() - locate handles implementing a protocol
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001416 *
1417 * @search_type: selection criterion
1418 * @protocol: GUID of the protocol
1419 * @search_key: registration key
1420 * @buffer_size: size of the buffer to receive the handles in bytes
1421 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001422 *
1423 * This function is meant for U-Boot internal calls. For the API implementation
1424 * of the LocateHandle service see efi_locate_handle_ext.
1425 *
Mario Six8fac2912018-07-10 08:40:17 +02001426 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001427 */
xypron.glpk@gmx.decab4dd52017-08-09 20:55:00 +02001428static efi_status_t efi_locate_handle(
Alexander Grafc15d9212016-03-04 01:09:59 +01001429 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001430 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001431 efi_uintn_t *buffer_size, efi_handle_t *buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01001432{
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001433 struct efi_object *efiobj;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001434 efi_uintn_t size = 0;
Heinrich Schuchardteb616522019-05-29 07:46:33 +02001435 struct efi_register_notify_event *event;
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001436 struct efi_protocol_notification *handle = NULL;
Alexander Grafc15d9212016-03-04 01:09:59 +01001437
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001438 /* Check parameters */
1439 switch (search_type) {
1440 case ALL_HANDLES:
1441 break;
1442 case BY_REGISTER_NOTIFY:
1443 if (!search_key)
1444 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001445 /* Check that the registration key is valid */
Heinrich Schuchardteb616522019-05-29 07:46:33 +02001446 event = efi_check_register_notify_event(search_key);
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001447 if (!event)
1448 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt6eec42d2019-05-04 17:27:54 +02001449 break;
Heinrich Schuchardtec66fc82017-11-06 21:17:49 +01001450 case BY_PROTOCOL:
1451 if (!protocol)
1452 return EFI_INVALID_PARAMETER;
1453 break;
1454 default:
1455 return EFI_INVALID_PARAMETER;
1456 }
1457
Alexander Grafc15d9212016-03-04 01:09:59 +01001458 /* Count how much space we need */
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001459 if (search_type == BY_REGISTER_NOTIFY) {
1460 if (list_empty(&event->handles))
1461 return EFI_NOT_FOUND;
1462 handle = list_first_entry(&event->handles,
1463 struct efi_protocol_notification,
1464 link);
1465 efiobj = handle->handle;
1466 size += sizeof(void *);
1467 } else {
1468 list_for_each_entry(efiobj, &efi_obj_list, link) {
1469 if (!efi_search(search_type, protocol, efiobj))
1470 size += sizeof(void *);
1471 }
1472 if (size == 0)
1473 return EFI_NOT_FOUND;
Alexander Grafc15d9212016-03-04 01:09:59 +01001474 }
1475
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001476 if (!buffer_size)
1477 return EFI_INVALID_PARAMETER;
1478
Alexander Grafc15d9212016-03-04 01:09:59 +01001479 if (*buffer_size < size) {
1480 *buffer_size = size;
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001481 return EFI_BUFFER_TOO_SMALL;
Alexander Grafc15d9212016-03-04 01:09:59 +01001482 }
1483
Rob Clarkcdee3372017-08-06 14:10:07 -04001484 *buffer_size = size;
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001485
Heinrich Schuchardtc97f9472019-05-10 19:03:49 +02001486 /* The buffer size is sufficient but there is no buffer */
Heinrich Schuchardtc0ee5f32019-05-04 17:37:32 +02001487 if (!buffer)
1488 return EFI_INVALID_PARAMETER;
Rob Clarkcdee3372017-08-06 14:10:07 -04001489
Alexander Grafc15d9212016-03-04 01:09:59 +01001490 /* Then fill the array */
Heinrich Schuchardtd375e752019-05-21 18:19:01 +02001491 if (search_type == BY_REGISTER_NOTIFY) {
1492 *buffer = efiobj;
1493 list_del(&handle->link);
1494 } else {
1495 list_for_each_entry(efiobj, &efi_obj_list, link) {
1496 if (!efi_search(search_type, protocol, efiobj))
1497 *buffer++ = efiobj;
1498 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001499 }
1500
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001501 return EFI_SUCCESS;
1502}
1503
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001504/**
Mario Six8fac2912018-07-10 08:40:17 +02001505 * efi_locate_handle_ext() - locate handles implementing a protocol.
1506 * @search_type: selection criterion
1507 * @protocol: GUID of the protocol
1508 * @search_key: registration key
1509 * @buffer_size: size of the buffer to receive the handles in bytes
1510 * @buffer: buffer to receive the relevant handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001511 *
1512 * This function implements the LocateHandle service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001513 *
Mario Six8fac2912018-07-10 08:40:17 +02001514 * See the Unified Extensible Firmware Interface (UEFI) specification for
1515 * details.
1516 *
1517 * Return: 0 if the handle implements the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001518 */
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001519static efi_status_t EFIAPI efi_locate_handle_ext(
1520 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02001521 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01001522 efi_uintn_t *buffer_size, efi_handle_t *buffer)
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001523{
Rob Clark238f88c2017-09-13 18:05:41 -04001524 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02001525 buffer_size, buffer);
1526
1527 return EFI_EXIT(efi_locate_handle(search_type, protocol, search_key,
1528 buffer_size, buffer));
Alexander Grafc15d9212016-03-04 01:09:59 +01001529}
1530
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001531/**
Mario Six8fac2912018-07-10 08:40:17 +02001532 * efi_remove_configuration_table() - collapses configuration table entries,
1533 * removing index i
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001534 *
Mario Six8fac2912018-07-10 08:40:17 +02001535 * @i: index of the table entry to be removed
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001536 */
Alexander Graffe3366f2017-07-26 13:41:04 +02001537static void efi_remove_configuration_table(int i)
1538{
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001539 struct efi_configuration_table *this = &systab.tables[i];
1540 struct efi_configuration_table *next = &systab.tables[i + 1];
1541 struct efi_configuration_table *end = &systab.tables[systab.nr_tables];
Alexander Graffe3366f2017-07-26 13:41:04 +02001542
1543 memmove(this, next, (ulong)end - (ulong)next);
1544 systab.nr_tables--;
1545}
1546
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001547/**
Mario Six8fac2912018-07-10 08:40:17 +02001548 * efi_install_configuration_table() - adds, updates, or removes a
1549 * configuration table
1550 * @guid: GUID of the installed table
1551 * @table: table to be installed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001552 *
1553 * This function is used for internal calls. For the API implementation of the
1554 * InstallConfigurationTable service see efi_install_configuration_table_ext.
1555 *
Mario Six8fac2912018-07-10 08:40:17 +02001556 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001557 */
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001558efi_status_t efi_install_configuration_table(const efi_guid_t *guid,
1559 void *table)
Alexander Grafc15d9212016-03-04 01:09:59 +01001560{
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001561 struct efi_event *evt;
Alexander Grafc15d9212016-03-04 01:09:59 +01001562 int i;
1563
Heinrich Schuchardt754ce102018-02-18 00:08:00 +01001564 if (!guid)
1565 return EFI_INVALID_PARAMETER;
1566
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001567 /* Check for GUID override */
Alexander Grafc15d9212016-03-04 01:09:59 +01001568 for (i = 0; i < systab.nr_tables; i++) {
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001569 if (!guidcmp(guid, &systab.tables[i].guid)) {
Alexander Graffe3366f2017-07-26 13:41:04 +02001570 if (table)
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001571 systab.tables[i].table = table;
Alexander Graffe3366f2017-07-26 13:41:04 +02001572 else
1573 efi_remove_configuration_table(i);
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001574 goto out;
Alexander Grafc15d9212016-03-04 01:09:59 +01001575 }
1576 }
1577
Alexander Graffe3366f2017-07-26 13:41:04 +02001578 if (!table)
1579 return EFI_NOT_FOUND;
1580
Alexander Grafc15d9212016-03-04 01:09:59 +01001581 /* No override, check for overflow */
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001582 if (i >= EFI_MAX_CONFIGURATION_TABLES)
Alexander Grafc5c11632016-08-19 01:23:24 +02001583 return EFI_OUT_OF_RESOURCES;
Alexander Grafc15d9212016-03-04 01:09:59 +01001584
1585 /* Add a new entry */
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02001586 memcpy(&systab.tables[i].guid, guid, sizeof(*guid));
1587 systab.tables[i].table = table;
Alexander Graf9982e672016-08-19 01:23:30 +02001588 systab.nr_tables = i + 1;
Alexander Grafc15d9212016-03-04 01:09:59 +01001589
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001590out:
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001591 /* systab.nr_tables may have changed. So we need to update the CRC32 */
Heinrich Schuchardtac2d4da2018-07-07 15:36:05 +02001592 efi_update_table_header_crc32(&systab.hdr);
1593
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001594 /* Notify that the configuration table was changed */
1595 list_for_each_entry(evt, &efi_events, link) {
1596 if (evt->group && !guidcmp(evt->group, guid)) {
1597 efi_signal_event(evt, false);
1598 break;
1599 }
1600 }
1601
Alexander Grafc5c11632016-08-19 01:23:24 +02001602 return EFI_SUCCESS;
Alexander Grafc15d9212016-03-04 01:09:59 +01001603}
1604
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001605/**
Mario Six8fac2912018-07-10 08:40:17 +02001606 * efi_install_configuration_table_ex() - Adds, updates, or removes a
1607 * configuration table.
1608 * @guid: GUID of the installed table
1609 * @table: table to be installed
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001610 *
1611 * This function implements the InstallConfigurationTable service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001612 *
Mario Six8fac2912018-07-10 08:40:17 +02001613 * See the Unified Extensible Firmware Interface (UEFI) specification for
1614 * details.
1615 *
1616 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001617 */
Alexander Grafc5c11632016-08-19 01:23:24 +02001618static efi_status_t EFIAPI efi_install_configuration_table_ext(efi_guid_t *guid,
1619 void *table)
1620{
Rob Clark238f88c2017-09-13 18:05:41 -04001621 EFI_ENTRY("%pUl, %p", guid, table);
Alexander Grafc5c11632016-08-19 01:23:24 +02001622 return EFI_EXIT(efi_install_configuration_table(guid, table));
1623}
1624
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001625/**
Mario Six8fac2912018-07-10 08:40:17 +02001626 * efi_setup_loaded_image() - initialize a loaded image
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001627 *
1628 * Initialize a loaded_image_info and loaded_image_info object with correct
Rob Clarkf8db9222017-09-13 18:05:33 -04001629 * protocols, boot-device, etc.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001630 *
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001631 * In case of an error *handle_ptr and *info_ptr are set to NULL and an error
1632 * code is returned.
1633 *
1634 * @device_path: device path of the loaded image
1635 * @file_path: file path of the loaded image
1636 * @handle_ptr: handle of the loaded image
1637 * @info_ptr: loaded image protocol
1638 * Return: status code
Rob Clarkf8db9222017-09-13 18:05:33 -04001639 */
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001640efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
1641 struct efi_device_path *file_path,
1642 struct efi_loaded_image_obj **handle_ptr,
1643 struct efi_loaded_image **info_ptr)
Rob Clarkf8db9222017-09-13 18:05:33 -04001644{
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001645 efi_status_t ret;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001646 struct efi_loaded_image *info = NULL;
1647 struct efi_loaded_image_obj *obj = NULL;
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001648 struct efi_device_path *dp;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001649
1650 /* In case of EFI_OUT_OF_RESOURCES avoid illegal free by caller. */
1651 *handle_ptr = NULL;
1652 *info_ptr = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001653
1654 info = calloc(1, sizeof(*info));
1655 if (!info)
1656 return EFI_OUT_OF_RESOURCES;
1657 obj = calloc(1, sizeof(*obj));
1658 if (!obj) {
1659 free(info);
1660 return EFI_OUT_OF_RESOURCES;
1661 }
Heinrich Schuchardtb27ced42019-05-01 14:20:18 +02001662 obj->header.type = EFI_OBJECT_TYPE_LOADED_IMAGE;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001663
Heinrich Schuchardt967d7de2017-11-26 14:05:23 +01001664 /* Add internal object to object list */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001665 efi_add_handle(&obj->header);
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001666
Heinrich Schuchardtc47f8702018-07-05 08:17:58 +02001667 info->revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001668 info->file_path = file_path;
Heinrich Schuchardt8a7e09d2018-08-26 15:31:52 +02001669 info->system_table = &systab;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001670
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001671 if (device_path) {
1672 info->device_handle = efi_dp_find_obj(device_path, NULL);
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001673
1674 dp = efi_dp_append(device_path, file_path);
1675 if (!dp) {
1676 ret = EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001677 goto failure;
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001678 }
1679 } else {
1680 dp = NULL;
Heinrich Schuchardtf3996be2018-01-26 06:50:54 +01001681 }
AKASHI Takahirobbe13da2019-03-27 13:40:32 +09001682 ret = efi_add_protocol(&obj->header,
1683 &efi_guid_loaded_image_device_path, dp);
1684 if (ret != EFI_SUCCESS)
1685 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001686
1687 /*
1688 * When asking for the loaded_image interface, just
1689 * return handle which points to loaded_image_info
1690 */
Heinrich Schuchardt72928722018-09-26 05:27:56 +02001691 ret = efi_add_protocol(&obj->header,
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001692 &efi_guid_loaded_image, info);
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001693 if (ret != EFI_SUCCESS)
1694 goto failure;
Rob Clarkf8db9222017-09-13 18:05:33 -04001695
Heinrich Schuchardtd20f5122019-03-19 18:58:58 +01001696 *info_ptr = info;
1697 *handle_ptr = obj;
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001698
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001699 return ret;
Heinrich Schuchardt24d3a662017-10-26 19:25:58 +02001700failure:
1701 printf("ERROR: Failure to install protocols for loaded image\n");
Heinrich Schuchardt6346a902019-02-06 19:41:29 +01001702 efi_delete_handle(&obj->header);
1703 free(info);
Heinrich Schuchardt7db9f892017-12-04 18:03:01 +01001704 return ret;
Rob Clarkf8db9222017-09-13 18:05:33 -04001705}
1706
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001707/**
Mario Six8fac2912018-07-10 08:40:17 +02001708 * efi_load_image_from_path() - load an image using a file path
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001709 *
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001710 * Read a file into a buffer allocated as EFI_BOOT_SERVICES_DATA. It is the
1711 * callers obligation to update the memory type as needed.
1712 *
1713 * @file_path: the path of the image to load
1714 * @buffer: buffer containing the loaded image
1715 * @size: size of the loaded image
1716 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001717 */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +09001718static
Rob Clarkc84c1102017-09-13 18:05:38 -04001719efi_status_t efi_load_image_from_path(struct efi_device_path *file_path,
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001720 void **buffer, efi_uintn_t *size)
Rob Clark857a1222017-09-13 18:05:35 -04001721{
1722 struct efi_file_info *info = NULL;
1723 struct efi_file_handle *f;
1724 static efi_status_t ret;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001725 u64 addr;
Heinrich Schuchardt6b06e0d2018-04-03 22:37:11 +02001726 efi_uintn_t bs;
Rob Clark857a1222017-09-13 18:05:35 -04001727
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001728 /* In case of failure nothing is returned */
1729 *buffer = NULL;
1730 *size = 0;
1731
1732 /* Open file */
Rob Clark857a1222017-09-13 18:05:35 -04001733 f = efi_file_from_path(file_path);
1734 if (!f)
1735 return EFI_DEVICE_ERROR;
1736
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001737 /* Get file size */
Rob Clark857a1222017-09-13 18:05:35 -04001738 bs = 0;
1739 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid,
1740 &bs, info));
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001741 if (ret != EFI_BUFFER_TOO_SMALL) {
1742 ret = EFI_DEVICE_ERROR;
Rob Clark857a1222017-09-13 18:05:35 -04001743 goto error;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001744 }
Rob Clark857a1222017-09-13 18:05:35 -04001745
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001746 info = malloc(bs);
1747 EFI_CALL(ret = f->getinfo(f, (efi_guid_t *)&efi_file_info_guid, &bs,
1748 info));
1749 if (ret != EFI_SUCCESS)
Rob Clark857a1222017-09-13 18:05:35 -04001750 goto error;
1751
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001752 /*
1753 * When reading the file we do not yet know if it contains an
1754 * application, a boottime driver, or a runtime driver. So here we
1755 * allocate a buffer as EFI_BOOT_SERVICES_DATA. The caller has to
1756 * update the reservation according to the image type.
1757 */
Heinrich Schuchardt6b06e0d2018-04-03 22:37:11 +02001758 bs = info->file_size;
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001759 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
1760 EFI_BOOT_SERVICES_DATA,
1761 efi_size_in_pages(bs), &addr);
Rob Clark857a1222017-09-13 18:05:35 -04001762 if (ret != EFI_SUCCESS) {
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001763 ret = EFI_OUT_OF_RESOURCES;
1764 goto error;
Rob Clark857a1222017-09-13 18:05:35 -04001765 }
1766
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001767 /* Read file */
1768 EFI_CALL(ret = f->read(f, &bs, (void *)(uintptr_t)addr));
1769 if (ret != EFI_SUCCESS)
1770 efi_free_pages(addr, efi_size_in_pages(bs));
1771 *buffer = (void *)(uintptr_t)addr;
1772 *size = bs;
1773error:
1774 EFI_CALL(f->close(f));
1775 free(info);
Rob Clark857a1222017-09-13 18:05:35 -04001776 return ret;
1777}
1778
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001779/**
Mario Six8fac2912018-07-10 08:40:17 +02001780 * efi_load_image() - load an EFI image into memory
1781 * @boot_policy: true for request originating from the boot manager
1782 * @parent_image: the caller's image handle
1783 * @file_path: the path of the image to load
1784 * @source_buffer: memory location from which the image is installed
1785 * @source_size: size of the memory area from which the image is installed
1786 * @image_handle: handle for the newly installed image
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001787 *
1788 * This function implements the LoadImage service.
Mario Six8fac2912018-07-10 08:40:17 +02001789 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001790 * See the Unified Extensible Firmware Interface (UEFI) specification
1791 * for details.
1792 *
Mario Six8fac2912018-07-10 08:40:17 +02001793 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001794 */
AKASHI Takahirob0ad9052019-03-05 14:53:31 +09001795efi_status_t EFIAPI efi_load_image(bool boot_policy,
1796 efi_handle_t parent_image,
1797 struct efi_device_path *file_path,
1798 void *source_buffer,
1799 efi_uintn_t source_size,
1800 efi_handle_t *image_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01001801{
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001802 struct efi_device_path *dp, *fp;
Tom Rini04c49062018-09-30 10:38:15 -04001803 struct efi_loaded_image *info = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +02001804 struct efi_loaded_image_obj **image_obj =
1805 (struct efi_loaded_image_obj **)image_handle;
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001806 efi_status_t ret;
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01001807 void *dest_buffer;
Alexander Grafc15d9212016-03-04 01:09:59 +01001808
Heinrich Schuchardt4cde1fa2018-04-03 22:29:30 +02001809 EFI_ENTRY("%d, %p, %pD, %p, %zd, %p", boot_policy, parent_image,
Alexander Grafc15d9212016-03-04 01:09:59 +01001810 file_path, source_buffer, source_size, image_handle);
Rob Clark857a1222017-09-13 18:05:35 -04001811
Heinrich Schuchardt2e0a7902019-05-05 16:55:06 +02001812 if (!image_handle || !efi_search_obj(parent_image)) {
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01001813 ret = EFI_INVALID_PARAMETER;
1814 goto error;
1815 }
1816
1817 if (!source_buffer && !file_path) {
1818 ret = EFI_NOT_FOUND;
1819 goto error;
1820 }
Heinrich Schuchardt2e0a7902019-05-05 16:55:06 +02001821 /* The parent image handle must refer to a loaded image */
1822 if (!parent_image->type) {
1823 ret = EFI_INVALID_PARAMETER;
1824 goto error;
1825 }
Rob Clark857a1222017-09-13 18:05:35 -04001826
1827 if (!source_buffer) {
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01001828 ret = efi_load_image_from_path(file_path, &dest_buffer,
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001829 &source_size);
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001830 if (ret != EFI_SUCCESS)
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001831 goto error;
Rob Clark857a1222017-09-13 18:05:35 -04001832 } else {
Heinrich Schuchardt78a23b52019-05-05 16:55:06 +02001833 if (!source_size) {
1834 ret = EFI_LOAD_ERROR;
1835 goto error;
1836 }
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01001837 dest_buffer = source_buffer;
Rob Clark857a1222017-09-13 18:05:35 -04001838 }
Heinrich Schuchardt28b39172019-04-20 19:24:43 +00001839 /* split file_path which contains both the device and file parts */
1840 efi_dp_split_file_path(file_path, &dp, &fp);
Heinrich Schuchardte3d3a0c2018-12-24 09:19:07 +01001841 ret = efi_setup_loaded_image(dp, fp, image_obj, &info);
Heinrich Schuchardt47e35a92019-03-04 17:50:05 +01001842 if (ret == EFI_SUCCESS)
1843 ret = efi_load_pe(*image_obj, dest_buffer, info);
1844 if (!source_buffer)
1845 /* Release buffer to which file was loaded */
1846 efi_free_pages((uintptr_t)dest_buffer,
1847 efi_size_in_pages(source_size));
1848 if (ret == EFI_SUCCESS) {
1849 info->system_table = &systab;
1850 info->parent_handle = parent_image;
1851 } else {
1852 /* The image is invalid. Release all associated resources. */
1853 efi_delete_handle(*image_handle);
1854 *image_handle = NULL;
1855 free(info);
1856 }
Heinrich Schuchardtc935c2f2018-03-07 02:40:51 +01001857error:
Heinrich Schuchardtd4d7ca92017-12-04 18:03:03 +01001858 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001859}
1860
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001861/**
Alexander Graffa5246b2018-11-15 21:23:47 +01001862 * efi_exit_caches() - fix up caches for EFI payloads if necessary
1863 */
1864static void efi_exit_caches(void)
1865{
1866#if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
1867 /*
1868 * Grub on 32bit ARM needs to have caches disabled before jumping into
1869 * a zImage, but does not know of all cache layers. Give it a hand.
1870 */
1871 if (efi_is_direct_boot)
1872 cleanup_before_linux();
1873#endif
1874}
1875
1876/**
Mario Six8fac2912018-07-10 08:40:17 +02001877 * efi_exit_boot_services() - stop all boot services
1878 * @image_handle: handle of the loaded image
1879 * @map_key: key of the memory map
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001880 *
1881 * This function implements the ExitBootServices service.
Mario Six8fac2912018-07-10 08:40:17 +02001882 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001883 * See the Unified Extensible Firmware Interface (UEFI) specification
1884 * for details.
1885 *
Mario Six8fac2912018-07-10 08:40:17 +02001886 * All timer events are disabled. For exit boot services events the
1887 * notification function is called. The boot services are disabled in the
1888 * system table.
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001889 *
Mario Six8fac2912018-07-10 08:40:17 +02001890 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001891 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01001892static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
Heinrich Schuchardt8bd4f412019-05-05 21:58:35 +02001893 efi_uintn_t map_key)
Alexander Grafc15d9212016-03-04 01:09:59 +01001894{
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001895 struct efi_event *evt;
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001896
Heinrich Schuchardt8bd4f412019-05-05 21:58:35 +02001897 EFI_ENTRY("%p, %zx", image_handle, map_key);
Alexander Grafc15d9212016-03-04 01:09:59 +01001898
Heinrich Schuchardt0f233c42018-07-02 12:53:55 +02001899 /* Check that the caller has read the current memory map */
1900 if (map_key != efi_memory_map_key)
1901 return EFI_INVALID_PARAMETER;
1902
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001903 /* Make sure that notification functions are not called anymore */
1904 efi_tpl = TPL_HIGH_LEVEL;
1905
1906 /* Check if ExitBootServices has already been called */
1907 if (!systab.boottime)
1908 return EFI_EXIT(EFI_SUCCESS);
1909
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001910 /* Add related events to the event group */
1911 list_for_each_entry(evt, &efi_events, link) {
1912 if (evt->type == EVT_SIGNAL_EXIT_BOOT_SERVICES)
1913 evt->group = &efi_guid_event_group_exit_boot_services;
1914 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001915 /* Notify that ExitBootServices is invoked. */
Heinrich Schuchardt370c7a82018-02-18 15:17:50 +01001916 list_for_each_entry(evt, &efi_events, link) {
Heinrich Schuchardtbf7f1692018-02-18 15:17:52 +01001917 if (evt->group &&
1918 !guidcmp(evt->group,
1919 &efi_guid_event_group_exit_boot_services)) {
1920 efi_signal_event(evt, false);
1921 break;
1922 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001923 }
Heinrich Schuchardt2d4c7382017-09-15 10:06:18 +02001924
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001925 /* TODO: Should persist EFI variables here */
Rob Clark15f3d742017-09-13 18:05:37 -04001926
Alexander Graf2ebeb442016-11-17 01:02:57 +01001927 board_quiesce_devices();
1928
Alexander Graffa5246b2018-11-15 21:23:47 +01001929 /* Fix up caches for EFI payloads if necessary */
1930 efi_exit_caches();
1931
Alexander Grafc15d9212016-03-04 01:09:59 +01001932 /* This stops all lingering devices */
1933 bootm_disable_interrupts();
1934
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02001935 /* Disable boot time services */
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001936 systab.con_in_handle = NULL;
1937 systab.con_in = NULL;
1938 systab.con_out_handle = NULL;
1939 systab.con_out = NULL;
1940 systab.stderr_handle = NULL;
1941 systab.std_err = NULL;
1942 systab.boottime = NULL;
1943
1944 /* Recalculate CRC32 */
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02001945 efi_update_table_header_crc32(&systab.hdr);
Heinrich Schuchardtb1fbb212018-01-19 20:24:52 +01001946
Alexander Grafc15d9212016-03-04 01:09:59 +01001947 /* Give the payload some time to boot */
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02001948 efi_set_watchdog(0);
Alexander Grafc15d9212016-03-04 01:09:59 +01001949 WATCHDOG_RESET();
1950
1951 return EFI_EXIT(EFI_SUCCESS);
1952}
1953
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001954/**
Mario Six8fac2912018-07-10 08:40:17 +02001955 * efi_get_next_monotonic_count() - get next value of the counter
1956 * @count: returned value of the counter
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001957 *
1958 * This function implements the NextMonotonicCount service.
Mario Six8fac2912018-07-10 08:40:17 +02001959 *
1960 * See the Unified Extensible Firmware Interface (UEFI) specification for
1961 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001962 *
Mario Six8fac2912018-07-10 08:40:17 +02001963 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001964 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001965static efi_status_t EFIAPI efi_get_next_monotonic_count(uint64_t *count)
1966{
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001967 static uint64_t mono;
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02001968 efi_status_t ret;
Heinrich Schuchardt91064592018-02-18 15:17:49 +01001969
Alexander Grafc15d9212016-03-04 01:09:59 +01001970 EFI_ENTRY("%p", count);
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02001971 if (!count) {
1972 ret = EFI_INVALID_PARAMETER;
1973 goto out;
1974 }
Alexander Grafc15d9212016-03-04 01:09:59 +01001975 *count = mono++;
Heinrich Schuchardtddc787d2019-05-17 12:47:17 +02001976 ret = EFI_SUCCESS;
1977out:
1978 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01001979}
1980
Heinrich Schuchardt59999172018-05-11 18:15:41 +02001981/**
Mario Six8fac2912018-07-10 08:40:17 +02001982 * efi_stall() - sleep
1983 * @microseconds: period to sleep in microseconds
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001984 *
Mario Six8fac2912018-07-10 08:40:17 +02001985 * This function implements the Stall service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001986 *
Mario Six8fac2912018-07-10 08:40:17 +02001987 * See the Unified Extensible Firmware Interface (UEFI) specification for
1988 * details.
1989 *
1990 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02001991 */
Alexander Grafc15d9212016-03-04 01:09:59 +01001992static efi_status_t EFIAPI efi_stall(unsigned long microseconds)
1993{
Heinrich Schuchardt9912c032019-06-02 21:12:17 +02001994 u64 end_tick;
1995
Alexander Grafc15d9212016-03-04 01:09:59 +01001996 EFI_ENTRY("%ld", microseconds);
Heinrich Schuchardt9912c032019-06-02 21:12:17 +02001997
1998 end_tick = get_ticks() + usec_to_tick(microseconds);
1999 while (get_ticks() < end_tick)
2000 efi_timer_check();
2001
Alexander Grafc15d9212016-03-04 01:09:59 +01002002 return EFI_EXIT(EFI_SUCCESS);
2003}
2004
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002005/**
Mario Six8fac2912018-07-10 08:40:17 +02002006 * efi_set_watchdog_timer() - reset the watchdog timer
2007 * @timeout: seconds before reset by watchdog
2008 * @watchdog_code: code to be logged when resetting
2009 * @data_size: size of buffer in bytes
2010 * @watchdog_data: buffer with data describing the reset reason
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002011 *
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02002012 * This function implements the SetWatchdogTimer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002013 *
Mario Six8fac2912018-07-10 08:40:17 +02002014 * See the Unified Extensible Firmware Interface (UEFI) specification for
2015 * details.
2016 *
2017 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002018 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002019static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
2020 uint64_t watchdog_code,
2021 unsigned long data_size,
2022 uint16_t *watchdog_data)
2023{
Masahiro Yamadac7570a32018-08-06 20:47:40 +09002024 EFI_ENTRY("%ld, 0x%llx, %ld, %p", timeout, watchdog_code,
Alexander Grafc15d9212016-03-04 01:09:59 +01002025 data_size, watchdog_data);
Heinrich Schuchardt18081d42017-10-18 18:13:04 +02002026 return EFI_EXIT(efi_set_watchdog(timeout));
Alexander Grafc15d9212016-03-04 01:09:59 +01002027}
2028
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002029/**
Mario Six8fac2912018-07-10 08:40:17 +02002030 * efi_close_protocol() - close a protocol
2031 * @handle: handle on which the protocol shall be closed
2032 * @protocol: GUID of the protocol to close
2033 * @agent_handle: handle of the driver
2034 * @controller_handle: handle of the controller
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002035 *
2036 * This function implements the CloseProtocol service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002037 *
Mario Six8fac2912018-07-10 08:40:17 +02002038 * See the Unified Extensible Firmware Interface (UEFI) specification for
2039 * details.
2040 *
2041 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002042 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002043static efi_status_t EFIAPI efi_close_protocol(efi_handle_t handle,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002044 const efi_guid_t *protocol,
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002045 efi_handle_t agent_handle,
2046 efi_handle_t controller_handle)
Alexander Grafc15d9212016-03-04 01:09:59 +01002047{
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002048 struct efi_handler *handler;
2049 struct efi_open_protocol_info_item *item;
2050 struct efi_open_protocol_info_item *pos;
2051 efi_status_t r;
2052
Rob Clark238f88c2017-09-13 18:05:41 -04002053 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, agent_handle,
Alexander Grafc15d9212016-03-04 01:09:59 +01002054 controller_handle);
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002055
Heinrich Schuchardt5d8231b2019-05-05 10:37:51 +02002056 if (!efi_search_obj(agent_handle) ||
2057 (controller_handle && !efi_search_obj(controller_handle))) {
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002058 r = EFI_INVALID_PARAMETER;
2059 goto out;
2060 }
2061 r = efi_search_protocol(handle, protocol, &handler);
2062 if (r != EFI_SUCCESS)
2063 goto out;
2064
2065 r = EFI_NOT_FOUND;
2066 list_for_each_entry_safe(item, pos, &handler->open_infos, link) {
2067 if (item->info.agent_handle == agent_handle &&
2068 item->info.controller_handle == controller_handle) {
2069 efi_delete_open_info(item);
2070 r = EFI_SUCCESS;
Heinrich Schuchardt4fd1ee22018-01-11 08:15:59 +01002071 }
2072 }
2073out:
2074 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002075}
2076
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002077/**
Mario Six8fac2912018-07-10 08:40:17 +02002078 * efi_open_protocol_information() - provide information about then open status
2079 * of a protocol on a handle
2080 * @handle: handle for which the information shall be retrieved
2081 * @protocol: GUID of the protocol
2082 * @entry_buffer: buffer to receive the open protocol information
2083 * @entry_count: number of entries available in the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002084 *
2085 * This function implements the OpenProtocolInformation service.
Mario Six8fac2912018-07-10 08:40:17 +02002086 *
2087 * See the Unified Extensible Firmware Interface (UEFI) specification for
2088 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002089 *
Mario Six8fac2912018-07-10 08:40:17 +02002090 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002091 */
Heinrich Schuchardt91064592018-02-18 15:17:49 +01002092static efi_status_t EFIAPI efi_open_protocol_information(
2093 efi_handle_t handle, const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002094 struct efi_open_protocol_info_entry **entry_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002095 efi_uintn_t *entry_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01002096{
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002097 unsigned long buffer_size;
2098 unsigned long count;
2099 struct efi_handler *handler;
2100 struct efi_open_protocol_info_item *item;
2101 efi_status_t r;
2102
Rob Clark238f88c2017-09-13 18:05:41 -04002103 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, entry_buffer,
Alexander Grafc15d9212016-03-04 01:09:59 +01002104 entry_count);
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002105
2106 /* Check parameters */
2107 if (!entry_buffer) {
2108 r = EFI_INVALID_PARAMETER;
2109 goto out;
2110 }
2111 r = efi_search_protocol(handle, protocol, &handler);
2112 if (r != EFI_SUCCESS)
2113 goto out;
2114
2115 /* Count entries */
2116 count = 0;
2117 list_for_each_entry(item, &handler->open_infos, link) {
2118 if (item->info.open_count)
2119 ++count;
2120 }
2121 *entry_count = count;
2122 *entry_buffer = NULL;
2123 if (!count) {
2124 r = EFI_SUCCESS;
2125 goto out;
2126 }
2127
2128 /* Copy entries */
2129 buffer_size = count * sizeof(struct efi_open_protocol_info_entry);
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002130 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardtf2ef22e2018-01-11 08:16:00 +01002131 (void **)entry_buffer);
2132 if (r != EFI_SUCCESS)
2133 goto out;
2134 list_for_each_entry_reverse(item, &handler->open_infos, link) {
2135 if (item->info.open_count)
2136 (*entry_buffer)[--count] = item->info;
2137 }
2138out:
2139 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002140}
2141
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002142/**
Mario Six8fac2912018-07-10 08:40:17 +02002143 * efi_protocols_per_handle() - get protocols installed on a handle
2144 * @handle: handle for which the information is retrieved
2145 * @protocol_buffer: buffer with protocol GUIDs
2146 * @protocol_buffer_count: number of entries in the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002147 *
2148 * This function implements the ProtocolsPerHandleService.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002149 *
Mario Six8fac2912018-07-10 08:40:17 +02002150 * See the Unified Extensible Firmware Interface (UEFI) specification for
2151 * details.
2152 *
2153 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002154 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002155static efi_status_t EFIAPI efi_protocols_per_handle(
2156 efi_handle_t handle, efi_guid_t ***protocol_buffer,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002157 efi_uintn_t *protocol_buffer_count)
Alexander Grafc15d9212016-03-04 01:09:59 +01002158{
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002159 unsigned long buffer_size;
2160 struct efi_object *efiobj;
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002161 struct list_head *protocol_handle;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002162 efi_status_t r;
2163
Alexander Grafc15d9212016-03-04 01:09:59 +01002164 EFI_ENTRY("%p, %p, %p", handle, protocol_buffer,
2165 protocol_buffer_count);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002166
2167 if (!handle || !protocol_buffer || !protocol_buffer_count)
2168 return EFI_EXIT(EFI_INVALID_PARAMETER);
2169
2170 *protocol_buffer = NULL;
Rob Clarkd51b8ca2017-07-20 07:59:39 -04002171 *protocol_buffer_count = 0;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002172
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002173 efiobj = efi_search_obj(handle);
2174 if (!efiobj)
2175 return EFI_EXIT(EFI_INVALID_PARAMETER);
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002176
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002177 /* Count protocols */
2178 list_for_each(protocol_handle, &efiobj->protocols) {
2179 ++*protocol_buffer_count;
2180 }
2181
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02002182 /* Copy GUIDs */
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002183 if (*protocol_buffer_count) {
2184 size_t j = 0;
2185
2186 buffer_size = sizeof(efi_guid_t *) * *protocol_buffer_count;
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002187 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
Heinrich Schuchardt99ce2062017-11-26 14:05:17 +01002188 (void **)protocol_buffer);
2189 if (r != EFI_SUCCESS)
2190 return EFI_EXIT(r);
2191 list_for_each(protocol_handle, &efiobj->protocols) {
2192 struct efi_handler *protocol;
2193
2194 protocol = list_entry(protocol_handle,
2195 struct efi_handler, link);
2196 (*protocol_buffer)[j] = (void *)protocol->guid;
2197 ++j;
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002198 }
xypron.glpk@gmx.de8960c972017-07-13 23:24:32 +02002199 }
2200
2201 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002202}
2203
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002204/**
Mario Six8fac2912018-07-10 08:40:17 +02002205 * efi_locate_handle_buffer() - locate handles implementing a protocol
2206 * @search_type: selection criterion
2207 * @protocol: GUID of the protocol
2208 * @search_key: registration key
2209 * @no_handles: number of returned handles
2210 * @buffer: buffer with the returned handles
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002211 *
2212 * This function implements the LocateHandleBuffer service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002213 *
Mario Six8fac2912018-07-10 08:40:17 +02002214 * See the Unified Extensible Firmware Interface (UEFI) specification for
2215 * details.
2216 *
2217 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002218 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002219static efi_status_t EFIAPI efi_locate_handle_buffer(
2220 enum efi_locate_search_type search_type,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002221 const efi_guid_t *protocol, void *search_key,
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002222 efi_uintn_t *no_handles, efi_handle_t **buffer)
Alexander Grafc15d9212016-03-04 01:09:59 +01002223{
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002224 efi_status_t r;
Heinrich Schuchardt798a4412017-11-06 21:17:48 +01002225 efi_uintn_t buffer_size = 0;
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002226
Rob Clark238f88c2017-09-13 18:05:41 -04002227 EFI_ENTRY("%d, %pUl, %p, %p, %p", search_type, protocol, search_key,
Alexander Grafc15d9212016-03-04 01:09:59 +01002228 no_handles, buffer);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002229
2230 if (!no_handles || !buffer) {
2231 r = EFI_INVALID_PARAMETER;
2232 goto out;
2233 }
2234 *no_handles = 0;
2235 *buffer = NULL;
2236 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2237 *buffer);
2238 if (r != EFI_BUFFER_TOO_SMALL)
2239 goto out;
Heinrich Schuchardtabb43872018-10-03 20:02:29 +02002240 r = efi_allocate_pool(EFI_BOOT_SERVICES_DATA, buffer_size,
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002241 (void **)buffer);
2242 if (r != EFI_SUCCESS)
2243 goto out;
2244 r = efi_locate_handle(search_type, protocol, search_key, &buffer_size,
2245 *buffer);
2246 if (r == EFI_SUCCESS)
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01002247 *no_handles = buffer_size / sizeof(efi_handle_t);
xypron.glpk@gmx.de550a68a2017-07-11 22:06:22 +02002248out:
2249 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002250}
2251
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002252/**
Mario Six8fac2912018-07-10 08:40:17 +02002253 * efi_locate_protocol() - find an interface implementing a protocol
2254 * @protocol: GUID of the protocol
2255 * @registration: registration key passed to the notification function
2256 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002257 *
2258 * This function implements the LocateProtocol service.
Mario Six8fac2912018-07-10 08:40:17 +02002259 *
2260 * See the Unified Extensible Firmware Interface (UEFI) specification for
2261 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002262 *
Mario Six8fac2912018-07-10 08:40:17 +02002263 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002264 */
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002265static efi_status_t EFIAPI efi_locate_protocol(const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002266 void *registration,
2267 void **protocol_interface)
2268{
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002269 struct efi_handler *handler;
Heinrich Schuchardt57505e92017-10-26 19:25:57 +02002270 efi_status_t ret;
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002271 struct efi_object *efiobj;
Alexander Grafc15d9212016-03-04 01:09:59 +01002272
Rob Clark238f88c2017-09-13 18:05:41 -04002273 EFI_ENTRY("%pUl, %p, %p", protocol, registration, protocol_interface);
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002274
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002275 /*
2276 * The UEFI spec explicitly requires a protocol even if a registration
2277 * key is provided. This differs from the logic in LocateHandle().
2278 */
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002279 if (!protocol || !protocol_interface)
2280 return EFI_EXIT(EFI_INVALID_PARAMETER);
2281
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002282 if (registration) {
2283 struct efi_register_notify_event *event;
2284 struct efi_protocol_notification *handle;
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002285
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002286 event = efi_check_register_notify_event(registration);
2287 if (!event)
2288 return EFI_EXIT(EFI_INVALID_PARAMETER);
2289 /*
2290 * The UEFI spec requires to return EFI_NOT_FOUND if no
2291 * protocol instance matches protocol and registration.
2292 * So let's do the same for a mismatch between protocol and
2293 * registration.
2294 */
2295 if (guidcmp(&event->protocol, protocol))
2296 goto not_found;
2297 if (list_empty(&event->handles))
2298 goto not_found;
2299 handle = list_first_entry(&event->handles,
2300 struct efi_protocol_notification,
2301 link);
2302 efiobj = handle->handle;
2303 list_del(&handle->link);
2304 free(handle);
Heinrich Schuchardtadb50d02018-09-26 05:27:55 +02002305 ret = efi_search_protocol(efiobj, protocol, &handler);
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002306 if (ret == EFI_SUCCESS)
2307 goto found;
2308 } else {
2309 list_for_each_entry(efiobj, &efi_obj_list, link) {
2310 ret = efi_search_protocol(efiobj, protocol, &handler);
2311 if (ret == EFI_SUCCESS)
2312 goto found;
Alexander Grafc15d9212016-03-04 01:09:59 +01002313 }
2314 }
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002315not_found:
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +02002316 *protocol_interface = NULL;
Alexander Grafc15d9212016-03-04 01:09:59 +01002317 return EFI_EXIT(EFI_NOT_FOUND);
Heinrich Schuchardt2600eff2019-05-29 18:06:46 +02002318found:
2319 *protocol_interface = handler->protocol_interface;
2320 return EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002321}
2322
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002323/**
Mario Six8fac2912018-07-10 08:40:17 +02002324 * efi_locate_device_path() - Get the device path and handle of an device
2325 * implementing a protocol
2326 * @protocol: GUID of the protocol
2327 * @device_path: device path
2328 * @device: handle of the device
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002329 *
2330 * This function implements the LocateDevicePath service.
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002331 *
Mario Six8fac2912018-07-10 08:40:17 +02002332 * See the Unified Extensible Firmware Interface (UEFI) specification for
2333 * details.
2334 *
2335 * Return: status code
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002336 */
2337static efi_status_t EFIAPI efi_locate_device_path(
2338 const efi_guid_t *protocol,
2339 struct efi_device_path **device_path,
2340 efi_handle_t *device)
2341{
2342 struct efi_device_path *dp;
2343 size_t i;
2344 struct efi_handler *handler;
2345 efi_handle_t *handles;
2346 size_t len, len_dp;
2347 size_t len_best = 0;
2348 efi_uintn_t no_handles;
2349 u8 *remainder;
2350 efi_status_t ret;
2351
2352 EFI_ENTRY("%pUl, %p, %p", protocol, device_path, device);
2353
Heinrich Schuchardt6db1e5c2019-05-10 19:21:41 +02002354 if (!protocol || !device_path || !*device_path) {
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002355 ret = EFI_INVALID_PARAMETER;
2356 goto out;
2357 }
2358
2359 /* Find end of device path */
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +02002360 len = efi_dp_instance_size(*device_path);
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002361
2362 /* Get all handles implementing the protocol */
2363 ret = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL, protocol, NULL,
2364 &no_handles, &handles));
2365 if (ret != EFI_SUCCESS)
2366 goto out;
2367
2368 for (i = 0; i < no_handles; ++i) {
2369 /* Find the device path protocol */
2370 ret = efi_search_protocol(handles[i], &efi_guid_device_path,
2371 &handler);
2372 if (ret != EFI_SUCCESS)
2373 continue;
2374 dp = (struct efi_device_path *)handler->protocol_interface;
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +02002375 len_dp = efi_dp_instance_size(dp);
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002376 /*
2377 * This handle can only be a better fit
2378 * if its device path length is longer than the best fit and
2379 * if its device path length is shorter of equal the searched
2380 * device path.
2381 */
2382 if (len_dp <= len_best || len_dp > len)
2383 continue;
2384 /* Check if dp is a subpath of device_path */
2385 if (memcmp(*device_path, dp, len_dp))
2386 continue;
Heinrich Schuchardt6db1e5c2019-05-10 19:21:41 +02002387 if (!device) {
2388 ret = EFI_INVALID_PARAMETER;
2389 goto out;
2390 }
Heinrich Schuchardt06ec6892017-11-26 14:05:10 +01002391 *device = handles[i];
2392 len_best = len_dp;
2393 }
2394 if (len_best) {
2395 remainder = (u8 *)*device_path + len_best;
2396 *device_path = (struct efi_device_path *)remainder;
2397 ret = EFI_SUCCESS;
2398 } else {
2399 ret = EFI_NOT_FOUND;
2400 }
2401out:
2402 return EFI_EXIT(ret);
2403}
2404
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002405/**
Mario Six8fac2912018-07-10 08:40:17 +02002406 * efi_install_multiple_protocol_interfaces() - Install multiple protocol
2407 * interfaces
2408 * @handle: handle on which the protocol interfaces shall be installed
2409 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2410 * interfaces
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002411 *
2412 * This function implements the MultipleProtocolInterfaces service.
Mario Six8fac2912018-07-10 08:40:17 +02002413 *
2414 * See the Unified Extensible Firmware Interface (UEFI) specification for
2415 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002416 *
Mario Six8fac2912018-07-10 08:40:17 +02002417 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002418 */
Heinrich Schuchardt744d83e2019-04-12 06:59:49 +02002419efi_status_t EFIAPI efi_install_multiple_protocol_interfaces
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002420 (efi_handle_t *handle, ...)
Alexander Grafc15d9212016-03-04 01:09:59 +01002421{
2422 EFI_ENTRY("%p", handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002423
Alexander Graf404a7c82018-06-18 17:23:05 +02002424 efi_va_list argptr;
Heinrich Schuchardte547c662017-10-05 16:35:53 +02002425 const efi_guid_t *protocol;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002426 void *protocol_interface;
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002427 efi_handle_t old_handle;
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002428 efi_status_t r = EFI_SUCCESS;
2429 int i = 0;
2430
2431 if (!handle)
2432 return EFI_EXIT(EFI_INVALID_PARAMETER);
2433
Alexander Graf404a7c82018-06-18 17:23:05 +02002434 efi_va_start(argptr, handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002435 for (;;) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002436 protocol = efi_va_arg(argptr, efi_guid_t*);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002437 if (!protocol)
2438 break;
Alexander Graf404a7c82018-06-18 17:23:05 +02002439 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002440 /* Check that a device path has not been installed before */
2441 if (!guidcmp(protocol, &efi_guid_device_path)) {
2442 struct efi_device_path *dp = protocol_interface;
2443
2444 r = EFI_CALL(efi_locate_device_path(protocol, &dp,
2445 &old_handle));
Heinrich Schuchardt29344972019-05-20 19:55:18 +00002446 if (r == EFI_SUCCESS &&
2447 dp->type == DEVICE_PATH_TYPE_END) {
2448 EFI_PRINT("Path %pD already installed\n",
2449 protocol_interface);
Heinrich Schuchardt61ba10d2019-05-16 21:54:04 +02002450 r = EFI_ALREADY_STARTED;
2451 break;
2452 }
2453 }
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01002454 r = EFI_CALL(efi_install_protocol_interface(
2455 handle, protocol,
2456 EFI_NATIVE_INTERFACE,
2457 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002458 if (r != EFI_SUCCESS)
2459 break;
2460 i++;
2461 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002462 efi_va_end(argptr);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002463 if (r == EFI_SUCCESS)
2464 return EFI_EXIT(r);
2465
Heinrich Schuchardtec47f3e2017-10-26 19:25:42 +02002466 /* If an error occurred undo all changes. */
Alexander Graf404a7c82018-06-18 17:23:05 +02002467 efi_va_start(argptr, handle);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002468 for (; i; --i) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002469 protocol = efi_va_arg(argptr, efi_guid_t*);
2470 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002471 EFI_CALL(efi_uninstall_protocol_interface(*handle, protocol,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01002472 protocol_interface));
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002473 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002474 efi_va_end(argptr);
xypron.glpk@gmx.de83eebc72017-07-11 22:06:20 +02002475
2476 return EFI_EXIT(r);
Alexander Grafc15d9212016-03-04 01:09:59 +01002477}
2478
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002479/**
Mario Six8fac2912018-07-10 08:40:17 +02002480 * efi_uninstall_multiple_protocol_interfaces() - uninstall multiple protocol
2481 * interfaces
2482 * @handle: handle from which the protocol interfaces shall be removed
2483 * @...: NULL terminated argument list with pairs of protocol GUIDS and
2484 * interfaces
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002485 *
2486 * This function implements the UninstallMultipleProtocolInterfaces service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002487 *
Mario Six8fac2912018-07-10 08:40:17 +02002488 * See the Unified Extensible Firmware Interface (UEFI) specification for
2489 * details.
2490 *
2491 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002492 */
Alexander Grafc15d9212016-03-04 01:09:59 +01002493static efi_status_t EFIAPI efi_uninstall_multiple_protocol_interfaces(
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002494 efi_handle_t handle, ...)
Alexander Grafc15d9212016-03-04 01:09:59 +01002495{
2496 EFI_ENTRY("%p", handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002497
Alexander Graf404a7c82018-06-18 17:23:05 +02002498 efi_va_list argptr;
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002499 const efi_guid_t *protocol;
2500 void *protocol_interface;
2501 efi_status_t r = EFI_SUCCESS;
2502 size_t i = 0;
2503
2504 if (!handle)
2505 return EFI_EXIT(EFI_INVALID_PARAMETER);
2506
Alexander Graf404a7c82018-06-18 17:23:05 +02002507 efi_va_start(argptr, handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002508 for (;;) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002509 protocol = efi_va_arg(argptr, efi_guid_t*);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002510 if (!protocol)
2511 break;
Alexander Graf404a7c82018-06-18 17:23:05 +02002512 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002513 r = efi_uninstall_protocol(handle, protocol,
2514 protocol_interface);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002515 if (r != EFI_SUCCESS)
2516 break;
2517 i++;
2518 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002519 efi_va_end(argptr);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002520 if (r == EFI_SUCCESS) {
2521 /* If the last protocol has been removed, delete the handle. */
2522 if (list_empty(&handle->protocols)) {
2523 list_del(&handle->link);
2524 free(handle);
2525 }
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002526 return EFI_EXIT(r);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02002527 }
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002528
2529 /* If an error occurred undo all changes. */
Alexander Graf404a7c82018-06-18 17:23:05 +02002530 efi_va_start(argptr, handle);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002531 for (; i; --i) {
Alexander Graf404a7c82018-06-18 17:23:05 +02002532 protocol = efi_va_arg(argptr, efi_guid_t*);
2533 protocol_interface = efi_va_arg(argptr, void*);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002534 EFI_CALL(efi_install_protocol_interface(&handle, protocol,
2535 EFI_NATIVE_INTERFACE,
2536 protocol_interface));
2537 }
Alexander Graf404a7c82018-06-18 17:23:05 +02002538 efi_va_end(argptr);
Heinrich Schuchardta616dcf2017-10-26 19:25:44 +02002539
Heinrich Schuchardt1c76eda2018-09-24 19:57:27 +02002540 /* In case of an error always return EFI_INVALID_PARAMETER */
2541 return EFI_EXIT(EFI_INVALID_PARAMETER);
Alexander Grafc15d9212016-03-04 01:09:59 +01002542}
2543
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002544/**
Mario Six8fac2912018-07-10 08:40:17 +02002545 * efi_calculate_crc32() - calculate cyclic redundancy code
2546 * @data: buffer with data
2547 * @data_size: size of buffer in bytes
2548 * @crc32_p: cyclic redundancy code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002549 *
2550 * This function implements the CalculateCrc32 service.
Mario Six8fac2912018-07-10 08:40:17 +02002551 *
2552 * See the Unified Extensible Firmware Interface (UEFI) specification for
2553 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002554 *
Mario Six8fac2912018-07-10 08:40:17 +02002555 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002556 */
Heinrich Schuchardtf2725582018-07-07 15:36:04 +02002557static efi_status_t EFIAPI efi_calculate_crc32(const void *data,
2558 efi_uintn_t data_size,
2559 u32 *crc32_p)
Alexander Grafc15d9212016-03-04 01:09:59 +01002560{
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002561 efi_status_t ret = EFI_SUCCESS;
2562
Heinrich Schuchardtf2725582018-07-07 15:36:04 +02002563 EFI_ENTRY("%p, %zu", data, data_size);
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002564 if (!data || !data_size || !crc32_p) {
2565 ret = EFI_INVALID_PARAMETER;
2566 goto out;
2567 }
Alexander Grafc15d9212016-03-04 01:09:59 +01002568 *crc32_p = crc32(0, data, data_size);
Heinrich Schuchardt3f0282c2019-05-16 23:31:29 +02002569out:
2570 return EFI_EXIT(ret);
Alexander Grafc15d9212016-03-04 01:09:59 +01002571}
2572
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002573/**
Mario Six8fac2912018-07-10 08:40:17 +02002574 * efi_copy_mem() - copy memory
2575 * @destination: destination of the copy operation
2576 * @source: source of the copy operation
2577 * @length: number of bytes to copy
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002578 *
2579 * This function implements the CopyMem service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002580 *
Mario Six8fac2912018-07-10 08:40:17 +02002581 * See the Unified Extensible Firmware Interface (UEFI) specification for
2582 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002583 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002584static void EFIAPI efi_copy_mem(void *destination, const void *source,
2585 size_t length)
Alexander Grafc15d9212016-03-04 01:09:59 +01002586{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002587 EFI_ENTRY("%p, %p, %ld", destination, source, (unsigned long)length);
Heinrich Schuchardtefba6ba2019-01-09 21:41:13 +01002588 memmove(destination, source, length);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002589 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002590}
2591
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002592/**
Mario Six8fac2912018-07-10 08:40:17 +02002593 * efi_set_mem() - Fill memory with a byte value.
2594 * @buffer: buffer to fill
2595 * @size: size of buffer in bytes
2596 * @value: byte to copy to the buffer
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002597 *
2598 * This function implements the SetMem service.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002599 *
Mario Six8fac2912018-07-10 08:40:17 +02002600 * See the Unified Extensible Firmware Interface (UEFI) specification for
2601 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002602 */
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002603static void EFIAPI efi_set_mem(void *buffer, size_t size, uint8_t value)
Alexander Grafc15d9212016-03-04 01:09:59 +01002604{
Heinrich Schuchardtd0a349e2017-10-05 16:35:52 +02002605 EFI_ENTRY("%p, %ld, 0x%x", buffer, (unsigned long)size, value);
Alexander Grafc15d9212016-03-04 01:09:59 +01002606 memset(buffer, value, size);
Heinrich Schuchardta5270e02017-10-05 16:35:51 +02002607 EFI_EXIT(EFI_SUCCESS);
Alexander Grafc15d9212016-03-04 01:09:59 +01002608}
2609
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002610/**
Mario Six8fac2912018-07-10 08:40:17 +02002611 * efi_protocol_open() - open protocol interface on a handle
2612 * @handler: handler of a protocol
2613 * @protocol_interface: interface implementing the protocol
2614 * @agent_handle: handle of the driver
2615 * @controller_handle: handle of the controller
2616 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002617 *
Mario Six8fac2912018-07-10 08:40:17 +02002618 * Return: status code
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002619 */
2620static efi_status_t efi_protocol_open(
2621 struct efi_handler *handler,
2622 void **protocol_interface, void *agent_handle,
2623 void *controller_handle, uint32_t attributes)
2624{
2625 struct efi_open_protocol_info_item *item;
2626 struct efi_open_protocol_info_entry *match = NULL;
2627 bool opened_by_driver = false;
2628 bool opened_exclusive = false;
2629
2630 /* If there is no agent, only return the interface */
2631 if (!agent_handle)
2632 goto out;
2633
2634 /* For TEST_PROTOCOL ignore interface attribute */
2635 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2636 *protocol_interface = NULL;
2637
2638 /*
2639 * Check if the protocol is already opened by a driver with the same
2640 * attributes or opened exclusively
2641 */
2642 list_for_each_entry(item, &handler->open_infos, link) {
2643 if (item->info.agent_handle == agent_handle) {
2644 if ((attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) &&
2645 (item->info.attributes == attributes))
2646 return EFI_ALREADY_STARTED;
Heinrich Schuchardtda433d52019-05-30 14:16:31 +02002647 } else {
2648 if (item->info.attributes &
2649 EFI_OPEN_PROTOCOL_BY_DRIVER)
2650 opened_by_driver = true;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002651 }
2652 if (item->info.attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE)
2653 opened_exclusive = true;
2654 }
2655
2656 /* Only one controller can open the protocol exclusively */
Heinrich Schuchardtda433d52019-05-30 14:16:31 +02002657 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2658 if (opened_exclusive)
2659 return EFI_ACCESS_DENIED;
2660 } else if (attributes & EFI_OPEN_PROTOCOL_BY_DRIVER) {
2661 if (opened_exclusive || opened_by_driver)
2662 return EFI_ACCESS_DENIED;
2663 }
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002664
2665 /* Prepare exclusive opening */
2666 if (attributes & EFI_OPEN_PROTOCOL_EXCLUSIVE) {
2667 /* Try to disconnect controllers */
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002668disconnect_next:
2669 opened_by_driver = false;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002670 list_for_each_entry(item, &handler->open_infos, link) {
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002671 efi_status_t ret;
2672
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002673 if (item->info.attributes ==
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002674 EFI_OPEN_PROTOCOL_BY_DRIVER) {
2675 ret = EFI_CALL(efi_disconnect_controller(
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002676 item->info.controller_handle,
2677 item->info.agent_handle,
2678 NULL));
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002679 if (ret == EFI_SUCCESS)
2680 /*
2681 * Child controllers may have been
2682 * removed from the open_infos list. So
2683 * let's restart the loop.
2684 */
2685 goto disconnect_next;
2686 else
2687 opened_by_driver = true;
2688 }
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002689 }
Heinrich Schuchardtfa8dddf2019-05-30 14:16:31 +02002690 /* Only one driver can be connected */
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002691 if (opened_by_driver)
2692 return EFI_ACCESS_DENIED;
2693 }
2694
2695 /* Find existing entry */
2696 list_for_each_entry(item, &handler->open_infos, link) {
2697 if (item->info.agent_handle == agent_handle &&
Heinrich Schuchardt7d69fc32019-06-01 20:15:10 +02002698 item->info.controller_handle == controller_handle &&
2699 item->info.attributes == attributes)
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002700 match = &item->info;
2701 }
2702 /* None found, create one */
2703 if (!match) {
2704 match = efi_create_open_info(handler);
2705 if (!match)
2706 return EFI_OUT_OF_RESOURCES;
2707 }
2708
2709 match->agent_handle = agent_handle;
2710 match->controller_handle = controller_handle;
2711 match->attributes = attributes;
2712 match->open_count++;
2713
2714out:
2715 /* For TEST_PROTOCOL ignore interface attribute. */
2716 if (attributes != EFI_OPEN_PROTOCOL_TEST_PROTOCOL)
2717 *protocol_interface = handler->protocol_interface;
2718
2719 return EFI_SUCCESS;
2720}
2721
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002722/**
Mario Six8fac2912018-07-10 08:40:17 +02002723 * efi_open_protocol() - open protocol interface on a handle
2724 * @handle: handle on which the protocol shall be opened
2725 * @protocol: GUID of the protocol
2726 * @protocol_interface: interface implementing the protocol
2727 * @agent_handle: handle of the driver
2728 * @controller_handle: handle of the controller
2729 * @attributes: attributes indicating how to open the protocol
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002730 *
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002731 * This function implements the OpenProtocol interface.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002732 *
Mario Six8fac2912018-07-10 08:40:17 +02002733 * See the Unified Extensible Firmware Interface (UEFI) specification for
2734 * details.
2735 *
2736 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02002737 */
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +02002738static efi_status_t EFIAPI efi_open_protocol
2739 (efi_handle_t handle, const efi_guid_t *protocol,
2740 void **protocol_interface, efi_handle_t agent_handle,
2741 efi_handle_t controller_handle, uint32_t attributes)
Alexander Grafc15d9212016-03-04 01:09:59 +01002742{
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002743 struct efi_handler *handler;
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002744 efi_status_t r = EFI_INVALID_PARAMETER;
Alexander Grafc15d9212016-03-04 01:09:59 +01002745
Rob Clark238f88c2017-09-13 18:05:41 -04002746 EFI_ENTRY("%p, %pUl, %p, %p, %p, 0x%x", handle, protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01002747 protocol_interface, agent_handle, controller_handle,
2748 attributes);
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02002749
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002750 if (!handle || !protocol ||
2751 (!protocol_interface && attributes !=
2752 EFI_OPEN_PROTOCOL_TEST_PROTOCOL)) {
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +02002753 goto out;
2754 }
2755
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002756 switch (attributes) {
2757 case EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL:
2758 case EFI_OPEN_PROTOCOL_GET_PROTOCOL:
2759 case EFI_OPEN_PROTOCOL_TEST_PROTOCOL:
2760 break;
2761 case EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER:
2762 if (controller_handle == handle)
2763 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002764 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002765 case EFI_OPEN_PROTOCOL_BY_DRIVER:
2766 case EFI_OPEN_PROTOCOL_BY_DRIVER | EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002767 /* Check that the controller handle is valid */
2768 if (!efi_search_obj(controller_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002769 goto out;
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002770 /* fall-through */
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002771 case EFI_OPEN_PROTOCOL_EXCLUSIVE:
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002772 /* Check that the agent handle is valid */
2773 if (!efi_search_obj(agent_handle))
xypron.glpk@gmx.def097c842017-07-11 22:06:15 +02002774 goto out;
2775 break;
2776 default:
2777 goto out;
2778 }
2779
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002780 r = efi_search_protocol(handle, protocol, &handler);
Heinrich Schuchardtb673e4b2019-05-05 11:24:53 +02002781 switch (r) {
2782 case EFI_SUCCESS:
2783 break;
2784 case EFI_NOT_FOUND:
2785 r = EFI_UNSUPPORTED;
2786 goto out;
2787 default:
Heinrich Schuchardte5e78a32017-11-26 14:05:15 +01002788 goto out;
Heinrich Schuchardtb673e4b2019-05-05 11:24:53 +02002789 }
Alexander Grafc15d9212016-03-04 01:09:59 +01002790
Heinrich Schuchardt8cb38c02018-01-11 08:15:58 +01002791 r = efi_protocol_open(handler, protocol_interface, agent_handle,
2792 controller_handle, attributes);
Alexander Grafc15d9212016-03-04 01:09:59 +01002793out:
2794 return EFI_EXIT(r);
2795}
2796
Heinrich Schuchardt59999172018-05-11 18:15:41 +02002797/**
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002798 * efi_start_image() - call the entry point of an image
2799 * @image_handle: handle of the image
2800 * @exit_data_size: size of the buffer
2801 * @exit_data: buffer to receive the exit data of the called image
2802 *
2803 * This function implements the StartImage service.
2804 *
2805 * See the Unified Extensible Firmware Interface (UEFI) specification for
2806 * details.
2807 *
2808 * Return: status code
2809 */
2810efi_status_t EFIAPI efi_start_image(efi_handle_t image_handle,
2811 efi_uintn_t *exit_data_size,
2812 u16 **exit_data)
2813{
2814 struct efi_loaded_image_obj *image_obj =
2815 (struct efi_loaded_image_obj *)image_handle;
2816 efi_status_t ret;
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002817 void *info;
2818 efi_handle_t parent_image = current_image;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002819
2820 EFI_ENTRY("%p, %p, %p", image_handle, exit_data_size, exit_data);
2821
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002822 /* Check parameters */
2823 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2824 &info, NULL, NULL,
2825 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2826 if (ret != EFI_SUCCESS)
2827 return EFI_EXIT(EFI_INVALID_PARAMETER);
2828
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002829 efi_is_direct_boot = false;
2830
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02002831 image_obj->exit_data_size = exit_data_size;
2832 image_obj->exit_data = exit_data;
2833
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002834 /* call the image! */
2835 if (setjmp(&image_obj->exit_jmp)) {
2836 /*
2837 * We called the entry point of the child image with EFI_CALL
2838 * in the lines below. The child image called the Exit() boot
2839 * service efi_exit() which executed the long jump that brought
2840 * us to the current line. This implies that the second half
2841 * of the EFI_CALL macro has not been executed.
2842 */
2843#ifdef CONFIG_ARM
2844 /*
2845 * efi_exit() called efi_restore_gd(). We have to undo this
2846 * otherwise __efi_entry_check() will put the wrong value into
2847 * app_gd.
2848 */
2849 gd = app_gd;
2850#endif
2851 /*
2852 * To get ready to call EFI_EXIT below we have to execute the
2853 * missed out steps of EFI_CALL.
2854 */
2855 assert(__efi_entry_check());
Heinrich Schuchardt952e2062019-05-05 11:56:23 +02002856 EFI_PRINT("%lu returned by started image\n",
2857 (unsigned long)((uintptr_t)image_obj->exit_status &
2858 ~EFI_ERROR_MASK));
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002859 current_image = parent_image;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002860 return EFI_EXIT(image_obj->exit_status);
2861 }
2862
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01002863 current_image = image_handle;
Heinrich Schuchardtb27ced42019-05-01 14:20:18 +02002864 image_obj->header.type = EFI_OBJECT_TYPE_STARTED_IMAGE;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +09002865 EFI_PRINT("Jumping into 0x%p\n", image_obj->entry);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01002866 ret = EFI_CALL(image_obj->entry(image_handle, &systab));
2867
2868 /*
2869 * Usually UEFI applications call Exit() instead of returning.
2870 * But because the world doesn't consist of ponies and unicorns,
2871 * we're happy to emulate that behavior on behalf of a payload
2872 * that forgot.
2873 */
2874 return EFI_CALL(systab.boottime->exit(image_handle, ret, 0, NULL));
2875}
2876
2877/**
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002878 * efi_delete_image() - delete loaded image from memory)
2879 *
2880 * @image_obj: handle of the loaded image
2881 * @loaded_image_protocol: loaded image protocol
2882 */
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02002883static efi_status_t efi_delete_image
2884 (struct efi_loaded_image_obj *image_obj,
2885 struct efi_loaded_image *loaded_image_protocol)
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002886{
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02002887 struct efi_object *efiobj;
2888 efi_status_t r, ret = EFI_SUCCESS;
2889
2890close_next:
2891 list_for_each_entry(efiobj, &efi_obj_list, link) {
2892 struct efi_handler *protocol;
2893
2894 list_for_each_entry(protocol, &efiobj->protocols, link) {
2895 struct efi_open_protocol_info_item *info;
2896
2897 list_for_each_entry(info, &protocol->open_infos, link) {
2898 if (info->info.agent_handle !=
2899 (efi_handle_t)image_obj)
2900 continue;
2901 r = EFI_CALL(efi_close_protocol
2902 (efiobj, protocol->guid,
2903 info->info.agent_handle,
2904 info->info.controller_handle
2905 ));
2906 if (r != EFI_SUCCESS)
2907 ret = r;
2908 /*
2909 * Closing protocols may results in further
2910 * items being deleted. To play it safe loop
2911 * over all elements again.
2912 */
2913 goto close_next;
2914 }
2915 }
2916 }
2917
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002918 efi_free_pages((uintptr_t)loaded_image_protocol->image_base,
2919 efi_size_in_pages(loaded_image_protocol->image_size));
2920 efi_delete_handle(&image_obj->header);
Heinrich Schuchardte3bca2a2019-06-02 20:02:32 +02002921
2922 return ret;
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002923}
2924
2925/**
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002926 * efi_unload_image() - unload an EFI image
2927 * @image_handle: handle of the image to be unloaded
2928 *
2929 * This function implements the UnloadImage service.
2930 *
2931 * See the Unified Extensible Firmware Interface (UEFI) specification for
2932 * details.
2933 *
2934 * Return: status code
2935 */
2936efi_status_t EFIAPI efi_unload_image(efi_handle_t image_handle)
2937{
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002938 efi_status_t ret = EFI_SUCCESS;
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002939 struct efi_object *efiobj;
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002940 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002941
2942 EFI_ENTRY("%p", image_handle);
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002943
Heinrich Schuchardt4ed66e52019-05-01 18:25:45 +02002944 efiobj = efi_search_obj(image_handle);
2945 if (!efiobj) {
2946 ret = EFI_INVALID_PARAMETER;
2947 goto out;
2948 }
2949 /* Find the loaded image protocol */
2950 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
2951 (void **)&loaded_image_protocol,
2952 NULL, NULL,
2953 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
2954 if (ret != EFI_SUCCESS) {
2955 ret = EFI_INVALID_PARAMETER;
2956 goto out;
2957 }
2958 switch (efiobj->type) {
2959 case EFI_OBJECT_TYPE_STARTED_IMAGE:
2960 /* Call the unload function */
2961 if (!loaded_image_protocol->unload) {
2962 ret = EFI_UNSUPPORTED;
2963 goto out;
2964 }
2965 ret = EFI_CALL(loaded_image_protocol->unload(image_handle));
2966 if (ret != EFI_SUCCESS)
2967 goto out;
2968 break;
2969 case EFI_OBJECT_TYPE_LOADED_IMAGE:
2970 break;
2971 default:
2972 ret = EFI_INVALID_PARAMETER;
2973 goto out;
2974 }
2975 efi_delete_image((struct efi_loaded_image_obj *)efiobj,
2976 loaded_image_protocol);
2977out:
2978 return EFI_EXIT(ret);
Heinrich Schuchardt6b3581a2019-05-01 19:04:32 +02002979}
2980
2981/**
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02002982 * efi_update_exit_data() - fill exit data parameters of StartImage()
2983 *
2984 * @image_obj image handle
2985 * @exit_data_size size of the exit data buffer
2986 * @exit_data buffer with data returned by UEFI payload
2987 * Return: status code
2988 */
2989static efi_status_t efi_update_exit_data(struct efi_loaded_image_obj *image_obj,
2990 efi_uintn_t exit_data_size,
2991 u16 *exit_data)
2992{
2993 efi_status_t ret;
2994
2995 /*
2996 * If exit_data is not provided to StartImage(), exit_data_size must be
2997 * ignored.
2998 */
2999 if (!image_obj->exit_data)
3000 return EFI_SUCCESS;
3001 if (image_obj->exit_data_size)
3002 *image_obj->exit_data_size = exit_data_size;
3003 if (exit_data_size && exit_data) {
3004 ret = efi_allocate_pool(EFI_BOOT_SERVICES_DATA,
3005 exit_data_size,
3006 (void **)image_obj->exit_data);
3007 if (ret != EFI_SUCCESS)
3008 return ret;
3009 memcpy(*image_obj->exit_data, exit_data, exit_data_size);
3010 } else {
3011 image_obj->exit_data = NULL;
3012 }
3013 return EFI_SUCCESS;
3014}
3015
3016/**
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003017 * efi_exit() - leave an EFI application or driver
3018 * @image_handle: handle of the application or driver that is exiting
3019 * @exit_status: status code
3020 * @exit_data_size: size of the buffer in bytes
3021 * @exit_data: buffer with data describing an error
3022 *
3023 * This function implements the Exit service.
3024 *
3025 * See the Unified Extensible Firmware Interface (UEFI) specification for
3026 * details.
3027 *
3028 * Return: status code
3029 */
3030static efi_status_t EFIAPI efi_exit(efi_handle_t image_handle,
3031 efi_status_t exit_status,
3032 efi_uintn_t exit_data_size,
3033 u16 *exit_data)
3034{
3035 /*
3036 * TODO: We should call the unload procedure of the loaded
3037 * image protocol.
3038 */
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003039 efi_status_t ret;
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003040 struct efi_loaded_image *loaded_image_protocol;
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003041 struct efi_loaded_image_obj *image_obj =
3042 (struct efi_loaded_image_obj *)image_handle;
3043
3044 EFI_ENTRY("%p, %ld, %zu, %p", image_handle, exit_status,
3045 exit_data_size, exit_data);
3046
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003047 /* Check parameters */
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003048 ret = EFI_CALL(efi_open_protocol(image_handle, &efi_guid_loaded_image,
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003049 (void **)&loaded_image_protocol,
3050 NULL, NULL,
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003051 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003052 if (ret != EFI_SUCCESS) {
3053 ret = EFI_INVALID_PARAMETER;
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003054 goto out;
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003055 }
3056
3057 /* Unloading of unstarted images */
3058 switch (image_obj->header.type) {
3059 case EFI_OBJECT_TYPE_STARTED_IMAGE:
3060 break;
3061 case EFI_OBJECT_TYPE_LOADED_IMAGE:
3062 efi_delete_image(image_obj, loaded_image_protocol);
3063 ret = EFI_SUCCESS;
3064 goto out;
3065 default:
3066 /* Handle does not refer to loaded image */
3067 ret = EFI_INVALID_PARAMETER;
3068 goto out;
3069 }
3070 /* A started image can only be unloaded it is the last one started. */
3071 if (image_handle != current_image) {
3072 ret = EFI_INVALID_PARAMETER;
3073 goto out;
3074 }
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003075
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003076 /* Exit data is only foreseen in case of failure. */
3077 if (exit_status != EFI_SUCCESS) {
3078 ret = efi_update_exit_data(image_obj, exit_data_size,
3079 exit_data);
3080 /* Exiting has priority. Don't return error to caller. */
3081 if (ret != EFI_SUCCESS)
3082 EFI_PRINT("%s: out of memory\n", __func__);
3083 }
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003084 if (image_obj->image_type == IMAGE_SUBSYSTEM_EFI_APPLICATION ||
3085 exit_status != EFI_SUCCESS)
3086 efi_delete_image(image_obj, loaded_image_protocol);
Heinrich Schuchardt3d445122019-04-30 17:57:30 +02003087
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003088 /* Make sure entry/exit counts for EFI world cross-overs match */
3089 EFI_EXIT(exit_status);
3090
3091 /*
3092 * But longjmp out with the U-Boot gd, not the application's, as
3093 * the other end is a setjmp call inside EFI context.
3094 */
3095 efi_restore_gd();
3096
3097 image_obj->exit_status = exit_status;
3098 longjmp(&image_obj->exit_jmp, 1);
3099
3100 panic("EFI application exited");
Heinrich Schuchardt8efe0792019-03-26 19:03:17 +01003101out:
Heinrich Schuchardt37587522019-05-01 20:07:04 +02003102 return EFI_EXIT(ret);
Heinrich Schuchardt2650a4d2019-03-26 19:02:05 +01003103}
3104
3105/**
Mario Six8fac2912018-07-10 08:40:17 +02003106 * efi_handle_protocol() - get interface of a protocol on a handle
3107 * @handle: handle on which the protocol shall be opened
3108 * @protocol: GUID of the protocol
3109 * @protocol_interface: interface implementing the protocol
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003110 *
3111 * This function implements the HandleProtocol service.
Mario Six8fac2912018-07-10 08:40:17 +02003112 *
3113 * See the Unified Extensible Firmware Interface (UEFI) specification for
3114 * details.
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003115 *
Mario Six8fac2912018-07-10 08:40:17 +02003116 * Return: status code
Heinrich Schuchardta40db6e2017-09-21 18:30:11 +02003117 */
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +01003118static efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle,
Heinrich Schuchardte547c662017-10-05 16:35:53 +02003119 const efi_guid_t *protocol,
Alexander Grafc15d9212016-03-04 01:09:59 +01003120 void **protocol_interface)
3121{
Heinrich Schuchardtef096152019-06-01 19:29:39 +02003122 return efi_open_protocol(handle, protocol, protocol_interface, efi_root,
xypron.glpk@gmx.de1bf5d872017-06-29 21:16:19 +02003123 NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL);
Alexander Grafc15d9212016-03-04 01:09:59 +01003124}
3125
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003126/**
Mario Six8fac2912018-07-10 08:40:17 +02003127 * efi_bind_controller() - bind a single driver to a controller
3128 * @controller_handle: controller handle
3129 * @driver_image_handle: driver handle
3130 * @remain_device_path: remaining path
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003131 *
Mario Six8fac2912018-07-10 08:40:17 +02003132 * Return: status code
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003133 */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003134static efi_status_t efi_bind_controller(
3135 efi_handle_t controller_handle,
3136 efi_handle_t driver_image_handle,
3137 struct efi_device_path *remain_device_path)
3138{
3139 struct efi_driver_binding_protocol *binding_protocol;
3140 efi_status_t r;
3141
3142 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3143 &efi_guid_driver_binding_protocol,
3144 (void **)&binding_protocol,
3145 driver_image_handle, NULL,
3146 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3147 if (r != EFI_SUCCESS)
3148 return r;
3149 r = EFI_CALL(binding_protocol->supported(binding_protocol,
3150 controller_handle,
3151 remain_device_path));
3152 if (r == EFI_SUCCESS)
3153 r = EFI_CALL(binding_protocol->start(binding_protocol,
3154 controller_handle,
3155 remain_device_path));
3156 EFI_CALL(efi_close_protocol(driver_image_handle,
3157 &efi_guid_driver_binding_protocol,
3158 driver_image_handle, NULL));
3159 return r;
3160}
3161
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003162/**
Mario Six8fac2912018-07-10 08:40:17 +02003163 * efi_connect_single_controller() - connect a single driver to a controller
3164 * @controller_handle: controller
3165 * @driver_image_handle: driver
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003166 * @remain_device_path: remaining path
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003167 *
Mario Six8fac2912018-07-10 08:40:17 +02003168 * Return: status code
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003169 */
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003170static efi_status_t efi_connect_single_controller(
3171 efi_handle_t controller_handle,
3172 efi_handle_t *driver_image_handle,
3173 struct efi_device_path *remain_device_path)
3174{
3175 efi_handle_t *buffer;
3176 size_t count;
3177 size_t i;
3178 efi_status_t r;
3179 size_t connected = 0;
3180
3181 /* Get buffer with all handles with driver binding protocol */
3182 r = EFI_CALL(efi_locate_handle_buffer(BY_PROTOCOL,
3183 &efi_guid_driver_binding_protocol,
3184 NULL, &count, &buffer));
3185 if (r != EFI_SUCCESS)
3186 return r;
3187
3188 /* Context Override */
3189 if (driver_image_handle) {
3190 for (; *driver_image_handle; ++driver_image_handle) {
3191 for (i = 0; i < count; ++i) {
3192 if (buffer[i] == *driver_image_handle) {
3193 buffer[i] = NULL;
3194 r = efi_bind_controller(
3195 controller_handle,
3196 *driver_image_handle,
3197 remain_device_path);
3198 /*
3199 * For drivers that do not support the
3200 * controller or are already connected
3201 * we receive an error code here.
3202 */
3203 if (r == EFI_SUCCESS)
3204 ++connected;
3205 }
3206 }
3207 }
3208 }
3209
3210 /*
3211 * TODO: Some overrides are not yet implemented:
3212 * - Platform Driver Override
3213 * - Driver Family Override Search
3214 * - Bus Specific Driver Override
3215 */
3216
3217 /* Driver Binding Search */
3218 for (i = 0; i < count; ++i) {
3219 if (buffer[i]) {
3220 r = efi_bind_controller(controller_handle,
3221 buffer[i],
3222 remain_device_path);
3223 if (r == EFI_SUCCESS)
3224 ++connected;
3225 }
3226 }
3227
3228 efi_free_pool(buffer);
3229 if (!connected)
3230 return EFI_NOT_FOUND;
3231 return EFI_SUCCESS;
3232}
3233
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003234/**
Mario Six8fac2912018-07-10 08:40:17 +02003235 * efi_connect_controller() - connect a controller to a driver
3236 * @controller_handle: handle of the controller
3237 * @driver_image_handle: handle of the driver
3238 * @remain_device_path: device path of a child controller
3239 * @recursive: true to connect all child controllers
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003240 *
3241 * This function implements the ConnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02003242 *
3243 * See the Unified Extensible Firmware Interface (UEFI) specification for
3244 * details.
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003245 *
3246 * First all driver binding protocol handles are tried for binding drivers.
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003247 * Afterwards all handles that have opened a protocol of the controller
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003248 * with EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER are connected to drivers.
3249 *
Mario Six8fac2912018-07-10 08:40:17 +02003250 * Return: status code
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003251 */
3252static efi_status_t EFIAPI efi_connect_controller(
3253 efi_handle_t controller_handle,
3254 efi_handle_t *driver_image_handle,
3255 struct efi_device_path *remain_device_path,
3256 bool recursive)
3257{
3258 efi_status_t r;
3259 efi_status_t ret = EFI_NOT_FOUND;
3260 struct efi_object *efiobj;
3261
Heinrich Schuchardt7c89fb02018-12-09 16:39:20 +01003262 EFI_ENTRY("%p, %p, %pD, %d", controller_handle, driver_image_handle,
Heinrich Schuchardt760255f2018-01-11 08:16:02 +01003263 remain_device_path, recursive);
3264
3265 efiobj = efi_search_obj(controller_handle);
3266 if (!efiobj) {
3267 ret = EFI_INVALID_PARAMETER;
3268 goto out;
3269 }
3270
3271 r = efi_connect_single_controller(controller_handle,
3272 driver_image_handle,
3273 remain_device_path);
3274 if (r == EFI_SUCCESS)
3275 ret = EFI_SUCCESS;
3276 if (recursive) {
3277 struct efi_handler *handler;
3278 struct efi_open_protocol_info_item *item;
3279
3280 list_for_each_entry(handler, &efiobj->protocols, link) {
3281 list_for_each_entry(item, &handler->open_infos, link) {
3282 if (item->info.attributes &
3283 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3284 r = EFI_CALL(efi_connect_controller(
3285 item->info.controller_handle,
3286 driver_image_handle,
3287 remain_device_path,
3288 recursive));
3289 if (r == EFI_SUCCESS)
3290 ret = EFI_SUCCESS;
3291 }
3292 }
3293 }
3294 }
3295 /* Check for child controller specified by end node */
3296 if (ret != EFI_SUCCESS && remain_device_path &&
3297 remain_device_path->type == DEVICE_PATH_TYPE_END)
3298 ret = EFI_SUCCESS;
3299out:
3300 return EFI_EXIT(ret);
3301}
3302
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003303/**
Mario Six8fac2912018-07-10 08:40:17 +02003304 * efi_reinstall_protocol_interface() - reinstall protocol interface
3305 * @handle: handle on which the protocol shall be reinstalled
3306 * @protocol: GUID of the protocol to be installed
3307 * @old_interface: interface to be removed
3308 * @new_interface: interface to be installed
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003309 *
3310 * This function implements the ReinstallProtocolInterface service.
Mario Six8fac2912018-07-10 08:40:17 +02003311 *
3312 * See the Unified Extensible Firmware Interface (UEFI) specification for
3313 * details.
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003314 *
3315 * The old interface is uninstalled. The new interface is installed.
3316 * Drivers are connected.
3317 *
Mario Six8fac2912018-07-10 08:40:17 +02003318 * Return: status code
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003319 */
3320static efi_status_t EFIAPI efi_reinstall_protocol_interface(
3321 efi_handle_t handle, const efi_guid_t *protocol,
3322 void *old_interface, void *new_interface)
3323{
3324 efi_status_t ret;
3325
3326 EFI_ENTRY("%p, %pUl, %p, %p", handle, protocol, old_interface,
3327 new_interface);
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02003328
3329 /* Uninstall protocol but do not delete handle */
3330 ret = efi_uninstall_protocol(handle, protocol, old_interface);
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003331 if (ret != EFI_SUCCESS)
3332 goto out;
Heinrich Schuchardt1b451342018-09-28 22:14:17 +02003333
3334 /* Install the new protocol */
3335 ret = efi_add_protocol(handle, protocol, new_interface);
3336 /*
3337 * The UEFI spec does not specify what should happen to the handle
3338 * if in case of an error no protocol interface remains on the handle.
3339 * So let's do nothing here.
3340 */
Heinrich Schuchardt90761b82018-05-11 12:09:22 +02003341 if (ret != EFI_SUCCESS)
3342 goto out;
3343 /*
3344 * The returned status code has to be ignored.
3345 * Do not create an error if no suitable driver for the handle exists.
3346 */
3347 EFI_CALL(efi_connect_controller(handle, NULL, NULL, true));
3348out:
3349 return EFI_EXIT(ret);
3350}
3351
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003352/**
Mario Six8fac2912018-07-10 08:40:17 +02003353 * efi_get_child_controllers() - get all child controllers associated to a driver
3354 * @efiobj: handle of the controller
3355 * @driver_handle: handle of the driver
3356 * @number_of_children: number of child controllers
3357 * @child_handle_buffer: handles of the the child controllers
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003358 *
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003359 * The allocated buffer has to be freed with free().
3360 *
Mario Six8fac2912018-07-10 08:40:17 +02003361 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003362 */
3363static efi_status_t efi_get_child_controllers(
3364 struct efi_object *efiobj,
3365 efi_handle_t driver_handle,
3366 efi_uintn_t *number_of_children,
3367 efi_handle_t **child_handle_buffer)
3368{
3369 struct efi_handler *handler;
3370 struct efi_open_protocol_info_item *item;
3371 efi_uintn_t count = 0, i;
3372 bool duplicate;
3373
3374 /* Count all child controller associations */
3375 list_for_each_entry(handler, &efiobj->protocols, link) {
3376 list_for_each_entry(item, &handler->open_infos, link) {
3377 if (item->info.agent_handle == driver_handle &&
3378 item->info.attributes &
3379 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER)
3380 ++count;
3381 }
3382 }
3383 /*
3384 * Create buffer. In case of duplicate child controller assignments
3385 * the buffer will be too large. But that does not harm.
3386 */
3387 *number_of_children = 0;
3388 *child_handle_buffer = calloc(count, sizeof(efi_handle_t));
3389 if (!*child_handle_buffer)
3390 return EFI_OUT_OF_RESOURCES;
3391 /* Copy unique child handles */
3392 list_for_each_entry(handler, &efiobj->protocols, link) {
3393 list_for_each_entry(item, &handler->open_infos, link) {
3394 if (item->info.agent_handle == driver_handle &&
3395 item->info.attributes &
3396 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER) {
3397 /* Check this is a new child controller */
3398 duplicate = false;
3399 for (i = 0; i < *number_of_children; ++i) {
3400 if ((*child_handle_buffer)[i] ==
3401 item->info.controller_handle)
3402 duplicate = true;
3403 }
3404 /* Copy handle to buffer */
3405 if (!duplicate) {
3406 i = (*number_of_children)++;
3407 (*child_handle_buffer)[i] =
3408 item->info.controller_handle;
3409 }
3410 }
3411 }
3412 }
3413 return EFI_SUCCESS;
3414}
3415
Heinrich Schuchardt59999172018-05-11 18:15:41 +02003416/**
Mario Six8fac2912018-07-10 08:40:17 +02003417 * efi_disconnect_controller() - disconnect a controller from a driver
3418 * @controller_handle: handle of the controller
3419 * @driver_image_handle: handle of the driver
3420 * @child_handle: handle of the child to destroy
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003421 *
3422 * This function implements the DisconnectController service.
Mario Six8fac2912018-07-10 08:40:17 +02003423 *
3424 * See the Unified Extensible Firmware Interface (UEFI) specification for
3425 * details.
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003426 *
Mario Six8fac2912018-07-10 08:40:17 +02003427 * Return: status code
Heinrich Schuchardte9943282018-01-11 08:16:04 +01003428 */
3429static efi_status_t EFIAPI efi_disconnect_controller(
3430 efi_handle_t controller_handle,
3431 efi_handle_t driver_image_handle,
3432 efi_handle_t child_handle)
3433{
3434 struct efi_driver_binding_protocol *binding_protocol;
3435 efi_handle_t *child_handle_buffer = NULL;
3436 size_t number_of_children = 0;
3437 efi_status_t r;
3438 size_t stop_count = 0;
3439 struct efi_object *efiobj;
3440
3441 EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
3442 child_handle);
3443
3444 efiobj = efi_search_obj(controller_handle);
3445 if (!efiobj) {
3446 r = EFI_INVALID_PARAMETER;
3447 goto out;
3448 }
3449
3450 if (child_handle && !efi_search_obj(child_handle)) {
3451 r = EFI_INVALID_PARAMETER;
3452 goto out;
3453 }
3454
3455 /* If no driver handle is supplied, disconnect all drivers */
3456 if (!driver_image_handle) {
3457 r = efi_disconnect_all_drivers(efiobj, NULL, child_handle);
3458 goto out;
3459 }
3460
3461 /* Create list of child handles */
3462 if (child_handle) {
3463 number_of_children = 1;
3464 child_handle_buffer = &child_handle;
3465 } else {
3466 efi_get_child_controllers(efiobj,
3467 driver_image_handle,
3468 &number_of_children,
3469 &child_handle_buffer);
3470 }
3471
3472 /* Get the driver binding protocol */
3473 r = EFI_CALL(efi_open_protocol(driver_image_handle,
3474 &efi_guid_driver_binding_protocol,
3475 (void **)&binding_protocol,
3476 driver_image_handle, NULL,
3477 EFI_OPEN_PROTOCOL_GET_PROTOCOL));
3478 if (r != EFI_SUCCESS)
3479 goto out;
3480 /* Remove the children */
3481 if (number_of_children) {
3482 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3483 controller_handle,
3484 number_of_children,
3485 child_handle_buffer));
3486 if (r == EFI_SUCCESS)
3487 ++stop_count;
3488 }
3489 /* Remove the driver */
3490 if (!child_handle)
3491 r = EFI_CALL(binding_protocol->stop(binding_protocol,
3492 controller_handle,
3493 0, NULL));
3494 if (r == EFI_SUCCESS)
3495 ++stop_count;
3496 EFI_CALL(efi_close_protocol(driver_image_handle,
3497 &efi_guid_driver_binding_protocol,
3498 driver_image_handle, NULL));
3499
3500 if (stop_count)
3501 r = EFI_SUCCESS;
3502 else
3503 r = EFI_NOT_FOUND;
3504out:
3505 if (!child_handle)
3506 free(child_handle_buffer);
3507 return EFI_EXIT(r);
3508}
3509
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003510static struct efi_boot_services efi_boot_services = {
Alexander Grafc15d9212016-03-04 01:09:59 +01003511 .hdr = {
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +02003512 .signature = EFI_BOOT_SERVICES_SIGNATURE,
3513 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +02003514 .headersize = sizeof(struct efi_boot_services),
Alexander Grafc15d9212016-03-04 01:09:59 +01003515 },
3516 .raise_tpl = efi_raise_tpl,
3517 .restore_tpl = efi_restore_tpl,
3518 .allocate_pages = efi_allocate_pages_ext,
3519 .free_pages = efi_free_pages_ext,
3520 .get_memory_map = efi_get_memory_map_ext,
Stefan Brüns5a09aef2016-10-09 22:17:18 +02003521 .allocate_pool = efi_allocate_pool_ext,
Stefan Brüns67b67d92016-10-09 22:17:26 +02003522 .free_pool = efi_free_pool_ext,
xypron.glpk@gmx.de852a0e1772017-07-18 20:17:20 +02003523 .create_event = efi_create_event_ext,
xypron.glpk@gmx.dea587fd12017-07-18 20:17:21 +02003524 .set_timer = efi_set_timer_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003525 .wait_for_event = efi_wait_for_event,
xypron.glpk@gmx.de30708232017-07-18 20:17:18 +02003526 .signal_event = efi_signal_event_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003527 .close_event = efi_close_event,
3528 .check_event = efi_check_event,
Heinrich Schuchardt0a27ac82017-11-06 21:17:44 +01003529 .install_protocol_interface = efi_install_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01003530 .reinstall_protocol_interface = efi_reinstall_protocol_interface,
Heinrich Schuchardt7cdc17f2017-11-06 21:17:45 +01003531 .uninstall_protocol_interface = efi_uninstall_protocol_interface,
Alexander Grafc15d9212016-03-04 01:09:59 +01003532 .handle_protocol = efi_handle_protocol,
3533 .reserved = NULL,
3534 .register_protocol_notify = efi_register_protocol_notify,
xypron.glpk@gmx.de69f94032017-07-11 22:06:21 +02003535 .locate_handle = efi_locate_handle_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003536 .locate_device_path = efi_locate_device_path,
Alexander Grafc5c11632016-08-19 01:23:24 +02003537 .install_configuration_table = efi_install_configuration_table_ext,
Alexander Grafc15d9212016-03-04 01:09:59 +01003538 .load_image = efi_load_image,
3539 .start_image = efi_start_image,
Alexander Graf988c0662016-05-20 23:28:23 +02003540 .exit = efi_exit,
Alexander Grafc15d9212016-03-04 01:09:59 +01003541 .unload_image = efi_unload_image,
3542 .exit_boot_services = efi_exit_boot_services,
3543 .get_next_monotonic_count = efi_get_next_monotonic_count,
3544 .stall = efi_stall,
3545 .set_watchdog_timer = efi_set_watchdog_timer,
3546 .connect_controller = efi_connect_controller,
3547 .disconnect_controller = efi_disconnect_controller,
3548 .open_protocol = efi_open_protocol,
3549 .close_protocol = efi_close_protocol,
3550 .open_protocol_information = efi_open_protocol_information,
3551 .protocols_per_handle = efi_protocols_per_handle,
3552 .locate_handle_buffer = efi_locate_handle_buffer,
3553 .locate_protocol = efi_locate_protocol,
Heinrich Schuchardt91064592018-02-18 15:17:49 +01003554 .install_multiple_protocol_interfaces =
3555 efi_install_multiple_protocol_interfaces,
3556 .uninstall_multiple_protocol_interfaces =
3557 efi_uninstall_multiple_protocol_interfaces,
Alexander Grafc15d9212016-03-04 01:09:59 +01003558 .calculate_crc32 = efi_calculate_crc32,
3559 .copy_mem = efi_copy_mem,
3560 .set_mem = efi_set_mem,
Heinrich Schuchardt717c4582018-02-04 23:05:13 +01003561 .create_event_ex = efi_create_event_ex,
Alexander Grafc15d9212016-03-04 01:09:59 +01003562};
3563
Heinrich Schuchardt27685f72018-06-28 12:45:30 +02003564static u16 __efi_runtime_data firmware_vendor[] = L"Das U-Boot";
Alexander Grafc15d9212016-03-04 01:09:59 +01003565
Alexander Graf393dd912016-10-14 13:45:30 +02003566struct efi_system_table __efi_runtime_data systab = {
Alexander Grafc15d9212016-03-04 01:09:59 +01003567 .hdr = {
3568 .signature = EFI_SYSTEM_TABLE_SIGNATURE,
Heinrich Schuchardte75b3cb2018-06-28 12:45:27 +02003569 .revision = EFI_SPECIFICATION_VERSION,
Heinrich Schuchardt10204252018-06-28 12:45:29 +02003570 .headersize = sizeof(struct efi_system_table),
Alexander Grafc15d9212016-03-04 01:09:59 +01003571 },
Heinrich Schuchardt27685f72018-06-28 12:45:30 +02003572 .fw_vendor = firmware_vendor,
3573 .fw_revision = FW_VERSION << 16 | FW_PATCHLEVEL << 8,
Heinrich Schuchardt91064592018-02-18 15:17:49 +01003574 .con_in = (void *)&efi_con_in,
3575 .con_out = (void *)&efi_con_out,
3576 .std_err = (void *)&efi_con_out,
3577 .runtime = (void *)&efi_runtime_services,
3578 .boottime = (void *)&efi_boot_services,
Alexander Grafc15d9212016-03-04 01:09:59 +01003579 .nr_tables = 0,
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003580 .tables = NULL,
Alexander Grafc15d9212016-03-04 01:09:59 +01003581};
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003582
3583/**
3584 * efi_initialize_system_table() - Initialize system table
3585 *
Heinrich Schuchardt7b4b2a22018-09-03 05:00:43 +02003586 * Return: status code
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003587 */
3588efi_status_t efi_initialize_system_table(void)
3589{
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003590 efi_status_t ret;
3591
3592 /* Allocate configuration table array */
3593 ret = efi_allocate_pool(EFI_RUNTIME_SERVICES_DATA,
3594 EFI_MAX_CONFIGURATION_TABLES *
3595 sizeof(struct efi_configuration_table),
3596 (void **)&systab.tables);
3597
Heinrich Schuchardtcf70a732018-09-03 19:12:24 +02003598 /* Set CRC32 field in table headers */
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003599 efi_update_table_header_crc32(&systab.hdr);
3600 efi_update_table_header_crc32(&efi_runtime_services.hdr);
3601 efi_update_table_header_crc32(&efi_boot_services.hdr);
Heinrich Schuchardt2f528c22018-06-28 12:45:32 +02003602
3603 return ret;
Heinrich Schuchardt15070db2018-06-28 12:45:31 +02003604}