NetBSD/sbin/gpt/resizedisk.c

268 lines
6.9 KiB
C
Raw Normal View History

/*-
* Copyright (c) 2002 Marcel Moolenaar
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
2014-09-30 00:28:57 +04:00
#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#endif
#include <sys/cdefs.h>
#ifdef __FBSDID
__FBSDID("$FreeBSD: src/sbin/gpt/add.c,v 1.14 2006/06/22 22:05:28 marcel Exp $");
#endif
#ifdef __RCSID
__RCSID("$NetBSD: resizedisk.c,v 1.8 2015/12/01 09:05:33 christos Exp $");
#endif
#include <sys/bootblock.h>
#include <sys/types.h>
#include <err.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "map.h"
#include "gpt.h"
#include "gpt_private.h"
static off_t sector, size;
const char resizediskmsg[] = "resizedisk [-s size]";
static int
usage_resizedisk(void)
{
fprintf(stderr,
"usage: %s %s\n", getprogname(), resizediskmsg);
return -1;
}
/*
* relocate the secondary GPT based on the following criteria:
* - size not specified
* - disk has not changed size, do nothing
* - disk has grown, relocate secondary
* - disk has shrunk, create new secondary
* - size specified
* - size is larger then disk or same as current location, do nothing
* - relocate or create new secondary
* - when shrinking, verify that table fits
*/
static int
resizedisk(gpt_t gpt)
{
map_t mbrmap;
struct gpt_hdr *hdr;
struct gpt_ent *ent;
struct mbr *mbr;
off_t last, oldloc, newloc, lastdata, gpt_size;
int i;
last = gpt->mediasz / gpt->secsz - 1;
lastdata = 0;
newloc = 0;
if (sector > last) {
gpt_warnx(gpt, "specified size is larger then the disk");
return -1;
}
mbrmap = map_find(gpt, MAP_TYPE_PMBR);
if (mbrmap == NULL || mbrmap->map_start != 0) {
gpt_warnx(gpt, "No valid PMBR found");
return -1;
}
mbr = mbrmap->map_data;
gpt->gpt = map_find(gpt, MAP_TYPE_PRI_GPT_HDR);
ent = NULL;
if (gpt == NULL) {
gpt_warnx(gpt, "No primary GPT header; run create or recover");
return -1;
}
hdr = gpt->gpt->map_data;
oldloc = le64toh(hdr->hdr_lba_alt);
gpt->tpg = map_find(gpt, MAP_TYPE_SEC_GPT_HDR);
if (gpt->tpg == NULL)
if (gpt_gpt(gpt, oldloc, 1))
gpt->tpg = map_find(gpt, MAP_TYPE_SEC_GPT_HDR);
gpt->tbl = map_find(gpt, MAP_TYPE_PRI_GPT_TBL);
if (gpt->tbl == NULL) {
gpt_warnx(gpt, "Run recover");
return -1;
}
gpt_size = gpt->tbl->map_size;
if (sector == oldloc) {
gpt_warnx(gpt, "Device is already the specified size");
return 0;
}
if (sector == 0 && last == oldloc) {
gpt_warnx(gpt, "Device hasn't changed size");
return 0;
}
for (ent = gpt->tbl->map_data; ent <
(struct gpt_ent *)((char *)gpt->tbl->map_data +
le32toh(hdr->hdr_entries) * le32toh(hdr->hdr_entsz)); ent++) {
if (!gpt_uuid_is_nil(ent->ent_type) &&
((off_t)le64toh(ent->ent_lba_end) > lastdata)) {
lastdata = le64toh(ent->ent_lba_end);
}
}
if (sector - gpt_size <= lastdata) {
gpt_warnx(gpt, "Not enough space at %" PRIu64
" for secondary GPT table", sector);
return -1;
}
if (last - gpt_size <= lastdata) {
gpt_warnx(gpt, "Not enough space for new secondary GPT table");
return -1;
}
if (sector > oldloc)
newloc = sector;
if (sector > 0 && sector < oldloc && last >= oldloc)
newloc = sector;
if (sector == 0 && last > oldloc)
newloc = last;
if (newloc > 0) {
if (gpt->tpg == NULL) {
gpt_warnx(gpt, "No secondary GPT header; run recover");
return -1;
}
if (gpt->lbt == NULL) {
gpt_warnx(gpt, "Run recover");
return -1;
}
gpt->tpg->map_start = newloc;
gpt->lbt->map_start = newloc - gpt_size;
} else {
if (sector > 0)
newloc = sector;
else
newloc = last;
gpt->tpg = map_add(gpt, newloc, 1LL, MAP_TYPE_SEC_GPT_HDR,
calloc(1, gpt->secsz));
gpt->lbt = map_add(gpt, newloc - gpt_size, gpt_size,
MAP_TYPE_SEC_GPT_TBL, gpt->tbl->map_data);
memcpy(gpt->tpg->map_data, gpt->gpt->map_data, gpt->secsz);
}
hdr = gpt->gpt->map_data;
hdr->hdr_lba_alt = gpt->tpg->map_start;
hdr->hdr_crc_self = 0;
hdr->hdr_lba_end = htole64(gpt->lbt->map_start - 1);
hdr->hdr_crc_self =
htole32(crc32(gpt->gpt->map_data, GPT_HDR_SIZE));
gpt_write(gpt, gpt->gpt);
hdr = gpt->tpg->map_data;
hdr->hdr_lba_self = htole64(gpt->tpg->map_start);
hdr->hdr_lba_alt = htole64(gpt->gpt->map_start);
hdr->hdr_lba_end = htole64(gpt->lbt->map_start - 1);
hdr->hdr_lba_table = htole64(gpt->lbt->map_start);
if (gpt_write_backup(gpt) == -1)
return -1;
for (i = 0; i < 4; i++)
if (mbr->mbr_part[0].part_typ == MBR_PTYPE_PMBR)
break;
if (i == 4) {
gpt_warnx(gpt, "No valid PMBR partition found");
return -1;
}
if (last > 0xffffffff) {
mbr->mbr_part[0].part_size_lo = htole16(0xffff);
mbr->mbr_part[0].part_size_hi = htole16(0xffff);
} else {
mbr->mbr_part[0].part_size_lo = htole16(last);
mbr->mbr_part[0].part_size_hi = htole16(last >> 16);
}
if (gpt_write(gpt, mbrmap) == -1) {
gpt_warnx(gpt, "Error writing PMBR");
return -1;
}
return 0;
}
int
cmd_resizedisk(gpt_t gpt, int argc, char *argv[])
{
char *p;
int ch;
int64_t human_num;
while ((ch = getopt(argc, argv, "s:")) != -1) {
switch(ch) {
case 's':
if (sector > 0 || size > 0)
return usage_resizedisk();
sector = strtoll(optarg, &p, 10);
if (sector < 1)
return usage_resizedisk();
if (*p == '\0')
break;
if (*p == 's' || *p == 'S') {
if (*(p + 1) == '\0')
break;
else
return usage_resizedisk();
}
if (*p == 'b' || *p == 'B') {
if (*(p + 1) == '\0') {
size = sector;
sector = 0;
break;
} else
return usage_resizedisk();
}
if (dehumanize_number(optarg, &human_num) < 0)
return usage_resizedisk();
size = human_num;
sector = 0;
break;
default:
return usage_resizedisk();
}
}
if (argc != optind)
return usage_resizedisk();
if ((sector = gpt_check(gpt, 0, size)) == -1)
return -1;
return resizedisk(gpt);
}