4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
23 * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
25 * Copyright 2014 Toomas Soome <tsoome@me.com>
33 #include <uuid/uuid.h>
35 #include <sys/types.h>
39 #include <sys/param.h>
40 #include <sys/dktp/fdisk.h>
41 #include <sys/efi_partition.h>
42 #include <sys/byteorder.h>
45 static struct uuid_to_ptag
{
47 } conversion_array
[] = {
54 { 0 }, /* STAND is never used */
58 { 0 }, /* CACHE is never used */
76 { EFI_FREEBSD_VINUM
},
81 * Default vtoc information for non-SVr4 partitions
83 struct dk_map2 default_vtoc_map
[NDKMAP
] = {
84 { V_ROOT
, 0 }, /* a - 0 */
85 { V_SWAP
, V_UNMNT
}, /* b - 1 */
86 { V_BACKUP
, V_UNMNT
}, /* c - 2 */
87 { V_UNASSIGNED
, 0 }, /* d - 3 */
88 { V_UNASSIGNED
, 0 }, /* e - 4 */
89 { V_UNASSIGNED
, 0 }, /* f - 5 */
90 { V_USR
, 0 }, /* g - 6 */
91 { V_UNASSIGNED
, 0 }, /* h - 7 */
93 #if defined(_SUNOS_VTOC_16)
95 #if defined(i386) || defined(__amd64)
96 { V_BOOT
, V_UNMNT
}, /* i - 8 */
97 { V_ALTSCTR
, 0 }, /* j - 9 */
100 #error No VTOC format defined.
101 #endif /* defined(i386) */
103 { V_UNASSIGNED
, 0 }, /* k - 10 */
104 { V_UNASSIGNED
, 0 }, /* l - 11 */
105 { V_UNASSIGNED
, 0 }, /* m - 12 */
106 { V_UNASSIGNED
, 0 }, /* n - 13 */
107 { V_UNASSIGNED
, 0 }, /* o - 14 */
108 { V_UNASSIGNED
, 0 }, /* p - 15 */
109 #endif /* defined(_SUNOS_VTOC_16) */
118 extern unsigned int efi_crc32(const unsigned char *, unsigned int);
119 static int efi_read(int, struct dk_gpt
*);
122 read_disk_info(int fd
, diskaddr_t
*capacity
, uint_t
*lbsize
)
124 struct dk_minfo disk_info
;
126 if ((ioctl(fd
, DKIOCGMEDIAINFO
, (caddr_t
)&disk_info
)) == -1)
128 *capacity
= disk_info
.dki_capacity
;
129 *lbsize
= disk_info
.dki_lbsize
;
134 * the number of blocks the EFI label takes up (round up to nearest
137 #define NBLOCKS(p, l) (1 + ((((p) * (int)sizeof (efi_gpe_t)) + \
139 /* number of partitions -- limited by what we can malloc */
140 #define MAX_PARTS ((4294967295UL - sizeof (struct dk_gpt)) / \
141 sizeof (struct dk_part))
144 efi_alloc_and_init(int fd
, uint32_t nparts
, struct dk_gpt
**vtoc
)
153 if (read_disk_info(fd
, &capacity
, &lbsize
) != 0) {
155 (void) fprintf(stderr
,
156 "couldn't read disk information\n");
160 nblocks
= NBLOCKS(nparts
, lbsize
);
161 if ((nblocks
* lbsize
) < EFI_MIN_ARRAY_SIZE
+ lbsize
) {
162 /* 16K plus one block for the GPT */
163 nblocks
= EFI_MIN_ARRAY_SIZE
/ lbsize
+ 1;
166 if (nparts
> MAX_PARTS
) {
168 (void) fprintf(stderr
,
169 "the maximum number of partitions supported is %lu\n",
175 length
= sizeof (struct dk_gpt
) +
176 sizeof (struct dk_part
) * (nparts
- 1);
178 if ((*vtoc
= calloc(length
, 1)) == NULL
)
183 vptr
->efi_version
= EFI_VERSION_CURRENT
;
184 vptr
->efi_lbasize
= lbsize
;
185 vptr
->efi_nparts
= nparts
;
187 * add one block here for the PMBR; on disks with a 512 byte
188 * block size and 128 or fewer partitions, efi_first_u_lba
189 * should work out to "34"
191 vptr
->efi_first_u_lba
= nblocks
+ 1;
192 vptr
->efi_last_lba
= capacity
- 1;
193 vptr
->efi_altern_lba
= capacity
-1;
194 vptr
->efi_last_u_lba
= vptr
->efi_last_lba
- nblocks
;
196 (void) uuid_generate((uchar_t
*)&uuid
);
197 UUID_LE_CONVERT(vptr
->efi_disk_uguid
, uuid
);
202 * Read EFI - return partition number upon success.
205 efi_alloc_and_read(int fd
, struct dk_gpt
**vtoc
)
211 /* figure out the number of entries that would fit into 16K */
212 nparts
= EFI_MIN_ARRAY_SIZE
/ sizeof (efi_gpe_t
);
213 length
= (int) sizeof (struct dk_gpt
) +
214 (int) sizeof (struct dk_part
) * (nparts
- 1);
215 if ((*vtoc
= calloc(length
, 1)) == NULL
)
218 (*vtoc
)->efi_nparts
= nparts
;
219 rval
= efi_read(fd
, *vtoc
);
221 if ((rval
== VT_EINVAL
) && (*vtoc
)->efi_nparts
> nparts
) {
223 length
= (int) sizeof (struct dk_gpt
) +
224 (int) sizeof (struct dk_part
) *
225 ((*vtoc
)->efi_nparts
- 1);
226 nparts
= (*vtoc
)->efi_nparts
;
227 if ((tmp
= realloc(*vtoc
, length
)) == NULL
) {
233 rval
= efi_read(fd
, *vtoc
);
239 (void) fprintf(stderr
,
240 "read of EFI table failed, rval=%d\n", rval
);
250 efi_ioctl(int fd
, int cmd
, dk_efi_t
*dk_ioc
)
252 void *data
= dk_ioc
->dki_data
;
255 dk_ioc
->dki_data_64
= (uint64_t)(uintptr_t)data
;
256 error
= ioctl(fd
, cmd
, (void *)dk_ioc
);
257 dk_ioc
->dki_data
= data
;
263 check_label(int fd
, dk_efi_t
*dk_ioc
)
268 if (efi_ioctl(fd
, DKIOCGETEFI
, dk_ioc
) == -1) {
276 efi
= dk_ioc
->dki_data
;
277 if (efi
->efi_gpt_Signature
!= LE_64(EFI_SIGNATURE
)) {
279 (void) fprintf(stderr
,
280 "Bad EFI signature: 0x%llx != 0x%llx\n",
281 (long long)efi
->efi_gpt_Signature
,
282 (long long)LE_64(EFI_SIGNATURE
));
287 * check CRC of the header; the size of the header should
288 * never be larger than one block
290 crc
= efi
->efi_gpt_HeaderCRC32
;
291 efi
->efi_gpt_HeaderCRC32
= 0;
293 if (((len_t
)LE_32(efi
->efi_gpt_HeaderSize
) > dk_ioc
->dki_length
) ||
294 crc
!= LE_32(efi_crc32((unsigned char *)efi
,
295 LE_32(efi
->efi_gpt_HeaderSize
)))) {
297 (void) fprintf(stderr
,
298 "Bad EFI CRC: 0x%x != 0x%x\n",
300 LE_32(efi_crc32((unsigned char *)efi
,
301 sizeof (struct efi_gpt
))));
309 efi_read(int fd
, struct dk_gpt
*vtoc
)
315 struct dk_minfo disk_info
;
318 efi_gpe_t
*efi_parts
;
319 struct dk_cinfo dki_info
;
320 uint32_t user_length
;
321 boolean_t legacy_label
= B_FALSE
;
324 * get the partition number for this file descriptor.
326 if (ioctl(fd
, DKIOCINFO
, (caddr_t
)&dki_info
) == -1) {
328 (void) fprintf(stderr
, "DKIOCINFO errno 0x%x\n", errno
);
340 if ((strncmp(dki_info
.dki_cname
, "vdc", 4) == 0) &&
341 (strncmp(dki_info
.dki_dname
, "vdc", 4) == 0)) {
343 * The controller and drive name "vdc" (virtual disk client)
344 * indicates a LDoms virtual disk.
349 /* get the LBA size */
350 if (ioctl(fd
, DKIOCGMEDIAINFO
, (caddr_t
)&disk_info
) == -1) {
352 (void) fprintf(stderr
,
353 "assuming LBA 512 bytes %d\n",
356 disk_info
.dki_lbsize
= DEV_BSIZE
;
358 if (disk_info
.dki_lbsize
== 0) {
360 (void) fprintf(stderr
,
361 "efi_read: assuming LBA 512 bytes\n");
363 disk_info
.dki_lbsize
= DEV_BSIZE
;
366 * Read the EFI GPT to figure out how many partitions we need
370 if (NBLOCKS(vtoc
->efi_nparts
, disk_info
.dki_lbsize
) < 34) {
371 label_len
= EFI_MIN_ARRAY_SIZE
+ disk_info
.dki_lbsize
;
373 label_len
= vtoc
->efi_nparts
* (int) sizeof (efi_gpe_t
) +
374 disk_info
.dki_lbsize
;
375 if (label_len
% disk_info
.dki_lbsize
) {
376 /* pad to physical sector size */
377 label_len
+= disk_info
.dki_lbsize
;
378 label_len
&= ~(disk_info
.dki_lbsize
- 1);
382 if ((dk_ioc
.dki_data
= calloc(label_len
, 1)) == NULL
)
385 dk_ioc
.dki_length
= disk_info
.dki_lbsize
;
386 user_length
= vtoc
->efi_nparts
;
387 efi
= dk_ioc
.dki_data
;
388 if ((rval
= check_label(fd
, &dk_ioc
)) == VT_EINVAL
) {
390 * No valid label here; try the alternate. Note that here
391 * we just read GPT header and save it into dk_ioc.data,
392 * Later, we will read GUID partition entry array if we
393 * can get valid GPT header.
397 * This is a workaround for legacy systems. In the past, the
398 * last sector of SCSI disk was invisible on x86 platform. At
399 * that time, backup label was saved on the next to the last
400 * sector. It is possible for users to move a disk from previous
401 * solaris system to present system. Here, we attempt to search
402 * legacy backup EFI label first.
404 dk_ioc
.dki_lba
= disk_info
.dki_capacity
- 2;
405 dk_ioc
.dki_length
= disk_info
.dki_lbsize
;
406 rval
= check_label(fd
, &dk_ioc
);
407 if (rval
== VT_EINVAL
) {
409 * we didn't find legacy backup EFI label, try to
410 * search backup EFI label in the last block.
412 dk_ioc
.dki_lba
= disk_info
.dki_capacity
- 1;
413 dk_ioc
.dki_length
= disk_info
.dki_lbsize
;
414 rval
= check_label(fd
, &dk_ioc
);
416 legacy_label
= B_TRUE
;
418 (void) fprintf(stderr
,
419 "efi_read: primary label corrupt; "
420 "using EFI backup label located on"
421 " the last block\n");
424 if ((efi_debug
) && (rval
== 0))
425 (void) fprintf(stderr
, "efi_read: primary label"
426 " corrupt; using legacy EFI backup label "
427 " located on the next to last block\n");
431 dk_ioc
.dki_lba
= LE_64(efi
->efi_gpt_PartitionEntryLBA
);
432 vtoc
->efi_flags
|= EFI_GPT_PRIMARY_CORRUPT
;
434 LE_32(efi
->efi_gpt_NumberOfPartitionEntries
);
436 * Partition tables are between backup GPT header
437 * table and ParitionEntryLBA (the starting LBA of
438 * the GUID partition entries array). Now that we
439 * already got valid GPT header and saved it in
440 * dk_ioc.dki_data, we try to get GUID partition
444 dk_ioc
.dki_data
= (efi_gpt_t
*)((char *)dk_ioc
.dki_data
445 + disk_info
.dki_lbsize
);
447 dk_ioc
.dki_length
= disk_info
.dki_capacity
- 1 -
450 dk_ioc
.dki_length
= disk_info
.dki_capacity
- 2 -
452 dk_ioc
.dki_length
*= disk_info
.dki_lbsize
;
453 if (dk_ioc
.dki_length
>
454 ((len_t
)label_len
- sizeof (*dk_ioc
.dki_data
))) {
458 * read GUID partition entry array
460 rval
= efi_ioctl(fd
, DKIOCGETEFI
, &dk_ioc
);
464 } else if (rval
== 0) {
466 dk_ioc
.dki_lba
= LE_64(efi
->efi_gpt_PartitionEntryLBA
);
468 dk_ioc
.dki_data
= (efi_gpt_t
*)((char *)dk_ioc
.dki_data
469 + disk_info
.dki_lbsize
);
470 dk_ioc
.dki_length
= label_len
- disk_info
.dki_lbsize
;
471 rval
= efi_ioctl(fd
, DKIOCGETEFI
, &dk_ioc
);
473 } else if (vdc_flag
&& rval
== VT_ERROR
&& errno
== EINVAL
) {
475 * When the device is a LDoms virtual disk, the DKIOCGETEFI
476 * ioctl can fail with EINVAL if the virtual disk backend
477 * is a ZFS volume serviced by a domain running an old version
478 * of Solaris. This is because the DKIOCGETEFI ioctl was
479 * initially incorrectly implemented for a ZFS volume and it
480 * expected the GPT and GPE to be retrieved with a single ioctl.
481 * So we try to read the GPT and the GPE using that old style
485 dk_ioc
.dki_length
= label_len
;
486 rval
= check_label(fd
, &dk_ioc
);
494 /* LINTED -- always longlong aligned */
495 efi_parts
= (efi_gpe_t
*)(((char *)efi
) + disk_info
.dki_lbsize
);
498 * Assemble this into a "dk_gpt" struct for easier
499 * digestibility by applications.
501 vtoc
->efi_version
= LE_32(efi
->efi_gpt_Revision
);
502 vtoc
->efi_nparts
= LE_32(efi
->efi_gpt_NumberOfPartitionEntries
);
503 vtoc
->efi_part_size
= LE_32(efi
->efi_gpt_SizeOfPartitionEntry
);
504 vtoc
->efi_lbasize
= disk_info
.dki_lbsize
;
505 vtoc
->efi_last_lba
= disk_info
.dki_capacity
- 1;
506 vtoc
->efi_first_u_lba
= LE_64(efi
->efi_gpt_FirstUsableLBA
);
507 vtoc
->efi_last_u_lba
= LE_64(efi
->efi_gpt_LastUsableLBA
);
508 vtoc
->efi_altern_lba
= LE_64(efi
->efi_gpt_AlternateLBA
);
509 UUID_LE_CONVERT(vtoc
->efi_disk_uguid
, efi
->efi_gpt_DiskGUID
);
512 * If the array the user passed in is too small, set the length
513 * to what it needs to be and return
515 if (user_length
< vtoc
->efi_nparts
) {
519 for (i
= 0; i
< vtoc
->efi_nparts
; i
++) {
521 UUID_LE_CONVERT(vtoc
->efi_parts
[i
].p_guid
,
522 efi_parts
[i
].efi_gpe_PartitionTypeGUID
);
525 j
< sizeof (conversion_array
)
526 / sizeof (struct uuid_to_ptag
); j
++) {
528 if (bcmp(&vtoc
->efi_parts
[i
].p_guid
,
529 &conversion_array
[j
].uuid
,
530 sizeof (struct uuid
)) == 0) {
531 vtoc
->efi_parts
[i
].p_tag
= j
;
535 if (vtoc
->efi_parts
[i
].p_tag
== V_UNASSIGNED
)
537 vtoc
->efi_parts
[i
].p_flag
=
538 LE_16(efi_parts
[i
].efi_gpe_Attributes
.PartitionAttrs
);
539 vtoc
->efi_parts
[i
].p_start
=
540 LE_64(efi_parts
[i
].efi_gpe_StartingLBA
);
541 vtoc
->efi_parts
[i
].p_size
=
542 LE_64(efi_parts
[i
].efi_gpe_EndingLBA
) -
543 vtoc
->efi_parts
[i
].p_start
+ 1;
544 for (j
= 0; j
< EFI_PART_NAME_LEN
; j
++) {
545 vtoc
->efi_parts
[i
].p_name
[j
] =
547 efi_parts
[i
].efi_gpe_PartitionName
[j
]);
550 UUID_LE_CONVERT(vtoc
->efi_parts
[i
].p_uguid
,
551 efi_parts
[i
].efi_gpe_UniquePartitionGUID
);
555 return (dki_info
.dki_partition
);
558 /* writes a "protective" MBR */
560 write_pmbr(int fd
, struct dk_gpt
*vtoc
)
565 diskaddr_t size_in_lba
;
569 len
= (vtoc
->efi_lbasize
== 0) ? sizeof (mb
) : vtoc
->efi_lbasize
;
570 buf
= calloc(len
, 1);
573 * Preserve any boot code and disk signature if the first block is
577 dk_ioc
.dki_length
= len
;
578 /* LINTED -- always longlong aligned */
579 dk_ioc
.dki_data
= (efi_gpt_t
*)buf
;
580 if (efi_ioctl(fd
, DKIOCGETEFI
, &dk_ioc
) == -1) {
581 (void) memcpy(&mb
, buf
, sizeof (mb
));
582 bzero(&mb
, sizeof (mb
));
583 mb
.signature
= LE_16(MBB_MAGIC
);
585 (void) memcpy(&mb
, buf
, sizeof (mb
));
586 if (mb
.signature
!= LE_16(MBB_MAGIC
)) {
587 bzero(&mb
, sizeof (mb
));
588 mb
.signature
= LE_16(MBB_MAGIC
);
592 bzero(&mb
.parts
, sizeof (mb
.parts
));
593 cp
= (uchar_t
*)&mb
.parts
[0];
594 /* bootable or not */
596 /* beginning CHS; 0xffffff if not representable */
602 /* ending CHS; 0xffffff if not representable */
606 /* starting LBA: 1 (little endian format) by EFI definition */
611 /* ending LBA: last block on the disk (little endian format) */
612 size_in_lba
= vtoc
->efi_last_lba
;
613 if (size_in_lba
< 0xffffffff) {
614 *cp
++ = (size_in_lba
& 0x000000ff);
615 *cp
++ = (size_in_lba
& 0x0000ff00) >> 8;
616 *cp
++ = (size_in_lba
& 0x00ff0000) >> 16;
617 *cp
++ = (size_in_lba
& 0xff000000) >> 24;
625 (void) memcpy(buf
, &mb
, sizeof (mb
));
626 /* LINTED -- always longlong aligned */
627 dk_ioc
.dki_data
= (efi_gpt_t
*)buf
;
629 dk_ioc
.dki_length
= len
;
630 if (efi_ioctl(fd
, DKIOCSETEFI
, &dk_ioc
) == -1) {
645 /* make sure the user specified something reasonable */
647 check_input(struct dk_gpt
*vtoc
)
651 diskaddr_t istart
, jstart
, isize
, jsize
, endsect
;
654 * Sanity-check the input (make sure no partitions overlap)
656 for (i
= 0; i
< vtoc
->efi_nparts
; i
++) {
657 /* It can't be unassigned and have an actual size */
658 if ((vtoc
->efi_parts
[i
].p_tag
== V_UNASSIGNED
) &&
659 (vtoc
->efi_parts
[i
].p_size
!= 0)) {
661 (void) fprintf(stderr
,
662 "partition %d is \"unassigned\" but has a size of %llu",
664 vtoc
->efi_parts
[i
].p_size
);
668 if (vtoc
->efi_parts
[i
].p_tag
== V_UNASSIGNED
) {
669 if (uuid_is_null((uchar_t
*)&vtoc
->efi_parts
[i
].p_guid
))
671 /* we have encountered an unknown uuid */
672 vtoc
->efi_parts
[i
].p_tag
= 0xff;
674 if (vtoc
->efi_parts
[i
].p_tag
== V_RESERVED
) {
675 if (resv_part
!= -1) {
677 (void) fprintf(stderr
,
678 "found duplicate reserved partition at %d\n",
685 if ((vtoc
->efi_parts
[i
].p_start
< vtoc
->efi_first_u_lba
) ||
686 (vtoc
->efi_parts
[i
].p_start
> vtoc
->efi_last_u_lba
)) {
688 (void) fprintf(stderr
,
689 "Partition %d starts at %llu. ",
691 vtoc
->efi_parts
[i
].p_start
);
692 (void) fprintf(stderr
,
693 "It must be between %llu and %llu.\n",
694 vtoc
->efi_first_u_lba
,
695 vtoc
->efi_last_u_lba
);
699 if ((vtoc
->efi_parts
[i
].p_start
+
700 vtoc
->efi_parts
[i
].p_size
<
701 vtoc
->efi_first_u_lba
) ||
702 (vtoc
->efi_parts
[i
].p_start
+
703 vtoc
->efi_parts
[i
].p_size
>
704 vtoc
->efi_last_u_lba
+ 1)) {
706 (void) fprintf(stderr
,
707 "Partition %d ends at %llu. ",
709 vtoc
->efi_parts
[i
].p_start
+
710 vtoc
->efi_parts
[i
].p_size
);
711 (void) fprintf(stderr
,
712 "It must be between %llu and %llu.\n",
713 vtoc
->efi_first_u_lba
,
714 vtoc
->efi_last_u_lba
);
719 for (j
= 0; j
< vtoc
->efi_nparts
; j
++) {
720 isize
= vtoc
->efi_parts
[i
].p_size
;
721 jsize
= vtoc
->efi_parts
[j
].p_size
;
722 istart
= vtoc
->efi_parts
[i
].p_start
;
723 jstart
= vtoc
->efi_parts
[j
].p_start
;
724 if ((i
!= j
) && (isize
!= 0) && (jsize
!= 0)) {
725 endsect
= jstart
+ jsize
-1;
726 if ((jstart
<= istart
) &&
727 (istart
<= endsect
)) {
729 (void) fprintf(stderr
,
730 "Partition %d overlaps partition %d.",
738 /* just a warning for now */
739 if ((resv_part
== -1) && efi_debug
) {
740 (void) fprintf(stderr
,
741 "no reserved partition found\n");
747 * add all the unallocated space to the current label
750 efi_use_whole_disk(int fd
)
752 struct dk_gpt
*efi_label
;
755 uint_t phy_last_slice
= 0;
756 diskaddr_t pl_start
= 0;
759 rval
= efi_alloc_and_read(fd
, &efi_label
);
764 /* find the last physically non-zero partition */
765 for (i
= 0; i
< efi_label
->efi_nparts
- 2; i
++) {
766 if (pl_start
< efi_label
->efi_parts
[i
].p_start
) {
767 pl_start
= efi_label
->efi_parts
[i
].p_start
;
771 pl_size
= efi_label
->efi_parts
[phy_last_slice
].p_size
;
774 * If alter_lba is 1, we are using the backup label.
775 * Since we can locate the backup label by disk capacity,
776 * there must be no unallocated space.
778 if ((efi_label
->efi_altern_lba
== 1) || (efi_label
->efi_altern_lba
779 >= efi_label
->efi_last_lba
)) {
781 (void) fprintf(stderr
,
782 "efi_use_whole_disk: requested space not found\n");
789 * If there is space between the last physically non-zero partition
790 * and the reserved partition, just add the unallocated space to this
791 * area. Otherwise, the unallocated space is added to the last
792 * physically non-zero partition.
794 if (pl_start
+ pl_size
- 1 == efi_label
->efi_last_u_lba
-
796 efi_label
->efi_parts
[phy_last_slice
].p_size
+=
797 efi_label
->efi_last_lba
- efi_label
->efi_altern_lba
;
801 * Move the reserved partition. There is currently no data in
802 * here except fabricated devids (which get generated via
803 * efi_write()). So there is no need to copy data.
805 efi_label
->efi_parts
[efi_label
->efi_nparts
- 1].p_start
+=
806 efi_label
->efi_last_lba
- efi_label
->efi_altern_lba
;
807 efi_label
->efi_last_u_lba
+= efi_label
->efi_last_lba
808 - efi_label
->efi_altern_lba
;
810 rval
= efi_write(fd
, efi_label
);
813 (void) fprintf(stderr
,
814 "efi_use_whole_disk:fail to write label, rval=%d\n",
827 * write EFI label and backup label
830 efi_write(int fd
, struct dk_gpt
*vtoc
)
834 efi_gpe_t
*efi_parts
;
836 struct dk_cinfo dki_info
;
838 diskaddr_t lba_backup_gpt_hdr
;
840 if (ioctl(fd
, DKIOCINFO
, (caddr_t
)&dki_info
) == -1) {
842 (void) fprintf(stderr
, "DKIOCINFO errno 0x%x\n", errno
);
853 if (check_input(vtoc
))
857 if (NBLOCKS(vtoc
->efi_nparts
, vtoc
->efi_lbasize
) < 34) {
858 dk_ioc
.dki_length
= EFI_MIN_ARRAY_SIZE
+ vtoc
->efi_lbasize
;
860 dk_ioc
.dki_length
= NBLOCKS(vtoc
->efi_nparts
,
866 * the number of blocks occupied by GUID partition entry array
868 nblocks
= dk_ioc
.dki_length
/ vtoc
->efi_lbasize
- 1;
871 * Backup GPT header is located on the block after GUID
872 * partition entry array. Here, we calculate the address
873 * for backup GPT header.
875 lba_backup_gpt_hdr
= vtoc
->efi_last_u_lba
+ 1 + nblocks
;
876 if ((dk_ioc
.dki_data
= calloc(dk_ioc
.dki_length
, 1)) == NULL
)
879 efi
= dk_ioc
.dki_data
;
881 /* stuff user's input into EFI struct */
882 efi
->efi_gpt_Signature
= LE_64(EFI_SIGNATURE
);
883 efi
->efi_gpt_Revision
= LE_32(vtoc
->efi_version
); /* 0x02000100 */
884 efi
->efi_gpt_HeaderSize
= LE_32(sizeof (struct efi_gpt
));
885 efi
->efi_gpt_Reserved1
= 0;
886 efi
->efi_gpt_MyLBA
= LE_64(1ULL);
887 efi
->efi_gpt_AlternateLBA
= LE_64(lba_backup_gpt_hdr
);
888 efi
->efi_gpt_FirstUsableLBA
= LE_64(vtoc
->efi_first_u_lba
);
889 efi
->efi_gpt_LastUsableLBA
= LE_64(vtoc
->efi_last_u_lba
);
890 efi
->efi_gpt_PartitionEntryLBA
= LE_64(2ULL);
891 efi
->efi_gpt_NumberOfPartitionEntries
= LE_32(vtoc
->efi_nparts
);
892 efi
->efi_gpt_SizeOfPartitionEntry
= LE_32(sizeof (struct efi_gpe
));
893 UUID_LE_CONVERT(efi
->efi_gpt_DiskGUID
, vtoc
->efi_disk_uguid
);
895 /* LINTED -- always longlong aligned */
896 efi_parts
= (efi_gpe_t
*)((char *)dk_ioc
.dki_data
+ vtoc
->efi_lbasize
);
898 for (i
= 0; i
< vtoc
->efi_nparts
; i
++) {
900 j
< sizeof (conversion_array
) /
901 sizeof (struct uuid_to_ptag
); j
++) {
903 if (vtoc
->efi_parts
[i
].p_tag
== j
) {
905 efi_parts
[i
].efi_gpe_PartitionTypeGUID
,
906 conversion_array
[j
].uuid
);
911 if (j
== sizeof (conversion_array
) /
912 sizeof (struct uuid_to_ptag
)) {
914 * If we didn't have a matching uuid match, bail here.
915 * Don't write a label with unknown uuid.
918 (void) fprintf(stderr
,
919 "Unknown uuid for p_tag %d\n",
920 vtoc
->efi_parts
[i
].p_tag
);
925 efi_parts
[i
].efi_gpe_StartingLBA
=
926 LE_64(vtoc
->efi_parts
[i
].p_start
);
927 efi_parts
[i
].efi_gpe_EndingLBA
=
928 LE_64(vtoc
->efi_parts
[i
].p_start
+
929 vtoc
->efi_parts
[i
].p_size
- 1);
930 efi_parts
[i
].efi_gpe_Attributes
.PartitionAttrs
=
931 LE_16(vtoc
->efi_parts
[i
].p_flag
);
932 for (j
= 0; j
< EFI_PART_NAME_LEN
; j
++) {
933 efi_parts
[i
].efi_gpe_PartitionName
[j
] =
934 LE_16((ushort_t
)vtoc
->efi_parts
[i
].p_name
[j
]);
936 if ((vtoc
->efi_parts
[i
].p_tag
!= V_UNASSIGNED
) &&
937 uuid_is_null((uchar_t
*)&vtoc
->efi_parts
[i
].p_uguid
)) {
938 (void) uuid_generate((uchar_t
*)
939 &vtoc
->efi_parts
[i
].p_uguid
);
941 bcopy(&vtoc
->efi_parts
[i
].p_uguid
,
942 &efi_parts
[i
].efi_gpe_UniquePartitionGUID
,
945 efi
->efi_gpt_PartitionEntryArrayCRC32
=
946 LE_32(efi_crc32((unsigned char *)efi_parts
,
947 vtoc
->efi_nparts
* (int)sizeof (struct efi_gpe
)));
948 efi
->efi_gpt_HeaderCRC32
=
949 LE_32(efi_crc32((unsigned char *)efi
, sizeof (struct efi_gpt
)));
951 if (efi_ioctl(fd
, DKIOCSETEFI
, &dk_ioc
) == -1) {
952 free(dk_ioc
.dki_data
);
963 /* write backup partition array */
964 dk_ioc
.dki_lba
= vtoc
->efi_last_u_lba
+ 1;
965 dk_ioc
.dki_length
-= vtoc
->efi_lbasize
;
967 dk_ioc
.dki_data
= (efi_gpt_t
*)((char *)dk_ioc
.dki_data
+
970 if (efi_ioctl(fd
, DKIOCSETEFI
, &dk_ioc
) == -1) {
972 * we wrote the primary label okay, so don't fail
975 (void) fprintf(stderr
,
976 "write of backup partitions to block %llu "
977 "failed, errno %d\n",
978 vtoc
->efi_last_u_lba
+ 1,
983 * now swap MyLBA and AlternateLBA fields and write backup
984 * partition table header
986 dk_ioc
.dki_lba
= lba_backup_gpt_hdr
;
987 dk_ioc
.dki_length
= vtoc
->efi_lbasize
;
989 dk_ioc
.dki_data
= (efi_gpt_t
*)((char *)dk_ioc
.dki_data
-
991 efi
->efi_gpt_AlternateLBA
= LE_64(1ULL);
992 efi
->efi_gpt_MyLBA
= LE_64(lba_backup_gpt_hdr
);
993 efi
->efi_gpt_PartitionEntryLBA
= LE_64(vtoc
->efi_last_u_lba
+ 1);
994 efi
->efi_gpt_HeaderCRC32
= 0;
995 efi
->efi_gpt_HeaderCRC32
=
996 LE_32(efi_crc32((unsigned char *)dk_ioc
.dki_data
,
997 sizeof (struct efi_gpt
)));
999 if (efi_ioctl(fd
, DKIOCSETEFI
, &dk_ioc
) == -1) {
1001 (void) fprintf(stderr
,
1002 "write of backup header to block %llu failed, "
1008 /* write the PMBR */
1009 (void) write_pmbr(fd
, vtoc
);
1010 free(dk_ioc
.dki_data
);
1015 efi_free(struct dk_gpt
*ptr
)
1021 * Input: File descriptor
1022 * Output: 1 if disk has an EFI label, or > 2TB with no VTOC or legacy MBR.
1029 struct extvtoc extvtoc
;
1031 if (ioctl(fd
, DKIOCGEXTVTOC
, &extvtoc
) == -1) {
1032 if (errno
== ENOTSUP
)
1034 else if (errno
== ENOTTY
) {
1035 if (ioctl(fd
, DKIOCGVTOC
, &vtoc
) == -1)
1036 if (errno
== ENOTSUP
)
1044 efi_err_check(struct dk_gpt
*vtoc
)
1048 diskaddr_t istart
, jstart
, isize
, jsize
, endsect
;
1052 * make sure no partitions overlap
1054 for (i
= 0; i
< vtoc
->efi_nparts
; i
++) {
1055 /* It can't be unassigned and have an actual size */
1056 if ((vtoc
->efi_parts
[i
].p_tag
== V_UNASSIGNED
) &&
1057 (vtoc
->efi_parts
[i
].p_size
!= 0)) {
1058 (void) fprintf(stderr
,
1059 "partition %d is \"unassigned\" but has a size "
1060 "of %llu\n", i
, vtoc
->efi_parts
[i
].p_size
);
1062 if (vtoc
->efi_parts
[i
].p_tag
== V_UNASSIGNED
) {
1065 if (vtoc
->efi_parts
[i
].p_tag
== V_RESERVED
) {
1066 if (resv_part
!= -1) {
1067 (void) fprintf(stderr
,
1068 "found duplicate reserved partition at "
1072 if (vtoc
->efi_parts
[i
].p_size
!= EFI_MIN_RESV_SIZE
)
1073 (void) fprintf(stderr
,
1074 "Warning: reserved partition size must "
1075 "be %d sectors\n", EFI_MIN_RESV_SIZE
);
1077 if ((vtoc
->efi_parts
[i
].p_start
< vtoc
->efi_first_u_lba
) ||
1078 (vtoc
->efi_parts
[i
].p_start
> vtoc
->efi_last_u_lba
)) {
1079 (void) fprintf(stderr
,
1080 "Partition %d starts at %llu\n",
1082 vtoc
->efi_parts
[i
].p_start
);
1083 (void) fprintf(stderr
,
1084 "It must be between %llu and %llu.\n",
1085 vtoc
->efi_first_u_lba
,
1086 vtoc
->efi_last_u_lba
);
1088 if ((vtoc
->efi_parts
[i
].p_start
+
1089 vtoc
->efi_parts
[i
].p_size
<
1090 vtoc
->efi_first_u_lba
) ||
1091 (vtoc
->efi_parts
[i
].p_start
+
1092 vtoc
->efi_parts
[i
].p_size
>
1093 vtoc
->efi_last_u_lba
+ 1)) {
1094 (void) fprintf(stderr
,
1095 "Partition %d ends at %llu\n",
1097 vtoc
->efi_parts
[i
].p_start
+
1098 vtoc
->efi_parts
[i
].p_size
);
1099 (void) fprintf(stderr
,
1100 "It must be between %llu and %llu.\n",
1101 vtoc
->efi_first_u_lba
,
1102 vtoc
->efi_last_u_lba
);
1105 for (j
= 0; j
< vtoc
->efi_nparts
; j
++) {
1106 isize
= vtoc
->efi_parts
[i
].p_size
;
1107 jsize
= vtoc
->efi_parts
[j
].p_size
;
1108 istart
= vtoc
->efi_parts
[i
].p_start
;
1109 jstart
= vtoc
->efi_parts
[j
].p_start
;
1110 if ((i
!= j
) && (isize
!= 0) && (jsize
!= 0)) {
1111 endsect
= jstart
+ jsize
-1;
1112 if ((jstart
<= istart
) &&
1113 (istart
<= endsect
)) {
1115 (void) fprintf(stderr
,
1116 "label error: EFI Labels do not "
1117 "support overlapping partitions\n");
1119 (void) fprintf(stderr
,
1120 "Partition %d overlaps partition "
1127 /* make sure there is a reserved partition */
1128 if (resv_part
== -1) {
1129 (void) fprintf(stderr
,
1130 "no reserved partition found\n");
1135 * We need to get information necessary to construct a *new* efi
1139 efi_auto_sense(int fd
, struct dk_gpt
**vtoc
)
1145 * Now build the default partition table
1147 if (efi_alloc_and_init(fd
, EFI_NUMPAR
, vtoc
) != 0) {
1149 (void) fprintf(stderr
, "efi_alloc_and_init failed.\n");
1154 for (i
= 0; i
< min((*vtoc
)->efi_nparts
, V_NUMPAR
); i
++) {
1155 (*vtoc
)->efi_parts
[i
].p_tag
= default_vtoc_map
[i
].p_tag
;
1156 (*vtoc
)->efi_parts
[i
].p_flag
= default_vtoc_map
[i
].p_flag
;
1157 (*vtoc
)->efi_parts
[i
].p_start
= 0;
1158 (*vtoc
)->efi_parts
[i
].p_size
= 0;
1161 * Make constants first
1162 * and variable partitions later
1165 /* root partition - s0 128 MB */
1166 (*vtoc
)->efi_parts
[0].p_start
= 34;
1167 (*vtoc
)->efi_parts
[0].p_size
= 262144;
1169 /* partition - s1 128 MB */
1170 (*vtoc
)->efi_parts
[1].p_start
= 262178;
1171 (*vtoc
)->efi_parts
[1].p_size
= 262144;
1173 /* partition -s2 is NOT the Backup disk */
1174 (*vtoc
)->efi_parts
[2].p_tag
= V_UNASSIGNED
;
1176 /* partition -s6 /usr partition - HOG */
1177 (*vtoc
)->efi_parts
[6].p_start
= 524322;
1178 (*vtoc
)->efi_parts
[6].p_size
= (*vtoc
)->efi_last_u_lba
- 524322
1181 /* efi reserved partition - s9 16K */
1182 (*vtoc
)->efi_parts
[8].p_start
= (*vtoc
)->efi_last_u_lba
- (1024 * 16);
1183 (*vtoc
)->efi_parts
[8].p_size
= (1024 * 16);
1184 (*vtoc
)->efi_parts
[8].p_tag
= V_RESERVED
;