PageRenderTime 1123ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/fs/partitions/efi.c

https://github.com/Mengqi/linux-2.6
C | 675 lines | 387 code | 52 blank | 236 comment | 78 complexity | 629850eb88877598fcd98d407d1c7015 MD5 | raw file
  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/ctype.h>
  98. #include <linux/math64.h>
  99. #include <linux/slab.h>
  100. #include "check.h"
  101. #include "efi.h"
  102. /* This allows a kernel command line option 'gpt' to override
  103. * the test for invalid PMBR. Not __initdata because reloading
  104. * the partition tables happens after init too.
  105. */
  106. static int force_gpt;
  107. static int __init
  108. force_gpt_fn(char *str)
  109. {
  110. force_gpt = 1;
  111. return 1;
  112. }
  113. __setup("gpt", force_gpt_fn);
  114. /**
  115. * efi_crc32() - EFI version of crc32 function
  116. * @buf: buffer to calculate crc32 of
  117. * @len - length of buf
  118. *
  119. * Description: Returns EFI-style CRC32 value for @buf
  120. *
  121. * This function uses the little endian Ethernet polynomial
  122. * but seeds the function with ~0, and xor's with ~0 at the end.
  123. * Note, the EFI Specification, v1.02, has a reference to
  124. * Dr. Dobbs Journal, May 1994 (actually it's in May 1992).
  125. */
  126. static inline u32
  127. efi_crc32(const void *buf, unsigned long len)
  128. {
  129. return (crc32(~0L, buf, len) ^ ~0L);
  130. }
  131. /**
  132. * last_lba(): return number of last logical block of device
  133. * @bdev: block device
  134. *
  135. * Description: Returns last LBA value on success, 0 on error.
  136. * This is stored (by sd and ide-geometry) in
  137. * the part[0] entry for this disk, and is the number of
  138. * physical sectors available on the disk.
  139. */
  140. static u64 last_lba(struct block_device *bdev)
  141. {
  142. if (!bdev || !bdev->bd_inode)
  143. return 0;
  144. return div_u64(bdev->bd_inode->i_size,
  145. bdev_logical_block_size(bdev)) - 1ULL;
  146. }
  147. static inline int
  148. pmbr_part_valid(struct partition *part)
  149. {
  150. if (part->sys_ind == EFI_PMBR_OSTYPE_EFI_GPT &&
  151. le32_to_cpu(part->start_sect) == 1UL)
  152. return 1;
  153. return 0;
  154. }
  155. /**
  156. * is_pmbr_valid(): test Protective MBR for validity
  157. * @mbr: pointer to a legacy mbr structure
  158. *
  159. * Description: Returns 1 if PMBR is valid, 0 otherwise.
  160. * Validity depends on two things:
  161. * 1) MSDOS signature is in the last two bytes of the MBR
  162. * 2) One partition of type 0xEE is found
  163. */
  164. static int
  165. is_pmbr_valid(legacy_mbr *mbr)
  166. {
  167. int i;
  168. if (!mbr || le16_to_cpu(mbr->signature) != MSDOS_MBR_SIGNATURE)
  169. return 0;
  170. for (i = 0; i < 4; i++)
  171. if (pmbr_part_valid(&mbr->partition_record[i]))
  172. return 1;
  173. return 0;
  174. }
  175. /**
  176. * read_lba(): Read bytes from disk, starting at given LBA
  177. * @state
  178. * @lba
  179. * @buffer
  180. * @size_t
  181. *
  182. * Description: Reads @count bytes from @state->bdev into @buffer.
  183. * Returns number of bytes read on success, 0 on error.
  184. */
  185. static size_t read_lba(struct parsed_partitions *state,
  186. u64 lba, u8 *buffer, size_t count)
  187. {
  188. size_t totalreadcount = 0;
  189. struct block_device *bdev = state->bdev;
  190. sector_t n = lba * (bdev_logical_block_size(bdev) / 512);
  191. if (!buffer || lba > last_lba(bdev))
  192. return 0;
  193. while (count) {
  194. int copied = 512;
  195. Sector sect;
  196. unsigned char *data = read_part_sector(state, n++, &sect);
  197. if (!data)
  198. break;
  199. if (copied > count)
  200. copied = count;
  201. memcpy(buffer, data, copied);
  202. put_dev_sector(sect);
  203. buffer += copied;
  204. totalreadcount +=copied;
  205. count -= copied;
  206. }
  207. return totalreadcount;
  208. }
  209. /**
  210. * alloc_read_gpt_entries(): reads partition entries from disk
  211. * @state
  212. * @gpt - GPT header
  213. *
  214. * Description: Returns ptes on success, NULL on error.
  215. * Allocates space for PTEs based on information found in @gpt.
  216. * Notes: remember to free pte when you're done!
  217. */
  218. static gpt_entry *alloc_read_gpt_entries(struct parsed_partitions *state,
  219. gpt_header *gpt)
  220. {
  221. size_t count;
  222. gpt_entry *pte;
  223. if (!gpt)
  224. return NULL;
  225. count = le32_to_cpu(gpt->num_partition_entries) *
  226. le32_to_cpu(gpt->sizeof_partition_entry);
  227. if (!count)
  228. return NULL;
  229. pte = kzalloc(count, GFP_KERNEL);
  230. if (!pte)
  231. return NULL;
  232. if (read_lba(state, le64_to_cpu(gpt->partition_entry_lba),
  233. (u8 *) pte,
  234. count) < count) {
  235. kfree(pte);
  236. pte=NULL;
  237. return NULL;
  238. }
  239. return pte;
  240. }
  241. /**
  242. * alloc_read_gpt_header(): Allocates GPT header, reads into it from disk
  243. * @state
  244. * @lba is the Logical Block Address of the partition table
  245. *
  246. * Description: returns GPT header on success, NULL on error. Allocates
  247. * and fills a GPT header starting at @ from @state->bdev.
  248. * Note: remember to free gpt when finished with it.
  249. */
  250. static gpt_header *alloc_read_gpt_header(struct parsed_partitions *state,
  251. u64 lba)
  252. {
  253. gpt_header *gpt;
  254. unsigned ssz = bdev_logical_block_size(state->bdev);
  255. gpt = kzalloc(ssz, GFP_KERNEL);
  256. if (!gpt)
  257. return NULL;
  258. if (read_lba(state, 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. * @state
  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 is_gpt_valid(struct parsed_partitions *state, u64 lba,
  276. gpt_header **gpt, gpt_entry **ptes)
  277. {
  278. u32 crc, origcrc;
  279. u64 lastlba;
  280. if (!ptes)
  281. return 0;
  282. if (!(*gpt = alloc_read_gpt_header(state, lba)))
  283. return 0;
  284. /* Check the GUID Partition Table signature */
  285. if (le64_to_cpu((*gpt)->signature) != GPT_HEADER_SIGNATURE) {
  286. pr_debug("GUID Partition Table Header signature is wrong:"
  287. "%lld != %lld\n",
  288. (unsigned long long)le64_to_cpu((*gpt)->signature),
  289. (unsigned long long)GPT_HEADER_SIGNATURE);
  290. goto fail;
  291. }
  292. /* Check the GUID Partition Table header size */
  293. if (le32_to_cpu((*gpt)->header_size) >
  294. bdev_logical_block_size(state->bdev)) {
  295. pr_debug("GUID Partition Table Header size is wrong: %u > %u\n",
  296. le32_to_cpu((*gpt)->header_size),
  297. bdev_logical_block_size(state->bdev));
  298. goto fail;
  299. }
  300. /* Check the GUID Partition Table CRC */
  301. origcrc = le32_to_cpu((*gpt)->header_crc32);
  302. (*gpt)->header_crc32 = 0;
  303. crc = efi_crc32((const unsigned char *) (*gpt), le32_to_cpu((*gpt)->header_size));
  304. if (crc != origcrc) {
  305. pr_debug("GUID Partition Table Header CRC is wrong: %x != %x\n",
  306. crc, origcrc);
  307. goto fail;
  308. }
  309. (*gpt)->header_crc32 = cpu_to_le32(origcrc);
  310. /* Check that the my_lba entry points to the LBA that contains
  311. * the GUID Partition Table */
  312. if (le64_to_cpu((*gpt)->my_lba) != lba) {
  313. pr_debug("GPT my_lba incorrect: %lld != %lld\n",
  314. (unsigned long long)le64_to_cpu((*gpt)->my_lba),
  315. (unsigned long long)lba);
  316. goto fail;
  317. }
  318. /* Check the first_usable_lba and last_usable_lba are
  319. * within the disk.
  320. */
  321. lastlba = last_lba(state->bdev);
  322. if (le64_to_cpu((*gpt)->first_usable_lba) > lastlba) {
  323. pr_debug("GPT: first_usable_lba incorrect: %lld > %lld\n",
  324. (unsigned long long)le64_to_cpu((*gpt)->first_usable_lba),
  325. (unsigned long long)lastlba);
  326. goto fail;
  327. }
  328. if (le64_to_cpu((*gpt)->last_usable_lba) > lastlba) {
  329. pr_debug("GPT: last_usable_lba incorrect: %lld > %lld\n",
  330. (unsigned long long)le64_to_cpu((*gpt)->last_usable_lba),
  331. (unsigned long long)lastlba);
  332. goto fail;
  333. }
  334. /* Check that sizeof_partition_entry has the correct value */
  335. if (le32_to_cpu((*gpt)->sizeof_partition_entry) != sizeof(gpt_entry)) {
  336. pr_debug("GUID Partitition Entry Size check failed.\n");
  337. goto fail;
  338. }
  339. if (!(*ptes = alloc_read_gpt_entries(state, *gpt)))
  340. goto fail;
  341. /* Check the GUID Partition Entry Array CRC */
  342. crc = efi_crc32((const unsigned char *) (*ptes),
  343. le32_to_cpu((*gpt)->num_partition_entries) *
  344. le32_to_cpu((*gpt)->sizeof_partition_entry));
  345. if (crc != le32_to_cpu((*gpt)->partition_entry_array_crc32)) {
  346. pr_debug("GUID Partitition Entry Array CRC check failed.\n");
  347. goto fail_ptes;
  348. }
  349. /* We're done, all's well */
  350. return 1;
  351. fail_ptes:
  352. kfree(*ptes);
  353. *ptes = NULL;
  354. fail:
  355. kfree(*gpt);
  356. *gpt = NULL;
  357. return 0;
  358. }
  359. /**
  360. * is_pte_valid() - tests one PTE for validity
  361. * @pte is the pte to check
  362. * @lastlba is last lba of the disk
  363. *
  364. * Description: returns 1 if valid, 0 on error.
  365. */
  366. static inline int
  367. is_pte_valid(const gpt_entry *pte, const u64 lastlba)
  368. {
  369. if ((!efi_guidcmp(pte->partition_type_guid, NULL_GUID)) ||
  370. le64_to_cpu(pte->starting_lba) > lastlba ||
  371. le64_to_cpu(pte->ending_lba) > lastlba)
  372. return 0;
  373. return 1;
  374. }
  375. /**
  376. * compare_gpts() - Search disk for valid GPT headers and PTEs
  377. * @pgpt is the primary GPT header
  378. * @agpt is the alternate GPT header
  379. * @lastlba is the last LBA number
  380. * Description: Returns nothing. Sanity checks pgpt and agpt fields
  381. * and prints warnings on discrepancies.
  382. *
  383. */
  384. static void
  385. compare_gpts(gpt_header *pgpt, gpt_header *agpt, u64 lastlba)
  386. {
  387. int error_found = 0;
  388. if (!pgpt || !agpt)
  389. return;
  390. if (le64_to_cpu(pgpt->my_lba) != le64_to_cpu(agpt->alternate_lba)) {
  391. printk(KERN_WARNING
  392. "GPT:Primary header LBA != Alt. header alternate_lba\n");
  393. printk(KERN_WARNING "GPT:%lld != %lld\n",
  394. (unsigned long long)le64_to_cpu(pgpt->my_lba),
  395. (unsigned long long)le64_to_cpu(agpt->alternate_lba));
  396. error_found++;
  397. }
  398. if (le64_to_cpu(pgpt->alternate_lba) != le64_to_cpu(agpt->my_lba)) {
  399. printk(KERN_WARNING
  400. "GPT:Primary header alternate_lba != Alt. header my_lba\n");
  401. printk(KERN_WARNING "GPT:%lld != %lld\n",
  402. (unsigned long long)le64_to_cpu(pgpt->alternate_lba),
  403. (unsigned long long)le64_to_cpu(agpt->my_lba));
  404. error_found++;
  405. }
  406. if (le64_to_cpu(pgpt->first_usable_lba) !=
  407. le64_to_cpu(agpt->first_usable_lba)) {
  408. printk(KERN_WARNING "GPT:first_usable_lbas don't match.\n");
  409. printk(KERN_WARNING "GPT:%lld != %lld\n",
  410. (unsigned long long)le64_to_cpu(pgpt->first_usable_lba),
  411. (unsigned long long)le64_to_cpu(agpt->first_usable_lba));
  412. error_found++;
  413. }
  414. if (le64_to_cpu(pgpt->last_usable_lba) !=
  415. le64_to_cpu(agpt->last_usable_lba)) {
  416. printk(KERN_WARNING "GPT:last_usable_lbas don't match.\n");
  417. printk(KERN_WARNING "GPT:%lld != %lld\n",
  418. (unsigned long long)le64_to_cpu(pgpt->last_usable_lba),
  419. (unsigned long long)le64_to_cpu(agpt->last_usable_lba));
  420. error_found++;
  421. }
  422. if (efi_guidcmp(pgpt->disk_guid, agpt->disk_guid)) {
  423. printk(KERN_WARNING "GPT:disk_guids don't match.\n");
  424. error_found++;
  425. }
  426. if (le32_to_cpu(pgpt->num_partition_entries) !=
  427. le32_to_cpu(agpt->num_partition_entries)) {
  428. printk(KERN_WARNING "GPT:num_partition_entries don't match: "
  429. "0x%x != 0x%x\n",
  430. le32_to_cpu(pgpt->num_partition_entries),
  431. le32_to_cpu(agpt->num_partition_entries));
  432. error_found++;
  433. }
  434. if (le32_to_cpu(pgpt->sizeof_partition_entry) !=
  435. le32_to_cpu(agpt->sizeof_partition_entry)) {
  436. printk(KERN_WARNING
  437. "GPT:sizeof_partition_entry values don't match: "
  438. "0x%x != 0x%x\n",
  439. le32_to_cpu(pgpt->sizeof_partition_entry),
  440. le32_to_cpu(agpt->sizeof_partition_entry));
  441. error_found++;
  442. }
  443. if (le32_to_cpu(pgpt->partition_entry_array_crc32) !=
  444. le32_to_cpu(agpt->partition_entry_array_crc32)) {
  445. printk(KERN_WARNING
  446. "GPT:partition_entry_array_crc32 values don't match: "
  447. "0x%x != 0x%x\n",
  448. le32_to_cpu(pgpt->partition_entry_array_crc32),
  449. le32_to_cpu(agpt->partition_entry_array_crc32));
  450. error_found++;
  451. }
  452. if (le64_to_cpu(pgpt->alternate_lba) != lastlba) {
  453. printk(KERN_WARNING
  454. "GPT:Primary header thinks Alt. header is not at the end of the disk.\n");
  455. printk(KERN_WARNING "GPT:%lld != %lld\n",
  456. (unsigned long long)le64_to_cpu(pgpt->alternate_lba),
  457. (unsigned long long)lastlba);
  458. error_found++;
  459. }
  460. if (le64_to_cpu(agpt->my_lba) != lastlba) {
  461. printk(KERN_WARNING
  462. "GPT:Alternate GPT header not at the end of the disk.\n");
  463. printk(KERN_WARNING "GPT:%lld != %lld\n",
  464. (unsigned long long)le64_to_cpu(agpt->my_lba),
  465. (unsigned long long)lastlba);
  466. error_found++;
  467. }
  468. if (error_found)
  469. printk(KERN_WARNING
  470. "GPT: Use GNU Parted to correct GPT errors.\n");
  471. return;
  472. }
  473. /**
  474. * find_valid_gpt() - Search disk for valid GPT headers and PTEs
  475. * @state
  476. * @gpt is a GPT header ptr, filled on return.
  477. * @ptes is a PTEs ptr, filled on return.
  478. * Description: Returns 1 if valid, 0 on error.
  479. * If valid, returns pointers to newly allocated GPT header and PTEs.
  480. * Validity depends on PMBR being valid (or being overridden by the
  481. * 'gpt' kernel command line option) and finding either the Primary
  482. * GPT header and PTEs valid, or the Alternate GPT header and PTEs
  483. * valid. If the Primary GPT header is not valid, the Alternate GPT header
  484. * is not checked unless the 'gpt' kernel command line option is passed.
  485. * This protects against devices which misreport their size, and forces
  486. * the user to decide to use the Alternate GPT.
  487. */
  488. static int find_valid_gpt(struct parsed_partitions *state, gpt_header **gpt,
  489. gpt_entry **ptes)
  490. {
  491. int good_pgpt = 0, good_agpt = 0, good_pmbr = 0;
  492. gpt_header *pgpt = NULL, *agpt = NULL;
  493. gpt_entry *pptes = NULL, *aptes = NULL;
  494. legacy_mbr *legacymbr;
  495. u64 lastlba;
  496. if (!ptes)
  497. return 0;
  498. lastlba = last_lba(state->bdev);
  499. if (!force_gpt) {
  500. /* This will be added to the EFI Spec. per Intel after v1.02. */
  501. legacymbr = kzalloc(sizeof (*legacymbr), GFP_KERNEL);
  502. if (legacymbr) {
  503. read_lba(state, 0, (u8 *) legacymbr,
  504. sizeof (*legacymbr));
  505. good_pmbr = is_pmbr_valid(legacymbr);
  506. kfree(legacymbr);
  507. }
  508. if (!good_pmbr)
  509. goto fail;
  510. }
  511. good_pgpt = is_gpt_valid(state, GPT_PRIMARY_PARTITION_TABLE_LBA,
  512. &pgpt, &pptes);
  513. if (good_pgpt)
  514. good_agpt = is_gpt_valid(state,
  515. le64_to_cpu(pgpt->alternate_lba),
  516. &agpt, &aptes);
  517. if (!good_agpt && force_gpt)
  518. good_agpt = is_gpt_valid(state, lastlba, &agpt, &aptes);
  519. /* The obviously unsuccessful case */
  520. if (!good_pgpt && !good_agpt)
  521. goto fail;
  522. compare_gpts(pgpt, agpt, lastlba);
  523. /* The good cases */
  524. if (good_pgpt) {
  525. *gpt = pgpt;
  526. *ptes = pptes;
  527. kfree(agpt);
  528. kfree(aptes);
  529. if (!good_agpt) {
  530. printk(KERN_WARNING
  531. "Alternate GPT is invalid, "
  532. "using primary GPT.\n");
  533. }
  534. return 1;
  535. }
  536. else if (good_agpt) {
  537. *gpt = agpt;
  538. *ptes = aptes;
  539. kfree(pgpt);
  540. kfree(pptes);
  541. printk(KERN_WARNING
  542. "Primary GPT is invalid, using alternate GPT.\n");
  543. return 1;
  544. }
  545. fail:
  546. kfree(pgpt);
  547. kfree(agpt);
  548. kfree(pptes);
  549. kfree(aptes);
  550. *gpt = NULL;
  551. *ptes = NULL;
  552. return 0;
  553. }
  554. /**
  555. * efi_partition(struct parsed_partitions *state)
  556. * @state
  557. *
  558. * Description: called from check.c, if the disk contains GPT
  559. * partitions, sets up partition entries in the kernel.
  560. *
  561. * If the first block on the disk is a legacy MBR,
  562. * it will get handled by msdos_partition().
  563. * If it's a Protective MBR, we'll handle it here.
  564. *
  565. * We do not create a Linux partition for GPT, but
  566. * only for the actual data partitions.
  567. * Returns:
  568. * -1 if unable to read the partition table
  569. * 0 if this isn't our partition table
  570. * 1 if successful
  571. *
  572. */
  573. int efi_partition(struct parsed_partitions *state)
  574. {
  575. gpt_header *gpt = NULL;
  576. gpt_entry *ptes = NULL;
  577. u32 i;
  578. unsigned ssz = bdev_logical_block_size(state->bdev) / 512;
  579. u8 unparsed_guid[37];
  580. if (!find_valid_gpt(state, &gpt, &ptes) || !gpt || !ptes) {
  581. kfree(gpt);
  582. kfree(ptes);
  583. return 0;
  584. }
  585. pr_debug("GUID Partition Table is valid! Yea!\n");
  586. for (i = 0; i < le32_to_cpu(gpt->num_partition_entries) && i < state->limit-1; i++) {
  587. struct partition_meta_info *info;
  588. unsigned label_count = 0;
  589. unsigned label_max;
  590. u64 start = le64_to_cpu(ptes[i].starting_lba);
  591. u64 size = le64_to_cpu(ptes[i].ending_lba) -
  592. le64_to_cpu(ptes[i].starting_lba) + 1ULL;
  593. if (!is_pte_valid(&ptes[i], last_lba(state->bdev)))
  594. continue;
  595. put_partition(state, i+1, start * ssz, size * ssz);
  596. /* If this is a RAID volume, tell md */
  597. if (!efi_guidcmp(ptes[i].partition_type_guid,
  598. PARTITION_LINUX_RAID_GUID))
  599. state->parts[i + 1].flags = ADDPART_FLAG_RAID;
  600. info = &state->parts[i + 1].info;
  601. /* Instead of doing a manual swap to big endian, reuse the
  602. * common ASCII hex format as the interim.
  603. */
  604. efi_guid_unparse(&ptes[i].unique_partition_guid, unparsed_guid);
  605. part_pack_uuid(unparsed_guid, info->uuid);
  606. /* Naively convert UTF16-LE to 7 bits. */
  607. label_max = min(sizeof(info->volname) - 1,
  608. sizeof(ptes[i].partition_name));
  609. info->volname[label_max] = 0;
  610. while (label_count < label_max) {
  611. u8 c = ptes[i].partition_name[label_count] & 0xff;
  612. if (c && !isprint(c))
  613. c = '!';
  614. info->volname[label_count] = c;
  615. label_count++;
  616. }
  617. state->parts[i + 1].has_info = true;
  618. }
  619. kfree(ptes);
  620. kfree(gpt);
  621. strlcat(state->pp_buf, "\n", PAGE_SIZE);
  622. return 1;
  623. }