Tom Rini | f739fcd | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 2 | /* |
| 3 | * EFI application disk support |
| 4 | * |
| 5 | * Copyright (c) 2016 Alexander Graf |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | 6dd9faf | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 9 | #include <blk.h> |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 10 | #include <dm.h> |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 11 | #include <efi_loader.h> |
AKASHI Takahiro | 8674006 | 2019-10-07 14:59:38 +0900 | [diff] [blame] | 12 | #include <fs.h> |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 13 | #include <part.h> |
| 14 | #include <malloc.h> |
| 15 | |
Heinrich Schuchardt | 11078bb | 2020-03-19 15:16:31 +0100 | [diff] [blame] | 16 | struct efi_system_partition efi_system_partition; |
| 17 | |
Heinrich Schuchardt | dec88e4 | 2019-04-20 07:39:11 +0200 | [diff] [blame] | 18 | const efi_guid_t efi_block_io_guid = EFI_BLOCK_IO_PROTOCOL_GUID; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 19 | |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 20 | /** |
| 21 | * struct efi_disk_obj - EFI disk object |
| 22 | * |
| 23 | * @header: EFI object header |
| 24 | * @ops: EFI disk I/O protocol interface |
| 25 | * @ifname: interface name for block device |
| 26 | * @dev_index: device index of block device |
| 27 | * @media: block I/O media information |
| 28 | * @dp: device path to the block device |
| 29 | * @part: partition |
| 30 | * @volume: simple file system protocol of the partition |
| 31 | * @offset: offset into disk for simple partition |
| 32 | * @desc: internal block device descriptor |
| 33 | */ |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 34 | struct efi_disk_obj { |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 35 | struct efi_object header; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 36 | struct efi_block_io ops; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 37 | const char *ifname; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 38 | int dev_index; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 39 | struct efi_block_io_media media; |
Rob Clark | 884bcf6 | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 40 | struct efi_device_path *dp; |
Rob Clark | 884bcf6 | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 41 | unsigned int part; |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 42 | struct efi_simple_file_system_protocol *volume; |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 43 | lbaint_t offset; |
Rob Clark | 884bcf6 | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 44 | struct blk_desc *desc; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 45 | }; |
| 46 | |
Heinrich Schuchardt | cda9b35 | 2019-09-05 20:13:46 +0200 | [diff] [blame] | 47 | /** |
| 48 | * efi_disk_reset() - reset block device |
| 49 | * |
| 50 | * This function implements the Reset service of the EFI_BLOCK_IO_PROTOCOL. |
| 51 | * |
| 52 | * As U-Boot's block devices do not have a reset function simply return |
| 53 | * EFI_SUCCESS. |
| 54 | * |
| 55 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 56 | * details. |
| 57 | * |
| 58 | * @this: pointer to the BLOCK_IO_PROTOCOL |
| 59 | * @extended_verification: extended verification |
| 60 | * Return: status code |
| 61 | */ |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 62 | static efi_status_t EFIAPI efi_disk_reset(struct efi_block_io *this, |
| 63 | char extended_verification) |
| 64 | { |
| 65 | EFI_ENTRY("%p, %x", this, extended_verification); |
Heinrich Schuchardt | cda9b35 | 2019-09-05 20:13:46 +0200 | [diff] [blame] | 66 | return EFI_EXIT(EFI_SUCCESS); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | enum efi_disk_direction { |
| 70 | EFI_DISK_READ, |
| 71 | EFI_DISK_WRITE, |
| 72 | }; |
| 73 | |
Heinrich Schuchardt | a80a232 | 2017-08-26 22:33:13 +0200 | [diff] [blame] | 74 | static efi_status_t efi_disk_rw_blocks(struct efi_block_io *this, |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 75 | u32 media_id, u64 lba, unsigned long buffer_size, |
| 76 | void *buffer, enum efi_disk_direction direction) |
| 77 | { |
| 78 | struct efi_disk_obj *diskobj; |
| 79 | struct blk_desc *desc; |
| 80 | int blksz; |
| 81 | int blocks; |
| 82 | unsigned long n; |
| 83 | |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 84 | diskobj = container_of(this, struct efi_disk_obj, ops); |
Alexander Graf | f9d334b | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 85 | desc = (struct blk_desc *) diskobj->desc; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 86 | blksz = desc->blksz; |
| 87 | blocks = buffer_size / blksz; |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 88 | lba += diskobj->offset; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 89 | |
Heinrich Schuchardt | 9d3f339 | 2019-09-05 19:43:17 +0200 | [diff] [blame] | 90 | EFI_PRINT("blocks=%x lba=%llx blksz=%x dir=%d\n", |
| 91 | blocks, lba, blksz, direction); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 92 | |
| 93 | /* We only support full block access */ |
| 94 | if (buffer_size & (blksz - 1)) |
Heinrich Schuchardt | f59f082 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 95 | return EFI_BAD_BUFFER_SIZE; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 96 | |
| 97 | if (direction == EFI_DISK_READ) |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 98 | n = blk_dread(desc, lba, blocks, buffer); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 99 | else |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 100 | n = blk_dwrite(desc, lba, blocks, buffer); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 101 | |
| 102 | /* We don't do interrupts, so check for timers cooperatively */ |
| 103 | efi_timer_check(); |
| 104 | |
Heinrich Schuchardt | 9d3f339 | 2019-09-05 19:43:17 +0200 | [diff] [blame] | 105 | EFI_PRINT("n=%lx blocks=%x\n", n, blocks); |
Alexander Graf | edcef3b | 2016-06-02 11:38:27 +0200 | [diff] [blame] | 106 | |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 107 | if (n != blocks) |
Rob Clark | 3304990 | 2017-07-25 20:28:29 -0400 | [diff] [blame] | 108 | return EFI_DEVICE_ERROR; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 109 | |
Rob Clark | 3304990 | 2017-07-25 20:28:29 -0400 | [diff] [blame] | 110 | return EFI_SUCCESS; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 111 | } |
| 112 | |
Heinrich Schuchardt | 55976b7 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 113 | /** |
| 114 | * efi_disk_read_blocks() - reads blocks from device |
| 115 | * |
| 116 | * This function implements the ReadBlocks service of the EFI_BLOCK_IO_PROTOCOL. |
| 117 | * |
| 118 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 119 | * details. |
| 120 | * |
| 121 | * @this: pointer to the BLOCK_IO_PROTOCOL |
| 122 | * @media_id: id of the medium to be read from |
| 123 | * @lba: starting logical block for reading |
| 124 | * @buffer_size: size of the read buffer |
| 125 | * @buffer: pointer to the destination buffer |
| 126 | * Return: status code |
| 127 | */ |
Simon Glass | e275458 | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 128 | static efi_status_t EFIAPI efi_disk_read_blocks(struct efi_block_io *this, |
Heinrich Schuchardt | 4f94865 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 129 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 130 | void *buffer) |
| 131 | { |
Alexander Graf | 51735ae | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 132 | void *real_buffer = buffer; |
| 133 | efi_status_t r; |
| 134 | |
Heinrich Schuchardt | f59f082 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 135 | if (!this) |
| 136 | return EFI_INVALID_PARAMETER; |
| 137 | /* TODO: check for media changes */ |
| 138 | if (media_id != this->media->media_id) |
| 139 | return EFI_MEDIA_CHANGED; |
| 140 | if (!this->media->media_present) |
| 141 | return EFI_NO_MEDIA; |
| 142 | /* media->io_align is a power of 2 */ |
| 143 | if ((uintptr_t)buffer & (this->media->io_align - 1)) |
| 144 | return EFI_INVALID_PARAMETER; |
| 145 | if (lba * this->media->block_size + buffer_size > |
| 146 | this->media->last_block * this->media->block_size) |
| 147 | return EFI_INVALID_PARAMETER; |
| 148 | |
Alexander Graf | 51735ae | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 149 | #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER |
| 150 | if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) { |
| 151 | r = efi_disk_read_blocks(this, media_id, lba, |
| 152 | EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer); |
| 153 | if (r != EFI_SUCCESS) |
| 154 | return r; |
| 155 | return efi_disk_read_blocks(this, media_id, lba + |
| 156 | EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size, |
| 157 | buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE, |
| 158 | buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE); |
| 159 | } |
| 160 | |
| 161 | real_buffer = efi_bounce_buffer; |
| 162 | #endif |
| 163 | |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 164 | EFI_ENTRY("%p, %x, %llx, %zx, %p", this, media_id, lba, |
Alexander Graf | 51735ae | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 165 | buffer_size, buffer); |
| 166 | |
| 167 | r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer, |
| 168 | EFI_DISK_READ); |
| 169 | |
| 170 | /* Copy from bounce buffer to real buffer if necessary */ |
| 171 | if ((r == EFI_SUCCESS) && (real_buffer != buffer)) |
| 172 | memcpy(buffer, real_buffer, buffer_size); |
| 173 | |
| 174 | return EFI_EXIT(r); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 175 | } |
| 176 | |
Heinrich Schuchardt | 55976b7 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 177 | /** |
| 178 | * efi_disk_write_blocks() - writes blocks to device |
| 179 | * |
| 180 | * This function implements the WriteBlocks service of the |
| 181 | * EFI_BLOCK_IO_PROTOCOL. |
| 182 | * |
| 183 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 184 | * details. |
| 185 | * |
| 186 | * @this: pointer to the BLOCK_IO_PROTOCOL |
| 187 | * @media_id: id of the medium to be written to |
| 188 | * @lba: starting logical block for writing |
| 189 | * @buffer_size: size of the write buffer |
| 190 | * @buffer: pointer to the source buffer |
| 191 | * Return: status code |
| 192 | */ |
Simon Glass | e275458 | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 193 | static efi_status_t EFIAPI efi_disk_write_blocks(struct efi_block_io *this, |
Heinrich Schuchardt | 4f94865 | 2018-01-19 20:24:48 +0100 | [diff] [blame] | 194 | u32 media_id, u64 lba, efi_uintn_t buffer_size, |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 195 | void *buffer) |
| 196 | { |
Alexander Graf | 51735ae | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 197 | void *real_buffer = buffer; |
| 198 | efi_status_t r; |
| 199 | |
Heinrich Schuchardt | f59f082 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 200 | if (!this) |
| 201 | return EFI_INVALID_PARAMETER; |
| 202 | if (this->media->read_only) |
| 203 | return EFI_WRITE_PROTECTED; |
| 204 | /* TODO: check for media changes */ |
| 205 | if (media_id != this->media->media_id) |
| 206 | return EFI_MEDIA_CHANGED; |
| 207 | if (!this->media->media_present) |
| 208 | return EFI_NO_MEDIA; |
| 209 | /* media->io_align is a power of 2 */ |
| 210 | if ((uintptr_t)buffer & (this->media->io_align - 1)) |
| 211 | return EFI_INVALID_PARAMETER; |
| 212 | if (lba * this->media->block_size + buffer_size > |
| 213 | this->media->last_block * this->media->block_size) |
| 214 | return EFI_INVALID_PARAMETER; |
| 215 | |
Alexander Graf | 51735ae | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 216 | #ifdef CONFIG_EFI_LOADER_BOUNCE_BUFFER |
| 217 | if (buffer_size > EFI_LOADER_BOUNCE_BUFFER_SIZE) { |
| 218 | r = efi_disk_write_blocks(this, media_id, lba, |
| 219 | EFI_LOADER_BOUNCE_BUFFER_SIZE, buffer); |
| 220 | if (r != EFI_SUCCESS) |
| 221 | return r; |
| 222 | return efi_disk_write_blocks(this, media_id, lba + |
| 223 | EFI_LOADER_BOUNCE_BUFFER_SIZE / this->media->block_size, |
| 224 | buffer_size - EFI_LOADER_BOUNCE_BUFFER_SIZE, |
| 225 | buffer + EFI_LOADER_BOUNCE_BUFFER_SIZE); |
| 226 | } |
| 227 | |
| 228 | real_buffer = efi_bounce_buffer; |
| 229 | #endif |
| 230 | |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 231 | EFI_ENTRY("%p, %x, %llx, %zx, %p", this, media_id, lba, |
Alexander Graf | 51735ae | 2016-05-11 18:25:48 +0200 | [diff] [blame] | 232 | buffer_size, buffer); |
| 233 | |
| 234 | /* Populate bounce buffer if necessary */ |
| 235 | if (real_buffer != buffer) |
| 236 | memcpy(real_buffer, buffer, buffer_size); |
| 237 | |
| 238 | r = efi_disk_rw_blocks(this, media_id, lba, buffer_size, real_buffer, |
| 239 | EFI_DISK_WRITE); |
| 240 | |
| 241 | return EFI_EXIT(r); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 242 | } |
| 243 | |
Heinrich Schuchardt | 55976b7 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 244 | /** |
| 245 | * efi_disk_flush_blocks() - flushes modified data to the device |
| 246 | * |
| 247 | * This function implements the FlushBlocks service of the |
| 248 | * EFI_BLOCK_IO_PROTOCOL. |
| 249 | * |
| 250 | * As we always write synchronously nothing is done here. |
| 251 | * |
| 252 | * See the Unified Extensible Firmware Interface (UEFI) specification for |
| 253 | * details. |
| 254 | * |
| 255 | * @this: pointer to the BLOCK_IO_PROTOCOL |
| 256 | * Return: status code |
| 257 | */ |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 258 | static efi_status_t EFIAPI efi_disk_flush_blocks(struct efi_block_io *this) |
| 259 | { |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 260 | EFI_ENTRY("%p", this); |
| 261 | return EFI_EXIT(EFI_SUCCESS); |
| 262 | } |
| 263 | |
| 264 | static const struct efi_block_io block_io_disk_template = { |
| 265 | .reset = &efi_disk_reset, |
| 266 | .read_blocks = &efi_disk_read_blocks, |
| 267 | .write_blocks = &efi_disk_write_blocks, |
| 268 | .flush_blocks = &efi_disk_flush_blocks, |
| 269 | }; |
| 270 | |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 271 | /** |
| 272 | * efi_fs_from_path() - retrieve simple file system protocol |
| 273 | * |
| 274 | * Gets the simple file system protocol for a file device path. |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 275 | * |
| 276 | * The full path provided is split into device part and into a file |
| 277 | * part. The device part is used to find the handle on which the |
| 278 | * simple file system protocol is installed. |
| 279 | * |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 280 | * @full_path: device path including device and file |
| 281 | * Return: simple file system protocol |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 282 | */ |
| 283 | struct efi_simple_file_system_protocol * |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 284 | efi_fs_from_path(struct efi_device_path *full_path) |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 285 | { |
| 286 | struct efi_object *efiobj; |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 287 | struct efi_handler *handler; |
| 288 | struct efi_device_path *device_path; |
| 289 | struct efi_device_path *file_path; |
| 290 | efi_status_t ret; |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 291 | |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 292 | /* Split the path into a device part and a file part */ |
| 293 | ret = efi_dp_split_file_path(full_path, &device_path, &file_path); |
| 294 | if (ret != EFI_SUCCESS) |
| 295 | return NULL; |
| 296 | efi_free_pool(file_path); |
| 297 | |
| 298 | /* Get the EFI object for the partition */ |
| 299 | efiobj = efi_dp_find_obj(device_path, NULL); |
| 300 | efi_free_pool(device_path); |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 301 | if (!efiobj) |
| 302 | return NULL; |
| 303 | |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 304 | /* Find the simple file system protocol */ |
| 305 | ret = efi_search_protocol(efiobj, &efi_simple_file_system_protocol_guid, |
| 306 | &handler); |
| 307 | if (ret != EFI_SUCCESS) |
| 308 | return NULL; |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 309 | |
Heinrich Schuchardt | 110d80a | 2018-01-19 20:24:39 +0100 | [diff] [blame] | 310 | /* Return the simple file system protocol for the partition */ |
| 311 | return handler->protocol_interface; |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 312 | } |
| 313 | |
AKASHI Takahiro | 8674006 | 2019-10-07 14:59:38 +0900 | [diff] [blame] | 314 | /** |
| 315 | * efi_fs_exists() - check if a partition bears a file system |
| 316 | * |
| 317 | * @desc: block device descriptor |
| 318 | * @part: partition number |
| 319 | * Return: 1 if a file system exists on the partition |
| 320 | * 0 otherwise |
| 321 | */ |
| 322 | static int efi_fs_exists(struct blk_desc *desc, int part) |
| 323 | { |
| 324 | if (fs_set_blk_dev_with_part(desc, part)) |
| 325 | return 0; |
| 326 | |
| 327 | if (fs_get_type() == FS_TYPE_ANY) |
| 328 | return 0; |
| 329 | |
| 330 | fs_close(); |
| 331 | |
| 332 | return 1; |
| 333 | } |
| 334 | |
Heinrich Schuchardt | 55976b7 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 335 | /** |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 336 | * efi_disk_add_dev() - create a handle for a partition or disk |
Heinrich Schuchardt | 93945f2 | 2017-10-26 19:25:46 +0200 | [diff] [blame] | 337 | * |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 338 | * @parent: parent handle |
| 339 | * @dp_parent: parent device path |
| 340 | * @if_typename: interface name for block device |
| 341 | * @desc: internal block device |
| 342 | * @dev_index: device index for block device |
| 343 | * @offset: offset into disk for simple partitions |
Heinrich Schuchardt | 55976b7 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 344 | * @part: partition |
| 345 | * @disk: pointer to receive the created handle |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 346 | * Return: disk object |
Heinrich Schuchardt | 93945f2 | 2017-10-26 19:25:46 +0200 | [diff] [blame] | 347 | */ |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 348 | static efi_status_t efi_disk_add_dev( |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 349 | efi_handle_t parent, |
| 350 | struct efi_device_path *dp_parent, |
| 351 | const char *if_typename, |
| 352 | struct blk_desc *desc, |
| 353 | int dev_index, |
| 354 | lbaint_t offset, |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 355 | unsigned int part, |
| 356 | struct efi_disk_obj **disk) |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 357 | { |
| 358 | struct efi_disk_obj *diskobj; |
Heinrich Schuchardt | 0a87e05 | 2020-05-21 09:22:06 +0200 | [diff] [blame] | 359 | struct efi_object *handle; |
Heinrich Schuchardt | 4b9f7aa | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 360 | efi_status_t ret; |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 361 | |
Alexander Graf | 0812d1a | 2016-08-05 14:51:47 +0200 | [diff] [blame] | 362 | /* Don't add empty devices */ |
| 363 | if (!desc->lba) |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 364 | return EFI_NOT_READY; |
Alexander Graf | 0812d1a | 2016-08-05 14:51:47 +0200 | [diff] [blame] | 365 | |
Rob Clark | 884bcf6 | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 366 | diskobj = calloc(1, sizeof(*diskobj)); |
Heinrich Schuchardt | 4b9f7aa | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 367 | if (!diskobj) |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 368 | return EFI_OUT_OF_RESOURCES; |
Heinrich Schuchardt | 4b9f7aa | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 369 | |
| 370 | /* Hook up to the device list */ |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 371 | efi_add_handle(&diskobj->header); |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 372 | |
| 373 | /* Fill in object data */ |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 374 | if (part) { |
| 375 | struct efi_device_path *node = efi_dp_part_node(desc, part); |
| 376 | |
| 377 | diskobj->dp = efi_dp_append_node(dp_parent, node); |
| 378 | efi_free_pool(node); |
| 379 | } else { |
| 380 | diskobj->dp = efi_dp_from_part(desc, part); |
| 381 | } |
Rob Clark | 884bcf6 | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 382 | diskobj->part = part; |
Heinrich Schuchardt | 0a87e05 | 2020-05-21 09:22:06 +0200 | [diff] [blame] | 383 | |
| 384 | /* |
| 385 | * Install the device path and the block IO protocol. |
| 386 | * |
| 387 | * InstallMultipleProtocolInterfaces() checks if the device path is |
| 388 | * already installed on an other handle and returns EFI_ALREADY_STARTED |
| 389 | * in this case. |
| 390 | */ |
| 391 | handle = &diskobj->header; |
| 392 | ret = EFI_CALL(efi_install_multiple_protocol_interfaces( |
| 393 | &handle, &efi_guid_device_path, diskobj->dp, |
| 394 | &efi_block_io_guid, &diskobj->ops, NULL)); |
Heinrich Schuchardt | 4b9f7aa | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 395 | if (ret != EFI_SUCCESS) |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 396 | return ret; |
Heinrich Schuchardt | 0a87e05 | 2020-05-21 09:22:06 +0200 | [diff] [blame] | 397 | |
| 398 | /* |
| 399 | * On partitions or whole disks without partitions install the |
| 400 | * simple file system protocol if a file system is available. |
| 401 | */ |
AKASHI Takahiro | 89cb6a5 | 2019-10-07 14:59:39 +0900 | [diff] [blame] | 402 | if ((part || desc->part_type == PART_TYPE_UNKNOWN) && |
| 403 | efi_fs_exists(desc, part)) { |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 404 | diskobj->volume = efi_simple_file_system(desc, part, |
| 405 | diskobj->dp); |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 406 | ret = efi_add_protocol(&diskobj->header, |
Heinrich Schuchardt | 4b9f7aa | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 407 | &efi_simple_file_system_protocol_guid, |
Heinrich Schuchardt | 22de1de | 2018-01-19 20:24:38 +0100 | [diff] [blame] | 408 | diskobj->volume); |
Heinrich Schuchardt | 4b9f7aa | 2017-11-26 14:05:12 +0100 | [diff] [blame] | 409 | if (ret != EFI_SUCCESS) |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 410 | return ret; |
Rob Clark | 2a92080 | 2017-09-13 18:05:34 -0400 | [diff] [blame] | 411 | } |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 412 | diskobj->ops = block_io_disk_template; |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 413 | diskobj->ifname = if_typename; |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 414 | diskobj->dev_index = dev_index; |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 415 | diskobj->offset = offset; |
Alexander Graf | f9d334b | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 416 | diskobj->desc = desc; |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 417 | |
| 418 | /* Fill in EFI IO Media info (for read/write callbacks) */ |
| 419 | diskobj->media.removable_media = desc->removable; |
| 420 | diskobj->media.media_present = 1; |
Heinrich Schuchardt | f59f082 | 2019-09-05 19:31:23 +0200 | [diff] [blame] | 421 | /* |
| 422 | * MediaID is just an arbitrary counter. |
| 423 | * We have to change it if the medium is removed or changed. |
| 424 | */ |
| 425 | diskobj->media.media_id = 1; |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 426 | diskobj->media.block_size = desc->blksz; |
| 427 | diskobj->media.io_align = desc->blksz; |
Alexander Graf | 0812d1a | 2016-08-05 14:51:47 +0200 | [diff] [blame] | 428 | diskobj->media.last_block = desc->lba - offset; |
Heinrich Schuchardt | 9f88896 | 2020-03-19 15:45:52 +0100 | [diff] [blame] | 429 | if (part) |
Emmanuel Vadot | 5f77083 | 2017-12-11 19:22:33 +0100 | [diff] [blame] | 430 | diskobj->media.logical_partition = 1; |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 431 | diskobj->ops.media = &diskobj->media; |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 432 | if (disk) |
| 433 | *disk = diskobj; |
Heinrich Schuchardt | 11078bb | 2020-03-19 15:16:31 +0100 | [diff] [blame] | 434 | |
| 435 | /* Store first EFI system partition */ |
| 436 | if (part && !efi_system_partition.if_type) { |
| 437 | int r; |
Simon Glass | 0528979 | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 438 | struct disk_partition info; |
Heinrich Schuchardt | 11078bb | 2020-03-19 15:16:31 +0100 | [diff] [blame] | 439 | |
| 440 | r = part_get_info(desc, part, &info); |
| 441 | if (r) |
| 442 | return EFI_DEVICE_ERROR; |
| 443 | if (info.bootable & PART_EFI_SYSTEM_PARTITION) { |
| 444 | efi_system_partition.if_type = desc->if_type; |
| 445 | efi_system_partition.devnum = desc->devnum; |
| 446 | efi_system_partition.part = part; |
| 447 | EFI_PRINT("EFI system partition: %s %d:%d\n", |
| 448 | blk_get_if_type_name(desc->if_type), |
| 449 | desc->devnum, part); |
| 450 | } |
| 451 | } |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 452 | return EFI_SUCCESS; |
Alexander Graf | 4a12a97 | 2016-04-11 16:16:17 +0200 | [diff] [blame] | 453 | } |
| 454 | |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 455 | /** |
| 456 | * efi_disk_create_partitions() - create handles and protocols for partitions |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 457 | * |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 458 | * Create handles and protocols for the partitions of a block device. |
| 459 | * |
| 460 | * @parent: handle of the parent disk |
Heinrich Schuchardt | 55976b7 | 2020-04-10 17:10:34 +0200 | [diff] [blame] | 461 | * @desc: block device |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 462 | * @if_typename: interface type |
| 463 | * @diskid: device number |
| 464 | * @pdevname: device name |
| 465 | * Return: number of partitions created |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 466 | */ |
| 467 | int efi_disk_create_partitions(efi_handle_t parent, struct blk_desc *desc, |
| 468 | const char *if_typename, int diskid, |
| 469 | const char *pdevname) |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 470 | { |
| 471 | int disks = 0; |
Alexander Graf | ecbe1a0 | 2016-04-11 16:16:20 +0200 | [diff] [blame] | 472 | char devname[32] = { 0 }; /* dp->str is u16[32] long */ |
Simon Glass | 0528979 | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 473 | struct disk_partition info; |
Jonathan Gray | 16a73b2 | 2017-10-10 13:55:26 +1100 | [diff] [blame] | 474 | int part; |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 475 | struct efi_device_path *dp = NULL; |
| 476 | efi_status_t ret; |
| 477 | struct efi_handler *handler; |
| 478 | |
| 479 | /* Get the device path of the parent */ |
| 480 | ret = efi_search_protocol(parent, &efi_guid_device_path, &handler); |
| 481 | if (ret == EFI_SUCCESS) |
| 482 | dp = handler->protocol_interface; |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 483 | |
Alexander Graf | c034b7f | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 484 | /* Add devices for each partition */ |
Jonathan Gray | 16a73b2 | 2017-10-10 13:55:26 +1100 | [diff] [blame] | 485 | for (part = 1; part <= MAX_SEARCH_PARTITIONS; part++) { |
| 486 | if (part_get_info(desc, part, &info)) |
| 487 | continue; |
Alexander Graf | f9d334b | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 488 | snprintf(devname, sizeof(devname), "%s:%d", pdevname, |
| 489 | part); |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 490 | ret = efi_disk_add_dev(parent, dp, if_typename, desc, diskid, |
| 491 | info.start, part, NULL); |
| 492 | if (ret != EFI_SUCCESS) { |
| 493 | printf("Adding partition %s failed\n", pdevname); |
| 494 | continue; |
| 495 | } |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 496 | disks++; |
| 497 | } |
Rob Clark | 884bcf6 | 2017-09-13 18:05:31 -0400 | [diff] [blame] | 498 | |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 499 | return disks; |
| 500 | } |
| 501 | |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 502 | /** |
| 503 | * efi_disk_register() - register block devices |
| 504 | * |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 505 | * U-Boot doesn't have a list of all online disk devices. So when running our |
| 506 | * EFI payload, we scan through all of the potentially available ones and |
| 507 | * store them in our object pool. |
| 508 | * |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 509 | * This function is called in efi_init_obj_list(). |
| 510 | * |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 511 | * TODO(sjg@chromium.org): Actually with CONFIG_BLK, U-Boot does have this. |
| 512 | * Consider converting the code to look up devices as needed. The EFI device |
| 513 | * could be a child of the UCLASS_BLK block device, perhaps. |
| 514 | * |
Heinrich Schuchardt | 47a9596 | 2020-03-19 13:49:34 +0100 | [diff] [blame] | 515 | * Return: status code |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 516 | */ |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 517 | efi_status_t efi_disk_register(void) |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 518 | { |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 519 | struct efi_disk_obj *disk; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 520 | int disks = 0; |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 521 | efi_status_t ret; |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 522 | #ifdef CONFIG_BLK |
| 523 | struct udevice *dev; |
| 524 | |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 525 | for (uclass_first_device_check(UCLASS_BLK, &dev); dev; |
xypron.glpk@gmx.de | 70bfcdc | 2017-06-20 19:10:27 +0000 | [diff] [blame] | 526 | uclass_next_device_check(&dev)) { |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 527 | struct blk_desc *desc = dev_get_uclass_platdata(dev); |
Heinrich Schuchardt | 9bfca9f | 2018-01-19 20:24:44 +0100 | [diff] [blame] | 528 | const char *if_typename = blk_get_if_type_name(desc->if_type); |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 529 | |
Alexander Graf | c034b7f | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 530 | /* Add block device for the full device */ |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 531 | printf("Scanning disk %s...\n", dev->name); |
| 532 | ret = efi_disk_add_dev(NULL, NULL, if_typename, |
| 533 | desc, desc->devnum, 0, 0, &disk); |
| 534 | if (ret == EFI_NOT_READY) { |
| 535 | printf("Disk %s not ready\n", dev->name); |
| 536 | continue; |
| 537 | } |
| 538 | if (ret) { |
| 539 | printf("ERROR: failure to add disk device %s, r = %lu\n", |
| 540 | dev->name, ret & ~EFI_ERROR_MASK); |
| 541 | return ret; |
| 542 | } |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 543 | disks++; |
| 544 | |
Alexander Graf | c034b7f | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 545 | /* Partitions show up as block devices in EFI */ |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 546 | disks += efi_disk_create_partitions( |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 547 | &disk->header, desc, if_typename, |
Heinrich Schuchardt | 64e4db0 | 2018-01-19 20:24:47 +0100 | [diff] [blame] | 548 | desc->devnum, dev->name); |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 549 | } |
| 550 | #else |
| 551 | int i, if_type; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 552 | |
| 553 | /* Search for all available disk devices */ |
Simon Glass | 6dd9faf | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 554 | for (if_type = 0; if_type < IF_TYPE_COUNT; if_type++) { |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 555 | const struct blk_driver *cur_drvr; |
| 556 | const char *if_typename; |
| 557 | |
Simon Glass | 6dd9faf | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 558 | cur_drvr = blk_driver_lookup_type(if_type); |
| 559 | if (!cur_drvr) |
| 560 | continue; |
| 561 | |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 562 | if_typename = cur_drvr->if_typename; |
| 563 | printf("Scanning disks on %s...\n", if_typename); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 564 | for (i = 0; i < 4; i++) { |
| 565 | struct blk_desc *desc; |
Alexander Graf | ecbe1a0 | 2016-04-11 16:16:20 +0200 | [diff] [blame] | 566 | char devname[32] = { 0 }; /* dp->str is u16[32] long */ |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 567 | |
Simon Glass | 6dd9faf | 2016-05-01 13:52:32 -0600 | [diff] [blame] | 568 | desc = blk_get_devnum_by_type(if_type, i); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 569 | if (!desc) |
| 570 | continue; |
| 571 | if (desc->type == DEV_TYPE_UNKNOWN) |
| 572 | continue; |
| 573 | |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 574 | snprintf(devname, sizeof(devname), "%s%d", |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 575 | if_typename, i); |
Rob Clark | 77511b3 | 2017-10-08 11:33:08 -0400 | [diff] [blame] | 576 | |
Alexander Graf | c034b7f | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 577 | /* Add block device for the full device */ |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 578 | ret = efi_disk_add_dev(NULL, NULL, if_typename, desc, |
| 579 | i, 0, 0, &disk); |
| 580 | if (ret == EFI_NOT_READY) { |
| 581 | printf("Disk %s not ready\n", devname); |
| 582 | continue; |
| 583 | } |
| 584 | if (ret) { |
| 585 | printf("ERROR: failure to add disk device %s, r = %lu\n", |
| 586 | devname, ret & ~EFI_ERROR_MASK); |
| 587 | return ret; |
| 588 | } |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 589 | disks++; |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 590 | |
Alexander Graf | c034b7f | 2017-12-01 16:10:33 +0100 | [diff] [blame] | 591 | /* Partitions show up as block devices in EFI */ |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 592 | disks += efi_disk_create_partitions |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 593 | (&disk->header, desc, |
Heinrich Schuchardt | fae0118 | 2018-09-26 05:27:55 +0200 | [diff] [blame] | 594 | if_typename, i, devname); |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 595 | } |
| 596 | } |
Simon Glass | 487d756 | 2016-05-14 14:03:05 -0600 | [diff] [blame] | 597 | #endif |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 598 | printf("Found %d disks\n", disks); |
| 599 | |
Heinrich Schuchardt | df9cf56 | 2018-02-09 20:55:47 +0100 | [diff] [blame] | 600 | return EFI_SUCCESS; |
Alexander Graf | 2a22d05 | 2016-03-04 01:10:02 +0100 | [diff] [blame] | 601 | } |
AKASHI Takahiro | 41fd506 | 2020-04-27 18:48:20 +0900 | [diff] [blame] | 602 | |
| 603 | /** |
| 604 | * efi_disk_is_system_part() - check if handle refers to an EFI system partition |
| 605 | * |
| 606 | * @handle: handle of partition |
| 607 | * |
| 608 | * Return: true if handle refers to an EFI system partition |
| 609 | */ |
| 610 | bool efi_disk_is_system_part(efi_handle_t handle) |
| 611 | { |
| 612 | struct efi_handler *handler; |
| 613 | struct efi_disk_obj *diskobj; |
Simon Glass | 0528979 | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 614 | struct disk_partition info; |
AKASHI Takahiro | 41fd506 | 2020-04-27 18:48:20 +0900 | [diff] [blame] | 615 | efi_status_t ret; |
| 616 | int r; |
| 617 | |
| 618 | /* check if this is a block device */ |
| 619 | ret = efi_search_protocol(handle, &efi_block_io_guid, &handler); |
| 620 | if (ret != EFI_SUCCESS) |
| 621 | return false; |
| 622 | |
| 623 | diskobj = container_of(handle, struct efi_disk_obj, header); |
| 624 | |
| 625 | r = part_get_info(diskobj->desc, diskobj->part, &info); |
| 626 | if (r) |
| 627 | return false; |
| 628 | |
| 629 | return !!(info.bootable & PART_EFI_SYSTEM_PARTITION); |
| 630 | } |