Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 2 | /* |
| 3 | * EFI device path from u-boot device-model mapping |
| 4 | * |
| 5 | * (C) Copyright 2017 Rob Clark |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 6 | */ |
| 7 | |
Alfonso Sánchez-Beato | f007a37 | 2021-07-15 15:31:42 +0200 | [diff] [blame] | 8 | #define LOG_CATEGORY LOGC_EFI |
| 9 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 10 | #include <common.h> |
| 11 | #include <blk.h> |
| 12 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 14 | #include <net.h> |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 15 | #include <usb.h> |
| 16 | #include <mmc.h> |
Patrick Wildt | a3ca37e | 2019-10-03 16:24:17 +0200 | [diff] [blame] | 17 | #include <nvme.h> |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 18 | #include <efi_loader.h> |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 19 | #include <part.h> |
Alfonso Sánchez-Beato | f007a37 | 2021-07-15 15:31:42 +0200 | [diff] [blame] | 20 | #include <uuid.h> |
Heinrich Schuchardt | 8d80af8 | 2019-07-14 19:26:47 +0200 | [diff] [blame] | 21 | #include <asm-generic/unaligned.h> |
AKASHI Takahiro | f1dbbae | 2019-10-09 16:19:52 +0900 | [diff] [blame] | 22 | #include <linux/compat.h> /* U16_MAX */ |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 23 | |
AKASHI Takahiro | 659a626 | 2019-09-12 13:52:35 +0900 | [diff] [blame] | 24 | #ifdef CONFIG_SANDBOX |
| 25 | const efi_guid_t efi_guid_host_dev = U_BOOT_HOST_DEV_GUID; |
| 26 | #endif |
Heinrich Schuchardt | c770aaa | 2020-05-20 22:39:35 +0200 | [diff] [blame] | 27 | #ifdef CONFIG_VIRTIO_BLK |
| 28 | const efi_guid_t efi_guid_virtio_dev = U_BOOT_VIRTIO_DEV_GUID; |
| 29 | #endif |
AKASHI Takahiro | 659a626 | 2019-09-12 13:52:35 +0900 | [diff] [blame] | 30 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 31 | /* template END node: */ |
Masahisa Kojima | 97bd9da | 2022-06-19 13:55:59 +0900 | [diff] [blame] | 32 | const struct efi_device_path END = { |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 33 | .type = DEVICE_PATH_TYPE_END, |
| 34 | .sub_type = DEVICE_PATH_SUB_TYPE_END, |
| 35 | .length = sizeof(END), |
| 36 | }; |
| 37 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 38 | /* template ROOT node: */ |
| 39 | static const struct efi_device_path_vendor ROOT = { |
| 40 | .dp = { |
| 41 | .type = DEVICE_PATH_TYPE_HARDWARE_DEVICE, |
| 42 | .sub_type = DEVICE_PATH_SUB_TYPE_VENDOR, |
| 43 | .length = sizeof(ROOT), |
| 44 | }, |
| 45 | .guid = U_BOOT_GUID, |
| 46 | }; |
| 47 | |
Simon Glass | 222f3cb | 2021-09-24 18:30:17 -0600 | [diff] [blame] | 48 | #if defined(CONFIG_MMC) |
Heinrich Schuchardt | 7d569db | 2017-12-11 12:56:39 +0100 | [diff] [blame] | 49 | /* |
| 50 | * Determine if an MMC device is an SD card. |
| 51 | * |
| 52 | * @desc block device descriptor |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 53 | * Return: true if the device is an SD card |
Heinrich Schuchardt | 7d569db | 2017-12-11 12:56:39 +0100 | [diff] [blame] | 54 | */ |
| 55 | static bool is_sd(struct blk_desc *desc) |
| 56 | { |
| 57 | struct mmc *mmc = find_mmc_device(desc->devnum); |
| 58 | |
| 59 | if (!mmc) |
| 60 | return false; |
| 61 | |
| 62 | return IS_SD(mmc) != 0U; |
| 63 | } |
| 64 | #endif |
| 65 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 66 | static void *dp_alloc(size_t sz) |
| 67 | { |
| 68 | void *buf; |
| 69 | |
Heinrich Schuchardt | 1654601 | 2021-08-17 15:15:23 +0200 | [diff] [blame] | 70 | if (efi_allocate_pool(EFI_BOOT_SERVICES_DATA, sz, &buf) != |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 71 | EFI_SUCCESS) { |
| 72 | debug("EFI: ERROR: out of memory in %s\n", __func__); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 73 | return NULL; |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 74 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 75 | |
Patrick Wildt | acf7bee | 2018-03-25 19:54:03 +0200 | [diff] [blame] | 76 | memset(buf, 0, sz); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 77 | return buf; |
| 78 | } |
| 79 | |
| 80 | /* |
| 81 | * Iterate to next block in device-path, terminating (returning NULL) |
| 82 | * at /End* node. |
| 83 | */ |
| 84 | struct efi_device_path *efi_dp_next(const struct efi_device_path *dp) |
| 85 | { |
| 86 | if (dp == NULL) |
| 87 | return NULL; |
| 88 | if (dp->type == DEVICE_PATH_TYPE_END) |
| 89 | return NULL; |
| 90 | dp = ((void *)dp) + dp->length; |
| 91 | if (dp->type == DEVICE_PATH_TYPE_END) |
| 92 | return NULL; |
| 93 | return (struct efi_device_path *)dp; |
| 94 | } |
| 95 | |
| 96 | /* |
| 97 | * Compare two device-paths, stopping when the shorter of the two hits |
Heinrich Schuchardt | b21f839 | 2018-10-17 21:55:24 +0200 | [diff] [blame] | 98 | * an End* node. This is useful to, for example, compare a device-path |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 99 | * representing a device with one representing a file on the device, or |
| 100 | * a device with a parent device. |
| 101 | */ |
Heinrich Schuchardt | 753e248 | 2017-10-26 19:25:48 +0200 | [diff] [blame] | 102 | int efi_dp_match(const struct efi_device_path *a, |
| 103 | const struct efi_device_path *b) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 104 | { |
| 105 | while (1) { |
| 106 | int ret; |
| 107 | |
| 108 | ret = memcmp(&a->length, &b->length, sizeof(a->length)); |
| 109 | if (ret) |
| 110 | return ret; |
| 111 | |
| 112 | ret = memcmp(a, b, a->length); |
| 113 | if (ret) |
| 114 | return ret; |
| 115 | |
| 116 | a = efi_dp_next(a); |
| 117 | b = efi_dp_next(b); |
| 118 | |
| 119 | if (!a || !b) |
| 120 | return 0; |
| 121 | } |
| 122 | } |
| 123 | |
Heinrich Schuchardt | 24f0e6a | 2022-02-26 12:10:10 +0100 | [diff] [blame] | 124 | /** |
| 125 | * efi_dp_shorten() - shorten device-path |
| 126 | * |
Heinrich Schuchardt | b21f839 | 2018-10-17 21:55:24 +0200 | [diff] [blame] | 127 | * We can have device paths that start with a USB WWID or a USB Class node, |
| 128 | * and a few other cases which don't encode the full device path with bus |
| 129 | * hierarchy: |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 130 | * |
Heinrich Schuchardt | 24f0e6a | 2022-02-26 12:10:10 +0100 | [diff] [blame] | 131 | * * MESSAGING:USB_WWID |
| 132 | * * MESSAGING:USB_CLASS |
| 133 | * * MEDIA:FILE_PATH |
| 134 | * * MEDIA:HARD_DRIVE |
| 135 | * * MESSAGING:URI |
Heinrich Schuchardt | b21f839 | 2018-10-17 21:55:24 +0200 | [diff] [blame] | 136 | * |
| 137 | * See UEFI spec (section 3.1.2, about short-form device-paths) |
Heinrich Schuchardt | 24f0e6a | 2022-02-26 12:10:10 +0100 | [diff] [blame] | 138 | * |
Heinrich Schuchardt | db17dbc | 2022-03-21 08:26:48 +0100 | [diff] [blame] | 139 | * @dp: original device-path |
Heinrich Schuchardt | 24f0e6a | 2022-02-26 12:10:10 +0100 | [diff] [blame] | 140 | * @Return: shortened device-path or NULL |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 141 | */ |
Heinrich Schuchardt | 24f0e6a | 2022-02-26 12:10:10 +0100 | [diff] [blame] | 142 | struct efi_device_path *efi_dp_shorten(struct efi_device_path *dp) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 143 | { |
| 144 | while (dp) { |
| 145 | /* |
| 146 | * TODO: Add MESSAGING:USB_WWID and MESSAGING:URI.. |
| 147 | * in practice fallback.efi just uses MEDIA:HARD_DRIVE |
| 148 | * so not sure when we would see these other cases. |
| 149 | */ |
| 150 | if (EFI_DP_TYPE(dp, MESSAGING_DEVICE, MSG_USB_CLASS) || |
| 151 | EFI_DP_TYPE(dp, MEDIA_DEVICE, HARD_DRIVE_PATH) || |
| 152 | EFI_DP_TYPE(dp, MEDIA_DEVICE, FILE_PATH)) |
| 153 | return dp; |
| 154 | |
| 155 | dp = efi_dp_next(dp); |
| 156 | } |
| 157 | |
| 158 | return dp; |
| 159 | } |
| 160 | |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 161 | /** |
Heinrich Schuchardt | 0a04a41 | 2022-03-19 06:35:43 +0100 | [diff] [blame] | 162 | * find_handle() - find handle by device path and installed protocol |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 163 | * |
| 164 | * If @rem is provided, the handle with the longest partial match is returned. |
| 165 | * |
| 166 | * @dp: device path to search |
Heinrich Schuchardt | 0a04a41 | 2022-03-19 06:35:43 +0100 | [diff] [blame] | 167 | * @guid: GUID of protocol that must be installed on path or NULL |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 168 | * @short_path: use short form device path for matching |
| 169 | * @rem: pointer to receive remaining device path |
| 170 | * Return: matching handle |
| 171 | */ |
Heinrich Schuchardt | 0a04a41 | 2022-03-19 06:35:43 +0100 | [diff] [blame] | 172 | static efi_handle_t find_handle(struct efi_device_path *dp, |
| 173 | const efi_guid_t *guid, bool short_path, |
| 174 | struct efi_device_path **rem) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 175 | { |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 176 | efi_handle_t handle, best_handle = NULL; |
| 177 | efi_uintn_t len, best_len = 0; |
| 178 | |
| 179 | len = efi_dp_instance_size(dp); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 180 | |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 181 | list_for_each_entry(handle, &efi_obj_list, link) { |
Heinrich Schuchardt | 6953c10 | 2017-11-26 14:05:16 +0100 | [diff] [blame] | 182 | struct efi_handler *handler; |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 183 | struct efi_device_path *dp_current; |
| 184 | efi_uintn_t len_current; |
Heinrich Schuchardt | 6953c10 | 2017-11-26 14:05:16 +0100 | [diff] [blame] | 185 | efi_status_t ret; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 186 | |
Heinrich Schuchardt | 0a04a41 | 2022-03-19 06:35:43 +0100 | [diff] [blame] | 187 | if (guid) { |
| 188 | ret = efi_search_protocol(handle, guid, &handler); |
| 189 | if (ret != EFI_SUCCESS) |
| 190 | continue; |
| 191 | } |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 192 | ret = efi_search_protocol(handle, &efi_guid_device_path, |
| 193 | &handler); |
Heinrich Schuchardt | 6953c10 | 2017-11-26 14:05:16 +0100 | [diff] [blame] | 194 | if (ret != EFI_SUCCESS) |
| 195 | continue; |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 196 | dp_current = handler->protocol_interface; |
| 197 | if (short_path) { |
| 198 | dp_current = efi_dp_shorten(dp_current); |
| 199 | if (!dp_current) |
| 200 | continue; |
| 201 | } |
| 202 | len_current = efi_dp_instance_size(dp_current); |
| 203 | if (rem) { |
Heinrich Schuchardt | 0a04a41 | 2022-03-19 06:35:43 +0100 | [diff] [blame] | 204 | if (len_current > len) |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 205 | continue; |
| 206 | } else { |
| 207 | if (len_current != len) |
| 208 | continue; |
| 209 | } |
Heinrich Schuchardt | 0a04a41 | 2022-03-19 06:35:43 +0100 | [diff] [blame] | 210 | if (memcmp(dp_current, dp, len_current)) |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 211 | continue; |
| 212 | if (!rem) |
| 213 | return handle; |
| 214 | if (len_current > best_len) { |
| 215 | best_len = len_current; |
| 216 | best_handle = handle; |
| 217 | *rem = (void*)((u8 *)dp + len_current); |
| 218 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 219 | } |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 220 | return best_handle; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 221 | } |
| 222 | |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 223 | /** |
| 224 | * efi_dp_find_obj() - find handle by device path |
| 225 | * |
| 226 | * If @rem is provided, the handle with the longest partial match is returned. |
| 227 | * |
| 228 | * @dp: device path to search |
Heinrich Schuchardt | 0a04a41 | 2022-03-19 06:35:43 +0100 | [diff] [blame] | 229 | * @guid: GUID of protocol that must be installed on path or NULL |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 230 | * @rem: pointer to receive remaining device path |
| 231 | * Return: matching handle |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 232 | */ |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 233 | efi_handle_t efi_dp_find_obj(struct efi_device_path *dp, |
Heinrich Schuchardt | 0a04a41 | 2022-03-19 06:35:43 +0100 | [diff] [blame] | 234 | const efi_guid_t *guid, |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 235 | struct efi_device_path **rem) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 236 | { |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 237 | efi_handle_t handle; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 238 | |
Heinrich Schuchardt | 0a04a41 | 2022-03-19 06:35:43 +0100 | [diff] [blame] | 239 | handle = find_handle(dp, guid, false, rem); |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 240 | if (!handle) |
| 241 | /* Match short form device path */ |
Heinrich Schuchardt | 0a04a41 | 2022-03-19 06:35:43 +0100 | [diff] [blame] | 242 | handle = find_handle(dp, guid, true, rem); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 243 | |
Heinrich Schuchardt | ad6d5a4 | 2022-03-04 08:20:00 +0100 | [diff] [blame] | 244 | return handle; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 245 | } |
| 246 | |
Heinrich Schuchardt | 0976f8b | 2018-01-19 20:24:49 +0100 | [diff] [blame] | 247 | /* |
| 248 | * Determine the last device path node that is not the end node. |
| 249 | * |
| 250 | * @dp device path |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 251 | * Return: last node before the end node if it exists |
Heinrich Schuchardt | 0976f8b | 2018-01-19 20:24:49 +0100 | [diff] [blame] | 252 | * otherwise NULL |
| 253 | */ |
| 254 | const struct efi_device_path *efi_dp_last_node(const struct efi_device_path *dp) |
| 255 | { |
| 256 | struct efi_device_path *ret; |
| 257 | |
| 258 | if (!dp || dp->type == DEVICE_PATH_TYPE_END) |
| 259 | return NULL; |
| 260 | while (dp) { |
| 261 | ret = (struct efi_device_path *)dp; |
| 262 | dp = efi_dp_next(dp); |
| 263 | } |
| 264 | return ret; |
| 265 | } |
| 266 | |
Heinrich Schuchardt | 51ca4f5 | 2018-04-16 07:59:08 +0200 | [diff] [blame] | 267 | /* get size of the first device path instance excluding end node */ |
| 268 | efi_uintn_t efi_dp_instance_size(const struct efi_device_path *dp) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 269 | { |
Heinrich Schuchardt | 51ca4f5 | 2018-04-16 07:59:08 +0200 | [diff] [blame] | 270 | efi_uintn_t sz = 0; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 271 | |
Heinrich Schuchardt | 01d48ed | 2018-04-16 07:59:07 +0200 | [diff] [blame] | 272 | if (!dp || dp->type == DEVICE_PATH_TYPE_END) |
| 273 | return 0; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 274 | while (dp) { |
| 275 | sz += dp->length; |
| 276 | dp = efi_dp_next(dp); |
| 277 | } |
| 278 | |
| 279 | return sz; |
| 280 | } |
| 281 | |
Heinrich Schuchardt | 51ca4f5 | 2018-04-16 07:59:08 +0200 | [diff] [blame] | 282 | /* get size of multi-instance device path excluding end node */ |
| 283 | efi_uintn_t efi_dp_size(const struct efi_device_path *dp) |
| 284 | { |
| 285 | const struct efi_device_path *p = dp; |
| 286 | |
| 287 | if (!p) |
| 288 | return 0; |
| 289 | while (p->type != DEVICE_PATH_TYPE_END || |
| 290 | p->sub_type != DEVICE_PATH_SUB_TYPE_END) |
| 291 | p = (void *)p + p->length; |
| 292 | |
| 293 | return (void *)p - (void *)dp; |
| 294 | } |
| 295 | |
| 296 | /* copy multi-instance device path */ |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 297 | struct efi_device_path *efi_dp_dup(const struct efi_device_path *dp) |
| 298 | { |
| 299 | struct efi_device_path *ndp; |
Heinrich Schuchardt | 51ca4f5 | 2018-04-16 07:59:08 +0200 | [diff] [blame] | 300 | size_t sz = efi_dp_size(dp) + sizeof(END); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 301 | |
| 302 | if (!dp) |
| 303 | return NULL; |
| 304 | |
| 305 | ndp = dp_alloc(sz); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 306 | if (!ndp) |
| 307 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 308 | memcpy(ndp, dp, sz); |
| 309 | |
| 310 | return ndp; |
| 311 | } |
| 312 | |
Ilias Apalodimas | 483d28e | 2021-03-17 21:54:58 +0200 | [diff] [blame] | 313 | /** |
| 314 | * efi_dp_append_or_concatenate() - Append or concatenate two device paths. |
| 315 | * Concatenated device path will be separated |
| 316 | * by a sub-type 0xff end node |
| 317 | * |
| 318 | * @dp1: First device path |
| 319 | * @dp2: Second device path |
| 320 | * @concat: If true the two device paths will be concatenated and separated |
| 321 | * by an end of entrire device path sub-type 0xff end node. |
| 322 | * If true the second device path will be appended to the first and |
| 323 | * terminated by an end node |
| 324 | * |
| 325 | * Return: |
| 326 | * concatenated device path or NULL. Caller must free the returned value |
| 327 | */ |
| 328 | static struct |
| 329 | efi_device_path *efi_dp_append_or_concatenate(const struct efi_device_path *dp1, |
| 330 | const struct efi_device_path *dp2, |
| 331 | bool concat) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 332 | { |
| 333 | struct efi_device_path *ret; |
Ilias Apalodimas | 483d28e | 2021-03-17 21:54:58 +0200 | [diff] [blame] | 334 | size_t end_size = sizeof(END); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 335 | |
Ilias Apalodimas | 483d28e | 2021-03-17 21:54:58 +0200 | [diff] [blame] | 336 | if (concat) |
| 337 | end_size = 2 * sizeof(END); |
Heinrich Schuchardt | 60b5ab2 | 2018-04-16 07:59:06 +0200 | [diff] [blame] | 338 | if (!dp1 && !dp2) { |
| 339 | /* return an end node */ |
| 340 | ret = efi_dp_dup(&END); |
| 341 | } else if (!dp1) { |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 342 | ret = efi_dp_dup(dp2); |
| 343 | } else if (!dp2) { |
| 344 | ret = efi_dp_dup(dp1); |
| 345 | } else { |
| 346 | /* both dp1 and dp2 are non-null */ |
| 347 | unsigned sz1 = efi_dp_size(dp1); |
| 348 | unsigned sz2 = efi_dp_size(dp2); |
Ilias Apalodimas | 483d28e | 2021-03-17 21:54:58 +0200 | [diff] [blame] | 349 | void *p = dp_alloc(sz1 + sz2 + end_size); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 350 | if (!p) |
| 351 | return NULL; |
Ilias Apalodimas | 483d28e | 2021-03-17 21:54:58 +0200 | [diff] [blame] | 352 | ret = p; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 353 | memcpy(p, dp1, sz1); |
Ilias Apalodimas | 483d28e | 2021-03-17 21:54:58 +0200 | [diff] [blame] | 354 | p += sz1; |
| 355 | |
| 356 | if (concat) { |
| 357 | memcpy(p, &END, sizeof(END)); |
| 358 | p += sizeof(END); |
| 359 | } |
| 360 | |
Heinrich Schuchardt | 60b5ab2 | 2018-04-16 07:59:06 +0200 | [diff] [blame] | 361 | /* the end node of the second device path has to be retained */ |
Ilias Apalodimas | 483d28e | 2021-03-17 21:54:58 +0200 | [diff] [blame] | 362 | memcpy(p, dp2, sz2); |
| 363 | p += sz2; |
| 364 | memcpy(p, &END, sizeof(END)); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | return ret; |
| 368 | } |
| 369 | |
Ilias Apalodimas | 483d28e | 2021-03-17 21:54:58 +0200 | [diff] [blame] | 370 | /** |
| 371 | * efi_dp_append() - Append a device to an existing device path. |
| 372 | * |
| 373 | * @dp1: First device path |
| 374 | * @dp2: Second device path |
| 375 | * |
| 376 | * Return: |
| 377 | * concatenated device path or NULL. Caller must free the returned value |
| 378 | */ |
| 379 | struct efi_device_path *efi_dp_append(const struct efi_device_path *dp1, |
| 380 | const struct efi_device_path *dp2) |
| 381 | { |
| 382 | return efi_dp_append_or_concatenate(dp1, dp2, false); |
| 383 | } |
| 384 | |
| 385 | /** |
| 386 | * efi_dp_concat() - Concatenate 2 device paths. The final device path will |
| 387 | * contain two device paths separated by and end node (0xff). |
| 388 | * |
| 389 | * @dp1: First device path |
| 390 | * @dp2: Second device path |
| 391 | * |
| 392 | * Return: |
| 393 | * concatenated device path or NULL. Caller must free the returned value |
| 394 | */ |
| 395 | struct efi_device_path *efi_dp_concat(const struct efi_device_path *dp1, |
| 396 | const struct efi_device_path *dp2) |
| 397 | { |
| 398 | return efi_dp_append_or_concatenate(dp1, dp2, true); |
| 399 | } |
| 400 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 401 | struct efi_device_path *efi_dp_append_node(const struct efi_device_path *dp, |
| 402 | const struct efi_device_path *node) |
| 403 | { |
| 404 | struct efi_device_path *ret; |
| 405 | |
| 406 | if (!node && !dp) { |
| 407 | ret = efi_dp_dup(&END); |
| 408 | } else if (!node) { |
| 409 | ret = efi_dp_dup(dp); |
| 410 | } else if (!dp) { |
Heinrich Schuchardt | 51ca4f5 | 2018-04-16 07:59:08 +0200 | [diff] [blame] | 411 | size_t sz = node->length; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 412 | void *p = dp_alloc(sz + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 413 | if (!p) |
| 414 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 415 | memcpy(p, node, sz); |
| 416 | memcpy(p + sz, &END, sizeof(END)); |
| 417 | ret = p; |
| 418 | } else { |
| 419 | /* both dp and node are non-null */ |
Heinrich Schuchardt | 51ca4f5 | 2018-04-16 07:59:08 +0200 | [diff] [blame] | 420 | size_t sz = efi_dp_size(dp); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 421 | void *p = dp_alloc(sz + node->length + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 422 | if (!p) |
| 423 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 424 | memcpy(p, dp, sz); |
| 425 | memcpy(p + sz, node, node->length); |
| 426 | memcpy(p + sz + node->length, &END, sizeof(END)); |
| 427 | ret = p; |
| 428 | } |
| 429 | |
| 430 | return ret; |
| 431 | } |
| 432 | |
Heinrich Schuchardt | b41c8e2 | 2018-04-16 07:59:05 +0200 | [diff] [blame] | 433 | struct efi_device_path *efi_dp_create_device_node(const u8 type, |
| 434 | const u8 sub_type, |
| 435 | const u16 length) |
| 436 | { |
| 437 | struct efi_device_path *ret; |
| 438 | |
Heinrich Schuchardt | c96c594 | 2019-04-23 00:51:01 +0200 | [diff] [blame] | 439 | if (length < sizeof(struct efi_device_path)) |
| 440 | return NULL; |
| 441 | |
Heinrich Schuchardt | b41c8e2 | 2018-04-16 07:59:05 +0200 | [diff] [blame] | 442 | ret = dp_alloc(length); |
| 443 | if (!ret) |
| 444 | return ret; |
| 445 | ret->type = type; |
| 446 | ret->sub_type = sub_type; |
| 447 | ret->length = length; |
| 448 | return ret; |
| 449 | } |
| 450 | |
Heinrich Schuchardt | cb0f7ce | 2018-04-16 07:59:09 +0200 | [diff] [blame] | 451 | struct efi_device_path *efi_dp_append_instance( |
| 452 | const struct efi_device_path *dp, |
| 453 | const struct efi_device_path *dpi) |
| 454 | { |
| 455 | size_t sz, szi; |
| 456 | struct efi_device_path *p, *ret; |
| 457 | |
| 458 | if (!dpi) |
| 459 | return NULL; |
| 460 | if (!dp) |
| 461 | return efi_dp_dup(dpi); |
| 462 | sz = efi_dp_size(dp); |
| 463 | szi = efi_dp_instance_size(dpi); |
| 464 | p = dp_alloc(sz + szi + 2 * sizeof(END)); |
| 465 | if (!p) |
| 466 | return NULL; |
| 467 | ret = p; |
| 468 | memcpy(p, dp, sz + sizeof(END)); |
| 469 | p = (void *)p + sz; |
| 470 | p->sub_type = DEVICE_PATH_SUB_TYPE_INSTANCE_END; |
| 471 | p = (void *)p + sizeof(END); |
| 472 | memcpy(p, dpi, szi); |
| 473 | p = (void *)p + szi; |
| 474 | memcpy(p, &END, sizeof(END)); |
| 475 | return ret; |
| 476 | } |
| 477 | |
| 478 | struct efi_device_path *efi_dp_get_next_instance(struct efi_device_path **dp, |
| 479 | efi_uintn_t *size) |
| 480 | { |
| 481 | size_t sz; |
| 482 | struct efi_device_path *p; |
| 483 | |
| 484 | if (size) |
| 485 | *size = 0; |
| 486 | if (!dp || !*dp) |
| 487 | return NULL; |
Heinrich Schuchardt | cb0f7ce | 2018-04-16 07:59:09 +0200 | [diff] [blame] | 488 | sz = efi_dp_instance_size(*dp); |
| 489 | p = dp_alloc(sz + sizeof(END)); |
| 490 | if (!p) |
| 491 | return NULL; |
| 492 | memcpy(p, *dp, sz + sizeof(END)); |
| 493 | *dp = (void *)*dp + sz; |
| 494 | if ((*dp)->sub_type == DEVICE_PATH_SUB_TYPE_INSTANCE_END) |
| 495 | *dp = (void *)*dp + sizeof(END); |
| 496 | else |
| 497 | *dp = NULL; |
| 498 | if (size) |
| 499 | *size = sz + sizeof(END); |
| 500 | return p; |
| 501 | } |
| 502 | |
| 503 | bool efi_dp_is_multi_instance(const struct efi_device_path *dp) |
| 504 | { |
| 505 | const struct efi_device_path *p = dp; |
| 506 | |
| 507 | if (!p) |
| 508 | return false; |
| 509 | while (p->type != DEVICE_PATH_TYPE_END) |
| 510 | p = (void *)p + p->length; |
| 511 | return p->sub_type == DEVICE_PATH_SUB_TYPE_INSTANCE_END; |
| 512 | } |
| 513 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 514 | /* size of device-path not including END node for device and all parents |
| 515 | * up to the root device. |
| 516 | */ |
Heinrich Schuchardt | c22d9e3 | 2019-11-10 02:16:33 +0100 | [diff] [blame] | 517 | __maybe_unused static unsigned int dp_size(struct udevice *dev) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 518 | { |
| 519 | if (!dev || !dev->driver) |
| 520 | return sizeof(ROOT); |
| 521 | |
Simon Glass | 56ada7b | 2022-01-29 14:58:38 -0700 | [diff] [blame] | 522 | switch (device_get_uclass_id(dev)) { |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 523 | case UCLASS_ROOT: |
| 524 | case UCLASS_SIMPLE_BUS: |
| 525 | /* stop traversing parents at this point: */ |
| 526 | return sizeof(ROOT); |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 527 | case UCLASS_ETH: |
| 528 | return dp_size(dev->parent) + |
| 529 | sizeof(struct efi_device_path_mac_addr); |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 530 | case UCLASS_BLK: |
| 531 | switch (dev->parent->uclass->uc_drv->id) { |
| 532 | #ifdef CONFIG_IDE |
| 533 | case UCLASS_IDE: |
| 534 | return dp_size(dev->parent) + |
| 535 | sizeof(struct efi_device_path_atapi); |
| 536 | #endif |
Simon Glass | 222f3cb | 2021-09-24 18:30:17 -0600 | [diff] [blame] | 537 | #if defined(CONFIG_SCSI) |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 538 | case UCLASS_SCSI: |
| 539 | return dp_size(dev->parent) + |
| 540 | sizeof(struct efi_device_path_scsi); |
| 541 | #endif |
Simon Glass | 222f3cb | 2021-09-24 18:30:17 -0600 | [diff] [blame] | 542 | #if defined(CONFIG_MMC) |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 543 | case UCLASS_MMC: |
| 544 | return dp_size(dev->parent) + |
| 545 | sizeof(struct efi_device_path_sd_mmc_path); |
| 546 | #endif |
Heinrich Schuchardt | 7bdb602 | 2020-05-20 23:12:02 +0200 | [diff] [blame] | 547 | #if defined(CONFIG_AHCI) || defined(CONFIG_SATA) |
| 548 | case UCLASS_AHCI: |
| 549 | return dp_size(dev->parent) + |
| 550 | sizeof(struct efi_device_path_sata); |
| 551 | #endif |
Patrick Wildt | a3ca37e | 2019-10-03 16:24:17 +0200 | [diff] [blame] | 552 | #if defined(CONFIG_NVME) |
| 553 | case UCLASS_NVME: |
| 554 | return dp_size(dev->parent) + |
| 555 | sizeof(struct efi_device_path_nvme); |
| 556 | #endif |
AKASHI Takahiro | 659a626 | 2019-09-12 13:52:35 +0900 | [diff] [blame] | 557 | #ifdef CONFIG_SANDBOX |
Simon Glass | e57f8d4 | 2022-10-29 19:47:17 -0600 | [diff] [blame] | 558 | case UCLASS_HOST: |
AKASHI Takahiro | 659a626 | 2019-09-12 13:52:35 +0900 | [diff] [blame] | 559 | /* |
| 560 | * Sandbox's host device will be represented |
| 561 | * as vendor device with extra one byte for |
| 562 | * device number |
| 563 | */ |
| 564 | return dp_size(dev->parent) |
| 565 | + sizeof(struct efi_device_path_vendor) + 1; |
| 566 | #endif |
Heinrich Schuchardt | c770aaa | 2020-05-20 22:39:35 +0200 | [diff] [blame] | 567 | #ifdef CONFIG_VIRTIO_BLK |
| 568 | case UCLASS_VIRTIO: |
| 569 | /* |
| 570 | * Virtio devices will be represented as a vendor |
| 571 | * device node with an extra byte for the device |
| 572 | * number. |
| 573 | */ |
| 574 | return dp_size(dev->parent) |
| 575 | + sizeof(struct efi_device_path_vendor) + 1; |
| 576 | #endif |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 577 | default: |
| 578 | return dp_size(dev->parent); |
| 579 | } |
Simon Glass | 222f3cb | 2021-09-24 18:30:17 -0600 | [diff] [blame] | 580 | #if defined(CONFIG_MMC) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 581 | case UCLASS_MMC: |
| 582 | return dp_size(dev->parent) + |
| 583 | sizeof(struct efi_device_path_sd_mmc_path); |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 584 | #endif |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 585 | case UCLASS_MASS_STORAGE: |
| 586 | case UCLASS_USB_HUB: |
| 587 | return dp_size(dev->parent) + |
| 588 | sizeof(struct efi_device_path_usb_class); |
| 589 | default: |
| 590 | /* just skip over unknown classes: */ |
| 591 | return dp_size(dev->parent); |
| 592 | } |
| 593 | } |
| 594 | |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 595 | /* |
| 596 | * Recursively build a device path. |
| 597 | * |
| 598 | * @buf pointer to the end of the device path |
| 599 | * @dev device |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 600 | * Return: pointer to the end of the device path |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 601 | */ |
Heinrich Schuchardt | c22d9e3 | 2019-11-10 02:16:33 +0100 | [diff] [blame] | 602 | __maybe_unused static void *dp_fill(void *buf, struct udevice *dev) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 603 | { |
| 604 | if (!dev || !dev->driver) |
| 605 | return buf; |
| 606 | |
Simon Glass | 56ada7b | 2022-01-29 14:58:38 -0700 | [diff] [blame] | 607 | switch (device_get_uclass_id(dev)) { |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 608 | case UCLASS_ROOT: |
| 609 | case UCLASS_SIMPLE_BUS: { |
| 610 | /* stop traversing parents at this point: */ |
| 611 | struct efi_device_path_vendor *vdp = buf; |
| 612 | *vdp = ROOT; |
| 613 | return &vdp[1]; |
| 614 | } |
Jan Kiszka | f138982 | 2022-10-14 18:10:06 +0200 | [diff] [blame] | 615 | #ifdef CONFIG_NETDEVICES |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 616 | case UCLASS_ETH: { |
| 617 | struct efi_device_path_mac_addr *dp = |
| 618 | dp_fill(buf, dev->parent); |
Simon Glass | 9558862 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 619 | struct eth_pdata *pdata = dev_get_plat(dev); |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 620 | |
| 621 | dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 622 | dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_MAC_ADDR; |
| 623 | dp->dp.length = sizeof(*dp); |
| 624 | memset(&dp->mac, 0, sizeof(dp->mac)); |
| 625 | /* We only support IPv4 */ |
| 626 | memcpy(&dp->mac, &pdata->enetaddr, ARP_HLEN); |
| 627 | /* Ethernet */ |
| 628 | dp->if_type = 1; |
| 629 | return &dp[1]; |
| 630 | } |
| 631 | #endif |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 632 | case UCLASS_BLK: |
| 633 | switch (dev->parent->uclass->uc_drv->id) { |
AKASHI Takahiro | 659a626 | 2019-09-12 13:52:35 +0900 | [diff] [blame] | 634 | #ifdef CONFIG_SANDBOX |
Simon Glass | e57f8d4 | 2022-10-29 19:47:17 -0600 | [diff] [blame] | 635 | case UCLASS_HOST: { |
AKASHI Takahiro | 659a626 | 2019-09-12 13:52:35 +0900 | [diff] [blame] | 636 | /* stop traversing parents at this point: */ |
Heinrich Schuchardt | 1e3beaf | 2020-05-06 01:28:08 +0200 | [diff] [blame] | 637 | struct efi_device_path_vendor *dp; |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 638 | struct blk_desc *desc = dev_get_uclass_plat(dev); |
AKASHI Takahiro | 659a626 | 2019-09-12 13:52:35 +0900 | [diff] [blame] | 639 | |
| 640 | dp_fill(buf, dev->parent); |
| 641 | dp = buf; |
| 642 | ++dp; |
| 643 | dp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE; |
| 644 | dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR; |
| 645 | dp->dp.length = sizeof(*dp) + 1; |
| 646 | memcpy(&dp->guid, &efi_guid_host_dev, |
| 647 | sizeof(efi_guid_t)); |
| 648 | dp->vendor_data[0] = desc->devnum; |
| 649 | return &dp->vendor_data[1]; |
| 650 | } |
| 651 | #endif |
Heinrich Schuchardt | c770aaa | 2020-05-20 22:39:35 +0200 | [diff] [blame] | 652 | #ifdef CONFIG_VIRTIO_BLK |
| 653 | case UCLASS_VIRTIO: { |
| 654 | struct efi_device_path_vendor *dp; |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 655 | struct blk_desc *desc = dev_get_uclass_plat(dev); |
Heinrich Schuchardt | c770aaa | 2020-05-20 22:39:35 +0200 | [diff] [blame] | 656 | |
| 657 | dp_fill(buf, dev->parent); |
| 658 | dp = buf; |
| 659 | ++dp; |
| 660 | dp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE; |
| 661 | dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_VENDOR; |
| 662 | dp->dp.length = sizeof(*dp) + 1; |
| 663 | memcpy(&dp->guid, &efi_guid_virtio_dev, |
| 664 | sizeof(efi_guid_t)); |
| 665 | dp->vendor_data[0] = desc->devnum; |
| 666 | return &dp->vendor_data[1]; |
| 667 | } |
| 668 | #endif |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 669 | #ifdef CONFIG_IDE |
| 670 | case UCLASS_IDE: { |
| 671 | struct efi_device_path_atapi *dp = |
| 672 | dp_fill(buf, dev->parent); |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 673 | struct blk_desc *desc = dev_get_uclass_plat(dev); |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 674 | |
| 675 | dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 676 | dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_ATAPI; |
| 677 | dp->dp.length = sizeof(*dp); |
| 678 | dp->logical_unit_number = desc->devnum; |
| 679 | dp->primary_secondary = IDE_BUS(desc->devnum); |
| 680 | dp->slave_master = desc->devnum % |
| 681 | (CONFIG_SYS_IDE_MAXDEVICE / |
| 682 | CONFIG_SYS_IDE_MAXBUS); |
| 683 | return &dp[1]; |
| 684 | } |
| 685 | #endif |
Simon Glass | 222f3cb | 2021-09-24 18:30:17 -0600 | [diff] [blame] | 686 | #if defined(CONFIG_SCSI) |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 687 | case UCLASS_SCSI: { |
| 688 | struct efi_device_path_scsi *dp = |
| 689 | dp_fill(buf, dev->parent); |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 690 | struct blk_desc *desc = dev_get_uclass_plat(dev); |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 691 | |
| 692 | dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 693 | dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_SCSI; |
| 694 | dp->dp.length = sizeof(*dp); |
| 695 | dp->logical_unit_number = desc->lun; |
| 696 | dp->target_id = desc->target; |
| 697 | return &dp[1]; |
| 698 | } |
| 699 | #endif |
Simon Glass | 222f3cb | 2021-09-24 18:30:17 -0600 | [diff] [blame] | 700 | #if defined(CONFIG_MMC) |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 701 | case UCLASS_MMC: { |
| 702 | struct efi_device_path_sd_mmc_path *sddp = |
| 703 | dp_fill(buf, dev->parent); |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 704 | struct blk_desc *desc = dev_get_uclass_plat(dev); |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 705 | |
| 706 | sddp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 707 | sddp->dp.sub_type = is_sd(desc) ? |
| 708 | DEVICE_PATH_SUB_TYPE_MSG_SD : |
| 709 | DEVICE_PATH_SUB_TYPE_MSG_MMC; |
| 710 | sddp->dp.length = sizeof(*sddp); |
Simon Glass | 75e534b | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 711 | sddp->slot_number = dev_seq(dev); |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 712 | return &sddp[1]; |
| 713 | } |
| 714 | #endif |
Heinrich Schuchardt | 7bdb602 | 2020-05-20 23:12:02 +0200 | [diff] [blame] | 715 | #if defined(CONFIG_AHCI) || defined(CONFIG_SATA) |
| 716 | case UCLASS_AHCI: { |
| 717 | struct efi_device_path_sata *dp = |
| 718 | dp_fill(buf, dev->parent); |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 719 | struct blk_desc *desc = dev_get_uclass_plat(dev); |
Heinrich Schuchardt | 7bdb602 | 2020-05-20 23:12:02 +0200 | [diff] [blame] | 720 | |
| 721 | dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 722 | dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_SATA; |
| 723 | dp->dp.length = sizeof(*dp); |
| 724 | dp->hba_port = desc->devnum; |
| 725 | /* default 0xffff implies no port multiplier */ |
| 726 | dp->port_multiplier_port = 0xffff; |
| 727 | dp->logical_unit_number = desc->lun; |
| 728 | return &dp[1]; |
| 729 | } |
| 730 | #endif |
Patrick Wildt | a3ca37e | 2019-10-03 16:24:17 +0200 | [diff] [blame] | 731 | #if defined(CONFIG_NVME) |
| 732 | case UCLASS_NVME: { |
| 733 | struct efi_device_path_nvme *dp = |
| 734 | dp_fill(buf, dev->parent); |
| 735 | u32 ns_id; |
| 736 | |
| 737 | dp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 738 | dp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_NVME; |
| 739 | dp->dp.length = sizeof(*dp); |
| 740 | nvme_get_namespace_id(dev, &ns_id, dp->eui64); |
| 741 | memcpy(&dp->ns_id, &ns_id, sizeof(ns_id)); |
| 742 | return &dp[1]; |
| 743 | } |
| 744 | #endif |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 745 | default: |
Heinrich Schuchardt | 1f1d49d | 2018-01-20 21:02:18 +0100 | [diff] [blame] | 746 | debug("%s(%u) %s: unhandled parent class: %s (%u)\n", |
| 747 | __FILE__, __LINE__, __func__, |
| 748 | dev->name, dev->parent->uclass->uc_drv->id); |
Heinrich Schuchardt | e2dcb9a | 2017-12-11 12:56:44 +0100 | [diff] [blame] | 749 | return dp_fill(buf, dev->parent); |
| 750 | } |
Simon Glass | 222f3cb | 2021-09-24 18:30:17 -0600 | [diff] [blame] | 751 | #if defined(CONFIG_MMC) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 752 | case UCLASS_MMC: { |
| 753 | struct efi_device_path_sd_mmc_path *sddp = |
| 754 | dp_fill(buf, dev->parent); |
| 755 | struct mmc *mmc = mmc_get_mmc_dev(dev); |
| 756 | struct blk_desc *desc = mmc_get_blk_desc(mmc); |
| 757 | |
| 758 | sddp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
Heinrich Schuchardt | 7d569db | 2017-12-11 12:56:39 +0100 | [diff] [blame] | 759 | sddp->dp.sub_type = is_sd(desc) ? |
| 760 | DEVICE_PATH_SUB_TYPE_MSG_SD : |
| 761 | DEVICE_PATH_SUB_TYPE_MSG_MMC; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 762 | sddp->dp.length = sizeof(*sddp); |
Simon Glass | 75e534b | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 763 | sddp->slot_number = dev_seq(dev); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 764 | |
| 765 | return &sddp[1]; |
| 766 | } |
| 767 | #endif |
| 768 | case UCLASS_MASS_STORAGE: |
| 769 | case UCLASS_USB_HUB: { |
| 770 | struct efi_device_path_usb_class *udp = |
| 771 | dp_fill(buf, dev->parent); |
| 772 | struct usb_device *udev = dev_get_parent_priv(dev); |
| 773 | struct usb_device_descriptor *desc = &udev->descriptor; |
| 774 | |
| 775 | udp->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 776 | udp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_USB_CLASS; |
| 777 | udp->dp.length = sizeof(*udp); |
| 778 | udp->vendor_id = desc->idVendor; |
| 779 | udp->product_id = desc->idProduct; |
| 780 | udp->device_class = desc->bDeviceClass; |
| 781 | udp->device_subclass = desc->bDeviceSubClass; |
| 782 | udp->device_protocol = desc->bDeviceProtocol; |
| 783 | |
| 784 | return &udp[1]; |
| 785 | } |
| 786 | default: |
Simon Glass | 56ada7b | 2022-01-29 14:58:38 -0700 | [diff] [blame] | 787 | /* If the uclass driver is missing, this will show NULL */ |
| 788 | log_debug("unhandled device class: %s (%s)\n", dev->name, |
| 789 | dev_get_uclass_name(dev)); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 790 | return dp_fill(buf, dev->parent); |
| 791 | } |
| 792 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 793 | |
| 794 | static unsigned dp_part_size(struct blk_desc *desc, int part) |
| 795 | { |
| 796 | unsigned dpsize; |
Simon Glass | ec209a7 | 2022-01-29 14:58:39 -0700 | [diff] [blame] | 797 | struct udevice *dev = desc->bdev; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 798 | |
Simon Glass | 222f3cb | 2021-09-24 18:30:17 -0600 | [diff] [blame] | 799 | dpsize = dp_size(dev); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 800 | |
| 801 | if (part == 0) /* the actual disk, not a partition */ |
| 802 | return dpsize; |
| 803 | |
| 804 | if (desc->part_type == PART_TYPE_ISO) |
| 805 | dpsize += sizeof(struct efi_device_path_cdrom_path); |
| 806 | else |
| 807 | dpsize += sizeof(struct efi_device_path_hard_drive_path); |
| 808 | |
| 809 | return dpsize; |
| 810 | } |
| 811 | |
Heinrich Schuchardt | 8983ffd | 2017-12-11 12:56:42 +0100 | [diff] [blame] | 812 | /* |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 813 | * Create a device node for a block device partition. |
Heinrich Schuchardt | 8983ffd | 2017-12-11 12:56:42 +0100 | [diff] [blame] | 814 | * |
Heinrich Schuchardt | b21f839 | 2018-10-17 21:55:24 +0200 | [diff] [blame] | 815 | * @buf buffer to which the device path is written |
Heinrich Schuchardt | 8983ffd | 2017-12-11 12:56:42 +0100 | [diff] [blame] | 816 | * @desc block device descriptor |
| 817 | * @part partition number, 0 identifies a block device |
| 818 | */ |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 819 | static void *dp_part_node(void *buf, struct blk_desc *desc, int part) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 820 | { |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 821 | struct disk_partition info; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 822 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 823 | part_get_info(desc, part, &info); |
| 824 | |
| 825 | if (desc->part_type == PART_TYPE_ISO) { |
| 826 | struct efi_device_path_cdrom_path *cddp = buf; |
| 827 | |
Heinrich Schuchardt | 2aae6db | 2017-12-11 12:56:40 +0100 | [diff] [blame] | 828 | cddp->boot_entry = part; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 829 | cddp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE; |
| 830 | cddp->dp.sub_type = DEVICE_PATH_SUB_TYPE_CDROM_PATH; |
| 831 | cddp->dp.length = sizeof(*cddp); |
| 832 | cddp->partition_start = info.start; |
Heinrich Schuchardt | 28dfd1a | 2019-09-04 13:56:01 +0200 | [diff] [blame] | 833 | cddp->partition_size = info.size; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 834 | |
| 835 | buf = &cddp[1]; |
| 836 | } else { |
| 837 | struct efi_device_path_hard_drive_path *hddp = buf; |
| 838 | |
| 839 | hddp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE; |
| 840 | hddp->dp.sub_type = DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH; |
| 841 | hddp->dp.length = sizeof(*hddp); |
Heinrich Schuchardt | 2aae6db | 2017-12-11 12:56:40 +0100 | [diff] [blame] | 842 | hddp->partition_number = part; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 843 | hddp->partition_start = info.start; |
| 844 | hddp->partition_end = info.size; |
| 845 | if (desc->part_type == PART_TYPE_EFI) |
| 846 | hddp->partmap_type = 2; |
| 847 | else |
| 848 | hddp->partmap_type = 1; |
Jonathan Gray | 84b4d70 | 2017-11-22 14:18:59 +1100 | [diff] [blame] | 849 | |
| 850 | switch (desc->sig_type) { |
| 851 | case SIG_TYPE_NONE: |
| 852 | default: |
| 853 | hddp->signature_type = 0; |
| 854 | memset(hddp->partition_signature, 0, |
| 855 | sizeof(hddp->partition_signature)); |
| 856 | break; |
| 857 | case SIG_TYPE_MBR: |
| 858 | hddp->signature_type = 1; |
| 859 | memset(hddp->partition_signature, 0, |
| 860 | sizeof(hddp->partition_signature)); |
| 861 | memcpy(hddp->partition_signature, &desc->mbr_sig, |
| 862 | sizeof(desc->mbr_sig)); |
| 863 | break; |
| 864 | case SIG_TYPE_GUID: |
| 865 | hddp->signature_type = 2; |
AKASHI Takahiro | ae18a67 | 2022-04-19 10:01:56 +0900 | [diff] [blame] | 866 | #if CONFIG_IS_ENABLED(PARTITION_UUIDS) |
| 867 | /* info.uuid exists only with PARTITION_UUIDS */ |
Alfonso Sánchez-Beato | f007a37 | 2021-07-15 15:31:42 +0200 | [diff] [blame] | 868 | if (uuid_str_to_bin(info.uuid, |
AKASHI Takahiro | ae18a67 | 2022-04-19 10:01:56 +0900 | [diff] [blame] | 869 | hddp->partition_signature, |
| 870 | UUID_STR_FORMAT_GUID)) { |
Alfonso Sánchez-Beato | f007a37 | 2021-07-15 15:31:42 +0200 | [diff] [blame] | 871 | log_warning( |
AKASHI Takahiro | ae18a67 | 2022-04-19 10:01:56 +0900 | [diff] [blame] | 872 | "Partition %d: invalid GUID %s\n", |
Alfonso Sánchez-Beato | f007a37 | 2021-07-15 15:31:42 +0200 | [diff] [blame] | 873 | part, info.uuid); |
AKASHI Takahiro | ae18a67 | 2022-04-19 10:01:56 +0900 | [diff] [blame] | 874 | } |
| 875 | #endif |
Jonathan Gray | 84b4d70 | 2017-11-22 14:18:59 +1100 | [diff] [blame] | 876 | break; |
| 877 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 878 | |
| 879 | buf = &hddp[1]; |
| 880 | } |
| 881 | |
| 882 | return buf; |
| 883 | } |
| 884 | |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 885 | /* |
| 886 | * Create a device path for a block device or one of its partitions. |
| 887 | * |
Heinrich Schuchardt | b21f839 | 2018-10-17 21:55:24 +0200 | [diff] [blame] | 888 | * @buf buffer to which the device path is written |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 889 | * @desc block device descriptor |
| 890 | * @part partition number, 0 identifies a block device |
| 891 | */ |
| 892 | static void *dp_part_fill(void *buf, struct blk_desc *desc, int part) |
| 893 | { |
Simon Glass | ec209a7 | 2022-01-29 14:58:39 -0700 | [diff] [blame] | 894 | struct udevice *dev = desc->bdev; |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 895 | |
Simon Glass | 222f3cb | 2021-09-24 18:30:17 -0600 | [diff] [blame] | 896 | buf = dp_fill(buf, dev); |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 897 | |
| 898 | if (part == 0) /* the actual disk, not a partition */ |
| 899 | return buf; |
| 900 | |
| 901 | return dp_part_node(buf, desc, part); |
| 902 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 903 | |
Heinrich Schuchardt | b21f839 | 2018-10-17 21:55:24 +0200 | [diff] [blame] | 904 | /* Construct a device-path from a partition on a block device: */ |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 905 | struct efi_device_path *efi_dp_from_part(struct blk_desc *desc, int part) |
| 906 | { |
| 907 | void *buf, *start; |
| 908 | |
| 909 | start = buf = dp_alloc(dp_part_size(desc, part) + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 910 | if (!buf) |
| 911 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 912 | |
| 913 | buf = dp_part_fill(buf, desc, part); |
| 914 | |
| 915 | *((struct efi_device_path *)buf) = END; |
| 916 | |
| 917 | return start; |
| 918 | } |
| 919 | |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 920 | /* |
| 921 | * Create a device node for a block device partition. |
| 922 | * |
Heinrich Schuchardt | b21f839 | 2018-10-17 21:55:24 +0200 | [diff] [blame] | 923 | * @buf buffer to which the device path is written |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 924 | * @desc block device descriptor |
| 925 | * @part partition number, 0 identifies a block device |
| 926 | */ |
| 927 | struct efi_device_path *efi_dp_part_node(struct blk_desc *desc, int part) |
| 928 | { |
| 929 | efi_uintn_t dpsize; |
| 930 | void *buf; |
| 931 | |
| 932 | if (desc->part_type == PART_TYPE_ISO) |
| 933 | dpsize = sizeof(struct efi_device_path_cdrom_path); |
| 934 | else |
| 935 | dpsize = sizeof(struct efi_device_path_hard_drive_path); |
| 936 | buf = dp_alloc(dpsize); |
| 937 | |
Heinrich Schuchardt | e29fbb3 | 2022-10-06 13:36:02 +0200 | [diff] [blame] | 938 | if (buf) |
| 939 | dp_part_node(buf, desc, part); |
Heinrich Schuchardt | 6c6307c | 2018-01-19 20:24:46 +0100 | [diff] [blame] | 940 | |
| 941 | return buf; |
| 942 | } |
| 943 | |
Heinrich Schuchardt | 8d80af8 | 2019-07-14 19:26:47 +0200 | [diff] [blame] | 944 | /** |
| 945 | * path_to_uefi() - convert UTF-8 path to an UEFI style path |
| 946 | * |
| 947 | * Convert UTF-8 path to a UEFI style path (i.e. with backslashes as path |
| 948 | * separators and UTF-16). |
| 949 | * |
| 950 | * @src: source buffer |
| 951 | * @uefi: target buffer, possibly unaligned |
| 952 | */ |
| 953 | static void path_to_uefi(void *uefi, const char *src) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 954 | { |
Heinrich Schuchardt | 8d80af8 | 2019-07-14 19:26:47 +0200 | [diff] [blame] | 955 | u16 *pos = uefi; |
| 956 | |
| 957 | /* |
| 958 | * efi_set_bootdev() calls this routine indirectly before the UEFI |
| 959 | * subsystem is initialized. So we cannot assume unaligned access to be |
| 960 | * enabled. |
| 961 | */ |
| 962 | allow_unaligned(); |
| 963 | |
| 964 | while (*src) { |
| 965 | s32 code = utf8_get(&src); |
| 966 | |
| 967 | if (code < 0) |
| 968 | code = '?'; |
| 969 | else if (code == '/') |
| 970 | code = '\\'; |
| 971 | utf16_put(code, &pos); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 972 | } |
Heinrich Schuchardt | 8d80af8 | 2019-07-14 19:26:47 +0200 | [diff] [blame] | 973 | *pos = 0; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 974 | } |
| 975 | |
Heinrich Schuchardt | f57eacb | 2022-06-11 05:22:08 +0000 | [diff] [blame] | 976 | /** |
| 977 | * efi_dp_from_file() - create device path for file |
| 978 | * |
| 979 | * The function creates a device path from the block descriptor @desc and the |
| 980 | * partition number @part and appends a device path node created describing the |
| 981 | * file path @path. |
| 982 | * |
| 983 | * If @desc is NULL, the device path will not contain nodes describing the |
| 984 | * partition. |
| 985 | * If @path is an empty string "", the device path will not contain a node |
| 986 | * for the file path. |
| 987 | * |
| 988 | * @desc: block device descriptor or NULL |
| 989 | * @part: partition number |
| 990 | * @path: file path on partition or "" |
| 991 | * Return: device path or NULL in case of an error |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 992 | */ |
| 993 | struct efi_device_path *efi_dp_from_file(struct blk_desc *desc, int part, |
| 994 | const char *path) |
| 995 | { |
| 996 | struct efi_device_path_file_path *fp; |
| 997 | void *buf, *start; |
AKASHI Takahiro | f1dbbae | 2019-10-09 16:19:52 +0900 | [diff] [blame] | 998 | size_t dpsize = 0, fpsize; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 999 | |
| 1000 | if (desc) |
| 1001 | dpsize = dp_part_size(desc, part); |
| 1002 | |
Heinrich Schuchardt | 8d80af8 | 2019-07-14 19:26:47 +0200 | [diff] [blame] | 1003 | fpsize = sizeof(struct efi_device_path) + |
| 1004 | 2 * (utf8_utf16_strlen(path) + 1); |
AKASHI Takahiro | f1dbbae | 2019-10-09 16:19:52 +0900 | [diff] [blame] | 1005 | if (fpsize > U16_MAX) |
| 1006 | return NULL; |
| 1007 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1008 | dpsize += fpsize; |
| 1009 | |
| 1010 | start = buf = dp_alloc(dpsize + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 1011 | if (!buf) |
| 1012 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1013 | |
| 1014 | if (desc) |
| 1015 | buf = dp_part_fill(buf, desc, part); |
| 1016 | |
| 1017 | /* add file-path: */ |
Heinrich Schuchardt | f57eacb | 2022-06-11 05:22:08 +0000 | [diff] [blame] | 1018 | if (*path) { |
| 1019 | fp = buf; |
| 1020 | fp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE; |
| 1021 | fp->dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH; |
| 1022 | fp->dp.length = (u16)fpsize; |
| 1023 | path_to_uefi(fp->str, path); |
| 1024 | buf += fpsize; |
| 1025 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1026 | |
| 1027 | *((struct efi_device_path *)buf) = END; |
| 1028 | |
| 1029 | return start; |
| 1030 | } |
| 1031 | |
Heinrich Schuchardt | 77c0da8 | 2021-03-19 02:49:54 +0100 | [diff] [blame] | 1032 | struct efi_device_path *efi_dp_from_uart(void) |
| 1033 | { |
| 1034 | void *buf, *pos; |
| 1035 | struct efi_device_path_uart *uart; |
| 1036 | size_t dpsize = sizeof(ROOT) + sizeof(*uart) + sizeof(END); |
| 1037 | |
| 1038 | buf = dp_alloc(dpsize); |
| 1039 | if (!buf) |
| 1040 | return NULL; |
| 1041 | pos = buf; |
| 1042 | memcpy(pos, &ROOT, sizeof(ROOT)); |
| 1043 | pos += sizeof(ROOT); |
| 1044 | uart = pos; |
| 1045 | uart->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE; |
| 1046 | uart->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_UART; |
| 1047 | uart->dp.length = sizeof(*uart); |
| 1048 | pos += sizeof(*uart); |
| 1049 | memcpy(pos, &END, sizeof(END)); |
| 1050 | |
| 1051 | return buf; |
| 1052 | } |
| 1053 | |
Jan Kiszka | f138982 | 2022-10-14 18:10:06 +0200 | [diff] [blame] | 1054 | #ifdef CONFIG_NETDEVICES |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1055 | struct efi_device_path *efi_dp_from_eth(void) |
| 1056 | { |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1057 | void *buf, *start; |
| 1058 | unsigned dpsize = 0; |
| 1059 | |
| 1060 | assert(eth_get_dev()); |
| 1061 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1062 | dpsize += dp_size(eth_get_dev()); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1063 | |
| 1064 | start = buf = dp_alloc(dpsize + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 1065 | if (!buf) |
| 1066 | return NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1067 | |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1068 | buf = dp_fill(buf, eth_get_dev()); |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1069 | |
| 1070 | *((struct efi_device_path *)buf) = END; |
| 1071 | |
| 1072 | return start; |
| 1073 | } |
| 1074 | #endif |
| 1075 | |
Rob Clark | 18ceba7 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 1076 | /* Construct a device-path for memory-mapped image */ |
| 1077 | struct efi_device_path *efi_dp_from_mem(uint32_t memory_type, |
| 1078 | uint64_t start_address, |
| 1079 | uint64_t end_address) |
| 1080 | { |
| 1081 | struct efi_device_path_memory *mdp; |
| 1082 | void *buf, *start; |
| 1083 | |
| 1084 | start = buf = dp_alloc(sizeof(*mdp) + sizeof(END)); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 1085 | if (!buf) |
| 1086 | return NULL; |
Rob Clark | 18ceba7 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 1087 | |
| 1088 | mdp = buf; |
| 1089 | mdp->dp.type = DEVICE_PATH_TYPE_HARDWARE_DEVICE; |
| 1090 | mdp->dp.sub_type = DEVICE_PATH_SUB_TYPE_MEMORY; |
| 1091 | mdp->dp.length = sizeof(*mdp); |
| 1092 | mdp->memory_type = memory_type; |
| 1093 | mdp->start_address = start_address; |
| 1094 | mdp->end_address = end_address; |
| 1095 | buf = &mdp[1]; |
| 1096 | |
| 1097 | *((struct efi_device_path *)buf) = END; |
| 1098 | |
| 1099 | return start; |
| 1100 | } |
| 1101 | |
Heinrich Schuchardt | 0d36adc | 2019-02-04 12:49:43 +0100 | [diff] [blame] | 1102 | /** |
| 1103 | * efi_dp_split_file_path() - split of relative file path from device path |
| 1104 | * |
| 1105 | * Given a device path indicating a file on a device, separate the device |
| 1106 | * path in two: the device path of the actual device and the file path |
| 1107 | * relative to this device. |
| 1108 | * |
| 1109 | * @full_path: device path including device and file path |
| 1110 | * @device_path: path of the device |
AKASHI Takahiro | 9c6531f | 2019-04-16 17:39:26 +0200 | [diff] [blame] | 1111 | * @file_path: relative path of the file or NULL if there is none |
Heinrich Schuchardt | 0d36adc | 2019-02-04 12:49:43 +0100 | [diff] [blame] | 1112 | * Return: status code |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1113 | */ |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 1114 | efi_status_t efi_dp_split_file_path(struct efi_device_path *full_path, |
| 1115 | struct efi_device_path **device_path, |
| 1116 | struct efi_device_path **file_path) |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1117 | { |
AKASHI Takahiro | 9c6531f | 2019-04-16 17:39:26 +0200 | [diff] [blame] | 1118 | struct efi_device_path *p, *dp, *fp = NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1119 | |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 1120 | *device_path = NULL; |
| 1121 | *file_path = NULL; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1122 | dp = efi_dp_dup(full_path); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 1123 | if (!dp) |
| 1124 | return EFI_OUT_OF_RESOURCES; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1125 | p = dp; |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 1126 | while (!EFI_DP_TYPE(p, MEDIA_DEVICE, FILE_PATH)) { |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1127 | p = efi_dp_next(p); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 1128 | if (!p) |
AKASHI Takahiro | 9c6531f | 2019-04-16 17:39:26 +0200 | [diff] [blame] | 1129 | goto out; |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 1130 | } |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1131 | fp = efi_dp_dup(p); |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 1132 | if (!fp) |
| 1133 | return EFI_OUT_OF_RESOURCES; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1134 | p->type = DEVICE_PATH_TYPE_END; |
| 1135 | p->sub_type = DEVICE_PATH_SUB_TYPE_END; |
| 1136 | p->length = sizeof(*p); |
| 1137 | |
AKASHI Takahiro | 9c6531f | 2019-04-16 17:39:26 +0200 | [diff] [blame] | 1138 | out: |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1139 | *device_path = dp; |
| 1140 | *file_path = fp; |
Heinrich Schuchardt | 468bf97 | 2018-01-19 20:24:37 +0100 | [diff] [blame] | 1141 | return EFI_SUCCESS; |
Rob Clark | f90cb9f | 2017-09-13 18:05:28 -0400 | [diff] [blame] | 1142 | } |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 1143 | |
Heinrich Schuchardt | 6e0a1b4 | 2019-10-30 20:13:24 +0100 | [diff] [blame] | 1144 | /** |
| 1145 | * efi_dp_from_name() - convert U-Boot device and file path to device path |
| 1146 | * |
| 1147 | * @dev: U-Boot device, e.g. 'mmc' |
| 1148 | * @devnr: U-Boot device number, e.g. 1 for 'mmc:1' |
| 1149 | * @path: file path relative to U-Boot device, may be NULL |
| 1150 | * @device: pointer to receive device path of the device |
| 1151 | * @file: pointer to receive device path for the file |
| 1152 | * Return: status code |
| 1153 | */ |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 1154 | efi_status_t efi_dp_from_name(const char *dev, const char *devnr, |
| 1155 | const char *path, |
| 1156 | struct efi_device_path **device, |
| 1157 | struct efi_device_path **file) |
| 1158 | { |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 1159 | struct blk_desc *desc = NULL; |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 1160 | struct disk_partition fs_partition; |
Rui Miguel Silva | 433f15a | 2022-05-11 10:55:40 +0100 | [diff] [blame] | 1161 | size_t image_size; |
| 1162 | void *image_addr; |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 1163 | int part = 0; |
Heinrich Schuchardt | 158c0d7 | 2021-05-25 12:07:30 +0200 | [diff] [blame] | 1164 | char *filename; |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 1165 | char *s; |
| 1166 | |
AKASHI Takahiro | 3984441 | 2018-11-05 18:06:40 +0900 | [diff] [blame] | 1167 | if (path && !file) |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 1168 | return EFI_INVALID_PARAMETER; |
| 1169 | |
Heinrich Schuchardt | 77c0da8 | 2021-03-19 02:49:54 +0100 | [diff] [blame] | 1170 | if (!strcmp(dev, "Net")) { |
Jan Kiszka | f138982 | 2022-10-14 18:10:06 +0200 | [diff] [blame] | 1171 | #ifdef CONFIG_NETDEVICES |
Heinrich Schuchardt | 77c0da8 | 2021-03-19 02:49:54 +0100 | [diff] [blame] | 1172 | if (device) |
| 1173 | *device = efi_dp_from_eth(); |
| 1174 | #endif |
| 1175 | } else if (!strcmp(dev, "Uart")) { |
| 1176 | if (device) |
| 1177 | *device = efi_dp_from_uart(); |
Rui Miguel Silva | 433f15a | 2022-05-11 10:55:40 +0100 | [diff] [blame] | 1178 | } else if (!strcmp(dev, "Mem")) { |
| 1179 | efi_get_image_parameters(&image_addr, &image_size); |
| 1180 | |
| 1181 | if (device) |
| 1182 | *device = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, |
| 1183 | (uintptr_t)image_addr, |
| 1184 | image_size); |
Heinrich Schuchardt | 77c0da8 | 2021-03-19 02:49:54 +0100 | [diff] [blame] | 1185 | } else { |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 1186 | part = blk_get_device_part_str(dev, devnr, &desc, &fs_partition, |
| 1187 | 1); |
Patrick Delaunay | ba7a950 | 2019-04-10 11:02:58 +0200 | [diff] [blame] | 1188 | if (part < 0 || !desc) |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 1189 | return EFI_INVALID_PARAMETER; |
| 1190 | |
AKASHI Takahiro | 3984441 | 2018-11-05 18:06:40 +0900 | [diff] [blame] | 1191 | if (device) |
| 1192 | *device = efi_dp_from_part(desc, part); |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 1193 | } |
| 1194 | |
| 1195 | if (!path) |
| 1196 | return EFI_SUCCESS; |
| 1197 | |
Heinrich Schuchardt | 158c0d7 | 2021-05-25 12:07:30 +0200 | [diff] [blame] | 1198 | filename = calloc(1, strlen(path) + 1); |
| 1199 | if (!filename) |
| 1200 | return EFI_OUT_OF_RESOURCES; |
| 1201 | |
| 1202 | sprintf(filename, "%s", path); |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 1203 | /* DOS style file path: */ |
| 1204 | s = filename; |
| 1205 | while ((s = strchr(s, '/'))) |
| 1206 | *s++ = '\\'; |
Heinrich Schuchardt | 77c0da8 | 2021-03-19 02:49:54 +0100 | [diff] [blame] | 1207 | *file = efi_dp_from_file(desc, part, filename); |
Heinrich Schuchardt | 158c0d7 | 2021-05-25 12:07:30 +0200 | [diff] [blame] | 1208 | free(filename); |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 1209 | |
Heinrich Schuchardt | 6e0a1b4 | 2019-10-30 20:13:24 +0100 | [diff] [blame] | 1210 | if (!*file) |
AKASHI Takahiro | f1dbbae | 2019-10-09 16:19:52 +0900 | [diff] [blame] | 1211 | return EFI_INVALID_PARAMETER; |
| 1212 | |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 1213 | return EFI_SUCCESS; |
| 1214 | } |
Heinrich Schuchardt | 22c8e08 | 2020-08-23 10:49:46 +0200 | [diff] [blame] | 1215 | |
| 1216 | /** |
| 1217 | * efi_dp_check_length() - check length of a device path |
| 1218 | * |
| 1219 | * @dp: pointer to device path |
| 1220 | * @maxlen: maximum length of the device path |
| 1221 | * Return: |
| 1222 | * * length of the device path if it is less or equal @maxlen |
| 1223 | * * -1 if the device path is longer then @maxlen |
| 1224 | * * -1 if a device path node has a length of less than 4 |
| 1225 | * * -EINVAL if maxlen exceeds SSIZE_MAX |
| 1226 | */ |
| 1227 | ssize_t efi_dp_check_length(const struct efi_device_path *dp, |
| 1228 | const size_t maxlen) |
| 1229 | { |
| 1230 | ssize_t ret = 0; |
| 1231 | u16 len; |
| 1232 | |
| 1233 | if (maxlen > SSIZE_MAX) |
| 1234 | return -EINVAL; |
| 1235 | for (;;) { |
| 1236 | len = dp->length; |
| 1237 | if (len < 4) |
| 1238 | return -1; |
| 1239 | ret += len; |
| 1240 | if (ret > maxlen) |
| 1241 | return -1; |
| 1242 | if (dp->type == DEVICE_PATH_TYPE_END && |
| 1243 | dp->sub_type == DEVICE_PATH_SUB_TYPE_END) |
| 1244 | return ret; |
| 1245 | dp = (const struct efi_device_path *)((const u8 *)dp + len); |
| 1246 | } |
Ilias Apalodimas | 483d28e | 2021-03-17 21:54:58 +0200 | [diff] [blame] | 1247 | } |
| 1248 | |
| 1249 | /** |
| 1250 | * efi_dp_from_lo() - Get the instance of a VenMedia node in a |
| 1251 | * multi-instance device path that matches |
| 1252 | * a specific GUID. This kind of device paths |
| 1253 | * is found in Boot#### options describing an |
| 1254 | * initrd location |
| 1255 | * |
| 1256 | * @lo: EFI_LOAD_OPTION containing a valid device path |
Ilias Apalodimas | 483d28e | 2021-03-17 21:54:58 +0200 | [diff] [blame] | 1257 | * @guid: guid to search for |
| 1258 | * |
| 1259 | * Return: |
| 1260 | * device path including the VenMedia node or NULL. |
| 1261 | * Caller must free the returned value. |
| 1262 | */ |
| 1263 | struct |
| 1264 | efi_device_path *efi_dp_from_lo(struct efi_load_option *lo, |
Heinrich Schuchardt | 9979cff | 2021-10-15 01:31:02 +0200 | [diff] [blame] | 1265 | const efi_guid_t *guid) |
Ilias Apalodimas | 483d28e | 2021-03-17 21:54:58 +0200 | [diff] [blame] | 1266 | { |
| 1267 | struct efi_device_path *fp = lo->file_path; |
| 1268 | struct efi_device_path_vendor *vendor; |
| 1269 | int lo_len = lo->file_path_length; |
| 1270 | |
| 1271 | for (; lo_len >= sizeof(struct efi_device_path); |
| 1272 | lo_len -= fp->length, fp = (void *)fp + fp->length) { |
| 1273 | if (lo_len < 0 || efi_dp_check_length(fp, lo_len) < 0) |
| 1274 | break; |
| 1275 | if (fp->type != DEVICE_PATH_TYPE_MEDIA_DEVICE || |
| 1276 | fp->sub_type != DEVICE_PATH_SUB_TYPE_VENDOR_PATH) |
| 1277 | continue; |
| 1278 | |
| 1279 | vendor = (struct efi_device_path_vendor *)fp; |
Heinrich Schuchardt | 9979cff | 2021-10-15 01:31:02 +0200 | [diff] [blame] | 1280 | if (!guidcmp(&vendor->guid, guid)) |
Heinrich Schuchardt | 35dd322 | 2021-10-15 02:59:15 +0200 | [diff] [blame] | 1281 | return efi_dp_dup(efi_dp_next(fp)); |
Ilias Apalodimas | 483d28e | 2021-03-17 21:54:58 +0200 | [diff] [blame] | 1282 | } |
| 1283 | log_debug("VenMedia(%pUl) not found in %ls\n", &guid, lo->label); |
| 1284 | |
| 1285 | return NULL; |
Heinrich Schuchardt | 22c8e08 | 2020-08-23 10:49:46 +0200 | [diff] [blame] | 1286 | } |
Masahisa Kojima | 6460c3e | 2021-10-26 17:27:25 +0900 | [diff] [blame] | 1287 | |
| 1288 | /** |
| 1289 | * search_gpt_dp_node() - search gpt device path node |
| 1290 | * |
| 1291 | * @device_path: device path |
| 1292 | * |
| 1293 | * Return: pointer to the gpt device path node |
| 1294 | */ |
| 1295 | struct efi_device_path *search_gpt_dp_node(struct efi_device_path *device_path) |
| 1296 | { |
| 1297 | struct efi_device_path *dp = device_path; |
| 1298 | |
| 1299 | while (dp) { |
| 1300 | if (dp->type == DEVICE_PATH_TYPE_MEDIA_DEVICE && |
| 1301 | dp->sub_type == DEVICE_PATH_SUB_TYPE_HARD_DRIVE_PATH) { |
| 1302 | struct efi_device_path_hard_drive_path *hd_dp = |
| 1303 | (struct efi_device_path_hard_drive_path *)dp; |
| 1304 | |
| 1305 | if (hd_dp->partmap_type == PART_FORMAT_GPT && |
| 1306 | hd_dp->signature_type == SIG_TYPE_GUID) |
| 1307 | return dp; |
| 1308 | } |
| 1309 | dp = efi_dp_next(dp); |
| 1310 | } |
| 1311 | |
| 1312 | return NULL; |
| 1313 | } |