resizedisk.c revision 1.3 1 1.1 jnemeth /*-
2 1.1 jnemeth * Copyright (c) 2002 Marcel Moolenaar
3 1.1 jnemeth * All rights reserved.
4 1.1 jnemeth *
5 1.1 jnemeth * Redistribution and use in source and binary forms, with or without
6 1.1 jnemeth * modification, are permitted provided that the following conditions
7 1.1 jnemeth * are met:
8 1.1 jnemeth *
9 1.1 jnemeth * 1. Redistributions of source code must retain the above copyright
10 1.1 jnemeth * notice, this list of conditions and the following disclaimer.
11 1.1 jnemeth * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 jnemeth * notice, this list of conditions and the following disclaimer in the
13 1.1 jnemeth * documentation and/or other materials provided with the distribution.
14 1.1 jnemeth *
15 1.1 jnemeth * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 1.1 jnemeth * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 1.1 jnemeth * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 1.1 jnemeth * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 1.1 jnemeth * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 1.1 jnemeth * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 1.1 jnemeth * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 1.1 jnemeth * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 1.1 jnemeth * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 1.1 jnemeth * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 1.1 jnemeth */
26 1.1 jnemeth
27 1.3 christos #if HAVE_NBTOOL_CONFIG_H
28 1.3 christos #include "nbtool_config.h"
29 1.3 christos #endif
30 1.3 christos
31 1.1 jnemeth #include <sys/cdefs.h>
32 1.1 jnemeth #ifdef __FBSDID
33 1.1 jnemeth __FBSDID("$FreeBSD: src/sbin/gpt/add.c,v 1.14 2006/06/22 22:05:28 marcel Exp $");
34 1.1 jnemeth #endif
35 1.1 jnemeth #ifdef __RCSID
36 1.3 christos __RCSID("$NetBSD: resizedisk.c,v 1.3 2014/09/29 20:28:57 christos Exp $");
37 1.1 jnemeth #endif
38 1.1 jnemeth
39 1.1 jnemeth #include <sys/bootblock.h>
40 1.1 jnemeth #include <sys/types.h>
41 1.1 jnemeth
42 1.1 jnemeth #include <err.h>
43 1.1 jnemeth #include <stddef.h>
44 1.1 jnemeth #include <stdio.h>
45 1.1 jnemeth #include <stdlib.h>
46 1.1 jnemeth #include <string.h>
47 1.1 jnemeth #include <unistd.h>
48 1.1 jnemeth #include <inttypes.h>
49 1.1 jnemeth
50 1.1 jnemeth #include "map.h"
51 1.1 jnemeth #include "gpt.h"
52 1.1 jnemeth
53 1.1 jnemeth static uint64_t sector, size;
54 1.1 jnemeth
55 1.1 jnemeth const char resizediskmsg[] = "resizedisk [-s size] device ...";
56 1.1 jnemeth
57 1.1 jnemeth __dead static void
58 1.1 jnemeth usage_resizedisk(void)
59 1.1 jnemeth {
60 1.1 jnemeth
61 1.1 jnemeth fprintf(stderr,
62 1.1 jnemeth "usage: %s %s\n", getprogname(), resizediskmsg);
63 1.1 jnemeth exit(1);
64 1.1 jnemeth }
65 1.1 jnemeth
66 1.1 jnemeth /*
67 1.1 jnemeth * relocate the secondary GPT based on the following criteria:
68 1.1 jnemeth * - size not specified
69 1.1 jnemeth * - disk has not changed size, do nothing
70 1.1 jnemeth * - disk has grown, relocate secondary
71 1.1 jnemeth * - disk has shrunk, create new secondary
72 1.1 jnemeth * - size specified
73 1.1 jnemeth * - size is larger then disk or same as current location, do nothing
74 1.1 jnemeth * - relocate or create new secondary
75 1.1 jnemeth * - when shrinking, verify that table fits
76 1.1 jnemeth */
77 1.1 jnemeth static void
78 1.1 jnemeth resizedisk(int fd)
79 1.1 jnemeth {
80 1.1 jnemeth uuid_t uuid;
81 1.1 jnemeth map_t *gpt, *tpg;
82 1.1 jnemeth map_t *tbl, *lbt;
83 1.1 jnemeth map_t *mbrmap;
84 1.1 jnemeth struct gpt_hdr *hdr;
85 1.1 jnemeth struct gpt_ent *ent;
86 1.1 jnemeth struct mbr *mbr;
87 1.1 jnemeth uint64_t last, oldloc, newloc, lastdata, gpt_size;
88 1.1 jnemeth int i;
89 1.1 jnemeth
90 1.1 jnemeth last = mediasz / secsz - 1;
91 1.1 jnemeth lastdata = 0;
92 1.1 jnemeth newloc = 0;
93 1.1 jnemeth
94 1.1 jnemeth if (sector > last) {
95 1.1 jnemeth warnx("%s: specified size is larger then the disk",
96 1.1 jnemeth device_name);
97 1.1 jnemeth return;
98 1.1 jnemeth }
99 1.1 jnemeth
100 1.1 jnemeth mbrmap = map_find(MAP_TYPE_PMBR);
101 1.1 jnemeth if (mbrmap == NULL || mbrmap->map_start != 0) {
102 1.1 jnemeth warnx("%s: error: no valid Protective MBR found", device_name);
103 1.1 jnemeth return;
104 1.1 jnemeth }
105 1.1 jnemeth mbr = mbrmap->map_data;
106 1.1 jnemeth
107 1.1 jnemeth gpt = map_find(MAP_TYPE_PRI_GPT_HDR);
108 1.1 jnemeth ent = NULL;
109 1.1 jnemeth if (gpt == NULL) {
110 1.1 jnemeth warnx("%s: error: no primary GPT header; run create or recover",
111 1.1 jnemeth device_name);
112 1.1 jnemeth return;
113 1.1 jnemeth }
114 1.1 jnemeth hdr = gpt->map_data;
115 1.1 jnemeth oldloc = le64toh(hdr->hdr_lba_alt);
116 1.1 jnemeth
117 1.1 jnemeth tpg = map_find(MAP_TYPE_SEC_GPT_HDR);
118 1.1 jnemeth if (tpg == NULL)
119 1.1 jnemeth if (gpt_gpt(fd, oldloc, 1))
120 1.1 jnemeth tpg = map_find(MAP_TYPE_SEC_GPT_HDR);
121 1.1 jnemeth
122 1.1 jnemeth tbl = map_find(MAP_TYPE_PRI_GPT_TBL);
123 1.1 jnemeth lbt = map_find(MAP_TYPE_SEC_GPT_TBL);
124 1.1 jnemeth if (tbl == NULL) {
125 1.1 jnemeth warnx("%s: error: run recover -- trust me", device_name);
126 1.1 jnemeth return;
127 1.1 jnemeth }
128 1.1 jnemeth
129 1.1 jnemeth gpt_size = tbl->map_size;
130 1.1 jnemeth if (sector == oldloc) {
131 1.1 jnemeth warnx("%s: device is already the specified size", device_name);
132 1.1 jnemeth return;
133 1.1 jnemeth }
134 1.1 jnemeth if (sector == 0 && last == oldloc) {
135 1.1 jnemeth warnx("%s: device hasn't changed size", device_name);
136 1.1 jnemeth return;
137 1.1 jnemeth }
138 1.1 jnemeth
139 1.1 jnemeth for (ent = tbl->map_data; ent <
140 1.1 jnemeth (struct gpt_ent *)((char *)tbl->map_data +
141 1.1 jnemeth le32toh(hdr->hdr_entries) * le32toh(hdr->hdr_entsz)); ent++) {
142 1.1 jnemeth le_uuid_dec(ent->ent_type, &uuid);
143 1.1 jnemeth if (!uuid_is_nil(&uuid, NULL) &&
144 1.1 jnemeth (le64toh(ent->ent_lba_end) > lastdata)) {
145 1.1 jnemeth lastdata = le64toh(ent->ent_lba_end);
146 1.1 jnemeth }
147 1.1 jnemeth }
148 1.1 jnemeth if (sector - gpt_size <= lastdata) {
149 1.2 msaitoh warnx("%s: not enough space at %" PRIu64
150 1.2 msaitoh " for secondary GPT table", device_name, sector);
151 1.1 jnemeth return;
152 1.1 jnemeth }
153 1.1 jnemeth if (last - gpt_size <= lastdata) {
154 1.1 jnemeth warnx("%s: not enough space for new secondary GPT table",
155 1.1 jnemeth device_name);
156 1.1 jnemeth return;
157 1.1 jnemeth }
158 1.1 jnemeth
159 1.1 jnemeth if (sector > oldloc)
160 1.1 jnemeth newloc = sector;
161 1.1 jnemeth if (sector > 0 && sector < oldloc && last >= oldloc)
162 1.1 jnemeth newloc = sector;
163 1.1 jnemeth if (sector == 0 && last > oldloc)
164 1.1 jnemeth newloc = last;
165 1.1 jnemeth if (newloc > 0) {
166 1.1 jnemeth if (tpg == NULL) {
167 1.1 jnemeth warnx("%s: error: no secondary GPT header; run recover",
168 1.1 jnemeth device_name);
169 1.1 jnemeth return;
170 1.1 jnemeth }
171 1.1 jnemeth if (lbt == NULL) {
172 1.1 jnemeth warnx("%s: error: run recover -- trust me",
173 1.1 jnemeth device_name);
174 1.1 jnemeth return;
175 1.1 jnemeth }
176 1.1 jnemeth tpg->map_start = newloc;
177 1.1 jnemeth lbt->map_start = newloc - gpt_size;
178 1.1 jnemeth } else {
179 1.1 jnemeth if (sector > 0)
180 1.1 jnemeth newloc = sector;
181 1.1 jnemeth else
182 1.1 jnemeth newloc = last;
183 1.1 jnemeth tpg = map_add(newloc, 1LL, MAP_TYPE_SEC_GPT_HDR,
184 1.1 jnemeth calloc(1, secsz));
185 1.1 jnemeth lbt = map_add(newloc - gpt_size, gpt_size, MAP_TYPE_SEC_GPT_TBL,
186 1.1 jnemeth tbl->map_data);
187 1.1 jnemeth memcpy(tpg->map_data, gpt->map_data, secsz);
188 1.1 jnemeth }
189 1.1 jnemeth
190 1.1 jnemeth hdr = gpt->map_data;
191 1.1 jnemeth hdr->hdr_lba_alt = tpg->map_start;
192 1.1 jnemeth hdr->hdr_crc_self = 0;
193 1.1 jnemeth hdr->hdr_crc_self =
194 1.1 jnemeth htole32(crc32(gpt->map_data, GPT_HDR_SIZE));
195 1.1 jnemeth gpt_write(fd, gpt);
196 1.1 jnemeth
197 1.1 jnemeth hdr = tpg->map_data;
198 1.1 jnemeth hdr->hdr_lba_self = htole64(tpg->map_start);
199 1.1 jnemeth hdr->hdr_lba_alt = htole64(gpt->map_start);
200 1.1 jnemeth hdr->hdr_lba_table = htole64(lbt->map_start);
201 1.1 jnemeth hdr->hdr_crc_self = 0;
202 1.1 jnemeth hdr->hdr_crc_self =
203 1.1 jnemeth htole32(crc32(tpg->map_data, GPT_HDR_SIZE));
204 1.1 jnemeth gpt_write(fd, lbt);
205 1.1 jnemeth gpt_write(fd, tpg);
206 1.1 jnemeth
207 1.1 jnemeth for (i = 0; i < 4; i++)
208 1.1 jnemeth if (mbr->mbr_part[0].part_typ == MBR_PTYPE_PMBR)
209 1.1 jnemeth break;
210 1.1 jnemeth if (i == 4) {
211 1.1 jnemeth warnx("%s: no valid PMBR partition found", device_name);
212 1.1 jnemeth return;
213 1.1 jnemeth }
214 1.1 jnemeth if (last > 0xffffffff) {
215 1.1 jnemeth mbr->mbr_part[0].part_size_lo = htole16(0xffff);
216 1.1 jnemeth mbr->mbr_part[0].part_size_hi = htole16(0xffff);
217 1.1 jnemeth } else {
218 1.1 jnemeth mbr->mbr_part[0].part_size_lo = htole16(last);
219 1.1 jnemeth mbr->mbr_part[0].part_size_hi = htole16(last >> 16);
220 1.1 jnemeth }
221 1.1 jnemeth gpt_write(fd, mbrmap);
222 1.1 jnemeth
223 1.1 jnemeth return;
224 1.1 jnemeth }
225 1.1 jnemeth
226 1.1 jnemeth int
227 1.1 jnemeth cmd_resizedisk(int argc, char *argv[])
228 1.1 jnemeth {
229 1.1 jnemeth char *p;
230 1.1 jnemeth int ch, fd;
231 1.1 jnemeth int64_t human_num;
232 1.1 jnemeth
233 1.1 jnemeth while ((ch = getopt(argc, argv, "s:")) != -1) {
234 1.1 jnemeth switch(ch) {
235 1.1 jnemeth case 's':
236 1.1 jnemeth if (sector > 0 || size > 0)
237 1.1 jnemeth usage_resizedisk();
238 1.1 jnemeth sector = strtoll(optarg, &p, 10);
239 1.1 jnemeth if (sector < 1)
240 1.1 jnemeth usage_resizedisk();
241 1.1 jnemeth if (*p == '\0')
242 1.1 jnemeth break;
243 1.1 jnemeth if (*p == 's' || *p == 'S') {
244 1.1 jnemeth if (*(p + 1) == '\0')
245 1.1 jnemeth break;
246 1.1 jnemeth else
247 1.1 jnemeth usage_resizedisk();
248 1.1 jnemeth }
249 1.1 jnemeth if (*p == 'b' || *p == 'B') {
250 1.1 jnemeth if (*(p + 1) == '\0') {
251 1.1 jnemeth size = sector;
252 1.1 jnemeth sector = 0;
253 1.1 jnemeth break;
254 1.1 jnemeth } else
255 1.1 jnemeth usage_resizedisk();
256 1.1 jnemeth }
257 1.1 jnemeth if (dehumanize_number(optarg, &human_num) < 0)
258 1.1 jnemeth usage_resizedisk();
259 1.1 jnemeth size = human_num;
260 1.1 jnemeth sector = 0;
261 1.1 jnemeth break;
262 1.1 jnemeth default:
263 1.1 jnemeth usage_resizedisk();
264 1.1 jnemeth }
265 1.1 jnemeth }
266 1.1 jnemeth
267 1.1 jnemeth if (argc == optind)
268 1.1 jnemeth usage_resizedisk();
269 1.1 jnemeth
270 1.1 jnemeth while (optind < argc) {
271 1.1 jnemeth fd = gpt_open(argv[optind++]);
272 1.1 jnemeth if (fd == -1) {
273 1.1 jnemeth warn("unable to open device '%s'", device_name);
274 1.1 jnemeth continue;
275 1.1 jnemeth }
276 1.1 jnemeth
277 1.1 jnemeth if (size % secsz != 0) {
278 1.1 jnemeth warnx("Size in bytes must be a multiple of sector "
279 1.1 jnemeth "size;");
280 1.1 jnemeth warnx("the sector size for %s is %d bytes.",
281 1.1 jnemeth device_name, secsz);
282 1.1 jnemeth continue;
283 1.1 jnemeth }
284 1.1 jnemeth if (size > 0)
285 1.1 jnemeth sector = size / secsz - 1;
286 1.1 jnemeth
287 1.1 jnemeth resizedisk(fd);
288 1.1 jnemeth
289 1.1 jnemeth gpt_close(fd);
290 1.1 jnemeth }
291 1.1 jnemeth
292 1.1 jnemeth return 0;
293 1.1 jnemeth }
294