efi.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639
  1. /************************************************************
  2. * EFI GUID Partition Table handling
  3. *
  4. * http://www.uefi.org/specs/
  5. * http://www.intel.com/technology/efi/
  6. *
  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:
  28. * Mon Nov 09 2004 Matt Domsch <Matt_Domsch@dell.com>
  29. * - test for valid PMBR and valid PGPT before ever reading
  30. * AGPT, allow override with 'gpt' kernel command line option.
  31. * - check for first/last_usable_lba outside of size of disk
  32. *
  33. * Tue Mar 26 2002 Matt Domsch <Matt_Domsch@dell.com>
  34. * - Ported to 2.5.7-pre1 and 2.5.7-dj2
  35. * - Applied patch to avoid fault in alternate header handling
  36. * - cleaned up find_valid_gpt
  37. * - On-disk structure and copy in memory is *always* LE now -
  38. * swab fields as needed
  39. * - remove print_gpt_header()
  40. * - only use first max_p partition entries, to keep the kernel minor number
  41. * and partition numbers tied.
  42. *
  43. * Mon Feb 04 2002 Matt Domsch <Matt_Domsch@dell.com>
  44. * - Removed __PRIPTR_PREFIX - not being used
  45. *
  46. * Mon Jan 14 2002 Matt Domsch <Matt_Domsch@dell.com>
  47. * - Ported to 2.5.2-pre11 + library crc32 patch Linus applied
  48. *
  49. * Thu Dec 6 2001 Matt Domsch <Matt_Domsch@dell.com>
  50. * - Added compare_gpts().
  51. * - moved le_efi_guid_to_cpus() back into this file. GPT is the only
  52. * thing that keeps EFI GUIDs on disk.
  53. * - Changed gpt structure names and members to be simpler and more Linux-like.
  54. *
  55. * Wed Oct 17 2001 Matt Domsch <Matt_Domsch@dell.com>
  56. * - Removed CONFIG_DEVFS_VOLUMES_UUID code entirely per Martin Wilck
  57. *
  58. * Wed Oct 10 2001 Matt Domsch <Matt_Domsch@dell.com>
  59. * - Changed function comments to DocBook style per Andreas Dilger suggestion.
  60. *
  61. * Mon Oct 08 2001 Matt Domsch <Matt_Domsch@dell.com>
  62. * - Change read_lba() to use the page cache per Al Viro's work.
  63. * - print u64s properly on all architectures
  64. * - fixed debug_printk(), now Dprintk()
  65. *
  66. * Mon Oct 01 2001 Matt Domsch <Matt_Domsch@dell.com>
  67. * - Style cleanups
  68. * - made most functions static
  69. * - Endianness addition
  70. * - remove test for second alternate header, as it's not per spec,
  71. * and is unnecessary. There's now a method to read/write the last
  72. * sector of an odd-sized disk from user space. No tools have ever
  73. * been released which used this code, so it's effectively dead.
  74. * - Per Asit Mallick of Intel, added a test for a valid PMBR.
  75. * - Added kernel command line option 'gpt' to override valid PMBR test.
  76. *
  77. * Wed Jun 6 2001 Martin Wilck <Martin.Wilck@Fujitsu-Siemens.com>
  78. * - added devfs volume UUID support (/dev/volumes/uuids) for
  79. * mounting file systems by the partition GUID.
  80. *
  81. * Tue Dec 5 2000 Matt Domsch <Matt_Domsch@dell.com>
  82. * - Moved crc32() to linux/lib, added efi_crc32().
  83. *
  84. * Thu Nov 30 2000 Matt Domsch <Matt_Domsch@dell.com>
  85. * - Replaced Intel's CRC32 function with an equivalent
  86. * non-license-restricted version.
  87. *
  88. * Wed Oct 25 2000 Matt Domsch <Matt_Domsch@dell.com>
  89. * - Fixed the last_lba() call to return the proper last block
  90. *
  91. * Thu Oct 12 2000 Matt Domsch <Matt_Domsch@dell.com>
  92. * - Thanks to Andries Brouwer for his debugging assistance.
  93. * - Code works, detects all the partitions.
  94. *
  95. ************************************************************/
  96. #include <linux/crc32.h>
  97. #include <linux/math64.h>
  98. #include "check.h"
  99. #include "efi.h"
  100. /* This allows a kernel command line option 'gpt' to override
  101. * the test for invalid PMBR. Not __initdata because reloading
  102. * the partition tables happens after init too.
  103. */
  104. static int force_gpt;
  105. static int __init
  106. force_gpt_fn(char *str)
  107. {
  108. force_gpt = 1;
  109. return 1;
  110. }
  111. __setup("gpt", force_gpt_fn);
  112. /**
  113. * efi_crc32() - EFI version of crc32 function
  114. * @buf: buffer to calculate crc32 of
  115. * @len - length of buf
  116. *
  117. * Description: Returns EFI-style CRC32 value for @buf
  118. *
  119. * This function uses the little endian Ethernet polynomial
  120. * but seeds the function with ~0, and xor's with ~0 at the end.
  121. * Note, the EFI Specification, v1.02, has a reference to
  122. * Dr. Dobbs Journal, May 1994 (actually it's in May 1992).
  123. */
  124. static inline u32
  125. efi_crc32(const void *buf, unsigned long len)
  126. {
  127. return (crc32(~0L, buf, len) ^ ~0L);
  128. }
  129. /**
  130. * last_lba(): return number of last logical block of device
  131. * @bdev: block device
  132. *
  133. * Description: Returns last LBA value on success, 0 on error.
  134. * This is stored (by sd and ide-geometry) in
  135. * the part[0] entry for this disk, and is the number of
  136. * physical sectors available on the disk.
  137. */
  138. static u64
  139. last_lba(struct block_device *bdev)
  140. {
  141. if (!bdev || !bdev->bd_inode)
  142. return 0;
  143. return div_u64(bdev->bd_inode->i_size,
  144. bdev_logical_block_size(bdev)) - 1ULL;
  145. }
  146. static inline int
  147. pmbr_part_valid(struct partition *part)
  148. {
  149. if (part->sys_ind == EFI_PMBR_OSTYPE_EFI_GPT &&
  150. le32_to_cpu(part->start_sect) == 1UL)
  151. return 1;
  152. return 0;
  153. }
  154. /**
  155. * is_pmbr_valid(): test Protective MBR for validity
  156. * @mbr: pointer to a legacy mbr structure
  157. *
  158. * Description: Returns 1 if PMBR is valid, 0 otherwise.
  159. * Validity depends on two things:
  160. * 1) MSDOS signature is in the last two bytes of the MBR
  161. * 2) One partition of type 0xEE is found
  162. */
  163. static int
  164. is_pmbr_valid(legacy_mbr *mbr)
  165. {
  166. int i;
  167. if (!mbr || le16_to_cpu(mbr->signature) != MSDOS_MBR_SIGNATURE)
  168. return 0;
  169. for (i = 0; i < 4; i++)
  170. if (pmbr_part_valid(&mbr->partition_record[i]))
  171. return 1;
  172. return 0;
  173. }
  174. /**
  175. * read_lba(): Read bytes from disk, starting at given LBA
  176. * @bdev
  177. * @lba
  178. * @buffer
  179. * @size_t
  180. *
  181. * Description: Reads @count bytes from @bdev into @buffer.
  182. * Returns number of bytes read on success, 0 on error.
  183. */
  184. static size_t
  185. read_lba(struct block_device *bdev, u64 lba, u8 * buffer, size_t count)
  186. {
  187. size_t totalreadcount = 0;
  188. sector_t n = lba * (bdev_logical_block_size(bdev) / 512);
  189. if (!bdev || !buffer || lba > last_lba(bdev))
  190. return 0;
  191. while (count) {
  192. int copied = 512;
  193. Sector sect;
  194. unsigned char *data = read_dev_sector(bdev, n++, &sect);
  195. if (!data)
  196. break;
  197. if (copied > count)
  198. copied = count;
  199. memcpy(buffer, data, copied);
  200. put_dev_sector(sect);
  201. buffer += copied;
  202. totalreadcount +=copied;
  203. count -= copied;
  204. }
  205. return totalreadcount;
  206. }
  207. /**
  208. * alloc_read_gpt_entries(): reads partition entries from disk
  209. * @bdev
  210. * @gpt - GPT header
  211. *
  212. * Description: Returns ptes on success, NULL on error.
  213. * Allocates space for PTEs based on information found in @gpt.
  214. * Notes: remember to free pte when you're done!
  215. */
  216. static gpt_entry *
  217. alloc_read_gpt_entries(struct block_device *bdev, gpt_header *gpt)
  218. {
  219. size_t count;
  220. gpt_entry *pte;
  221. if (!bdev || !gpt)
  222. return NULL;
  223. count = le32_to_cpu(gpt->num_partition_entries) *
  224. le32_to_cpu(gpt->sizeof_partition_entry);
  225. if (!count)
  226. return NULL;
  227. pte = kzalloc(count, GFP_KERNEL);
  228. if (!pte)
  229. return NULL;
  230. if (read_lba(bdev, le64_to_cpu(gpt->partition_entry_lba),
  231. (u8 *) pte,
  232. count) < count) {
  233. kfree(pte);
  234. pte=NULL;
  235. return NULL;
  236. }
  237. return pte;
  238. }
  239. /**
  240. * alloc_read_gpt_header(): Allocates GPT header, reads into it from disk
  241. * @bdev
  242. * @lba is the Logical Block Address of the partition table
  243. *
  244. * Description: returns GPT header on success, NULL on error. Allocates
  245. * and fills a GPT header starting at @ from @bdev.
  246. * Note: remember to free gpt when finished with it.
  247. */
  248. static gpt_header *
  249. alloc_read_gpt_header(struct block_device *bdev, u64 lba)
  250. {
  251. gpt_header *gpt;
  252. unsigned ssz = bdev_logical_block_size(bdev);
  253. if (!bdev)
  254. return NULL;
  255. gpt = kzalloc(ssz, GFP_KERNEL);
  256. if (!gpt)
  257. return NULL;
  258. if (read_lba(bdev, lba, (u8 *) gpt, ssz) < ssz) {
  259. kfree(gpt);
  260. gpt=NULL;
  261. return NULL;
  262. }
  263. return gpt;
  264. }
  265. /**
  266. * is_gpt_valid() - tests one GPT header and PTEs for validity
  267. * @bdev
  268. * @lba is the logical block address of the GPT header to test
  269. * @gpt is a GPT header ptr, filled on return.
  270. * @ptes is a PTEs ptr, filled on return.
  271. *
  272. * Description: returns 1 if valid, 0 on error.
  273. * If valid, returns pointers to newly allocated GPT header and PTEs.
  274. */
  275. static int
  276. is_gpt_valid(struct block_device *bdev, u64 lba,
  277. gpt_header **gpt, gpt_entry **ptes)
  278. {
  279. u32 crc, origcrc;
  280. u64 lastlba;
  281. if (!bdev || !gpt || !ptes)
  282. return 0;
  283. if (!(*gpt = alloc_read_gpt_header(bdev, lba)))
  284. return 0;
  285. /* Check the GUID Partition Table signature */
  286. if (le64_to_cpu((*gpt)->signature) != GPT_HEADER_SIGNATURE) {
  287. pr_debug("GUID Partition Table Header signature is wrong:"
  288. "%lld != %lld\n",
  289. (unsigned long long)le64_to_cpu((*gpt)->signature),
  290. (unsigned long long)GPT_HEADER_SIGNATURE);
  291. goto fail;
  292. }
  293. /* Check the GUID Partition Table CRC */
  294. origcrc = le32_to_cpu((*gpt)->header_crc32);
  295. (*gpt)->header_crc32 = 0;
  296. crc = efi_crc32((const unsigned char *) (*gpt), le32_to_cpu((*gpt)->header_size));
  297. if (crc != origcrc) {
  298. pr_debug("GUID Partition Table Header CRC is wrong: %x != %x\n",
  299. crc, origcrc);
  300. goto fail;
  301. }
  302. (*gpt)->header_crc32 = cpu_to_le32(origcrc);
  303. /* Check that the my_lba entry points to the LBA that contains
  304. * the GUID Partition Table */
  305. if (le64_to_cpu((*gpt)->my_lba) != lba) {
  306. pr_debug("GPT my_lba incorrect: %lld != %lld\n",
  307. (unsigned long long)le64_to_cpu((*gpt)->my_lba),
  308. (unsigned long long)lba);
  309. goto fail;
  310. }
  311. /* Check the first_usable_lba and last_usable_lba are
  312. * within the disk.
  313. */
  314. lastlba = last_lba(bdev);
  315. if (le64_to_cpu((*gpt)->first_usable_lba) > lastlba) {
  316. pr_debug("GPT: first_usable_lba incorrect: %lld > %lld\n",
  317. (unsigned long long)le64_to_cpu((*gpt)->first_usable_lba),
  318. (unsigned long long)lastlba);
  319. goto fail;
  320. }
  321. if (le64_to_cpu((*gpt)->last_usable_lba) > lastlba) {
  322. pr_debug("GPT: last_usable_lba incorrect: %lld > %lld\n",
  323. (unsigned long long)le64_to_cpu((*gpt)->last_usable_lba),
  324. (unsigned long long)lastlba);
  325. goto fail;
  326. }
  327. if (!(*ptes = alloc_read_gpt_entries(bdev, *gpt)))
  328. goto fail;
  329. /* Check the GUID Partition Entry Array CRC */
  330. crc = efi_crc32((const unsigned char *) (*ptes),
  331. le32_to_cpu((*gpt)->num_partition_entries) *
  332. le32_to_cpu((*gpt)->sizeof_partition_entry));
  333. if (crc != le32_to_cpu((*gpt)->partition_entry_array_crc32)) {
  334. pr_debug("GUID Partitition Entry Array CRC check failed.\n");
  335. goto fail_ptes;
  336. }
  337. /* We're done, all's well */
  338. return 1;
  339. fail_ptes:
  340. kfree(*ptes);
  341. *ptes = NULL;
  342. fail:
  343. kfree(*gpt);
  344. *gpt = NULL;
  345. return 0;
  346. }
  347. /**
  348. * is_pte_valid() - tests one PTE for validity
  349. * @pte is the pte to check
  350. * @lastlba is last lba of the disk
  351. *
  352. * Description: returns 1 if valid, 0 on error.
  353. */
  354. static inline int
  355. is_pte_valid(const gpt_entry *pte, const u64 lastlba)
  356. {
  357. if ((!efi_guidcmp(pte->partition_type_guid, NULL_GUID)) ||
  358. le64_to_cpu(pte->starting_lba) > lastlba ||
  359. le64_to_cpu(pte->ending_lba) > lastlba)
  360. return 0;
  361. return 1;
  362. }
  363. /**
  364. * compare_gpts() - Search disk for valid GPT headers and PTEs
  365. * @pgpt is the primary GPT header
  366. * @agpt is the alternate GPT header
  367. * @lastlba is the last LBA number
  368. * Description: Returns nothing. Sanity checks pgpt and agpt fields
  369. * and prints warnings on discrepancies.
  370. *
  371. */
  372. static void
  373. compare_gpts(gpt_header *pgpt, gpt_header *agpt, u64 lastlba)
  374. {
  375. int error_found = 0;
  376. if (!pgpt || !agpt)
  377. return;
  378. if (le64_to_cpu(pgpt->my_lba) != le64_to_cpu(agpt->alternate_lba)) {
  379. printk(KERN_WARNING
  380. "GPT:Primary header LBA != Alt. header alternate_lba\n");
  381. printk(KERN_WARNING "GPT:%lld != %lld\n",
  382. (unsigned long long)le64_to_cpu(pgpt->my_lba),
  383. (unsigned long long)le64_to_cpu(agpt->alternate_lba));
  384. error_found++;
  385. }
  386. if (le64_to_cpu(pgpt->alternate_lba) != le64_to_cpu(agpt->my_lba)) {
  387. printk(KERN_WARNING
  388. "GPT:Primary header alternate_lba != Alt. header my_lba\n");
  389. printk(KERN_WARNING "GPT:%lld != %lld\n",
  390. (unsigned long long)le64_to_cpu(pgpt->alternate_lba),
  391. (unsigned long long)le64_to_cpu(agpt->my_lba));
  392. error_found++;
  393. }
  394. if (le64_to_cpu(pgpt->first_usable_lba) !=
  395. le64_to_cpu(agpt->first_usable_lba)) {
  396. printk(KERN_WARNING "GPT:first_usable_lbas don't match.\n");
  397. printk(KERN_WARNING "GPT:%lld != %lld\n",
  398. (unsigned long long)le64_to_cpu(pgpt->first_usable_lba),
  399. (unsigned long long)le64_to_cpu(agpt->first_usable_lba));
  400. error_found++;
  401. }
  402. if (le64_to_cpu(pgpt->last_usable_lba) !=
  403. le64_to_cpu(agpt->last_usable_lba)) {
  404. printk(KERN_WARNING "GPT:last_usable_lbas don't match.\n");
  405. printk(KERN_WARNING "GPT:%lld != %lld\n",
  406. (unsigned long long)le64_to_cpu(pgpt->last_usable_lba),
  407. (unsigned long long)le64_to_cpu(agpt->last_usable_lba));
  408. error_found++;
  409. }
  410. if (efi_guidcmp(pgpt->disk_guid, agpt->disk_guid)) {
  411. printk(KERN_WARNING "GPT:disk_guids don't match.\n");
  412. error_found++;
  413. }
  414. if (le32_to_cpu(pgpt->num_partition_entries) !=
  415. le32_to_cpu(agpt->num_partition_entries)) {
  416. printk(KERN_WARNING "GPT:num_partition_entries don't match: "
  417. "0x%x != 0x%x\n",
  418. le32_to_cpu(pgpt->num_partition_entries),
  419. le32_to_cpu(agpt->num_partition_entries));
  420. error_found++;
  421. }
  422. if (le32_to_cpu(pgpt->sizeof_partition_entry) !=
  423. le32_to_cpu(agpt->sizeof_partition_entry)) {
  424. printk(KERN_WARNING
  425. "GPT:sizeof_partition_entry values don't match: "
  426. "0x%x != 0x%x\n",
  427. le32_to_cpu(pgpt->sizeof_partition_entry),
  428. le32_to_cpu(agpt->sizeof_partition_entry));
  429. error_found++;
  430. }
  431. if (le32_to_cpu(pgpt->partition_entry_array_crc32) !=
  432. le32_to_cpu(agpt->partition_entry_array_crc32)) {
  433. printk(KERN_WARNING
  434. "GPT:partition_entry_array_crc32 values don't match: "
  435. "0x%x != 0x%x\n",
  436. le32_to_cpu(pgpt->partition_entry_array_crc32),
  437. le32_to_cpu(agpt->partition_entry_array_crc32));
  438. error_found++;
  439. }
  440. if (le64_to_cpu(pgpt->alternate_lba) != lastlba) {
  441. printk(KERN_WARNING
  442. "GPT:Primary header thinks Alt. header is not at the end of the disk.\n");
  443. printk(KERN_WARNING "GPT:%lld != %lld\n",
  444. (unsigned long long)le64_to_cpu(pgpt->alternate_lba),
  445. (unsigned long long)lastlba);
  446. error_found++;
  447. }
  448. if (le64_to_cpu(agpt->my_lba) != lastlba) {
  449. printk(KERN_WARNING
  450. "GPT:Alternate GPT header not at the end of the disk.\n");
  451. printk(KERN_WARNING "GPT:%lld != %lld\n",
  452. (unsigned long long)le64_to_cpu(agpt->my_lba),
  453. (unsigned long long)lastlba);
  454. error_found++;
  455. }
  456. if (error_found)
  457. printk(KERN_WARNING
  458. "GPT: Use GNU Parted to correct GPT errors.\n");
  459. return;
  460. }
  461. /**
  462. * find_valid_gpt() - Search disk for valid GPT headers and PTEs
  463. * @bdev
  464. * @gpt is a GPT header ptr, filled on return.
  465. * @ptes is a PTEs ptr, filled on return.
  466. * Description: Returns 1 if valid, 0 on error.
  467. * If valid, returns pointers to newly allocated GPT header and PTEs.
  468. * Validity depends on PMBR being valid (or being overridden by the
  469. * 'gpt' kernel command line option) and finding either the Primary
  470. * GPT header and PTEs valid, or the Alternate GPT header and PTEs
  471. * valid. If the Primary GPT header is not valid, the Alternate GPT header
  472. * is not checked unless the 'gpt' kernel command line option is passed.
  473. * This protects against devices which misreport their size, and forces
  474. * the user to decide to use the Alternate GPT.
  475. */
  476. static int
  477. find_valid_gpt(struct block_device *bdev, gpt_header **gpt, gpt_entry **ptes)
  478. {
  479. int good_pgpt = 0, good_agpt = 0, good_pmbr = 0;
  480. gpt_header *pgpt = NULL, *agpt = NULL;
  481. gpt_entry *pptes = NULL, *aptes = NULL;
  482. legacy_mbr *legacymbr;
  483. u64 lastlba;
  484. if (!bdev || !gpt || !ptes)
  485. return 0;
  486. lastlba = last_lba(bdev);
  487. if (!force_gpt) {
  488. /* This will be added to the EFI Spec. per Intel after v1.02. */
  489. legacymbr = kzalloc(sizeof (*legacymbr), GFP_KERNEL);
  490. if (legacymbr) {
  491. read_lba(bdev, 0, (u8 *) legacymbr,
  492. sizeof (*legacymbr));
  493. good_pmbr = is_pmbr_valid(legacymbr);
  494. kfree(legacymbr);
  495. }
  496. if (!good_pmbr)
  497. goto fail;
  498. }
  499. good_pgpt = is_gpt_valid(bdev, GPT_PRIMARY_PARTITION_TABLE_LBA,
  500. &pgpt, &pptes);
  501. if (good_pgpt)
  502. good_agpt = is_gpt_valid(bdev,
  503. le64_to_cpu(pgpt->alternate_lba),
  504. &agpt, &aptes);
  505. if (!good_agpt && force_gpt)
  506. good_agpt = is_gpt_valid(bdev, lastlba,
  507. &agpt, &aptes);
  508. /* The obviously unsuccessful case */
  509. if (!good_pgpt && !good_agpt)
  510. goto fail;
  511. compare_gpts(pgpt, agpt, lastlba);
  512. /* The good cases */
  513. if (good_pgpt) {
  514. *gpt = pgpt;
  515. *ptes = pptes;
  516. kfree(agpt);
  517. kfree(aptes);
  518. if (!good_agpt) {
  519. printk(KERN_WARNING
  520. "Alternate GPT is invalid, "
  521. "using primary GPT.\n");
  522. }
  523. return 1;
  524. }
  525. else if (good_agpt) {
  526. *gpt = agpt;
  527. *ptes = aptes;
  528. kfree(pgpt);
  529. kfree(pptes);
  530. printk(KERN_WARNING
  531. "Primary GPT is invalid, using alternate GPT.\n");
  532. return 1;
  533. }
  534. fail:
  535. kfree(pgpt);
  536. kfree(agpt);
  537. kfree(pptes);
  538. kfree(aptes);
  539. *gpt = NULL;
  540. *ptes = NULL;
  541. return 0;
  542. }
  543. /**
  544. * efi_partition(struct parsed_partitions *state, struct block_device *bdev)
  545. * @state
  546. * @bdev
  547. *
  548. * Description: called from check.c, if the disk contains GPT
  549. * partitions, sets up partition entries in the kernel.
  550. *
  551. * If the first block on the disk is a legacy MBR,
  552. * it will get handled by msdos_partition().
  553. * If it's a Protective MBR, we'll handle it here.
  554. *
  555. * We do not create a Linux partition for GPT, but
  556. * only for the actual data partitions.
  557. * Returns:
  558. * -1 if unable to read the partition table
  559. * 0 if this isn't our partition table
  560. * 1 if successful
  561. *
  562. */
  563. int
  564. efi_partition(struct parsed_partitions *state, struct block_device *bdev)
  565. {
  566. gpt_header *gpt = NULL;
  567. gpt_entry *ptes = NULL;
  568. u32 i;
  569. unsigned ssz = bdev_logical_block_size(bdev) / 512;
  570. if (!find_valid_gpt(bdev, &gpt, &ptes) || !gpt || !ptes) {
  571. kfree(gpt);
  572. kfree(ptes);
  573. return 0;
  574. }
  575. pr_debug("GUID Partition Table is valid! Yea!\n");
  576. for (i = 0; i < le32_to_cpu(gpt->num_partition_entries) && i < state->limit-1; i++) {
  577. u64 start = le64_to_cpu(ptes[i].starting_lba);
  578. u64 size = le64_to_cpu(ptes[i].ending_lba) -
  579. le64_to_cpu(ptes[i].starting_lba) + 1ULL;
  580. if (!is_pte_valid(&ptes[i], last_lba(bdev)))
  581. continue;
  582. put_partition(state, i+1, start * ssz, size * ssz);
  583. /* If this is a RAID volume, tell md */
  584. if (!efi_guidcmp(ptes[i].partition_type_guid,
  585. PARTITION_LINUX_RAID_GUID))
  586. state->parts[i+1].flags = 1;
  587. }
  588. kfree(ptes);
  589. kfree(gpt);
  590. printk("\n");
  591. return 1;
  592. }