/* $OpenBSD: gpt.c,v 1.45 2021/07/16 13:29:49 krw Exp $ */ /* * Copyright (c) 2015 Markus Muller * Copyright (c) 2015 Kenneth R Westerback * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include /* DEV_BSIZE */ #include #include #include #include #include #include #include #include #include #include "part.h" #include "disk.h" #include "misc.h" #include "gpt.h" #ifdef DEBUG #define DPRINTF(x...) printf(x) #else #define DPRINTF(x...) #endif struct gpt_header gh; struct gpt_partition gp[NGPTPARTITIONS]; struct gpt_partition **sort_gpt(void); int lba_start_cmp(const void *e1, const void *e2); int lba_free(uint64_t *, uint64_t *); int add_partition(const uint8_t *, const char *, uint64_t); int get_header(const uint64_t); int get_partition_table(void); int init_gh(void); int init_gp(const int); uint32_t crc32(const u_char *, const uint32_t); int get_header(const uint64_t sector) { char *secbuf; uint64_t partlastlba, partslen, lba_end; int partspersec; uint32_t orig_gh_csum, new_gh_csum; secbuf = DISK_readsector(sector); if (secbuf == NULL) return -1; memcpy(&gh, secbuf, sizeof(struct gpt_header)); free(secbuf); if (letoh64(gh.gh_sig) != GPTSIGNATURE) { DPRINTF("gpt signature: expected 0x%llx, got 0x%llx\n", GPTSIGNATURE, letoh64(gh.gh_sig)); return -1; } if (letoh32(gh.gh_rev) != GPTREVISION) { DPRINTF("gpt revision: expected 0x%x, got 0x%x\n", GPTREVISION, letoh32(gh.gh_rev)); return -1; } if (letoh64(gh.gh_lba_self) != sector) { DPRINTF("gpt self lba: expected %llu, got %llu\n", sector, letoh64(gh.gh_lba_self)); return -1; } if (letoh32(gh.gh_size) != GPTMINHDRSIZE) { DPRINTF("gpt header size: expected %u, got %u\n", GPTMINHDRSIZE, letoh32(gh.gh_size)); return -1; } if (letoh32(gh.gh_part_size) != GPTMINPARTSIZE) { DPRINTF("gpt partition size: expected %u, got %u\n", GPTMINPARTSIZE, letoh32(gh.gh_part_size)); return -1; } if (letoh32(gh.gh_part_num) > NGPTPARTITIONS) { DPRINTF("gpt partition count: expected <= %u, got %u\n", NGPTPARTITIONS, letoh32(gh.gh_part_num)); return -1; } orig_gh_csum = gh.gh_csum; gh.gh_csum = 0; new_gh_csum = crc32((unsigned char *)&gh, letoh32(gh.gh_size)); gh.gh_csum = orig_gh_csum; if (letoh32(orig_gh_csum) != new_gh_csum) { DPRINTF("gpt header checksum: expected 0x%x, got 0x%x\n", orig_gh_csum, new_gh_csum); return -1; } /* XXX Assume part_num * part_size is multiple of secsize. */ partslen = letoh32(gh.gh_part_num) * letoh32(gh.gh_part_size) / dl.d_secsize; lba_end = DL_GETDSIZE(&dl) - partslen - 2; if (letoh64(gh.gh_lba_end) > lba_end) { DPRINTF("gpt last usable LBA: reduced from %llu to %llu\n", letoh64(gh.gh_lba_end), lba_end); gh.gh_lba_end = htole64(lba_end); } if (letoh64(gh.gh_lba_start) >= letoh64(gh.gh_lba_end)) { DPRINTF("gpt first usable LBA: expected < %llu, got %llu\n", letoh64(gh.gh_lba_end), letoh64(gh.gh_lba_start)); return -1; } if (letoh64(gh.gh_part_lba) <= letoh64(gh.gh_lba_end) && letoh64(gh.gh_part_lba) >= letoh64(gh.gh_lba_start)) { DPRINTF("gpt partition table start lba: expected < %llu or " "> %llu, got %llu\n", letoh64(gh.gh_lba_start), letoh64(gh.gh_lba_end), letoh64(gh.gh_part_lba)); return -1; } partspersec = dl.d_secsize / letoh32(gh.gh_part_size); partlastlba = letoh64(gh.gh_part_lba) + ((letoh32(gh.gh_part_num) + partspersec - 1) / partspersec) - 1; if (partlastlba <= letoh64(gh.gh_lba_end) && partlastlba >= letoh64(gh.gh_lba_start)) { DPRINTF("gpt partition table last LBA: expected < %llu or " "> %llu, got %llu\n", letoh64(gh.gh_lba_start), letoh64(gh.gh_lba_end), partlastlba); return -1; } /* * Other possible paranoia checks: * 1) partition table starts before primary gpt lba. * 2) partition table extends into lowest partition. * 3) alt partition table starts before gh_lba_end. */ return 0; } int get_partition_table(void) { ssize_t len; off_t off, where; int secs; uint32_t checksum, partspersec; DPRINTF("gpt partition table being read from LBA %llu\n", letoh64(gh.gh_part_lba)); partspersec = dl.d_secsize / letoh32(gh.gh_part_size); if (partspersec * letoh32(gh.gh_part_size) != dl.d_secsize) { DPRINTF("gpt partition table entry invalid size. %u\n", letoh32(gh.gh_part_size)); return -1; } secs = (letoh32(gh.gh_part_num) + partspersec - 1) / partspersec; memset(&gp, 0, sizeof(gp)); where = letoh64(gh.gh_part_lba) * dl.d_secsize; off = lseek(disk.dk_fd, where, SEEK_SET); if (off == -1) { DPRINTF("seek to gpt partition table @ sector %llu failed\n", (unsigned long long)where / dl.d_secsize); return -1; } len = read(disk.dk_fd, &gp, secs * dl.d_secsize); if (len == -1 || len != secs * dl.d_secsize) { DPRINTF("gpt partition table read failed.\n"); return -1; } checksum = crc32((unsigned char *)&gp, letoh32(gh.gh_part_num) * letoh32(gh.gh_part_size)); if (checksum != letoh32(gh.gh_part_csum)) { DPRINTF("gpt partition table checksum: expected %x, got %x\n", checksum, letoh32(gh.gh_part_csum)); return -1; } return 0; } void GPT_read(const int which) { int valid; switch (which) { case PRIMARYGPT: valid = get_header(GPTSECTOR); break; case SECONDARYGPT: valid = get_header(DL_GETDSIZE(&dl) - 1); break; case ANYGPT: valid = get_header(GPTSECTOR); if (valid != 0 || get_partition_table() != 0) valid = get_header(DL_GETDSIZE(&dl) - 1); break; default: return; } if (valid == 0) valid = get_partition_table(); if (valid != 0) { /* No valid GPT found. Zap any artifacts. */ memset(&gh, 0, sizeof(gh)); memset(&gp, 0, sizeof(gp)); } } void GPT_print(const char *units, const int verbosity) { const int secsize = unit_types[SECTORS].ut_conversion; struct uuid guid; char *guidstr = NULL; double size; int i, u, status; u = unit_lookup(units); size = ((double)DL_GETDSIZE(&dl) * secsize) / unit_types[u].ut_conversion; printf("Disk: %s Usable LBA: %llu to %llu [%.0f ", disk.dk_name, letoh64(gh.gh_lba_start), letoh64(gh.gh_lba_end), size); if (u == SECTORS && secsize != DEV_BSIZE) printf("%d-byte ", secsize); printf("%s]\n", unit_types[u].ut_lname); if (verbosity == VERBOSE) { printf("GUID: "); uuid_dec_le(&gh.gh_guid, &guid); uuid_to_string(&guid, &guidstr, &status); if (status == uuid_s_ok) printf("%s\n", guidstr); else printf("\n"); free(guidstr); } GPT_print_parthdr(verbosity); for (i = 0; i < letoh32(gh.gh_part_num); i++) { if (uuid_is_nil(&gp[i].gp_type, NULL)) continue; GPT_print_part(i, units, verbosity); } } void GPT_print_parthdr(const int verbosity) { printf(" #: type " " [ start: size ]\n"); if (verbosity == VERBOSE) printf(" guid name\n"); printf("--------------------------------------------------------" "----------------\n"); } void GPT_print_part(const int n, const char *units, const int verbosity) { struct uuid guid; struct gpt_partition *partn = &gp[n]; char *guidstr = NULL; const int secsize = unit_types[SECTORS].ut_conversion; double size; int u, status; uuid_dec_le(&partn->gp_type, &guid); u = unit_lookup(units); size = letoh64(partn->gp_lba_end) - letoh64(partn->gp_lba_start) + 1; size = (size * secsize) / unit_types[u].ut_conversion; printf("%c%3d: %-36s [%12lld: %12.0f%s]\n", (letoh64(partn->gp_attrs) & GPTDOSACTIVE)?'*':' ', n, PRT_uuid_to_typename(&guid), letoh64(partn->gp_lba_start), size, unit_types[u].ut_abbr); if (verbosity == VERBOSE) { uuid_dec_le(&partn->gp_guid, &guid); uuid_to_string(&guid, &guidstr, &status); if (status != uuid_s_ok) printf(" "); else printf(" %-36s ", guidstr); printf("%-36s\n", utf16le_to_string(partn->gp_name)); free(guidstr); } } int add_partition(const uint8_t *beuuid, const char *name, uint64_t sectors) { struct uuid uuid, gp_type; int rslt; uint64_t end, freesectors, start; uint32_t status, pn, pncnt; uuid_dec_be(beuuid, &uuid); uuid_enc_le(&gp_type, &uuid); pncnt = letoh32(gh.gh_part_num); for (pn = 0; pn < pncnt; pn++) { if (uuid_is_nil(&gp[pn].gp_type, NULL)) break; } if (pn == pncnt) goto done; rslt = lba_free(&start, &end); if (rslt == -1) goto done; if (start % BLOCKALIGNMENT) start += (BLOCKALIGNMENT - start % BLOCKALIGNMENT); if (start >= end) goto done; freesectors = end - start + 1; if (sectors == 0) sectors = freesectors; if (freesectors < sectors) goto done; else if (freesectors > sectors) end = start + sectors - 1; gp[pn].gp_type = gp_type; gp[pn].gp_lba_start = htole64(start); gp[pn].gp_lba_end = htole64(end); memcpy(gp[pn].gp_name, string_to_utf16le(name), sizeof(gp[pn].gp_name)); uuid_create(&uuid, &status); if (status != uuid_s_ok) goto done; uuid_enc_le(&gp[pn].gp_guid, &uuid); gh.gh_part_csum = crc32((unsigned char *)&gp, sizeof(gp)); gh.gh_csum = crc32((unsigned char *)&gh, sizeof(gh)); return 0; done: if (pn != pncnt) memset(&gp[pn], 0, sizeof(gp[pn])); printf("unable to add %s\n", name); return -1; } int init_gh(void) { struct gpt_header oldgh; struct uuid guid; const int secsize = unit_types[SECTORS].ut_conversion; int needed; uint32_t status; memcpy(&oldgh, &gh, sizeof(oldgh)); memset(&gh, 0, sizeof(gh)); needed = sizeof(gp) / secsize + 2; if (needed % BLOCKALIGNMENT) needed += (needed - (needed % BLOCKALIGNMENT)); gh.gh_sig = htole64(GPTSIGNATURE); gh.gh_rev = htole32(GPTREVISION); gh.gh_size = htole32(GPTMINHDRSIZE); gh.gh_csum = 0; gh.gh_rsvd = 0; gh.gh_lba_self = htole64(1); gh.gh_lba_alt = htole64(DL_GETDSIZE(&dl) - 1); gh.gh_lba_start = htole64(needed); gh.gh_lba_end = htole64(DL_GETDSIZE(&dl) - needed); gh.gh_part_lba = htole64(2); gh.gh_part_num = htole32(NGPTPARTITIONS); gh.gh_part_size = htole32(GPTMINPARTSIZE); uuid_create(&guid, &status); if (status != uuid_s_ok) { memcpy(&gh, &oldgh, sizeof(gh)); return -1; } uuid_enc_le(&gh.gh_guid, &guid); return 0; } int init_gp(const int how) { struct gpt_partition oldgp[NGPTPARTITIONS]; const uint8_t gpt_uuid_efi_system[] = GPT_UUID_EFI_SYSTEM; const uint8_t gpt_uuid_openbsd[] = GPT_UUID_OPENBSD; int pn, rslt; memcpy(&oldgp, &gp, sizeof(oldgp)); if (how == GHANDGP) memset(&gp, 0, sizeof(gp)); else { for (pn = 0; pn < NGPTPARTITIONS; pn++) { if (PRT_protected_guid(&gp[pn].gp_type)) continue; memset(&gp[pn], 0, sizeof(gp[pn])); } } rslt = 0; if (disk.dk_bootprt.prt_ns > 0) { rslt = add_partition(gpt_uuid_efi_system, "EFI System Area", disk.dk_bootprt.prt_ns); } if (rslt == 0) rslt = add_partition(gpt_uuid_openbsd, "OpenBSD Area", 0); if (rslt != 0) memcpy(&gp, &oldgp, sizeof(gp)); return rslt; } int GPT_init(const int how) { int rslt = 0; if (how == GHANDGP) rslt = init_gh(); if (rslt == 0) rslt = init_gp(how); return rslt; } void GPT_zap_headers(void) { char *secbuf; uint64_t sig; secbuf = DISK_readsector(GPTSECTOR); if (secbuf == NULL) return; memcpy(&sig, secbuf, sizeof(sig)); if (letoh64(sig) == GPTSIGNATURE) { memset(secbuf, 0, dl.d_secsize); DISK_writesector(secbuf, GPTSECTOR); } free(secbuf); secbuf = DISK_readsector(DL_GETDSIZE(&dl) - 1); if (secbuf == NULL) return; memcpy(&sig, secbuf, sizeof(sig)); if (letoh64(sig) == GPTSIGNATURE) { memset(secbuf, 0, dl.d_secsize); DISK_writesector(secbuf, DL_GETDSIZE(&dl) - 1); } free(secbuf); } int GPT_write(void) { char *secbuf; ssize_t len; off_t off; const int secsize = unit_types[SECTORS].ut_conversion; uint64_t altgh, altgp, prigh, prigp, gpbytes; /* * XXX Assume size of gp is multiple of sector size. */ gpbytes = letoh32(gh.gh_part_num) * letoh32(gh.gh_part_size); prigh = GPTSECTOR; prigp = prigh + 1; altgh = DL_GETDSIZE(&dl) - 1; altgp = DL_GETDSIZE(&dl) - 1 - (gpbytes / secsize); gh.gh_lba_self = htole64(prigh); gh.gh_lba_alt = htole64(altgh); gh.gh_part_lba = htole64(prigp); gh.gh_part_csum = crc32((unsigned char *)&gp, gpbytes); gh.gh_csum = 0; gh.gh_csum = crc32((unsigned char *)&gh, letoh32(gh.gh_size)); secbuf = DISK_readsector(prigh); if (secbuf == NULL) return -1; memcpy(secbuf, &gh, sizeof(gh)); DISK_writesector(secbuf, prigh); free(secbuf); gh.gh_lba_self = htole64(altgh); gh.gh_lba_alt = htole64(prigh); gh.gh_part_lba = htole64(altgp); gh.gh_csum = 0; gh.gh_csum = crc32((unsigned char *)&gh, letoh32(gh.gh_size)); secbuf = DISK_readsector(altgh); if (secbuf == NULL) return -1; memcpy(secbuf, &gh, sizeof(gh)); DISK_writesector(secbuf, altgh); free(secbuf); off = lseek(disk.dk_fd, secsize * prigp, SEEK_SET); if (off == secsize * prigp) len = write(disk.dk_fd, &gp, gpbytes); else len = -1; if (len == -1 || len != gpbytes) { errno = EIO; return -1; } off = lseek(disk.dk_fd, secsize * altgp, SEEK_SET); if (off == secsize * altgp) len = write(disk.dk_fd, &gp, gpbytes); else len = -1; if (len == -1 || len != gpbytes) { errno = EIO; return -1; } /* Refresh in-kernel disklabel from the updated disk information. */ ioctl(disk.dk_fd, DIOCRLDINFO, 0); return 0; } int gp_lba_start_cmp(const void *e1, const void *e2) { struct gpt_partition *p1 = *(struct gpt_partition **)e1; struct gpt_partition *p2 = *(struct gpt_partition **)e2; uint64_t o1; uint64_t o2; o1 = letoh64(p1->gp_lba_start); o2 = letoh64(p2->gp_lba_start); if (o1 < o2) return -1; else if (o1 > o2) return 1; else return 0; } struct gpt_partition ** sort_gpt(void) { static struct gpt_partition *sgp[NGPTPARTITIONS+2]; unsigned int i, j; memset(sgp, 0, sizeof(sgp)); j = 0; for (i = 0; i < letoh32(gh.gh_part_num); i++) { if (letoh64(gp[i].gp_lba_start) >= letoh64(gh.gh_lba_start)) sgp[j++] = &gp[i]; } if (j > 1) { if (mergesort(sgp, j, sizeof(sgp[0]), gp_lba_start_cmp) == -1) { printf("unable to sort gpt by lba start\n"); return NULL; } } return sgp; } int lba_free(uint64_t *start, uint64_t *end) { struct gpt_partition **sgp; uint64_t bs, bigbs, nextbs, ns; unsigned int i; sgp = sort_gpt(); if (sgp == NULL) return -1; bs = letoh64(gh.gh_lba_start); ns = letoh64(gh.gh_lba_end) - bs + 1; if (sgp[0] != NULL) { bigbs = bs; ns = 0; for (i = 0; sgp[i] != NULL; i++) { nextbs = letoh64(sgp[i]->gp_lba_start); if (bs < nextbs && ns < nextbs - bs) { ns = nextbs - bs; bigbs = bs; } bs = letoh64(sgp[i]->gp_lba_end) + 1; } nextbs = letoh64(gh.gh_lba_end) + 1; if (bs < nextbs && ns < nextbs - bs) { ns = nextbs - bs; bigbs = bs; } bs = bigbs; } if (ns == 0) return -1; if (start != NULL) *start = bs; if (end != NULL) *end = bs + ns - 1; return 0; } int GPT_get_lba_start(const unsigned int pn) { uint64_t bs; unsigned int i; int rslt; bs = letoh64(gh.gh_lba_start); if (letoh64(gp[pn].gp_lba_start) >= bs) { bs = letoh64(gp[pn].gp_lba_start); } else { rslt = lba_free(&bs, NULL); if (rslt == -1) { printf("no space for partition %u\n", pn); return -1; } } bs = getuint64("Partition offset", bs, letoh64(gh.gh_lba_start), letoh64(gh.gh_lba_end)); for (i = 0; i < letoh32(gh.gh_part_num); i++) { if (i == pn) continue; if (bs >= letoh64(gp[i].gp_lba_start) && bs <= letoh64(gp[i].gp_lba_end)) { printf("partition %u can't start inside partition %u\n", pn, i); return -1; } } gp[pn].gp_lba_start = htole64(bs); return 0; } int GPT_get_lba_end(const unsigned int pn) { struct gpt_partition **sgp; uint64_t bs, nextbs, ns; unsigned int i; sgp = sort_gpt(); if (sgp == NULL) return -1; bs = letoh64(gp[pn].gp_lba_start); ns = letoh64(gh.gh_lba_end) - bs + 1; for (i = 0; sgp[i] != NULL; i++) { nextbs = letoh64(sgp[i]->gp_lba_start); if (nextbs > bs) { ns = nextbs - bs; break; } } ns = getuint64("Partition size", ns, 1, ns); gp[pn].gp_lba_end = htole64(bs + ns - 1); return 0; } /* * Adapted from Hacker's Delight crc32b(). * * To quote http://www.hackersdelight.org/permissions.htm : * * "You are free to use, copy, and distribute any of the code on * this web site, whether modified by you or not. You need not give * attribution. This includes the algorithms (some of which appear * in Hacker's Delight), the Hacker's Assistant, and any code submitted * by readers. Submitters implicitly agree to this." */ uint32_t crc32(const u_char *buf, const uint32_t size) { int j; uint32_t i, byte, crc, mask; crc = 0xFFFFFFFF; for (i = 0; i < size; i++) { byte = buf[i]; /* Get next byte. */ crc = crc ^ byte; for (j = 7; j >= 0; j--) { /* Do eight times. */ mask = -(crc & 1); crc = (crc >> 1) ^ (0xEDB88320 & mask); } } return ~crc; }