efi.c 20 KB

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