blob: 50330ddac794cdfc2f368723a9517f6a9613f0c7 [file] [log] [blame]
Rob Clarkb66c60d2017-09-13 18:05:28 -04001/*
2 * EFI device path from u-boot device-model mapping
3 *
4 * (C) Copyright 2017 Rob Clark
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
10#include <blk.h>
11#include <dm.h>
12#include <usb.h>
13#include <mmc.h>
14#include <efi_loader.h>
15#include <inttypes.h>
16#include <part.h>
17
18/* template END node: */
19static const struct efi_device_path END = {
20 .type = DEVICE_PATH_TYPE_END,
21 .sub_type = DEVICE_PATH_SUB_TYPE_END,
22 .length = sizeof(END),
23};
24
25#define U_BOOT_GUID \
26 EFI_GUID(0xe61d73b9, 0xa384, 0x4acc, \
27 0xae, 0xab, 0x82, 0xe8, 0x28, 0xf3, 0x62, 0x8b)
28
29/* template ROOT node: */
30static const struct efi_device_path_vendor ROOT = {
31 .dp = {
32 .type = DEVICE_PATH_TYPE_HARDWARE_DEVICE,
33 .sub_type = DEVICE_PATH_SUB_TYPE_VENDOR,
34 .length = sizeof(ROOT),
35 },
36 .guid = U_BOOT_GUID,
37};
38
Heinrich Schuchardt66b051d2017-12-11 12:56:39 +010039#if defined(CONFIG_DM_MMC) && defined(CONFIG_MMC)
40/*
41 * Determine if an MMC device is an SD card.
42 *
43 * @desc block device descriptor
44 * @return true if the device is an SD card
45 */
46static bool is_sd(struct blk_desc *desc)
47{
48 struct mmc *mmc = find_mmc_device(desc->devnum);
49
50 if (!mmc)
51 return false;
52
53 return IS_SD(mmc) != 0U;
54}
55#endif
56
Rob Clarkb66c60d2017-09-13 18:05:28 -040057static void *dp_alloc(size_t sz)
58{
59 void *buf;
60
61 if (efi_allocate_pool(EFI_ALLOCATE_ANY_PAGES, sz, &buf) != EFI_SUCCESS)
62 return NULL;
63
64 return buf;
65}
66
67/*
68 * Iterate to next block in device-path, terminating (returning NULL)
69 * at /End* node.
70 */
71struct efi_device_path *efi_dp_next(const struct efi_device_path *dp)
72{
73 if (dp == NULL)
74 return NULL;
75 if (dp->type == DEVICE_PATH_TYPE_END)
76 return NULL;
77 dp = ((void *)dp) + dp->length;
78 if (dp->type == DEVICE_PATH_TYPE_END)
79 return NULL;
80 return (struct efi_device_path *)dp;
81}
82
83/*
84 * Compare two device-paths, stopping when the shorter of the two hits
85 * an End* node. This is useful to, for example, compare a device-path
86 * representing a device with one representing a file on the device, or
87 * a device with a parent device.
88 */
Heinrich Schuchardtff401d32017-10-26 19:25:48 +020089int efi_dp_match(const struct efi_device_path *a,
90 const struct efi_device_path *b)
Rob Clarkb66c60d2017-09-13 18:05:28 -040091{
92 while (1) {
93 int ret;
94
95 ret = memcmp(&a->length, &b->length, sizeof(a->length));
96 if (ret)
97 return ret;
98
99 ret = memcmp(a, b, a->length);
100 if (ret)
101 return ret;
102
103 a = efi_dp_next(a);
104 b = efi_dp_next(b);
105
106 if (!a || !b)
107 return 0;
108 }
109}
110
111
112/*
113 * See UEFI spec (section 3.1.2, about short-form device-paths..
114 * tl;dr: we can have a device-path that starts with a USB WWID
115 * or USB Class node, and a few other cases which don't encode
116 * the full device path with bus hierarchy:
117 *
118 * - MESSAGING:USB_WWID
119 * - MESSAGING:USB_CLASS
120 * - MEDIA:FILE_PATH
121 * - MEDIA:HARD_DRIVE
122 * - MESSAGING:URI
123 */
124static struct efi_device_path *shorten_path(struct efi_device_path *dp)
125{
126 while (dp) {
127 /*
128 * TODO: Add MESSAGING:USB_WWID and MESSAGING:URI..
129 * in practice fallback.efi just uses MEDIA:HARD_DRIVE
130 * so not sure when we would see these other cases.
131 */
132 if (EFI_DP_TYPE(dp, MESSAGING_DEVICE, MSG_USB_CLASS) ||
133 EFI_DP_TYPE(dp, MEDIA_DEVICE, HARD_DRIVE_PATH) ||
134 EFI_DP_TYPE(dp, MEDIA_DEVICE, FILE_PATH))
135 return dp;
136
137 dp = efi_dp_next(dp);
138 }
139
140 return dp;
141}
142
143static struct efi_object *find_obj(struct efi_device_path *dp, bool short_path,
144 struct efi_device_path **rem)
145{
146 struct efi_object *efiobj;
Alexander Graf905cb9e2017-12-11 14:29:46 +0100147 unsigned int dp_size = efi_dp_size(dp);
Rob Clarkb66c60d2017-09-13 18:05:28 -0400148
149 list_for_each_entry(efiobj, &efi_obj_list, link) {
Heinrich Schuchardt72292ab2017-11-26 14:05:16 +0100150 struct efi_handler *handler;
151 struct efi_device_path *obj_dp;
152 efi_status_t ret;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400153
Heinrich Schuchardt72292ab2017-11-26 14:05:16 +0100154 ret = efi_search_protocol(efiobj->handle,
155 &efi_guid_device_path, &handler);
156 if (ret != EFI_SUCCESS)
157 continue;
158 obj_dp = handler->protocol_interface;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400159
Heinrich Schuchardt72292ab2017-11-26 14:05:16 +0100160 do {
161 if (efi_dp_match(dp, obj_dp) == 0) {
162 if (rem) {
Alexander Graf905cb9e2017-12-11 14:29:46 +0100163 /*
164 * Allow partial matches, but inform
165 * the caller.
166 */
Heinrich Schuchardt72292ab2017-11-26 14:05:16 +0100167 *rem = ((void *)dp) +
168 efi_dp_size(obj_dp);
Alexander Graf905cb9e2017-12-11 14:29:46 +0100169 return efiobj;
170 } else {
171 /* Only return on exact matches */
172 if (efi_dp_size(obj_dp) == dp_size)
173 return efiobj;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400174 }
Heinrich Schuchardt72292ab2017-11-26 14:05:16 +0100175 }
Rob Clarkb66c60d2017-09-13 18:05:28 -0400176
Heinrich Schuchardt72292ab2017-11-26 14:05:16 +0100177 obj_dp = shorten_path(efi_dp_next(obj_dp));
178 } while (short_path && obj_dp);
Rob Clarkb66c60d2017-09-13 18:05:28 -0400179 }
180
181 return NULL;
182}
183
184
185/*
186 * Find an efiobj from device-path, if 'rem' is not NULL, returns the
187 * remaining part of the device path after the matched object.
188 */
189struct efi_object *efi_dp_find_obj(struct efi_device_path *dp,
190 struct efi_device_path **rem)
191{
192 struct efi_object *efiobj;
193
Alexander Graf905cb9e2017-12-11 14:29:46 +0100194 /* Search for an exact match first */
195 efiobj = find_obj(dp, false, NULL);
Rob Clarkb66c60d2017-09-13 18:05:28 -0400196
Alexander Graf905cb9e2017-12-11 14:29:46 +0100197 /* Then for a fuzzy match */
198 if (!efiobj)
199 efiobj = find_obj(dp, false, rem);
200
201 /* And now for a fuzzy short match */
Rob Clarkb66c60d2017-09-13 18:05:28 -0400202 if (!efiobj)
203 efiobj = find_obj(dp, true, rem);
204
205 return efiobj;
206}
207
208/* return size not including End node: */
209unsigned efi_dp_size(const struct efi_device_path *dp)
210{
211 unsigned sz = 0;
212
213 while (dp) {
214 sz += dp->length;
215 dp = efi_dp_next(dp);
216 }
217
218 return sz;
219}
220
221struct efi_device_path *efi_dp_dup(const struct efi_device_path *dp)
222{
223 struct efi_device_path *ndp;
224 unsigned sz = efi_dp_size(dp) + sizeof(END);
225
226 if (!dp)
227 return NULL;
228
229 ndp = dp_alloc(sz);
230 memcpy(ndp, dp, sz);
231
232 return ndp;
233}
234
235struct efi_device_path *efi_dp_append(const struct efi_device_path *dp1,
236 const struct efi_device_path *dp2)
237{
238 struct efi_device_path *ret;
239
240 if (!dp1) {
241 ret = efi_dp_dup(dp2);
242 } else if (!dp2) {
243 ret = efi_dp_dup(dp1);
244 } else {
245 /* both dp1 and dp2 are non-null */
246 unsigned sz1 = efi_dp_size(dp1);
247 unsigned sz2 = efi_dp_size(dp2);
248 void *p = dp_alloc(sz1 + sz2 + sizeof(END));
249 memcpy(p, dp1, sz1);
250 memcpy(p + sz1, dp2, sz2);
251 memcpy(p + sz1 + sz2, &END, sizeof(END));
252 ret = p;
253 }
254
255 return ret;
256}
257
258struct efi_device_path *efi_dp_append_node(const struct efi_device_path *dp,
259 const struct efi_device_path *node)
260{
261 struct efi_device_path *ret;
262
263 if (!node && !dp) {
264 ret = efi_dp_dup(&END);
265 } else if (!node) {
266 ret = efi_dp_dup(dp);
267 } else if (!dp) {
268 unsigned sz = node->length;
269 void *p = dp_alloc(sz + sizeof(END));
270 memcpy(p, node, sz);
271 memcpy(p + sz, &END, sizeof(END));
272 ret = p;
273 } else {
274 /* both dp and node are non-null */
275 unsigned sz = efi_dp_size(dp);
276 void *p = dp_alloc(sz + node->length + sizeof(END));
277 memcpy(p, dp, sz);
278 memcpy(p + sz, node, node->length);
279 memcpy(p + sz + node->length, &END, sizeof(END));
280 ret = p;
281 }
282
283 return ret;
284}
285
286#ifdef CONFIG_DM
287/* size of device-path not including END node for device and all parents
288 * up to the root device.
289 */
290static unsigned dp_size(struct udevice *dev)
291{
292 if (!dev || !dev->driver)
293 return sizeof(ROOT);
294
295 switch (dev->driver->id) {
296 case UCLASS_ROOT:
297 case UCLASS_SIMPLE_BUS:
298 /* stop traversing parents at this point: */
299 return sizeof(ROOT);
300 case UCLASS_MMC:
301 return dp_size(dev->parent) +
302 sizeof(struct efi_device_path_sd_mmc_path);
303 case UCLASS_MASS_STORAGE:
304 case UCLASS_USB_HUB:
305 return dp_size(dev->parent) +
306 sizeof(struct efi_device_path_usb_class);
307 default:
308 /* just skip over unknown classes: */
309 return dp_size(dev->parent);
310 }
311}
312
313static void *dp_fill(void *buf, struct udevice *dev)
314{
315 if (!dev || !dev->driver)
316 return buf;
317
318 switch (dev->driver->id) {
319 case UCLASS_ROOT:
320 case UCLASS_SIMPLE_BUS: {
321 /* stop traversing parents at this point: */
322 struct efi_device_path_vendor *vdp = buf;
323 *vdp = ROOT;
324 return &vdp[1];
325 }
326#if defined(CONFIG_DM_MMC) && defined(CONFIG_MMC)
327 case UCLASS_MMC: {
328 struct efi_device_path_sd_mmc_path *sddp =
329 dp_fill(buf, dev->parent);
330 struct mmc *mmc = mmc_get_mmc_dev(dev);
331 struct blk_desc *desc = mmc_get_blk_desc(mmc);
332
333 sddp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
Heinrich Schuchardt66b051d2017-12-11 12:56:39 +0100334 sddp->dp.sub_type = is_sd(desc) ?
335 DEVICE_PATH_SUB_TYPE_MSG_SD :
336 DEVICE_PATH_SUB_TYPE_MSG_MMC;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400337 sddp->dp.length = sizeof(*sddp);
338 sddp->slot_number = dev->seq;
339
340 return &sddp[1];
341 }
342#endif
343 case UCLASS_MASS_STORAGE:
344 case UCLASS_USB_HUB: {
345 struct efi_device_path_usb_class *udp =
346 dp_fill(buf, dev->parent);
347 struct usb_device *udev = dev_get_parent_priv(dev);
348 struct usb_device_descriptor *desc = &udev->descriptor;
349
350 udp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
351 udp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_USB_CLASS;
352 udp->dp.length = sizeof(*udp);
353 udp->vendor_id = desc->idVendor;
354 udp->product_id = desc->idProduct;
355 udp->device_class = desc->bDeviceClass;
356 udp->device_subclass = desc->bDeviceSubClass;
357 udp->device_protocol = desc->bDeviceProtocol;
358
359 return &udp[1];
360 }
361 default:
362 debug("unhandled device class: %s (%u)\n",
363 dev->name, dev->driver->id);
364 return dp_fill(buf, dev->parent);
365 }
366}
367
368/* Construct a device-path from a device: */
369struct efi_device_path *efi_dp_from_dev(struct udevice *dev)
370{
371 void *buf, *start;
372
373 start = buf = dp_alloc(dp_size(dev) + sizeof(END));
374 buf = dp_fill(buf, dev);
375 *((struct efi_device_path *)buf) = END;
376
377 return start;
378}
379#endif
380
381static unsigned dp_part_size(struct blk_desc *desc, int part)
382{
383 unsigned dpsize;
384
385#ifdef CONFIG_BLK
386 dpsize = dp_size(desc->bdev->parent);
387#else
388 dpsize = sizeof(ROOT) + sizeof(struct efi_device_path_usb);
389#endif
390
391 if (part == 0) /* the actual disk, not a partition */
392 return dpsize;
393
394 if (desc->part_type == PART_TYPE_ISO)
395 dpsize += sizeof(struct efi_device_path_cdrom_path);
396 else
397 dpsize += sizeof(struct efi_device_path_hard_drive_path);
398
399 return dpsize;
400}
401
402static void *dp_part_fill(void *buf, struct blk_desc *desc, int part)
403{
404 disk_partition_t info;
405
406#ifdef CONFIG_BLK
407 buf = dp_fill(buf, desc->bdev->parent);
408#else
409 /*
410 * We *could* make a more accurate path, by looking at if_type
411 * and handling all the different cases like we do for non-
412 * legacy (ie CONFIG_BLK=y) case. But most important thing
413 * is just to have a unique device-path for if_type+devnum.
414 * So map things to a fictional USB device:
415 */
416 struct efi_device_path_usb *udp;
417
418 memcpy(buf, &ROOT, sizeof(ROOT));
419 buf += sizeof(ROOT);
420
421 udp = buf;
422 udp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
423 udp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_USB;
424 udp->dp.length = sizeof(*udp);
425 udp->parent_port_number = desc->if_type;
426 udp->usb_interface = desc->devnum;
427 buf = &udp[1];
428#endif
429
430 if (part == 0) /* the actual disk, not a partition */
431 return buf;
432
433 part_get_info(desc, part, &info);
434
435 if (desc->part_type == PART_TYPE_ISO) {
436 struct efi_device_path_cdrom_path *cddp = buf;
437
438 cddp->boot_entry = part - 1;
439 cddp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
440 cddp->dp.sub_type = DEVICE_PATH_SUB_TYPE_CDROM_PATH;
441 cddp->dp.length = sizeof(*cddp);
442 cddp->partition_start = info.start;
443 cddp->partition_end = info.size;
444
445 buf = &cddp[1];
446 } else {
447 struct efi_device_path_hard_drive_path *hddp = buf;
448
449 hddp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
450 hddp->dp.sub_type = DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH;
451 hddp->dp.length = sizeof(*hddp);
452 hddp->partition_number = part - 1;
453 hddp->partition_start = info.start;
454 hddp->partition_end = info.size;
455 if (desc->part_type == PART_TYPE_EFI)
456 hddp->partmap_type = 2;
457 else
458 hddp->partmap_type = 1;
Jonathan Grayb6e9e092017-11-22 14:18:59 +1100459
460 switch (desc->sig_type) {
461 case SIG_TYPE_NONE:
462 default:
463 hddp->signature_type = 0;
464 memset(hddp->partition_signature, 0,
465 sizeof(hddp->partition_signature));
466 break;
467 case SIG_TYPE_MBR:
468 hddp->signature_type = 1;
469 memset(hddp->partition_signature, 0,
470 sizeof(hddp->partition_signature));
471 memcpy(hddp->partition_signature, &desc->mbr_sig,
472 sizeof(desc->mbr_sig));
473 break;
474 case SIG_TYPE_GUID:
475 hddp->signature_type = 2;
Rob Clarkb66c60d2017-09-13 18:05:28 -0400476 memcpy(hddp->partition_signature, &desc->guid_sig,
477 sizeof(hddp->partition_signature));
Jonathan Grayb6e9e092017-11-22 14:18:59 +1100478 break;
479 }
Rob Clarkb66c60d2017-09-13 18:05:28 -0400480
481 buf = &hddp[1];
482 }
483
484 return buf;
485}
486
487
488/* Construct a device-path from a partition on a blk device: */
489struct efi_device_path *efi_dp_from_part(struct blk_desc *desc, int part)
490{
491 void *buf, *start;
492
493 start = buf = dp_alloc(dp_part_size(desc, part) + sizeof(END));
494
495 buf = dp_part_fill(buf, desc, part);
496
497 *((struct efi_device_path *)buf) = END;
498
499 return start;
500}
501
502/* convert path to an UEFI style path (ie. DOS style backslashes and utf16) */
503static void path_to_uefi(u16 *uefi, const char *path)
504{
505 while (*path) {
506 char c = *(path++);
507 if (c == '/')
508 c = '\\';
509 *(uefi++) = c;
510 }
511 *uefi = '\0';
512}
513
514/*
515 * If desc is NULL, this creates a path with only the file component,
516 * otherwise it creates a full path with both device and file components
517 */
518struct efi_device_path *efi_dp_from_file(struct blk_desc *desc, int part,
519 const char *path)
520{
521 struct efi_device_path_file_path *fp;
522 void *buf, *start;
523 unsigned dpsize = 0, fpsize;
524
525 if (desc)
526 dpsize = dp_part_size(desc, part);
527
528 fpsize = sizeof(struct efi_device_path) + 2 * (strlen(path) + 1);
529 dpsize += fpsize;
530
531 start = buf = dp_alloc(dpsize + sizeof(END));
532
533 if (desc)
534 buf = dp_part_fill(buf, desc, part);
535
536 /* add file-path: */
537 fp = buf;
538 fp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE;
539 fp->dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH;
540 fp->dp.length = fpsize;
541 path_to_uefi(fp->str, path);
542 buf += fpsize;
543
544 *((struct efi_device_path *)buf) = END;
545
546 return start;
547}
548
549#ifdef CONFIG_NET
550struct efi_device_path *efi_dp_from_eth(void)
551{
552 struct efi_device_path_mac_addr *ndp;
553 void *buf, *start;
554 unsigned dpsize = 0;
555
556 assert(eth_get_dev());
557
558#ifdef CONFIG_DM_ETH
559 dpsize += dp_size(eth_get_dev());
560#else
561 dpsize += sizeof(ROOT);
562#endif
563 dpsize += sizeof(*ndp);
564
565 start = buf = dp_alloc(dpsize + sizeof(END));
566
567#ifdef CONFIG_DM_ETH
568 buf = dp_fill(buf, eth_get_dev());
569#else
570 memcpy(buf, &ROOT, sizeof(ROOT));
571 buf += sizeof(ROOT);
572#endif
573
574 ndp = buf;
575 ndp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
576 ndp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR;
577 ndp->dp.length = sizeof(*ndp);
578 memcpy(ndp->mac.addr, eth_get_ethaddr(), ARP_HLEN);
579 buf = &ndp[1];
580
581 *((struct efi_device_path *)buf) = END;
582
583 return start;
584}
585#endif
586
Rob Clarkbf192732017-10-10 08:23:06 -0400587/* Construct a device-path for memory-mapped image */
588struct efi_device_path *efi_dp_from_mem(uint32_t memory_type,
589 uint64_t start_address,
590 uint64_t end_address)
591{
592 struct efi_device_path_memory *mdp;
593 void *buf, *start;
594
595 start = buf = dp_alloc(sizeof(*mdp) + sizeof(END));
596
597 mdp = buf;
598 mdp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
599 mdp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MEMORY;
600 mdp->dp.length = sizeof(*mdp);
601 mdp->memory_type = memory_type;
602 mdp->start_address = start_address;
603 mdp->end_address = end_address;
604 buf = &mdp[1];
605
606 *((struct efi_device_path *)buf) = END;
607
608 return start;
609}
610
Rob Clarkb66c60d2017-09-13 18:05:28 -0400611/*
612 * Helper to split a full device path (containing both device and file
613 * parts) into it's constituent parts.
614 */
615void efi_dp_split_file_path(struct efi_device_path *full_path,
616 struct efi_device_path **device_path,
617 struct efi_device_path **file_path)
618{
619 struct efi_device_path *p, *dp, *fp;
620
621 dp = efi_dp_dup(full_path);
622 p = dp;
623 while (!EFI_DP_TYPE(p, MEDIA_DEVICE, FILE_PATH))
624 p = efi_dp_next(p);
625 fp = efi_dp_dup(p);
626
627 p->type = DEVICE_PATH_TYPE_END;
628 p->sub_type = DEVICE_PATH_SUB_TYPE_END;
629 p->length = sizeof(*p);
630
631 *device_path = dp;
632 *file_path = fp;
633}