efi_loader: fix dp_fill() for BLKMAP, HOST, VIRTIO
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Wed, 19 Jul 2023 14:49:46 +0000 (16:49 +0200)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Thu, 20 Jul 2023 07:12:50 +0000 (09:12 +0200)
Do not assume that the preceding device path contains a single VenHW node.
Instead use the return value of dp_fill() which provides the address of the
next node.

Fixes: 23ad52fff4da ("efi_loader: device_path: support Sandbox's "host" devices")
Fixes: 19ecced71cfb ("efi_loader: device path for virtio block devices")
Fixes: 272ec6b45304 ("efi_loader: device_path: support blkmap devices")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
lib/efi_loader/efi_device_path.c

index 04ebb44..c135e28 100644 (file)
@@ -631,9 +631,7 @@ __maybe_unused static void *dp_fill(void *buf, struct udevice *dev)
                        struct efi_device_path_vendor *dp;
                        struct blk_desc *desc = dev_get_uclass_plat(dev);
 
-                       dp_fill(buf, dev->parent);
-                       dp = buf;
-                       ++dp;
+                       dp = dp_fill(buf, dev->parent);
                        dp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
                        dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR;
                        dp->dp.length = sizeof(*dp) + 1;
@@ -649,9 +647,7 @@ __maybe_unused static void *dp_fill(void *buf, struct udevice *dev)
                        struct efi_device_path_vendor *dp;
                        struct blk_desc *desc = dev_get_uclass_plat(dev);
 
-                       dp_fill(buf, dev->parent);
-                       dp = buf;
-                       ++dp;
+                       dp = dp_fill(buf, dev->parent);
                        dp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
                        dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR;
                        dp->dp.length = sizeof(*dp) + 1;
@@ -666,9 +662,7 @@ __maybe_unused static void *dp_fill(void *buf, struct udevice *dev)
                        struct efi_device_path_vendor *dp;
                        struct blk_desc *desc = dev_get_uclass_plat(dev);
 
-                       dp_fill(buf, dev->parent);
-                       dp = buf;
-                       ++dp;
+                       dp = dp_fill(buf, dev->parent);
                        dp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE;
                        dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR;
                        dp->dp.length = sizeof(*dp) + 1;