blob: 0542aaae16c719d5293f33475931effd48d0a9f6 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Rob Clarkf90cb9f2017-09-13 18:05:28 -04002/*
3 * EFI device path from u-boot device-model mapping
4 *
5 * (C) Copyright 2017 Rob Clark
Rob Clarkf90cb9f2017-09-13 18:05:28 -04006 */
7
Alfonso Sánchez-Beatof007a372021-07-15 15:31:42 +02008#define LOG_CATEGORY LOGC_EFI
9
Rob Clarkf90cb9f2017-09-13 18:05:28 -040010#include <common.h>
11#include <blk.h>
12#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Simon Glass274e0b02020-05-10 11:39:56 -060014#include <net.h>
Rob Clarkf90cb9f2017-09-13 18:05:28 -040015#include <usb.h>
16#include <mmc.h>
Patrick Wildta3ca37e2019-10-03 16:24:17 +020017#include <nvme.h>
Rob Clarkf90cb9f2017-09-13 18:05:28 -040018#include <efi_loader.h>
Rob Clarkf90cb9f2017-09-13 18:05:28 -040019#include <part.h>
AKASHI Takahiro659a6262019-09-12 13:52:35 +090020#include <sandboxblockdev.h>
Alfonso Sánchez-Beatof007a372021-07-15 15:31:42 +020021#include <uuid.h>
Heinrich Schuchardt8d80af82019-07-14 19:26:47 +020022#include <asm-generic/unaligned.h>
AKASHI Takahirof1dbbae2019-10-09 16:19:52 +090023#include <linux/compat.h> /* U16_MAX */
Rob Clarkf90cb9f2017-09-13 18:05:28 -040024
AKASHI Takahiro659a6262019-09-12 13:52:35 +090025#ifdef CONFIG_SANDBOX
26const efi_guid_t efi_guid_host_dev = U_BOOT_HOST_DEV_GUID;
27#endif
Heinrich Schuchardtc770aaa2020-05-20 22:39:35 +020028#ifdef CONFIG_VIRTIO_BLK
29const efi_guid_t efi_guid_virtio_dev = U_BOOT_VIRTIO_DEV_GUID;
30#endif
AKASHI Takahiro659a6262019-09-12 13:52:35 +090031
Rob Clarkf90cb9f2017-09-13 18:05:28 -040032/* template END node: */
33static const struct efi_device_path END = {
34 .type = DEVICE_PATH_TYPE_END,
35 .sub_type = DEVICE_PATH_SUB_TYPE_END,
36 .length = sizeof(END),
37};
38
Rob Clarkf90cb9f2017-09-13 18:05:28 -040039/* template ROOT node: */
40static const struct efi_device_path_vendor ROOT = {
41 .dp = {
42 .type = DEVICE_PATH_TYPE_HARDWARE_DEVICE,
43 .sub_type = DEVICE_PATH_SUB_TYPE_VENDOR,
44 .length = sizeof(ROOT),
45 },
46 .guid = U_BOOT_GUID,
47};
48
Simon Glass222f3cb2021-09-24 18:30:17 -060049#if defined(CONFIG_MMC)
Heinrich Schuchardt7d569db2017-12-11 12:56:39 +010050/*
51 * Determine if an MMC device is an SD card.
52 *
53 * @desc block device descriptor
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +010054 * Return: true if the device is an SD card
Heinrich Schuchardt7d569db2017-12-11 12:56:39 +010055 */
56static bool is_sd(struct blk_desc *desc)
57{
58 struct mmc *mmc = find_mmc_device(desc->devnum);
59
60 if (!mmc)
61 return false;
62
63 return IS_SD(mmc) != 0U;
64}
65#endif
66
Rob Clarkf90cb9f2017-09-13 18:05:28 -040067static void *dp_alloc(size_t sz)
68{
69 void *buf;
70
Heinrich Schuchardt16546012021-08-17 15:15:23 +020071 if (efi_allocate_pool(EFI_BOOT_SERVICES_DATA, sz, &buf) !=
Heinrich Schuchardt468bf972018-01-19 20:24:37 +010072 EFI_SUCCESS) {
73 debug("EFI: ERROR: out of memory in %s\n", __func__);
Rob Clarkf90cb9f2017-09-13 18:05:28 -040074 return NULL;
Heinrich Schuchardt468bf972018-01-19 20:24:37 +010075 }
Rob Clarkf90cb9f2017-09-13 18:05:28 -040076
Patrick Wildtacf7bee2018-03-25 19:54:03 +020077 memset(buf, 0, sz);
Rob Clarkf90cb9f2017-09-13 18:05:28 -040078 return buf;
79}
80
81/*
82 * Iterate to next block in device-path, terminating (returning NULL)
83 * at /End* node.
84 */
85struct efi_device_path *efi_dp_next(const struct efi_device_path *dp)
86{
87 if (dp == NULL)
88 return NULL;
89 if (dp->type == DEVICE_PATH_TYPE_END)
90 return NULL;
91 dp = ((void *)dp) + dp->length;
92 if (dp->type == DEVICE_PATH_TYPE_END)
93 return NULL;
94 return (struct efi_device_path *)dp;
95}
96
97/*
98 * Compare two device-paths, stopping when the shorter of the two hits
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +020099 * an End* node. This is useful to, for example, compare a device-path
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400100 * representing a device with one representing a file on the device, or
101 * a device with a parent device.
102 */
Heinrich Schuchardt753e2482017-10-26 19:25:48 +0200103int efi_dp_match(const struct efi_device_path *a,
104 const struct efi_device_path *b)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400105{
106 while (1) {
107 int ret;
108
109 ret = memcmp(&a->length, &b->length, sizeof(a->length));
110 if (ret)
111 return ret;
112
113 ret = memcmp(a, b, a->length);
114 if (ret)
115 return ret;
116
117 a = efi_dp_next(a);
118 b = efi_dp_next(b);
119
120 if (!a || !b)
121 return 0;
122 }
123}
124
Heinrich Schuchardt24f0e6a2022-02-26 12:10:10 +0100125/**
126 * efi_dp_shorten() - shorten device-path
127 *
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +0200128 * We can have device paths that start with a USB WWID or a USB Class node,
129 * and a few other cases which don't encode the full device path with bus
130 * hierarchy:
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400131 *
Heinrich Schuchardt24f0e6a2022-02-26 12:10:10 +0100132 * * MESSAGING:USB_WWID
133 * * MESSAGING:USB_CLASS
134 * * MEDIA:FILE_PATH
135 * * MEDIA:HARD_DRIVE
136 * * MESSAGING:URI
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +0200137 *
138 * See UEFI spec (section 3.1.2, about short-form device-paths)
Heinrich Schuchardt24f0e6a2022-02-26 12:10:10 +0100139 *
Heinrich Schuchardtdb17dbc2022-03-21 08:26:48 +0100140 * @dp: original device-path
Heinrich Schuchardt24f0e6a2022-02-26 12:10:10 +0100141 * @Return: shortened device-path or NULL
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400142 */
Heinrich Schuchardt24f0e6a2022-02-26 12:10:10 +0100143struct efi_device_path *efi_dp_shorten(struct efi_device_path *dp)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400144{
145 while (dp) {
146 /*
147 * TODO: Add MESSAGING:USB_WWID and MESSAGING:URI..
148 * in practice fallback.efi just uses MEDIA:HARD_DRIVE
149 * so not sure when we would see these other cases.
150 */
151 if (EFI_DP_TYPE(dp, MESSAGING_DEVICE, MSG_USB_CLASS) ||
152 EFI_DP_TYPE(dp, MEDIA_DEVICE, HARD_DRIVE_PATH) ||
153 EFI_DP_TYPE(dp, MEDIA_DEVICE, FILE_PATH))
154 return dp;
155
156 dp = efi_dp_next(dp);
157 }
158
159 return dp;
160}
161
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100162/**
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100163 * find_handle() - find handle by device path and installed protocol
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100164 *
165 * If @rem is provided, the handle with the longest partial match is returned.
166 *
167 * @dp: device path to search
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100168 * @guid: GUID of protocol that must be installed on path or NULL
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100169 * @short_path: use short form device path for matching
170 * @rem: pointer to receive remaining device path
171 * Return: matching handle
172 */
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100173static efi_handle_t find_handle(struct efi_device_path *dp,
174 const efi_guid_t *guid, bool short_path,
175 struct efi_device_path **rem)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400176{
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100177 efi_handle_t handle, best_handle = NULL;
178 efi_uintn_t len, best_len = 0;
179
180 len = efi_dp_instance_size(dp);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400181
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100182 list_for_each_entry(handle, &efi_obj_list, link) {
Heinrich Schuchardt6953c102017-11-26 14:05:16 +0100183 struct efi_handler *handler;
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100184 struct efi_device_path *dp_current;
185 efi_uintn_t len_current;
Heinrich Schuchardt6953c102017-11-26 14:05:16 +0100186 efi_status_t ret;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400187
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100188 if (guid) {
189 ret = efi_search_protocol(handle, guid, &handler);
190 if (ret != EFI_SUCCESS)
191 continue;
192 }
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100193 ret = efi_search_protocol(handle, &efi_guid_device_path,
194 &handler);
Heinrich Schuchardt6953c102017-11-26 14:05:16 +0100195 if (ret != EFI_SUCCESS)
196 continue;
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100197 dp_current = handler->protocol_interface;
198 if (short_path) {
199 dp_current = efi_dp_shorten(dp_current);
200 if (!dp_current)
201 continue;
202 }
203 len_current = efi_dp_instance_size(dp_current);
204 if (rem) {
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100205 if (len_current > len)
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100206 continue;
207 } else {
208 if (len_current != len)
209 continue;
210 }
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100211 if (memcmp(dp_current, dp, len_current))
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100212 continue;
213 if (!rem)
214 return handle;
215 if (len_current > best_len) {
216 best_len = len_current;
217 best_handle = handle;
218 *rem = (void*)((u8 *)dp + len_current);
219 }
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400220 }
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100221 return best_handle;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400222}
223
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100224/**
225 * efi_dp_find_obj() - find handle by device path
226 *
227 * If @rem is provided, the handle with the longest partial match is returned.
228 *
229 * @dp: device path to search
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100230 * @guid: GUID of protocol that must be installed on path or NULL
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100231 * @rem: pointer to receive remaining device path
232 * Return: matching handle
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400233 */
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100234efi_handle_t efi_dp_find_obj(struct efi_device_path *dp,
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100235 const efi_guid_t *guid,
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100236 struct efi_device_path **rem)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400237{
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100238 efi_handle_t handle;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400239
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100240 handle = find_handle(dp, guid, false, rem);
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100241 if (!handle)
242 /* Match short form device path */
Heinrich Schuchardt0a04a412022-03-19 06:35:43 +0100243 handle = find_handle(dp, guid, true, rem);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400244
Heinrich Schuchardtad6d5a42022-03-04 08:20:00 +0100245 return handle;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400246}
247
Heinrich Schuchardt0976f8b2018-01-19 20:24:49 +0100248/*
249 * Determine the last device path node that is not the end node.
250 *
251 * @dp device path
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100252 * Return: last node before the end node if it exists
Heinrich Schuchardt0976f8b2018-01-19 20:24:49 +0100253 * otherwise NULL
254 */
255const struct efi_device_path *efi_dp_last_node(const struct efi_device_path *dp)
256{
257 struct efi_device_path *ret;
258
259 if (!dp || dp->type == DEVICE_PATH_TYPE_END)
260 return NULL;
261 while (dp) {
262 ret = (struct efi_device_path *)dp;
263 dp = efi_dp_next(dp);
264 }
265 return ret;
266}
267
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200268/* get size of the first device path instance excluding end node */
269efi_uintn_t efi_dp_instance_size(const struct efi_device_path *dp)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400270{
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200271 efi_uintn_t sz = 0;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400272
Heinrich Schuchardt01d48ed2018-04-16 07:59:07 +0200273 if (!dp || dp->type == DEVICE_PATH_TYPE_END)
274 return 0;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400275 while (dp) {
276 sz += dp->length;
277 dp = efi_dp_next(dp);
278 }
279
280 return sz;
281}
282
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200283/* get size of multi-instance device path excluding end node */
284efi_uintn_t efi_dp_size(const struct efi_device_path *dp)
285{
286 const struct efi_device_path *p = dp;
287
288 if (!p)
289 return 0;
290 while (p->type != DEVICE_PATH_TYPE_END ||
291 p->sub_type != DEVICE_PATH_SUB_TYPE_END)
292 p = (void *)p + p->length;
293
294 return (void *)p - (void *)dp;
295}
296
297/* copy multi-instance device path */
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400298struct efi_device_path *efi_dp_dup(const struct efi_device_path *dp)
299{
300 struct efi_device_path *ndp;
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200301 size_t sz = efi_dp_size(dp) + sizeof(END);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400302
303 if (!dp)
304 return NULL;
305
306 ndp = dp_alloc(sz);
Heinrich Schuchardt468bf972018-01-19 20:24:37 +0100307 if (!ndp)
308 return NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400309 memcpy(ndp, dp, sz);
310
311 return ndp;
312}
313
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200314/**
315 * efi_dp_append_or_concatenate() - Append or concatenate two device paths.
316 * Concatenated device path will be separated
317 * by a sub-type 0xff end node
318 *
319 * @dp1: First device path
320 * @dp2: Second device path
321 * @concat: If true the two device paths will be concatenated and separated
322 * by an end of entrire device path sub-type 0xff end node.
323 * If true the second device path will be appended to the first and
324 * terminated by an end node
325 *
326 * Return:
327 * concatenated device path or NULL. Caller must free the returned value
328 */
329static struct
330efi_device_path *efi_dp_append_or_concatenate(const struct efi_device_path *dp1,
331 const struct efi_device_path *dp2,
332 bool concat)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400333{
334 struct efi_device_path *ret;
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200335 size_t end_size = sizeof(END);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400336
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200337 if (concat)
338 end_size = 2 * sizeof(END);
Heinrich Schuchardt60b5ab22018-04-16 07:59:06 +0200339 if (!dp1 && !dp2) {
340 /* return an end node */
341 ret = efi_dp_dup(&END);
342 } else if (!dp1) {
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400343 ret = efi_dp_dup(dp2);
344 } else if (!dp2) {
345 ret = efi_dp_dup(dp1);
346 } else {
347 /* both dp1 and dp2 are non-null */
348 unsigned sz1 = efi_dp_size(dp1);
349 unsigned sz2 = efi_dp_size(dp2);
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200350 void *p = dp_alloc(sz1 + sz2 + end_size);
Heinrich Schuchardt468bf972018-01-19 20:24:37 +0100351 if (!p)
352 return NULL;
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200353 ret = p;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400354 memcpy(p, dp1, sz1);
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200355 p += sz1;
356
357 if (concat) {
358 memcpy(p, &END, sizeof(END));
359 p += sizeof(END);
360 }
361
Heinrich Schuchardt60b5ab22018-04-16 07:59:06 +0200362 /* the end node of the second device path has to be retained */
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200363 memcpy(p, dp2, sz2);
364 p += sz2;
365 memcpy(p, &END, sizeof(END));
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400366 }
367
368 return ret;
369}
370
Ilias Apalodimas483d28e2021-03-17 21:54:58 +0200371/**
372 * efi_dp_append() - Append a device to an existing device path.
373 *
374 * @dp1: First device path
375 * @dp2: Second device path
376 *
377 * Return:
378 * concatenated device path or NULL. Caller must free the returned value
379 */
380struct efi_device_path *efi_dp_append(const struct efi_device_path *dp1,
381 const struct efi_device_path *dp2)
382{
383 return efi_dp_append_or_concatenate(dp1, dp2, false);
384}
385
386/**
387 * efi_dp_concat() - Concatenate 2 device paths. The final device path will
388 * contain two device paths separated by and end node (0xff).
389 *
390 * @dp1: First device path
391 * @dp2: Second device path
392 *
393 * Return:
394 * concatenated device path or NULL. Caller must free the returned value
395 */
396struct efi_device_path *efi_dp_concat(const struct efi_device_path *dp1,
397 const struct efi_device_path *dp2)
398{
399 return efi_dp_append_or_concatenate(dp1, dp2, true);
400}
401
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400402struct efi_device_path *efi_dp_append_node(const struct efi_device_path *dp,
403 const struct efi_device_path *node)
404{
405 struct efi_device_path *ret;
406
407 if (!node && !dp) {
408 ret = efi_dp_dup(&END);
409 } else if (!node) {
410 ret = efi_dp_dup(dp);
411 } else if (!dp) {
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200412 size_t sz = node->length;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400413 void *p = dp_alloc(sz + sizeof(END));
Heinrich Schuchardt468bf972018-01-19 20:24:37 +0100414 if (!p)
415 return NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400416 memcpy(p, node, sz);
417 memcpy(p + sz, &END, sizeof(END));
418 ret = p;
419 } else {
420 /* both dp and node are non-null */
Heinrich Schuchardt51ca4f52018-04-16 07:59:08 +0200421 size_t sz = efi_dp_size(dp);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400422 void *p = dp_alloc(sz + node->length + sizeof(END));
Heinrich Schuchardt468bf972018-01-19 20:24:37 +0100423 if (!p)
424 return NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400425 memcpy(p, dp, sz);
426 memcpy(p + sz, node, node->length);
427 memcpy(p + sz + node->length, &END, sizeof(END));
428 ret = p;
429 }
430
431 return ret;
432}
433
Heinrich Schuchardtb41c8e22018-04-16 07:59:05 +0200434struct efi_device_path *efi_dp_create_device_node(const u8 type,
435 const u8 sub_type,
436 const u16 length)
437{
438 struct efi_device_path *ret;
439
Heinrich Schuchardtc96c5942019-04-23 00:51:01 +0200440 if (length < sizeof(struct efi_device_path))
441 return NULL;
442
Heinrich Schuchardtb41c8e22018-04-16 07:59:05 +0200443 ret = dp_alloc(length);
444 if (!ret)
445 return ret;
446 ret->type = type;
447 ret->sub_type = sub_type;
448 ret->length = length;
449 return ret;
450}
451
Heinrich Schuchardtcb0f7ce2018-04-16 07:59:09 +0200452struct efi_device_path *efi_dp_append_instance(
453 const struct efi_device_path *dp,
454 const struct efi_device_path *dpi)
455{
456 size_t sz, szi;
457 struct efi_device_path *p, *ret;
458
459 if (!dpi)
460 return NULL;
461 if (!dp)
462 return efi_dp_dup(dpi);
463 sz = efi_dp_size(dp);
464 szi = efi_dp_instance_size(dpi);
465 p = dp_alloc(sz + szi + 2 * sizeof(END));
466 if (!p)
467 return NULL;
468 ret = p;
469 memcpy(p, dp, sz + sizeof(END));
470 p = (void *)p + sz;
471 p->sub_type = DEVICE_PATH_SUB_TYPE_INSTANCE_END;
472 p = (void *)p + sizeof(END);
473 memcpy(p, dpi, szi);
474 p = (void *)p + szi;
475 memcpy(p, &END, sizeof(END));
476 return ret;
477}
478
479struct efi_device_path *efi_dp_get_next_instance(struct efi_device_path **dp,
480 efi_uintn_t *size)
481{
482 size_t sz;
483 struct efi_device_path *p;
484
485 if (size)
486 *size = 0;
487 if (!dp || !*dp)
488 return NULL;
Heinrich Schuchardtcb0f7ce2018-04-16 07:59:09 +0200489 sz = efi_dp_instance_size(*dp);
490 p = dp_alloc(sz + sizeof(END));
491 if (!p)
492 return NULL;
493 memcpy(p, *dp, sz + sizeof(END));
494 *dp = (void *)*dp + sz;
495 if ((*dp)->sub_type == DEVICE_PATH_SUB_TYPE_INSTANCE_END)
496 *dp = (void *)*dp + sizeof(END);
497 else
498 *dp = NULL;
499 if (size)
500 *size = sz + sizeof(END);
501 return p;
502}
503
504bool efi_dp_is_multi_instance(const struct efi_device_path *dp)
505{
506 const struct efi_device_path *p = dp;
507
508 if (!p)
509 return false;
510 while (p->type != DEVICE_PATH_TYPE_END)
511 p = (void *)p + p->length;
512 return p->sub_type == DEVICE_PATH_SUB_TYPE_INSTANCE_END;
513}
514
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400515/* size of device-path not including END node for device and all parents
516 * up to the root device.
517 */
Heinrich Schuchardtc22d9e32019-11-10 02:16:33 +0100518__maybe_unused static unsigned int dp_size(struct udevice *dev)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400519{
520 if (!dev || !dev->driver)
521 return sizeof(ROOT);
522
Simon Glass56ada7b2022-01-29 14:58:38 -0700523 switch (device_get_uclass_id(dev)) {
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400524 case UCLASS_ROOT:
525 case UCLASS_SIMPLE_BUS:
526 /* stop traversing parents at this point: */
527 return sizeof(ROOT);
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100528 case UCLASS_ETH:
529 return dp_size(dev->parent) +
530 sizeof(struct efi_device_path_mac_addr);
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100531 case UCLASS_BLK:
532 switch (dev->parent->uclass->uc_drv->id) {
533#ifdef CONFIG_IDE
534 case UCLASS_IDE:
535 return dp_size(dev->parent) +
536 sizeof(struct efi_device_path_atapi);
537#endif
Simon Glass222f3cb2021-09-24 18:30:17 -0600538#if defined(CONFIG_SCSI)
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100539 case UCLASS_SCSI:
540 return dp_size(dev->parent) +
541 sizeof(struct efi_device_path_scsi);
542#endif
Simon Glass222f3cb2021-09-24 18:30:17 -0600543#if defined(CONFIG_MMC)
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100544 case UCLASS_MMC:
545 return dp_size(dev->parent) +
546 sizeof(struct efi_device_path_sd_mmc_path);
547#endif
Heinrich Schuchardt7bdb6022020-05-20 23:12:02 +0200548#if defined(CONFIG_AHCI) || defined(CONFIG_SATA)
549 case UCLASS_AHCI:
550 return dp_size(dev->parent) +
551 sizeof(struct efi_device_path_sata);
552#endif
Patrick Wildta3ca37e2019-10-03 16:24:17 +0200553#if defined(CONFIG_NVME)
554 case UCLASS_NVME:
555 return dp_size(dev->parent) +
556 sizeof(struct efi_device_path_nvme);
557#endif
AKASHI Takahiro659a6262019-09-12 13:52:35 +0900558#ifdef CONFIG_SANDBOX
559 case UCLASS_ROOT:
560 /*
561 * Sandbox's host device will be represented
562 * as vendor device with extra one byte for
563 * device number
564 */
565 return dp_size(dev->parent)
566 + sizeof(struct efi_device_path_vendor) + 1;
567#endif
Heinrich Schuchardtc770aaa2020-05-20 22:39:35 +0200568#ifdef CONFIG_VIRTIO_BLK
569 case UCLASS_VIRTIO:
570 /*
571 * Virtio devices will be represented as a vendor
572 * device node with an extra byte for the device
573 * number.
574 */
575 return dp_size(dev->parent)
576 + sizeof(struct efi_device_path_vendor) + 1;
577#endif
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100578 default:
579 return dp_size(dev->parent);
580 }
Simon Glass222f3cb2021-09-24 18:30:17 -0600581#if defined(CONFIG_MMC)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400582 case UCLASS_MMC:
583 return dp_size(dev->parent) +
584 sizeof(struct efi_device_path_sd_mmc_path);
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100585#endif
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400586 case UCLASS_MASS_STORAGE:
587 case UCLASS_USB_HUB:
588 return dp_size(dev->parent) +
589 sizeof(struct efi_device_path_usb_class);
590 default:
591 /* just skip over unknown classes: */
592 return dp_size(dev->parent);
593 }
594}
595
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100596/*
597 * Recursively build a device path.
598 *
599 * @buf pointer to the end of the device path
600 * @dev device
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100601 * Return: pointer to the end of the device path
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100602 */
Heinrich Schuchardtc22d9e32019-11-10 02:16:33 +0100603__maybe_unused static void *dp_fill(void *buf, struct udevice *dev)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400604{
605 if (!dev || !dev->driver)
606 return buf;
607
Simon Glass56ada7b2022-01-29 14:58:38 -0700608 switch (device_get_uclass_id(dev)) {
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400609 case UCLASS_ROOT:
610 case UCLASS_SIMPLE_BUS: {
611 /* stop traversing parents at this point: */
612 struct efi_device_path_vendor *vdp = buf;
613 *vdp = ROOT;
614 return &vdp[1];
615 }
Simon Glass222f3cb2021-09-24 18:30:17 -0600616#ifdef CONFIG_NET
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100617 case UCLASS_ETH: {
618 struct efi_device_path_mac_addr *dp =
619 dp_fill(buf, dev->parent);
Simon Glass95588622020-12-22 19:30:28 -0700620 struct eth_pdata *pdata = dev_get_plat(dev);
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100621
622 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
623 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR;
624 dp->dp.length = sizeof(*dp);
625 memset(&dp->mac, 0, sizeof(dp->mac));
626 /* We only support IPv4 */
627 memcpy(&dp->mac, &pdata->enetaddr, ARP_HLEN);
628 /* Ethernet */
629 dp->if_type = 1;
630 return &dp[1];
631 }
632#endif
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100633 case UCLASS_BLK:
634 switch (dev->parent->uclass->uc_drv->id) {
AKASHI Takahiro659a6262019-09-12 13:52:35 +0900635#ifdef CONFIG_SANDBOX
636 case UCLASS_ROOT: {
637 /* stop traversing parents at this point: */
Heinrich Schuchardt1e3beaf2020-05-06 01:28:08 +0200638 struct efi_device_path_vendor *dp;
Simon Glass71fa5b42020-12-03 16:55:18 -0700639 struct blk_desc *desc = dev_get_uclass_plat(dev);
AKASHI Takahiro659a6262019-09-12 13:52:35 +0900640
641 dp_fill(buf, dev->parent);
642 dp = buf;
643 ++dp;
644 dp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
645 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR;
646 dp->dp.length = sizeof(*dp) + 1;
647 memcpy(&dp->guid, &efi_guid_host_dev,
648 sizeof(efi_guid_t));
649 dp->vendor_data[0] = desc->devnum;
650 return &dp->vendor_data[1];
651 }
652#endif
Heinrich Schuchardtc770aaa2020-05-20 22:39:35 +0200653#ifdef CONFIG_VIRTIO_BLK
654 case UCLASS_VIRTIO: {
655 struct efi_device_path_vendor *dp;
Simon Glass71fa5b42020-12-03 16:55:18 -0700656 struct blk_desc *desc = dev_get_uclass_plat(dev);
Heinrich Schuchardtc770aaa2020-05-20 22:39:35 +0200657
658 dp_fill(buf, dev->parent);
659 dp = buf;
660 ++dp;
661 dp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
662 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR;
663 dp->dp.length = sizeof(*dp) + 1;
664 memcpy(&dp->guid, &efi_guid_virtio_dev,
665 sizeof(efi_guid_t));
666 dp->vendor_data[0] = desc->devnum;
667 return &dp->vendor_data[1];
668 }
669#endif
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100670#ifdef CONFIG_IDE
671 case UCLASS_IDE: {
672 struct efi_device_path_atapi *dp =
673 dp_fill(buf, dev->parent);
Simon Glass71fa5b42020-12-03 16:55:18 -0700674 struct blk_desc *desc = dev_get_uclass_plat(dev);
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100675
676 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
677 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_ATAPI;
678 dp->dp.length = sizeof(*dp);
679 dp->logical_unit_number = desc->devnum;
680 dp->primary_secondary = IDE_BUS(desc->devnum);
681 dp->slave_master = desc->devnum %
682 (CONFIG_SYS_IDE_MAXDEVICE /
683 CONFIG_SYS_IDE_MAXBUS);
684 return &dp[1];
685 }
686#endif
Simon Glass222f3cb2021-09-24 18:30:17 -0600687#if defined(CONFIG_SCSI)
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100688 case UCLASS_SCSI: {
689 struct efi_device_path_scsi *dp =
690 dp_fill(buf, dev->parent);
Simon Glass71fa5b42020-12-03 16:55:18 -0700691 struct blk_desc *desc = dev_get_uclass_plat(dev);
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100692
693 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
694 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_SCSI;
695 dp->dp.length = sizeof(*dp);
696 dp->logical_unit_number = desc->lun;
697 dp->target_id = desc->target;
698 return &dp[1];
699 }
700#endif
Simon Glass222f3cb2021-09-24 18:30:17 -0600701#if defined(CONFIG_MMC)
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100702 case UCLASS_MMC: {
703 struct efi_device_path_sd_mmc_path *sddp =
704 dp_fill(buf, dev->parent);
Simon Glass71fa5b42020-12-03 16:55:18 -0700705 struct blk_desc *desc = dev_get_uclass_plat(dev);
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100706
707 sddp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
708 sddp->dp.sub_type = is_sd(desc) ?
709 DEVICE_PATH_SUB_TYPE_MSG_SD :
710 DEVICE_PATH_SUB_TYPE_MSG_MMC;
711 sddp->dp.length = sizeof(*sddp);
Simon Glass75e534b2020-12-16 21:20:07 -0700712 sddp->slot_number = dev_seq(dev);
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100713 return &sddp[1];
714 }
715#endif
Heinrich Schuchardt7bdb6022020-05-20 23:12:02 +0200716#if defined(CONFIG_AHCI) || defined(CONFIG_SATA)
717 case UCLASS_AHCI: {
718 struct efi_device_path_sata *dp =
719 dp_fill(buf, dev->parent);
Simon Glass71fa5b42020-12-03 16:55:18 -0700720 struct blk_desc *desc = dev_get_uclass_plat(dev);
Heinrich Schuchardt7bdb6022020-05-20 23:12:02 +0200721
722 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
723 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_SATA;
724 dp->dp.length = sizeof(*dp);
725 dp->hba_port = desc->devnum;
726 /* default 0xffff implies no port multiplier */
727 dp->port_multiplier_port = 0xffff;
728 dp->logical_unit_number = desc->lun;
729 return &dp[1];
730 }
731#endif
Patrick Wildta3ca37e2019-10-03 16:24:17 +0200732#if defined(CONFIG_NVME)
733 case UCLASS_NVME: {
734 struct efi_device_path_nvme *dp =
735 dp_fill(buf, dev->parent);
736 u32 ns_id;
737
738 dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
739 dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_NVME;
740 dp->dp.length = sizeof(*dp);
741 nvme_get_namespace_id(dev, &ns_id, dp->eui64);
742 memcpy(&dp->ns_id, &ns_id, sizeof(ns_id));
743 return &dp[1];
744 }
745#endif
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100746 default:
Heinrich Schuchardt1f1d49d2018-01-20 21:02:18 +0100747 debug("%s(%u) %s: unhandled parent class: %s (%u)\n",
748 __FILE__, __LINE__, __func__,
749 dev->name, dev->parent->uclass->uc_drv->id);
Heinrich Schuchardte2dcb9a2017-12-11 12:56:44 +0100750 return dp_fill(buf, dev->parent);
751 }
Simon Glass222f3cb2021-09-24 18:30:17 -0600752#if defined(CONFIG_MMC)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400753 case UCLASS_MMC: {
754 struct efi_device_path_sd_mmc_path *sddp =
755 dp_fill(buf, dev->parent);
756 struct mmc *mmc = mmc_get_mmc_dev(dev);
757 struct blk_desc *desc = mmc_get_blk_desc(mmc);
758
759 sddp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
Heinrich Schuchardt7d569db2017-12-11 12:56:39 +0100760 sddp->dp.sub_type = is_sd(desc) ?
761 DEVICE_PATH_SUB_TYPE_MSG_SD :
762 DEVICE_PATH_SUB_TYPE_MSG_MMC;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400763 sddp->dp.length = sizeof(*sddp);
Simon Glass75e534b2020-12-16 21:20:07 -0700764 sddp->slot_number = dev_seq(dev);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400765
766 return &sddp[1];
767 }
768#endif
769 case UCLASS_MASS_STORAGE:
770 case UCLASS_USB_HUB: {
771 struct efi_device_path_usb_class *udp =
772 dp_fill(buf, dev->parent);
773 struct usb_device *udev = dev_get_parent_priv(dev);
774 struct usb_device_descriptor *desc = &udev->descriptor;
775
776 udp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
777 udp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_USB_CLASS;
778 udp->dp.length = sizeof(*udp);
779 udp->vendor_id = desc->idVendor;
780 udp->product_id = desc->idProduct;
781 udp->device_class = desc->bDeviceClass;
782 udp->device_subclass = desc->bDeviceSubClass;
783 udp->device_protocol = desc->bDeviceProtocol;
784
785 return &udp[1];
786 }
787 default:
Simon Glass56ada7b2022-01-29 14:58:38 -0700788 /* If the uclass driver is missing, this will show NULL */
789 log_debug("unhandled device class: %s (%s)\n", dev->name,
790 dev_get_uclass_name(dev));
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400791 return dp_fill(buf, dev->parent);
792 }
793}
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400794
795static unsigned dp_part_size(struct blk_desc *desc, int part)
796{
797 unsigned dpsize;
Simon Glassec209a72022-01-29 14:58:39 -0700798 struct udevice *dev = desc->bdev;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400799
Simon Glass222f3cb2021-09-24 18:30:17 -0600800 dpsize = dp_size(dev);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400801
802 if (part == 0) /* the actual disk, not a partition */
803 return dpsize;
804
805 if (desc->part_type == PART_TYPE_ISO)
806 dpsize += sizeof(struct efi_device_path_cdrom_path);
807 else
808 dpsize += sizeof(struct efi_device_path_hard_drive_path);
809
810 return dpsize;
811}
812
Heinrich Schuchardt8983ffd2017-12-11 12:56:42 +0100813/*
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100814 * Create a device node for a block device partition.
Heinrich Schuchardt8983ffd2017-12-11 12:56:42 +0100815 *
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +0200816 * @buf buffer to which the device path is written
Heinrich Schuchardt8983ffd2017-12-11 12:56:42 +0100817 * @desc block device descriptor
818 * @part partition number, 0 identifies a block device
819 */
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100820static void *dp_part_node(void *buf, struct blk_desc *desc, int part)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400821{
Simon Glassc1c4a8f2020-05-10 11:39:57 -0600822 struct disk_partition info;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400823
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400824 part_get_info(desc, part, &info);
825
826 if (desc->part_type == PART_TYPE_ISO) {
827 struct efi_device_path_cdrom_path *cddp = buf;
828
Heinrich Schuchardt2aae6db2017-12-11 12:56:40 +0100829 cddp->boot_entry = part;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400830 cddp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
831 cddp->dp.sub_type = DEVICE_PATH_SUB_TYPE_CDROM_PATH;
832 cddp->dp.length = sizeof(*cddp);
833 cddp->partition_start = info.start;
Heinrich Schuchardt28dfd1a2019-09-04 13:56:01 +0200834 cddp->partition_size = info.size;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400835
836 buf = &cddp[1];
837 } else {
838 struct efi_device_path_hard_drive_path *hddp = buf;
839
840 hddp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
841 hddp->dp.sub_type = DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH;
842 hddp->dp.length = sizeof(*hddp);
Heinrich Schuchardt2aae6db2017-12-11 12:56:40 +0100843 hddp->partition_number = part;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400844 hddp->partition_start = info.start;
845 hddp->partition_end = info.size;
846 if (desc->part_type == PART_TYPE_EFI)
847 hddp->partmap_type = 2;
848 else
849 hddp->partmap_type = 1;
Jonathan Gray84b4d702017-11-22 14:18:59 +1100850
851 switch (desc->sig_type) {
852 case SIG_TYPE_NONE:
853 default:
854 hddp->signature_type = 0;
855 memset(hddp->partition_signature, 0,
856 sizeof(hddp->partition_signature));
857 break;
858 case SIG_TYPE_MBR:
859 hddp->signature_type = 1;
860 memset(hddp->partition_signature, 0,
861 sizeof(hddp->partition_signature));
862 memcpy(hddp->partition_signature, &desc->mbr_sig,
863 sizeof(desc->mbr_sig));
864 break;
865 case SIG_TYPE_GUID:
866 hddp->signature_type = 2;
Alfonso Sánchez-Beatof007a372021-07-15 15:31:42 +0200867 if (uuid_str_to_bin(info.uuid,
868 hddp->partition_signature, 1))
869 log_warning(
870 "Partition no. %d: invalid guid: %s\n",
871 part, info.uuid);
Jonathan Gray84b4d702017-11-22 14:18:59 +1100872 break;
873 }
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400874
875 buf = &hddp[1];
876 }
877
878 return buf;
879}
880
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100881/*
882 * Create a device path for a block device or one of its partitions.
883 *
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +0200884 * @buf buffer to which the device path is written
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100885 * @desc block device descriptor
886 * @part partition number, 0 identifies a block device
887 */
888static void *dp_part_fill(void *buf, struct blk_desc *desc, int part)
889{
Simon Glassec209a72022-01-29 14:58:39 -0700890 struct udevice *dev = desc->bdev;
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100891
Simon Glass222f3cb2021-09-24 18:30:17 -0600892 buf = dp_fill(buf, dev);
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100893
894 if (part == 0) /* the actual disk, not a partition */
895 return buf;
896
897 return dp_part_node(buf, desc, part);
898}
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400899
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +0200900/* Construct a device-path from a partition on a block device: */
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400901struct efi_device_path *efi_dp_from_part(struct blk_desc *desc, int part)
902{
903 void *buf, *start;
904
905 start = buf = dp_alloc(dp_part_size(desc, part) + sizeof(END));
Heinrich Schuchardt468bf972018-01-19 20:24:37 +0100906 if (!buf)
907 return NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400908
909 buf = dp_part_fill(buf, desc, part);
910
911 *((struct efi_device_path *)buf) = END;
912
913 return start;
914}
915
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100916/*
917 * Create a device node for a block device partition.
918 *
Heinrich Schuchardtb21f8392018-10-17 21:55:24 +0200919 * @buf buffer to which the device path is written
Heinrich Schuchardt6c6307c2018-01-19 20:24:46 +0100920 * @desc block device descriptor
921 * @part partition number, 0 identifies a block device
922 */
923struct efi_device_path *efi_dp_part_node(struct blk_desc *desc, int part)
924{
925 efi_uintn_t dpsize;
926 void *buf;
927
928 if (desc->part_type == PART_TYPE_ISO)
929 dpsize = sizeof(struct efi_device_path_cdrom_path);
930 else
931 dpsize = sizeof(struct efi_device_path_hard_drive_path);
932 buf = dp_alloc(dpsize);
933
934 dp_part_node(buf, desc, part);
935
936 return buf;
937}
938
Heinrich Schuchardt8d80af82019-07-14 19:26:47 +0200939/**
940 * path_to_uefi() - convert UTF-8 path to an UEFI style path
941 *
942 * Convert UTF-8 path to a UEFI style path (i.e. with backslashes as path
943 * separators and UTF-16).
944 *
945 * @src: source buffer
946 * @uefi: target buffer, possibly unaligned
947 */
948static void path_to_uefi(void *uefi, const char *src)
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400949{
Heinrich Schuchardt8d80af82019-07-14 19:26:47 +0200950 u16 *pos = uefi;
951
952 /*
953 * efi_set_bootdev() calls this routine indirectly before the UEFI
954 * subsystem is initialized. So we cannot assume unaligned access to be
955 * enabled.
956 */
957 allow_unaligned();
958
959 while (*src) {
960 s32 code = utf8_get(&src);
961
962 if (code < 0)
963 code = '?';
964 else if (code == '/')
965 code = '\\';
966 utf16_put(code, &pos);
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400967 }
Heinrich Schuchardt8d80af82019-07-14 19:26:47 +0200968 *pos = 0;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400969}
970
971/*
972 * If desc is NULL, this creates a path with only the file component,
973 * otherwise it creates a full path with both device and file components
974 */
975struct efi_device_path *efi_dp_from_file(struct blk_desc *desc, int part,
976 const char *path)
977{
978 struct efi_device_path_file_path *fp;
979 void *buf, *start;
AKASHI Takahirof1dbbae2019-10-09 16:19:52 +0900980 size_t dpsize = 0, fpsize;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400981
982 if (desc)
983 dpsize = dp_part_size(desc, part);
984
Heinrich Schuchardt8d80af82019-07-14 19:26:47 +0200985 fpsize = sizeof(struct efi_device_path) +
986 2 * (utf8_utf16_strlen(path) + 1);
AKASHI Takahirof1dbbae2019-10-09 16:19:52 +0900987 if (fpsize > U16_MAX)
988 return NULL;
989
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400990 dpsize += fpsize;
991
992 start = buf = dp_alloc(dpsize + sizeof(END));
Heinrich Schuchardt468bf972018-01-19 20:24:37 +0100993 if (!buf)
994 return NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -0400995
996 if (desc)
997 buf = dp_part_fill(buf, desc, part);
998
999 /* add file-path: */
1000 fp = buf;
1001 fp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
1002 fp->dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH;
AKASHI Takahirof1dbbae2019-10-09 16:19:52 +09001003 fp->dp.length = (u16)fpsize;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001004 path_to_uefi(fp->str, path);
1005 buf += fpsize;
1006
1007 *((struct efi_device_path *)buf) = END;
1008
1009 return start;
1010}
1011
Heinrich Schuchardt77c0da82021-03-19 02:49:54 +01001012struct efi_device_path *efi_dp_from_uart(void)
1013{
1014 void *buf, *pos;
1015 struct efi_device_path_uart *uart;
1016 size_t dpsize = sizeof(ROOT) + sizeof(*uart) + sizeof(END);
1017
1018 buf = dp_alloc(dpsize);
1019 if (!buf)
1020 return NULL;
1021 pos = buf;
1022 memcpy(pos, &ROOT, sizeof(ROOT));
1023 pos += sizeof(ROOT);
1024 uart = pos;
1025 uart->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
1026 uart->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_UART;
1027 uart->dp.length = sizeof(*uart);
1028 pos += sizeof(*uart);
1029 memcpy(pos, &END, sizeof(END));
1030
1031 return buf;
1032}
1033
Joe Hershberger5277a972018-04-13 15:26:39 -05001034#ifdef CONFIG_NET
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001035struct efi_device_path *efi_dp_from_eth(void)
1036{
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001037 void *buf, *start;
1038 unsigned dpsize = 0;
1039
1040 assert(eth_get_dev());
1041
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001042 dpsize += dp_size(eth_get_dev());
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001043
1044 start = buf = dp_alloc(dpsize + sizeof(END));
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001045 if (!buf)
1046 return NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001047
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001048 buf = dp_fill(buf, eth_get_dev());
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001049
1050 *((struct efi_device_path *)buf) = END;
1051
1052 return start;
1053}
1054#endif
1055
Rob Clark18ceba72017-10-10 08:23:06 -04001056/* Construct a device-path for memory-mapped image */
1057struct efi_device_path *efi_dp_from_mem(uint32_t memory_type,
1058 uint64_t start_address,
1059 uint64_t end_address)
1060{
1061 struct efi_device_path_memory *mdp;
1062 void *buf, *start;
1063
1064 start = buf = dp_alloc(sizeof(*mdp) + sizeof(END));
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001065 if (!buf)
1066 return NULL;
Rob Clark18ceba72017-10-10 08:23:06 -04001067
1068 mdp = buf;
1069 mdp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
1070 mdp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MEMORY;
1071 mdp->dp.length = sizeof(*mdp);
1072 mdp->memory_type = memory_type;
1073 mdp->start_address = start_address;
1074 mdp->end_address = end_address;
1075 buf = &mdp[1];
1076
1077 *((struct efi_device_path *)buf) = END;
1078
1079 return start;
1080}
1081
Heinrich Schuchardt0d36adc2019-02-04 12:49:43 +01001082/**
1083 * efi_dp_split_file_path() - split of relative file path from device path
1084 *
1085 * Given a device path indicating a file on a device, separate the device
1086 * path in two: the device path of the actual device and the file path
1087 * relative to this device.
1088 *
1089 * @full_path: device path including device and file path
1090 * @device_path: path of the device
AKASHI Takahiro9c6531f2019-04-16 17:39:26 +02001091 * @file_path: relative path of the file or NULL if there is none
Heinrich Schuchardt0d36adc2019-02-04 12:49:43 +01001092 * Return: status code
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001093 */
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001094efi_status_t efi_dp_split_file_path(struct efi_device_path *full_path,
1095 struct efi_device_path **device_path,
1096 struct efi_device_path **file_path)
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001097{
AKASHI Takahiro9c6531f2019-04-16 17:39:26 +02001098 struct efi_device_path *p, *dp, *fp = NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001099
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001100 *device_path = NULL;
1101 *file_path = NULL;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001102 dp = efi_dp_dup(full_path);
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001103 if (!dp)
1104 return EFI_OUT_OF_RESOURCES;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001105 p = dp;
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001106 while (!EFI_DP_TYPE(p, MEDIA_DEVICE, FILE_PATH)) {
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001107 p = efi_dp_next(p);
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001108 if (!p)
AKASHI Takahiro9c6531f2019-04-16 17:39:26 +02001109 goto out;
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001110 }
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001111 fp = efi_dp_dup(p);
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001112 if (!fp)
1113 return EFI_OUT_OF_RESOURCES;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001114 p->type = DEVICE_PATH_TYPE_END;
1115 p->sub_type = DEVICE_PATH_SUB_TYPE_END;
1116 p->length = sizeof(*p);
1117
AKASHI Takahiro9c6531f2019-04-16 17:39:26 +02001118out:
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001119 *device_path = dp;
1120 *file_path = fp;
Heinrich Schuchardt468bf972018-01-19 20:24:37 +01001121 return EFI_SUCCESS;
Rob Clarkf90cb9f2017-09-13 18:05:28 -04001122}
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001123
Heinrich Schuchardt6e0a1b42019-10-30 20:13:24 +01001124/**
1125 * efi_dp_from_name() - convert U-Boot device and file path to device path
1126 *
1127 * @dev: U-Boot device, e.g. 'mmc'
1128 * @devnr: U-Boot device number, e.g. 1 for 'mmc:1'
1129 * @path: file path relative to U-Boot device, may be NULL
1130 * @device: pointer to receive device path of the device
1131 * @file: pointer to receive device path for the file
1132 * Return: status code
1133 */
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001134efi_status_t efi_dp_from_name(const char *dev, const char *devnr,
1135 const char *path,
1136 struct efi_device_path **device,
1137 struct efi_device_path **file)
1138{
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001139 struct blk_desc *desc = NULL;
Simon Glassc1c4a8f2020-05-10 11:39:57 -06001140 struct disk_partition fs_partition;
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001141 int part = 0;
Heinrich Schuchardt158c0d72021-05-25 12:07:30 +02001142 char *filename;
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001143 char *s;
1144
AKASHI Takahiro39844412018-11-05 18:06:40 +09001145 if (path && !file)
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001146 return EFI_INVALID_PARAMETER;
1147
Heinrich Schuchardt77c0da82021-03-19 02:49:54 +01001148 if (!strcmp(dev, "Net")) {
1149#ifdef CONFIG_NET
1150 if (device)
1151 *device = efi_dp_from_eth();
1152#endif
1153 } else if (!strcmp(dev, "Uart")) {
1154 if (device)
1155 *device = efi_dp_from_uart();
1156 } else {
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001157 part = blk_get_device_part_str(dev, devnr, &desc, &fs_partition,
1158 1);
Patrick Delaunayba7a9502019-04-10 11:02:58 +02001159 if (part < 0 || !desc)
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001160 return EFI_INVALID_PARAMETER;
1161
AKASHI Takahiro39844412018-11-05 18:06:40 +09001162 if (device)
1163 *device = efi_dp_from_part(desc, part);
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001164 }
1165
1166 if (!path)
1167 return EFI_SUCCESS;
1168
Heinrich Schuchardt158c0d72021-05-25 12:07:30 +02001169 filename = calloc(1, strlen(path) + 1);
1170 if (!filename)
1171 return EFI_OUT_OF_RESOURCES;
1172
1173 sprintf(filename, "%s", path);
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001174 /* DOS style file path: */
1175 s = filename;
1176 while ((s = strchr(s, '/')))
1177 *s++ = '\\';
Heinrich Schuchardt77c0da82021-03-19 02:49:54 +01001178 *file = efi_dp_from_file(desc, part, filename);
Heinrich Schuchardt158c0d72021-05-25 12:07:30 +02001179 free(filename);
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001180
Heinrich Schuchardt6e0a1b42019-10-30 20:13:24 +01001181 if (!*file)
AKASHI Takahirof1dbbae2019-10-09 16:19:52 +09001182 return EFI_INVALID_PARAMETER;
1183
AKASHI Takahiro035fb012018-10-17 16:32:03 +09001184 return EFI_SUCCESS;
1185}
Heinrich Schuchardt22c8e082020-08-23 10:49:46 +02001186
1187/**
1188 * efi_dp_check_length() - check length of a device path
1189 *
1190 * @dp: pointer to device path
1191 * @maxlen: maximum length of the device path
1192 * Return:
1193 * * length of the device path if it is less or equal @maxlen
1194 * * -1 if the device path is longer then @maxlen
1195 * * -1 if a device path node has a length of less than 4
1196 * * -EINVAL if maxlen exceeds SSIZE_MAX
1197 */
1198ssize_t efi_dp_check_length(const struct efi_device_path *dp,
1199 const size_t maxlen)
1200{
1201 ssize_t ret = 0;
1202 u16 len;
1203
1204 if (maxlen > SSIZE_MAX)
1205 return -EINVAL;
1206 for (;;) {
1207 len = dp->length;
1208 if (len < 4)
1209 return -1;
1210 ret += len;
1211 if (ret > maxlen)
1212 return -1;
1213 if (dp->type == DEVICE_PATH_TYPE_END &&
1214 dp->sub_type == DEVICE_PATH_SUB_TYPE_END)
1215 return ret;
1216 dp = (const struct efi_device_path *)((const u8 *)dp + len);
1217 }
Ilias Apalodimas483d28e2021-03-17 21:54:58 +02001218}
1219
1220/**
1221 * efi_dp_from_lo() - Get the instance of a VenMedia node in a
1222 * multi-instance device path that matches
1223 * a specific GUID. This kind of device paths
1224 * is found in Boot#### options describing an
1225 * initrd location
1226 *
1227 * @lo: EFI_LOAD_OPTION containing a valid device path
Ilias Apalodimas483d28e2021-03-17 21:54:58 +02001228 * @guid: guid to search for
1229 *
1230 * Return:
1231 * device path including the VenMedia node or NULL.
1232 * Caller must free the returned value.
1233 */
1234struct
1235efi_device_path *efi_dp_from_lo(struct efi_load_option *lo,
Heinrich Schuchardt9979cff2021-10-15 01:31:02 +02001236 const efi_guid_t *guid)
Ilias Apalodimas483d28e2021-03-17 21:54:58 +02001237{
1238 struct efi_device_path *fp = lo->file_path;
1239 struct efi_device_path_vendor *vendor;
1240 int lo_len = lo->file_path_length;
1241
1242 for (; lo_len >= sizeof(struct efi_device_path);
1243 lo_len -= fp->length, fp = (void *)fp + fp->length) {
1244 if (lo_len < 0 || efi_dp_check_length(fp, lo_len) < 0)
1245 break;
1246 if (fp->type != DEVICE_PATH_TYPE_MEDIA_DEVICE ||
1247 fp->sub_type != DEVICE_PATH_SUB_TYPE_VENDOR_PATH)
1248 continue;
1249
1250 vendor = (struct efi_device_path_vendor *)fp;
Heinrich Schuchardt9979cff2021-10-15 01:31:02 +02001251 if (!guidcmp(&vendor->guid, guid))
Heinrich Schuchardt35dd3222021-10-15 02:59:15 +02001252 return efi_dp_dup(efi_dp_next(fp));
Ilias Apalodimas483d28e2021-03-17 21:54:58 +02001253 }
1254 log_debug("VenMedia(%pUl) not found in %ls\n", &guid, lo->label);
1255
1256 return NULL;
Heinrich Schuchardt22c8e082020-08-23 10:49:46 +02001257}
Masahisa Kojima6460c3e2021-10-26 17:27:25 +09001258
1259/**
1260 * search_gpt_dp_node() - search gpt device path node
1261 *
1262 * @device_path: device path
1263 *
1264 * Return: pointer to the gpt device path node
1265 */
1266struct efi_device_path *search_gpt_dp_node(struct efi_device_path *device_path)
1267{
1268 struct efi_device_path *dp = device_path;
1269
1270 while (dp) {
1271 if (dp->type == DEVICE_PATH_TYPE_MEDIA_DEVICE &&
1272 dp->sub_type == DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH) {
1273 struct efi_device_path_hard_drive_path *hd_dp =
1274 (struct efi_device_path_hard_drive_path *)dp;
1275
1276 if (hd_dp->partmap_type == PART_FORMAT_GPT &&
1277 hd_dp->signature_type == SIG_TYPE_GUID)
1278 return dp;
1279 }
1280 dp = efi_dp_next(dp);
1281 }
1282
1283 return NULL;
1284}