Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /************************************************************ |
| 2 | * EFI GUID Partition Table handling |
Karel Zak | 7d13af3 | 2009-11-23 09:29:13 +0100 | [diff] [blame] | 3 | * |
| 4 | * http://www.uefi.org/specs/ |
| 5 | * http://www.intel.com/technology/efi/ |
| 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * efi.[ch] by Matt Domsch <Matt_Domsch@dell.com> |
| 8 | * Copyright 2000,2001,2002,2004 Dell Inc. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | * |
| 24 | * |
| 25 | * TODO: |
| 26 | * |
| 27 | * Changelog: |
Davidlohr Bueso | 70f637e | 2013-09-11 14:25:03 -0700 | [diff] [blame] | 28 | * Mon August 5th, 2013 Davidlohr Bueso <davidlohr@hp.com> |
| 29 | * - detect hybrid MBRs, tighter pMBR checking & cleanups. |
| 30 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | * Mon Nov 09 2004 Matt Domsch <Matt_Domsch@dell.com> |
| 32 | * - test for valid PMBR and valid PGPT before ever reading |
| 33 | * AGPT, allow override with 'gpt' kernel command line option. |
| 34 | * - check for first/last_usable_lba outside of size of disk |
| 35 | * |
| 36 | * Tue Mar 26 2002 Matt Domsch <Matt_Domsch@dell.com> |
| 37 | * - Ported to 2.5.7-pre1 and 2.5.7-dj2 |
| 38 | * - Applied patch to avoid fault in alternate header handling |
| 39 | * - cleaned up find_valid_gpt |
| 40 | * - On-disk structure and copy in memory is *always* LE now - |
| 41 | * swab fields as needed |
| 42 | * - remove print_gpt_header() |
| 43 | * - only use first max_p partition entries, to keep the kernel minor number |
| 44 | * and partition numbers tied. |
| 45 | * |
| 46 | * Mon Feb 04 2002 Matt Domsch <Matt_Domsch@dell.com> |
| 47 | * - Removed __PRIPTR_PREFIX - not being used |
| 48 | * |
| 49 | * Mon Jan 14 2002 Matt Domsch <Matt_Domsch@dell.com> |
| 50 | * - Ported to 2.5.2-pre11 + library crc32 patch Linus applied |
| 51 | * |
| 52 | * Thu Dec 6 2001 Matt Domsch <Matt_Domsch@dell.com> |
| 53 | * - Added compare_gpts(). |
| 54 | * - moved le_efi_guid_to_cpus() back into this file. GPT is the only |
| 55 | * thing that keeps EFI GUIDs on disk. |
| 56 | * - Changed gpt structure names and members to be simpler and more Linux-like. |
| 57 | * |
| 58 | * Wed Oct 17 2001 Matt Domsch <Matt_Domsch@dell.com> |
| 59 | * - Removed CONFIG_DEVFS_VOLUMES_UUID code entirely per Martin Wilck |
| 60 | * |
| 61 | * Wed Oct 10 2001 Matt Domsch <Matt_Domsch@dell.com> |
| 62 | * - Changed function comments to DocBook style per Andreas Dilger suggestion. |
| 63 | * |
| 64 | * Mon Oct 08 2001 Matt Domsch <Matt_Domsch@dell.com> |
| 65 | * - Change read_lba() to use the page cache per Al Viro's work. |
| 66 | * - print u64s properly on all architectures |
| 67 | * - fixed debug_printk(), now Dprintk() |
| 68 | * |
| 69 | * Mon Oct 01 2001 Matt Domsch <Matt_Domsch@dell.com> |
| 70 | * - Style cleanups |
| 71 | * - made most functions static |
| 72 | * - Endianness addition |
| 73 | * - remove test for second alternate header, as it's not per spec, |
| 74 | * and is unnecessary. There's now a method to read/write the last |
| 75 | * sector of an odd-sized disk from user space. No tools have ever |
| 76 | * been released which used this code, so it's effectively dead. |
| 77 | * - Per Asit Mallick of Intel, added a test for a valid PMBR. |
| 78 | * - Added kernel command line option 'gpt' to override valid PMBR test. |
| 79 | * |
| 80 | * Wed Jun 6 2001 Martin Wilck <Martin.Wilck@Fujitsu-Siemens.com> |
| 81 | * - added devfs volume UUID support (/dev/volumes/uuids) for |
| 82 | * mounting file systems by the partition GUID. |
| 83 | * |
| 84 | * Tue Dec 5 2000 Matt Domsch <Matt_Domsch@dell.com> |
| 85 | * - Moved crc32() to linux/lib, added efi_crc32(). |
| 86 | * |
| 87 | * Thu Nov 30 2000 Matt Domsch <Matt_Domsch@dell.com> |
| 88 | * - Replaced Intel's CRC32 function with an equivalent |
| 89 | * non-license-restricted version. |
| 90 | * |
| 91 | * Wed Oct 25 2000 Matt Domsch <Matt_Domsch@dell.com> |
| 92 | * - Fixed the last_lba() call to return the proper last block |
| 93 | * |
| 94 | * Thu Oct 12 2000 Matt Domsch <Matt_Domsch@dell.com> |
| 95 | * - Thanks to Andries Brouwer for his debugging assistance. |
| 96 | * - Code works, detects all the partitions. |
| 97 | * |
| 98 | ************************************************************/ |
Antti P Miettinen | 49204c1 | 2013-11-21 14:32:05 -0800 | [diff] [blame] | 99 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | #include <linux/crc32.h> |
Will Drewry | eec7ecf | 2010-08-31 15:47:06 -0500 | [diff] [blame] | 101 | #include <linux/ctype.h> |
Karel Zak | 7d13af3 | 2009-11-23 09:29:13 +0100 | [diff] [blame] | 102 | #include <linux/math64.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 103 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | #include "check.h" |
| 105 | #include "efi.h" |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | /* This allows a kernel command line option 'gpt' to override |
| 108 | * the test for invalid PMBR. Not __initdata because reloading |
| 109 | * the partition tables happens after init too. |
| 110 | */ |
| 111 | static int force_gpt; |
| 112 | static int __init |
| 113 | force_gpt_fn(char *str) |
| 114 | { |
| 115 | force_gpt = 1; |
| 116 | return 1; |
| 117 | } |
| 118 | __setup("gpt", force_gpt_fn); |
| 119 | |
| 120 | |
| 121 | /** |
| 122 | * efi_crc32() - EFI version of crc32 function |
| 123 | * @buf: buffer to calculate crc32 of |
Fabian Frederick | 16e1556 | 2014-06-12 20:26:01 +0200 | [diff] [blame] | 124 | * @len: length of buf |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | * |
| 126 | * Description: Returns EFI-style CRC32 value for @buf |
| 127 | * |
| 128 | * This function uses the little endian Ethernet polynomial |
| 129 | * but seeds the function with ~0, and xor's with ~0 at the end. |
| 130 | * Note, the EFI Specification, v1.02, has a reference to |
| 131 | * Dr. Dobbs Journal, May 1994 (actually it's in May 1992). |
| 132 | */ |
| 133 | static inline u32 |
| 134 | efi_crc32(const void *buf, unsigned long len) |
| 135 | { |
| 136 | return (crc32(~0L, buf, len) ^ ~0L); |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * last_lba(): return number of last logical block of device |
| 141 | * @bdev: block device |
| 142 | * |
| 143 | * Description: Returns last LBA value on success, 0 on error. |
| 144 | * This is stored (by sd and ide-geometry) in |
| 145 | * the part[0] entry for this disk, and is the number of |
| 146 | * physical sectors available on the disk. |
| 147 | */ |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 148 | static u64 last_lba(struct block_device *bdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { |
| 150 | if (!bdev || !bdev->bd_inode) |
| 151 | return 0; |
Karel Zak | 7d13af3 | 2009-11-23 09:29:13 +0100 | [diff] [blame] | 152 | return div_u64(bdev->bd_inode->i_size, |
| 153 | bdev_logical_block_size(bdev)) - 1ULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | } |
| 155 | |
Davidlohr Bueso | c2ebdc2 | 2013-09-11 14:24:55 -0700 | [diff] [blame] | 156 | static inline int pmbr_part_valid(gpt_mbr_record *part) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | { |
Davidlohr Bueso | 33afd7a | 2013-09-11 14:24:56 -0700 | [diff] [blame] | 158 | if (part->os_type != EFI_PMBR_OSTYPE_EFI_GPT) |
| 159 | goto invalid; |
| 160 | |
| 161 | /* set to 0x00000001 (i.e., the LBA of the GPT Partition Header) */ |
| 162 | if (le32_to_cpu(part->starting_lba) != GPT_PRIMARY_PARTITION_TABLE_LBA) |
| 163 | goto invalid; |
| 164 | |
Davidlohr Bueso | b05ebbb | 2013-09-11 14:24:58 -0700 | [diff] [blame] | 165 | return GPT_MBR_PROTECTIVE; |
Davidlohr Bueso | 33afd7a | 2013-09-11 14:24:56 -0700 | [diff] [blame] | 166 | invalid: |
| 167 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | /** |
| 171 | * is_pmbr_valid(): test Protective MBR for validity |
| 172 | * @mbr: pointer to a legacy mbr structure |
Davidlohr Bueso | 27a7c64 | 2013-09-11 14:25:00 -0700 | [diff] [blame] | 173 | * @total_sectors: amount of sectors in the device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | * |
Davidlohr Bueso | b05ebbb | 2013-09-11 14:24:58 -0700 | [diff] [blame] | 175 | * Description: Checks for a valid protective or hybrid |
| 176 | * master boot record (MBR). The validity of a pMBR depends |
| 177 | * on all of the following properties: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | * 1) MSDOS signature is in the last two bytes of the MBR |
| 179 | * 2) One partition of type 0xEE is found |
Davidlohr Bueso | b05ebbb | 2013-09-11 14:24:58 -0700 | [diff] [blame] | 180 | * |
| 181 | * In addition, a hybrid MBR will have up to three additional |
| 182 | * primary partitions, which point to the same space that's |
| 183 | * marked out by up to three GPT partitions. |
| 184 | * |
| 185 | * Returns 0 upon invalid MBR, or GPT_MBR_PROTECTIVE or |
| 186 | * GPT_MBR_HYBRID depending on the device layout. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | */ |
Davidlohr Bueso | 27a7c64 | 2013-09-11 14:25:00 -0700 | [diff] [blame] | 188 | static int is_pmbr_valid(legacy_mbr *mbr, sector_t total_sectors) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
Davidlohr Bueso | 6b02fa5 | 2013-09-13 15:02:22 -0700 | [diff] [blame] | 190 | uint32_t sz = 0; |
Davidlohr Bueso | 27a7c64 | 2013-09-11 14:25:00 -0700 | [diff] [blame] | 191 | int i, part = 0, ret = 0; /* invalid by default */ |
Davidlohr Bueso | b05ebbb | 2013-09-11 14:24:58 -0700 | [diff] [blame] | 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | if (!mbr || le16_to_cpu(mbr->signature) != MSDOS_MBR_SIGNATURE) |
Davidlohr Bueso | b05ebbb | 2013-09-11 14:24:58 -0700 | [diff] [blame] | 194 | goto done; |
| 195 | |
| 196 | for (i = 0; i < 4; i++) { |
| 197 | ret = pmbr_part_valid(&mbr->partition_record[i]); |
| 198 | if (ret == GPT_MBR_PROTECTIVE) { |
Davidlohr Bueso | 27a7c64 | 2013-09-11 14:25:00 -0700 | [diff] [blame] | 199 | part = i; |
Davidlohr Bueso | b05ebbb | 2013-09-11 14:24:58 -0700 | [diff] [blame] | 200 | /* |
| 201 | * Ok, we at least know that there's a protective MBR, |
| 202 | * now check if there are other partition types for |
| 203 | * hybrid MBR. |
| 204 | */ |
| 205 | goto check_hybrid; |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | if (ret != GPT_MBR_PROTECTIVE) |
| 210 | goto done; |
| 211 | check_hybrid: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | for (i = 0; i < 4; i++) |
Davidlohr Bueso | b05ebbb | 2013-09-11 14:24:58 -0700 | [diff] [blame] | 213 | if ((mbr->partition_record[i].os_type != |
| 214 | EFI_PMBR_OSTYPE_EFI_GPT) && |
| 215 | (mbr->partition_record[i].os_type != 0x00)) |
| 216 | ret = GPT_MBR_HYBRID; |
Davidlohr Bueso | 27a7c64 | 2013-09-11 14:25:00 -0700 | [diff] [blame] | 217 | |
| 218 | /* |
| 219 | * Protective MBRs take up the lesser of the whole disk |
| 220 | * or 2 TiB (32bit LBA), ignoring the rest of the disk. |
Davidlohr Bueso | 6b02fa5 | 2013-09-13 15:02:22 -0700 | [diff] [blame] | 221 | * Some partitioning programs, nonetheless, choose to set |
| 222 | * the size to the maximum 32-bit limitation, disregarding |
| 223 | * the disk size. |
Davidlohr Bueso | 27a7c64 | 2013-09-11 14:25:00 -0700 | [diff] [blame] | 224 | * |
| 225 | * Hybrid MBRs do not necessarily comply with this. |
Doug Anderson | 87fc0ad | 2013-10-16 13:46:57 -0700 | [diff] [blame] | 226 | * |
| 227 | * Consider a bad value here to be a warning to support dd'ing |
| 228 | * an image from a smaller disk to a larger disk. |
Davidlohr Bueso | 27a7c64 | 2013-09-11 14:25:00 -0700 | [diff] [blame] | 229 | */ |
| 230 | if (ret == GPT_MBR_PROTECTIVE) { |
Davidlohr Bueso | 6b02fa5 | 2013-09-13 15:02:22 -0700 | [diff] [blame] | 231 | sz = le32_to_cpu(mbr->partition_record[part].size_in_lba); |
| 232 | if (sz != (uint32_t) total_sectors - 1 && sz != 0xFFFFFFFF) |
Doug Anderson | 87fc0ad | 2013-10-16 13:46:57 -0700 | [diff] [blame] | 233 | pr_debug("GPT: mbr size in lba (%u) different than whole disk (%u).\n", |
| 234 | sz, min_t(uint32_t, |
| 235 | total_sectors - 1, 0xFFFFFFFF)); |
Davidlohr Bueso | 27a7c64 | 2013-09-11 14:25:00 -0700 | [diff] [blame] | 236 | } |
Davidlohr Bueso | b05ebbb | 2013-09-11 14:24:58 -0700 | [diff] [blame] | 237 | done: |
| 238 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | /** |
| 242 | * read_lba(): Read bytes from disk, starting at given LBA |
Fabian Frederick | 16e1556 | 2014-06-12 20:26:01 +0200 | [diff] [blame] | 243 | * @state: disk parsed partitions |
| 244 | * @lba: the Logical Block Address of the partition table |
| 245 | * @buffer: destination buffer |
| 246 | * @count: bytes to read |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | * |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 248 | * Description: Reads @count bytes from @state->bdev into @buffer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | * Returns number of bytes read on success, 0 on error. |
| 250 | */ |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 251 | static size_t read_lba(struct parsed_partitions *state, |
| 252 | u64 lba, u8 *buffer, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | { |
| 254 | size_t totalreadcount = 0; |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 255 | struct block_device *bdev = state->bdev; |
Karel Zak | 7d13af3 | 2009-11-23 09:29:13 +0100 | [diff] [blame] | 256 | sector_t n = lba * (bdev_logical_block_size(bdev) / 512); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 258 | if (!buffer || lba > last_lba(bdev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | return 0; |
| 260 | |
| 261 | while (count) { |
| 262 | int copied = 512; |
| 263 | Sector sect; |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 264 | unsigned char *data = read_part_sector(state, n++, §); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | if (!data) |
| 266 | break; |
| 267 | if (copied > count) |
| 268 | copied = count; |
| 269 | memcpy(buffer, data, copied); |
| 270 | put_dev_sector(sect); |
| 271 | buffer += copied; |
| 272 | totalreadcount +=copied; |
| 273 | count -= copied; |
| 274 | } |
| 275 | return totalreadcount; |
| 276 | } |
| 277 | |
| 278 | /** |
| 279 | * alloc_read_gpt_entries(): reads partition entries from disk |
Fabian Frederick | 16e1556 | 2014-06-12 20:26:01 +0200 | [diff] [blame] | 280 | * @state: disk parsed partitions |
| 281 | * @gpt: GPT header |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | * |
| 283 | * Description: Returns ptes on success, NULL on error. |
| 284 | * Allocates space for PTEs based on information found in @gpt. |
| 285 | * Notes: remember to free pte when you're done! |
| 286 | */ |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 287 | static gpt_entry *alloc_read_gpt_entries(struct parsed_partitions *state, |
| 288 | gpt_header *gpt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { |
| 290 | size_t count; |
| 291 | gpt_entry *pte; |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 292 | |
| 293 | if (!gpt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | return NULL; |
| 295 | |
| 296 | count = le32_to_cpu(gpt->num_partition_entries) * |
| 297 | le32_to_cpu(gpt->sizeof_partition_entry); |
| 298 | if (!count) |
| 299 | return NULL; |
Philippe De Muyter | ea56505 | 2013-04-29 23:00:18 +0200 | [diff] [blame] | 300 | pte = kmalloc(count, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | if (!pte) |
| 302 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 304 | if (read_lba(state, le64_to_cpu(gpt->partition_entry_lba), |
Davidlohr Bueso | 70f637e | 2013-09-11 14:25:03 -0700 | [diff] [blame] | 305 | (u8 *) pte, count) < count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | kfree(pte); |
| 307 | pte=NULL; |
| 308 | return NULL; |
| 309 | } |
| 310 | return pte; |
| 311 | } |
| 312 | |
| 313 | /** |
| 314 | * alloc_read_gpt_header(): Allocates GPT header, reads into it from disk |
Fabian Frederick | 16e1556 | 2014-06-12 20:26:01 +0200 | [diff] [blame] | 315 | * @state: disk parsed partitions |
| 316 | * @lba: the Logical Block Address of the partition table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | * |
| 318 | * Description: returns GPT header on success, NULL on error. Allocates |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 319 | * and fills a GPT header starting at @ from @state->bdev. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | * Note: remember to free gpt when finished with it. |
| 321 | */ |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 322 | static gpt_header *alloc_read_gpt_header(struct parsed_partitions *state, |
| 323 | u64 lba) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | { |
| 325 | gpt_header *gpt; |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 326 | unsigned ssz = bdev_logical_block_size(state->bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
Philippe De Muyter | ea56505 | 2013-04-29 23:00:18 +0200 | [diff] [blame] | 328 | gpt = kmalloc(ssz, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | if (!gpt) |
| 330 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 332 | if (read_lba(state, lba, (u8 *) gpt, ssz) < ssz) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | kfree(gpt); |
| 334 | gpt=NULL; |
| 335 | return NULL; |
| 336 | } |
| 337 | |
| 338 | return gpt; |
| 339 | } |
| 340 | |
| 341 | /** |
| 342 | * is_gpt_valid() - tests one GPT header and PTEs for validity |
Fabian Frederick | 16e1556 | 2014-06-12 20:26:01 +0200 | [diff] [blame] | 343 | * @state: disk parsed partitions |
| 344 | * @lba: logical block address of the GPT header to test |
| 345 | * @gpt: GPT header ptr, filled on return. |
| 346 | * @ptes: PTEs ptr, filled on return. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | * |
| 348 | * Description: returns 1 if valid, 0 on error. |
| 349 | * If valid, returns pointers to newly allocated GPT header and PTEs. |
| 350 | */ |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 351 | static int is_gpt_valid(struct parsed_partitions *state, u64 lba, |
| 352 | gpt_header **gpt, gpt_entry **ptes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
| 354 | u32 crc, origcrc; |
| 355 | u64 lastlba; |
| 356 | |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 357 | if (!ptes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | return 0; |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 359 | if (!(*gpt = alloc_read_gpt_header(state, lba))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | return 0; |
| 361 | |
| 362 | /* Check the GUID Partition Table signature */ |
| 363 | if (le64_to_cpu((*gpt)->signature) != GPT_HEADER_SIGNATURE) { |
Thomas Gleixner | d991696 | 2008-07-25 01:48:26 -0700 | [diff] [blame] | 364 | pr_debug("GUID Partition Table Header signature is wrong:" |
| 365 | "%lld != %lld\n", |
| 366 | (unsigned long long)le64_to_cpu((*gpt)->signature), |
| 367 | (unsigned long long)GPT_HEADER_SIGNATURE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | goto fail; |
| 369 | } |
| 370 | |
Peter Jones | 8b8a6e1 | 2013-02-27 17:05:17 -0800 | [diff] [blame] | 371 | /* Check the GUID Partition Table header size is too big */ |
Timo Warns | 3eb8e74 | 2011-05-26 16:25:57 -0700 | [diff] [blame] | 372 | if (le32_to_cpu((*gpt)->header_size) > |
| 373 | bdev_logical_block_size(state->bdev)) { |
Peter Jones | 8b8a6e1 | 2013-02-27 17:05:17 -0800 | [diff] [blame] | 374 | pr_debug("GUID Partition Table Header size is too large: %u > %u\n", |
Timo Warns | 3eb8e74 | 2011-05-26 16:25:57 -0700 | [diff] [blame] | 375 | le32_to_cpu((*gpt)->header_size), |
| 376 | bdev_logical_block_size(state->bdev)); |
| 377 | goto fail; |
| 378 | } |
| 379 | |
Peter Jones | 8b8a6e1 | 2013-02-27 17:05:17 -0800 | [diff] [blame] | 380 | /* Check the GUID Partition Table header size is too small */ |
| 381 | if (le32_to_cpu((*gpt)->header_size) < sizeof(gpt_header)) { |
| 382 | pr_debug("GUID Partition Table Header size is too small: %u < %zu\n", |
| 383 | le32_to_cpu((*gpt)->header_size), |
| 384 | sizeof(gpt_header)); |
| 385 | goto fail; |
| 386 | } |
| 387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | /* Check the GUID Partition Table CRC */ |
| 389 | origcrc = le32_to_cpu((*gpt)->header_crc32); |
| 390 | (*gpt)->header_crc32 = 0; |
| 391 | crc = efi_crc32((const unsigned char *) (*gpt), le32_to_cpu((*gpt)->header_size)); |
| 392 | |
| 393 | if (crc != origcrc) { |
Thomas Gleixner | d991696 | 2008-07-25 01:48:26 -0700 | [diff] [blame] | 394 | pr_debug("GUID Partition Table Header CRC is wrong: %x != %x\n", |
| 395 | crc, origcrc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | goto fail; |
| 397 | } |
| 398 | (*gpt)->header_crc32 = cpu_to_le32(origcrc); |
| 399 | |
| 400 | /* Check that the my_lba entry points to the LBA that contains |
| 401 | * the GUID Partition Table */ |
| 402 | if (le64_to_cpu((*gpt)->my_lba) != lba) { |
Thomas Gleixner | d991696 | 2008-07-25 01:48:26 -0700 | [diff] [blame] | 403 | pr_debug("GPT my_lba incorrect: %lld != %lld\n", |
| 404 | (unsigned long long)le64_to_cpu((*gpt)->my_lba), |
| 405 | (unsigned long long)lba); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | goto fail; |
| 407 | } |
| 408 | |
| 409 | /* Check the first_usable_lba and last_usable_lba are |
| 410 | * within the disk. |
| 411 | */ |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 412 | lastlba = last_lba(state->bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | if (le64_to_cpu((*gpt)->first_usable_lba) > lastlba) { |
Thomas Gleixner | d991696 | 2008-07-25 01:48:26 -0700 | [diff] [blame] | 414 | pr_debug("GPT: first_usable_lba incorrect: %lld > %lld\n", |
| 415 | (unsigned long long)le64_to_cpu((*gpt)->first_usable_lba), |
| 416 | (unsigned long long)lastlba); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | goto fail; |
| 418 | } |
| 419 | if (le64_to_cpu((*gpt)->last_usable_lba) > lastlba) { |
Thomas Gleixner | d991696 | 2008-07-25 01:48:26 -0700 | [diff] [blame] | 420 | pr_debug("GPT: last_usable_lba incorrect: %lld > %lld\n", |
| 421 | (unsigned long long)le64_to_cpu((*gpt)->last_usable_lba), |
| 422 | (unsigned long long)lastlba); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | goto fail; |
| 424 | } |
Davidlohr Bueso | aa054bc | 2013-09-11 14:25:01 -0700 | [diff] [blame] | 425 | if (le64_to_cpu((*gpt)->last_usable_lba) < le64_to_cpu((*gpt)->first_usable_lba)) { |
| 426 | pr_debug("GPT: last_usable_lba incorrect: %lld > %lld\n", |
| 427 | (unsigned long long)le64_to_cpu((*gpt)->last_usable_lba), |
| 428 | (unsigned long long)le64_to_cpu((*gpt)->first_usable_lba)); |
| 429 | goto fail; |
| 430 | } |
Timo Warns | fa039d5 | 2011-05-06 13:47:35 +0200 | [diff] [blame] | 431 | /* Check that sizeof_partition_entry has the correct value */ |
| 432 | if (le32_to_cpu((*gpt)->sizeof_partition_entry) != sizeof(gpt_entry)) { |
| 433 | pr_debug("GUID Partitition Entry Size check failed.\n"); |
| 434 | goto fail; |
| 435 | } |
| 436 | |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 437 | if (!(*ptes = alloc_read_gpt_entries(state, *gpt))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | goto fail; |
| 439 | |
| 440 | /* Check the GUID Partition Entry Array CRC */ |
| 441 | crc = efi_crc32((const unsigned char *) (*ptes), |
| 442 | le32_to_cpu((*gpt)->num_partition_entries) * |
| 443 | le32_to_cpu((*gpt)->sizeof_partition_entry)); |
| 444 | |
| 445 | if (crc != le32_to_cpu((*gpt)->partition_entry_array_crc32)) { |
Thomas Gleixner | d991696 | 2008-07-25 01:48:26 -0700 | [diff] [blame] | 446 | pr_debug("GUID Partitition Entry Array CRC check failed.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | goto fail_ptes; |
| 448 | } |
| 449 | |
| 450 | /* We're done, all's well */ |
| 451 | return 1; |
| 452 | |
| 453 | fail_ptes: |
| 454 | kfree(*ptes); |
| 455 | *ptes = NULL; |
| 456 | fail: |
| 457 | kfree(*gpt); |
| 458 | *gpt = NULL; |
| 459 | return 0; |
| 460 | } |
| 461 | |
| 462 | /** |
| 463 | * is_pte_valid() - tests one PTE for validity |
Fabian Frederick | 16e1556 | 2014-06-12 20:26:01 +0200 | [diff] [blame] | 464 | * @pte:pte to check |
| 465 | * @lastlba: last lba of the disk |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | * |
| 467 | * Description: returns 1 if valid, 0 on error. |
| 468 | */ |
| 469 | static inline int |
| 470 | is_pte_valid(const gpt_entry *pte, const u64 lastlba) |
| 471 | { |
| 472 | if ((!efi_guidcmp(pte->partition_type_guid, NULL_GUID)) || |
| 473 | le64_to_cpu(pte->starting_lba) > lastlba || |
| 474 | le64_to_cpu(pte->ending_lba) > lastlba) |
| 475 | return 0; |
| 476 | return 1; |
| 477 | } |
| 478 | |
| 479 | /** |
| 480 | * compare_gpts() - Search disk for valid GPT headers and PTEs |
Fabian Frederick | 16e1556 | 2014-06-12 20:26:01 +0200 | [diff] [blame] | 481 | * @pgpt: primary GPT header |
| 482 | * @agpt: alternate GPT header |
| 483 | * @lastlba: last LBA number |
| 484 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | * Description: Returns nothing. Sanity checks pgpt and agpt fields |
| 486 | * and prints warnings on discrepancies. |
| 487 | * |
| 488 | */ |
| 489 | static void |
| 490 | compare_gpts(gpt_header *pgpt, gpt_header *agpt, u64 lastlba) |
| 491 | { |
| 492 | int error_found = 0; |
| 493 | if (!pgpt || !agpt) |
| 494 | return; |
| 495 | if (le64_to_cpu(pgpt->my_lba) != le64_to_cpu(agpt->alternate_lba)) { |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 496 | pr_warn("GPT:Primary header LBA != Alt. header alternate_lba\n"); |
| 497 | pr_warn("GPT:%lld != %lld\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | (unsigned long long)le64_to_cpu(pgpt->my_lba), |
| 499 | (unsigned long long)le64_to_cpu(agpt->alternate_lba)); |
| 500 | error_found++; |
| 501 | } |
| 502 | if (le64_to_cpu(pgpt->alternate_lba) != le64_to_cpu(agpt->my_lba)) { |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 503 | pr_warn("GPT:Primary header alternate_lba != Alt. header my_lba\n"); |
| 504 | pr_warn("GPT:%lld != %lld\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | (unsigned long long)le64_to_cpu(pgpt->alternate_lba), |
| 506 | (unsigned long long)le64_to_cpu(agpt->my_lba)); |
| 507 | error_found++; |
| 508 | } |
| 509 | if (le64_to_cpu(pgpt->first_usable_lba) != |
| 510 | le64_to_cpu(agpt->first_usable_lba)) { |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 511 | pr_warn("GPT:first_usable_lbas don't match.\n"); |
| 512 | pr_warn("GPT:%lld != %lld\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | (unsigned long long)le64_to_cpu(pgpt->first_usable_lba), |
| 514 | (unsigned long long)le64_to_cpu(agpt->first_usable_lba)); |
| 515 | error_found++; |
| 516 | } |
| 517 | if (le64_to_cpu(pgpt->last_usable_lba) != |
| 518 | le64_to_cpu(agpt->last_usable_lba)) { |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 519 | pr_warn("GPT:last_usable_lbas don't match.\n"); |
| 520 | pr_warn("GPT:%lld != %lld\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | (unsigned long long)le64_to_cpu(pgpt->last_usable_lba), |
| 522 | (unsigned long long)le64_to_cpu(agpt->last_usable_lba)); |
| 523 | error_found++; |
| 524 | } |
| 525 | if (efi_guidcmp(pgpt->disk_guid, agpt->disk_guid)) { |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 526 | pr_warn("GPT:disk_guids don't match.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | error_found++; |
| 528 | } |
| 529 | if (le32_to_cpu(pgpt->num_partition_entries) != |
| 530 | le32_to_cpu(agpt->num_partition_entries)) { |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 531 | pr_warn("GPT:num_partition_entries don't match: " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | "0x%x != 0x%x\n", |
| 533 | le32_to_cpu(pgpt->num_partition_entries), |
| 534 | le32_to_cpu(agpt->num_partition_entries)); |
| 535 | error_found++; |
| 536 | } |
| 537 | if (le32_to_cpu(pgpt->sizeof_partition_entry) != |
| 538 | le32_to_cpu(agpt->sizeof_partition_entry)) { |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 539 | pr_warn("GPT:sizeof_partition_entry values don't match: " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | "0x%x != 0x%x\n", |
| 541 | le32_to_cpu(pgpt->sizeof_partition_entry), |
| 542 | le32_to_cpu(agpt->sizeof_partition_entry)); |
| 543 | error_found++; |
| 544 | } |
| 545 | if (le32_to_cpu(pgpt->partition_entry_array_crc32) != |
| 546 | le32_to_cpu(agpt->partition_entry_array_crc32)) { |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 547 | pr_warn("GPT:partition_entry_array_crc32 values don't match: " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | "0x%x != 0x%x\n", |
| 549 | le32_to_cpu(pgpt->partition_entry_array_crc32), |
| 550 | le32_to_cpu(agpt->partition_entry_array_crc32)); |
| 551 | error_found++; |
| 552 | } |
| 553 | if (le64_to_cpu(pgpt->alternate_lba) != lastlba) { |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 554 | pr_warn("GPT:Primary header thinks Alt. header is not at the end of the disk.\n"); |
| 555 | pr_warn("GPT:%lld != %lld\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | (unsigned long long)le64_to_cpu(pgpt->alternate_lba), |
| 557 | (unsigned long long)lastlba); |
| 558 | error_found++; |
| 559 | } |
| 560 | |
| 561 | if (le64_to_cpu(agpt->my_lba) != lastlba) { |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 562 | pr_warn("GPT:Alternate GPT header not at the end of the disk.\n"); |
| 563 | pr_warn("GPT:%lld != %lld\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | (unsigned long long)le64_to_cpu(agpt->my_lba), |
| 565 | (unsigned long long)lastlba); |
| 566 | error_found++; |
| 567 | } |
| 568 | |
| 569 | if (error_found) |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 570 | pr_warn("GPT: Use GNU Parted to correct GPT errors.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | return; |
| 572 | } |
| 573 | |
| 574 | /** |
| 575 | * find_valid_gpt() - Search disk for valid GPT headers and PTEs |
Fabian Frederick | 16e1556 | 2014-06-12 20:26:01 +0200 | [diff] [blame] | 576 | * @state: disk parsed partitions |
| 577 | * @gpt: GPT header ptr, filled on return. |
| 578 | * @ptes: PTEs ptr, filled on return. |
| 579 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | * Description: Returns 1 if valid, 0 on error. |
| 581 | * If valid, returns pointers to newly allocated GPT header and PTEs. |
| 582 | * Validity depends on PMBR being valid (or being overridden by the |
| 583 | * 'gpt' kernel command line option) and finding either the Primary |
| 584 | * GPT header and PTEs valid, or the Alternate GPT header and PTEs |
| 585 | * valid. If the Primary GPT header is not valid, the Alternate GPT header |
| 586 | * is not checked unless the 'gpt' kernel command line option is passed. |
| 587 | * This protects against devices which misreport their size, and forces |
| 588 | * the user to decide to use the Alternate GPT. |
| 589 | */ |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 590 | static int find_valid_gpt(struct parsed_partitions *state, gpt_header **gpt, |
| 591 | gpt_entry **ptes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | { |
| 593 | int good_pgpt = 0, good_agpt = 0, good_pmbr = 0; |
| 594 | gpt_header *pgpt = NULL, *agpt = NULL; |
| 595 | gpt_entry *pptes = NULL, *aptes = NULL; |
Olaf Hering | 4c64c30 | 2007-05-10 22:22:42 -0700 | [diff] [blame] | 596 | legacy_mbr *legacymbr; |
Davidlohr Bueso | 27a7c64 | 2013-09-11 14:25:00 -0700 | [diff] [blame] | 597 | sector_t total_sectors = i_size_read(state->bdev->bd_inode) >> 9; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | u64 lastlba; |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 599 | |
| 600 | if (!ptes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | return 0; |
| 602 | |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 603 | lastlba = last_lba(state->bdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | if (!force_gpt) { |
Davidlohr Bueso | b05ebbb | 2013-09-11 14:24:58 -0700 | [diff] [blame] | 605 | /* This will be added to the EFI Spec. per Intel after v1.02. */ |
| 606 | legacymbr = kzalloc(sizeof(*legacymbr), GFP_KERNEL); |
| 607 | if (!legacymbr) |
| 608 | goto fail; |
| 609 | |
| 610 | read_lba(state, 0, (u8 *)legacymbr, sizeof(*legacymbr)); |
Davidlohr Bueso | 27a7c64 | 2013-09-11 14:25:00 -0700 | [diff] [blame] | 611 | good_pmbr = is_pmbr_valid(legacymbr, total_sectors); |
Davidlohr Bueso | b05ebbb | 2013-09-11 14:24:58 -0700 | [diff] [blame] | 612 | kfree(legacymbr); |
| 613 | |
| 614 | if (!good_pmbr) |
| 615 | goto fail; |
| 616 | |
| 617 | pr_debug("Device has a %s MBR\n", |
| 618 | good_pmbr == GPT_MBR_PROTECTIVE ? |
| 619 | "protective" : "hybrid"); |
| 620 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 622 | good_pgpt = is_gpt_valid(state, GPT_PRIMARY_PARTITION_TABLE_LBA, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | &pgpt, &pptes); |
| 624 | if (good_pgpt) |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 625 | good_agpt = is_gpt_valid(state, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | le64_to_cpu(pgpt->alternate_lba), |
| 627 | &agpt, &aptes); |
| 628 | if (!good_agpt && force_gpt) |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 629 | good_agpt = is_gpt_valid(state, lastlba, &agpt, &aptes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | |
| 631 | /* The obviously unsuccessful case */ |
| 632 | if (!good_pgpt && !good_agpt) |
| 633 | goto fail; |
| 634 | |
| 635 | compare_gpts(pgpt, agpt, lastlba); |
| 636 | |
| 637 | /* The good cases */ |
| 638 | if (good_pgpt) { |
| 639 | *gpt = pgpt; |
| 640 | *ptes = pptes; |
| 641 | kfree(agpt); |
| 642 | kfree(aptes); |
Davidlohr Bueso | 70f637e | 2013-09-11 14:25:03 -0700 | [diff] [blame] | 643 | if (!good_agpt) |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 644 | pr_warn("Alternate GPT is invalid, using primary GPT.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | return 1; |
| 646 | } |
| 647 | else if (good_agpt) { |
| 648 | *gpt = agpt; |
| 649 | *ptes = aptes; |
| 650 | kfree(pgpt); |
| 651 | kfree(pptes); |
Andrew Morton | b4bc4a1 | 2013-09-11 14:25:04 -0700 | [diff] [blame] | 652 | pr_warn("Primary GPT is invalid, using alternate GPT.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | return 1; |
| 654 | } |
| 655 | |
| 656 | fail: |
| 657 | kfree(pgpt); |
| 658 | kfree(agpt); |
| 659 | kfree(pptes); |
| 660 | kfree(aptes); |
| 661 | *gpt = NULL; |
| 662 | *ptes = NULL; |
| 663 | return 0; |
| 664 | } |
| 665 | |
| 666 | /** |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 667 | * efi_partition(struct parsed_partitions *state) |
Fabian Frederick | 16e1556 | 2014-06-12 20:26:01 +0200 | [diff] [blame] | 668 | * @state: disk parsed partitions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | * |
| 670 | * Description: called from check.c, if the disk contains GPT |
| 671 | * partitions, sets up partition entries in the kernel. |
| 672 | * |
| 673 | * If the first block on the disk is a legacy MBR, |
| 674 | * it will get handled by msdos_partition(). |
| 675 | * If it's a Protective MBR, we'll handle it here. |
| 676 | * |
| 677 | * We do not create a Linux partition for GPT, but |
| 678 | * only for the actual data partitions. |
| 679 | * Returns: |
| 680 | * -1 if unable to read the partition table |
| 681 | * 0 if this isn't our partition table |
| 682 | * 1 if successful |
| 683 | * |
| 684 | */ |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 685 | int efi_partition(struct parsed_partitions *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | { |
| 687 | gpt_header *gpt = NULL; |
| 688 | gpt_entry *ptes = NULL; |
| 689 | u32 i; |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 690 | unsigned ssz = bdev_logical_block_size(state->bdev) / 512; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 692 | if (!find_valid_gpt(state, &gpt, &ptes) || !gpt || !ptes) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | kfree(gpt); |
| 694 | kfree(ptes); |
| 695 | return 0; |
| 696 | } |
| 697 | |
Thomas Gleixner | d991696 | 2008-07-25 01:48:26 -0700 | [diff] [blame] | 698 | pr_debug("GUID Partition Table is valid! Yea!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
| 700 | for (i = 0; i < le32_to_cpu(gpt->num_partition_entries) && i < state->limit-1; i++) { |
Will Drewry | eec7ecf | 2010-08-31 15:47:06 -0500 | [diff] [blame] | 701 | struct partition_meta_info *info; |
| 702 | unsigned label_count = 0; |
| 703 | unsigned label_max; |
Karel Zak | 7d13af3 | 2009-11-23 09:29:13 +0100 | [diff] [blame] | 704 | u64 start = le64_to_cpu(ptes[i].starting_lba); |
| 705 | u64 size = le64_to_cpu(ptes[i].ending_lba) - |
| 706 | le64_to_cpu(ptes[i].starting_lba) + 1ULL; |
| 707 | |
Tejun Heo | 1493bf2 | 2010-05-15 20:09:30 +0200 | [diff] [blame] | 708 | if (!is_pte_valid(&ptes[i], last_lba(state->bdev))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | continue; |
| 710 | |
Karel Zak | 7d13af3 | 2009-11-23 09:29:13 +0100 | [diff] [blame] | 711 | put_partition(state, i+1, start * ssz, size * ssz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | |
| 713 | /* If this is a RAID volume, tell md */ |
Davidlohr Bueso | 70f637e | 2013-09-11 14:25:03 -0700 | [diff] [blame] | 714 | if (!efi_guidcmp(ptes[i].partition_type_guid, PARTITION_LINUX_RAID_GUID)) |
Cesar Eduardo Barros | cc91062 | 2010-04-17 19:28:09 -0300 | [diff] [blame] | 715 | state->parts[i + 1].flags = ADDPART_FLAG_RAID; |
Will Drewry | eec7ecf | 2010-08-31 15:47:06 -0500 | [diff] [blame] | 716 | |
| 717 | info = &state->parts[i + 1].info; |
Borislav Petkov | 26e0227 | 2014-12-18 16:02:17 +0100 | [diff] [blame] | 718 | efi_guid_to_str(&ptes[i].unique_partition_guid, info->uuid); |
Will Drewry | eec7ecf | 2010-08-31 15:47:06 -0500 | [diff] [blame] | 719 | |
| 720 | /* Naively convert UTF16-LE to 7 bits. */ |
Antti P Miettinen | 49204c1 | 2013-11-21 14:32:05 -0800 | [diff] [blame] | 721 | label_max = min(ARRAY_SIZE(info->volname) - 1, |
| 722 | ARRAY_SIZE(ptes[i].partition_name)); |
Will Drewry | eec7ecf | 2010-08-31 15:47:06 -0500 | [diff] [blame] | 723 | info->volname[label_max] = 0; |
| 724 | while (label_count < label_max) { |
| 725 | u8 c = ptes[i].partition_name[label_count] & 0xff; |
| 726 | if (c && !isprint(c)) |
| 727 | c = '!'; |
| 728 | info->volname[label_count] = c; |
| 729 | label_count++; |
| 730 | } |
| 731 | state->parts[i + 1].has_info = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | } |
| 733 | kfree(ptes); |
| 734 | kfree(gpt); |
Alexey Dobriyan | 9c867fb | 2010-08-10 18:03:14 -0700 | [diff] [blame] | 735 | strlcat(state->pp_buf, "\n", PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | return 1; |
| 737 | } |