⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 efi.c

📁 Linux Kernel 2.6.9 for OMAP1710
💻 C
📖 第 1 页 / 共 2 页
字号:
	/* Check that the my_lba entry points to the LBA that contains	 * the GUID Partition Table */	if (le64_to_cpu((*gpt)->my_lba) != lba) {		Dprintk("GPT my_lba incorrect: %lld != %lld\n",			(unsigned long long)le64_to_cpu((*gpt)->my_lba),			(unsigned long long)lba);		kfree(*gpt);		*gpt = NULL;		return 0;	}	if (!(*ptes = alloc_read_gpt_entries(bdev, *gpt))) {		kfree(*gpt);		*gpt = NULL;		return 0;	}	/* Check the GUID Partition Entry Array CRC */	crc = efi_crc32((const unsigned char *) (*ptes),			le32_to_cpu((*gpt)->num_partition_entries) *			le32_to_cpu((*gpt)->sizeof_partition_entry));	if (crc != le32_to_cpu((*gpt)->partition_entry_array_crc32)) {		Dprintk("GUID Partitition Entry Array CRC check failed.\n");		kfree(*gpt);		*gpt = NULL;		kfree(*ptes);		*ptes = NULL;		return 0;	}	/* We're done, all's well */	return 1;}/** * compare_gpts() - Search disk for valid GPT headers and PTEs * @pgpt is the primary GPT header * @agpt is the alternate GPT header * @lastlba is the last LBA number * Description: Returns nothing.  Sanity checks pgpt and agpt fields * and prints warnings on discrepancies. *  */static voidcompare_gpts(gpt_header *pgpt, gpt_header *agpt, u64 lastlba){	int error_found = 0;	if (!pgpt || !agpt)		return;	if (le64_to_cpu(pgpt->my_lba) != le64_to_cpu(agpt->alternate_lba)) {		printk(KERN_WARNING		       "GPT:Primary header LBA != Alt. header alternate_lba\n");		printk(KERN_WARNING "GPT:%lld != %lld\n",		       (unsigned long long)le64_to_cpu(pgpt->my_lba),                       (unsigned long long)le64_to_cpu(agpt->alternate_lba));		error_found++;	}	if (le64_to_cpu(pgpt->alternate_lba) != le64_to_cpu(agpt->my_lba)) {		printk(KERN_WARNING		       "GPT:Primary header alternate_lba != Alt. header my_lba\n");		printk(KERN_WARNING "GPT:%lld != %lld\n",		       (unsigned long long)le64_to_cpu(pgpt->alternate_lba),                       (unsigned long long)le64_to_cpu(agpt->my_lba));		error_found++;	}	if (le64_to_cpu(pgpt->first_usable_lba) !=            le64_to_cpu(agpt->first_usable_lba)) {		printk(KERN_WARNING "GPT:first_usable_lbas don't match.\n");		printk(KERN_WARNING "GPT:%lld != %lld\n",		       (unsigned long long)le64_to_cpu(pgpt->first_usable_lba),                       (unsigned long long)le64_to_cpu(agpt->first_usable_lba));		error_found++;	}	if (le64_to_cpu(pgpt->last_usable_lba) !=            le64_to_cpu(agpt->last_usable_lba)) {		printk(KERN_WARNING "GPT:last_usable_lbas don't match.\n");		printk(KERN_WARNING "GPT:%lld != %lld\n",		       (unsigned long long)le64_to_cpu(pgpt->last_usable_lba),                       (unsigned long long)le64_to_cpu(agpt->last_usable_lba));		error_found++;	}	if (efi_guidcmp(pgpt->disk_guid, agpt->disk_guid)) {		printk(KERN_WARNING "GPT:disk_guids don't match.\n");		error_found++;	}	if (le32_to_cpu(pgpt->num_partition_entries) !=            le32_to_cpu(agpt->num_partition_entries)) {		printk(KERN_WARNING "GPT:num_partition_entries don't match: "		       "0x%x != 0x%x\n",		       le32_to_cpu(pgpt->num_partition_entries),		       le32_to_cpu(agpt->num_partition_entries));		error_found++;	}	if (le32_to_cpu(pgpt->sizeof_partition_entry) !=            le32_to_cpu(agpt->sizeof_partition_entry)) {		printk(KERN_WARNING		       "GPT:sizeof_partition_entry values don't match: "		       "0x%x != 0x%x\n",                       le32_to_cpu(pgpt->sizeof_partition_entry),		       le32_to_cpu(agpt->sizeof_partition_entry));		error_found++;	}	if (le32_to_cpu(pgpt->partition_entry_array_crc32) !=            le32_to_cpu(agpt->partition_entry_array_crc32)) {		printk(KERN_WARNING		       "GPT:partition_entry_array_crc32 values don't match: "		       "0x%x != 0x%x\n",                       le32_to_cpu(pgpt->partition_entry_array_crc32),		       le32_to_cpu(agpt->partition_entry_array_crc32));		error_found++;	}	if (le64_to_cpu(pgpt->alternate_lba) != lastlba) {		printk(KERN_WARNING		       "GPT:Primary header thinks Alt. header is not at the end of the disk.\n");		printk(KERN_WARNING "GPT:%lld != %lld\n",			(unsigned long long)le64_to_cpu(pgpt->alternate_lba),			(unsigned long long)lastlba);		error_found++;	}	if (le64_to_cpu(agpt->my_lba) != lastlba) {		printk(KERN_WARNING		       "GPT:Alternate GPT header not at the end of the disk.\n");		printk(KERN_WARNING "GPT:%lld != %lld\n",			(unsigned long long)le64_to_cpu(agpt->my_lba),			(unsigned long long)lastlba);		error_found++;	}	if (error_found)		printk(KERN_WARNING		       "GPT: Use GNU Parted to correct GPT errors.\n");	return;}/** * find_valid_gpt() - Search disk for valid GPT headers and PTEs * @bdev * @gpt is a GPT header ptr, filled on return. * @ptes is a PTEs ptr, filled on return. * Description: Returns 1 if valid, 0 on error. * If valid, returns pointers to newly allocated GPT header and PTEs. * Validity depends on finding either the Primary GPT header and PTEs valid, * or the Alternate GPT header and PTEs valid, and the PMBR valid. */static intfind_valid_gpt(struct block_device *bdev, gpt_header **gpt, gpt_entry **ptes){	int good_pgpt = 0, good_agpt = 0, good_pmbr = 0;	gpt_header *pgpt = NULL, *agpt = NULL;	gpt_entry *pptes = NULL, *aptes = NULL;	legacy_mbr *legacymbr = NULL;	u64 lastlba;	if (!bdev || !gpt || !ptes)		return 0;	lastlba = last_lba(bdev);	good_pgpt = is_gpt_valid(bdev, GPT_PRIMARY_PARTITION_TABLE_LBA,				 &pgpt, &pptes);        if (good_pgpt) {		good_agpt = is_gpt_valid(bdev,                                         le64_to_cpu(pgpt->alternate_lba),					 &agpt, &aptes);                if (!good_agpt) {                        good_agpt = is_gpt_valid(bdev, lastlba,                                                 &agpt, &aptes);                }        }        else {                good_agpt = is_gpt_valid(bdev, lastlba,                                         &agpt, &aptes);        }        /* The obviously unsuccessful case */        if (!good_pgpt && !good_agpt) {                goto fail;        }	/* This will be added to the EFI Spec. per Intel after v1.02. */        legacymbr = kmalloc(sizeof (*legacymbr), GFP_KERNEL);        if (legacymbr) {                memset(legacymbr, 0, sizeof (*legacymbr));                read_lba(bdev, 0, (u8 *) legacymbr,                         sizeof (*legacymbr));                good_pmbr = is_pmbr_valid(legacymbr);                kfree(legacymbr);                legacymbr=NULL;        }        /* Failure due to bad PMBR */        if ((good_pgpt || good_agpt) && !good_pmbr && !force_gpt) {                printk(KERN_WARNING                        "  Warning: Disk has a valid GPT signature "                       "but invalid PMBR.\n");                printk(KERN_WARNING                       "  Assuming this disk is *not* a GPT disk anymore.\n");                printk(KERN_WARNING                       "  Use gpt kernel option to override.  "                       "Use GNU Parted to correct disk.\n");                goto fail;        }        /* Would fail due to bad PMBR, but force GPT anyhow */        if ((good_pgpt || good_agpt) && !good_pmbr && force_gpt) {                printk(KERN_WARNING                       "  Warning: Disk has a valid GPT signature but "                       "invalid PMBR.\n");                printk(KERN_WARNING                       "  Use GNU Parted to correct disk.\n");                printk(KERN_WARNING                       "  gpt option taken, disk treated as GPT.\n");        }        compare_gpts(pgpt, agpt, lastlba);        /* The good cases */        if (good_pgpt && (good_pmbr || force_gpt)) {                *gpt  = pgpt;                *ptes = pptes;                if (agpt)  { kfree(agpt);   agpt = NULL; }                if (aptes) { kfree(aptes); aptes = NULL; }                if (!good_agpt) {                        printk(KERN_WARNING 			       "Alternate GPT is invalid, "                               "using primary GPT.\n");                }                return 1;        }        else if (good_agpt && (good_pmbr || force_gpt)) {                *gpt  = agpt;                *ptes = aptes;                if (pgpt)  { kfree(pgpt);   pgpt = NULL; }                if (pptes) { kfree(pptes); pptes = NULL; }                printk(KERN_WARNING                        "Primary GPT is invalid, using alternate GPT.\n");                return 1;        } fail:        if (pgpt)  { kfree(pgpt);   pgpt=NULL; }        if (agpt)  { kfree(agpt);   agpt=NULL; }        if (pptes) { kfree(pptes); pptes=NULL; }        if (aptes) { kfree(aptes); aptes=NULL; }        *gpt = NULL;        *ptes = NULL;        return 0;}/** * efi_partition(struct parsed_partitions *state, struct block_device *bdev) * @state * @bdev * * Description: called from check.c, if the disk contains GPT * partitions, sets up partition entries in the kernel. * * If the first block on the disk is a legacy MBR, * it will get handled by msdos_partition(). * If it's a Protective MBR, we'll handle it here. * * We do not create a Linux partition for GPT, but * only for the actual data partitions. * Returns: * -1 if unable to read the partition table *  0 if this isn't our partition table *  1 if successful * */intefi_partition(struct parsed_partitions *state, struct block_device *bdev){	gpt_header *gpt = NULL;	gpt_entry *ptes = NULL;	u32 i;	if (!find_valid_gpt(bdev, &gpt, &ptes) || !gpt || !ptes) {		kfree(gpt);		kfree(ptes);		return 0;	}	Dprintk("GUID Partition Table is valid!  Yea!\n");	for (i = 0; i < le32_to_cpu(gpt->num_partition_entries) && i < state->limit-1; i++) {		if (!efi_guidcmp(ptes[i].partition_type_guid, NULL_GUID))			continue;		put_partition(state, i+1, le64_to_cpu(ptes[i].starting_lba),				 (le64_to_cpu(ptes[i].ending_lba) -                                  le64_to_cpu(ptes[i].starting_lba) +				  1));		/* If there's this is a RAID volume, tell md */		if (!efi_guidcmp(ptes[i].partition_type_guid,				 PARTITION_LINUX_RAID_GUID))			state->parts[i+1].flags = 1;	}	kfree(ptes);	kfree(gpt);	printk("\n");	return 1;}/* * Overrides for Emacs so that we follow Linus's tabbing style. * Emacs will notice this stuff at the end of the file and automatically * adjust the settings for this buffer only.  This must remain at the end * of the file. * --------------------------------------------------------------------------- * Local variables: * c-indent-level: 4 * c-brace-imaginary-offset: 0 * c-brace-offset: -4 * c-argdecl-indent: 4 * c-label-offset: -4 * c-continued-statement-offset: 4 * c-continued-brace-offset: 0 * indent-tabs-mode: nil * tab-width: 8 * End: */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -