2 * Copyright (c) 2002 Marcel Moolenaar
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD: src/sbin/gpt/migrate.c,v 1.16 2005/09/01 02:42:52 marcel Exp $");
32 __RCSID("$NetBSD: migrate.c,v 1.3 2006/10/17 09:20:09 he Exp $");
35 #include <sys/types.h>
36 #include <sys/param.h>
37 #include <sys/disklabel.h>
50 * Allow compilation on platforms that do not have a BSD label.
51 * The values are valid for amd64, i386 and ia64 disklabels.
63 const char migratemsg
[] = "migrate [-fs] device ...";
70 "usage: %s %s\n", getprogname(), migratemsg
);
74 static struct gpt_ent
*
75 migrate_disklabel(int fd
, off_t start
, struct gpt_ent
*ent
)
82 buf
= gpt_read(fd
, start
+ LABELSECTOR
, 1);
83 dl
= (void*)(buf
+ LABELOFFSET
);
85 if (le32toh(dl
->d_magic
) != DISKMAGIC
||
86 le32toh(dl
->d_magic2
) != DISKMAGIC
) {
87 warnx("%s: warning: FreeBSD slice without disklabel",
92 rawofs
= le32toh(dl
->d_partitions
[RAW_PART
].p_offset
) *
93 le32toh(dl
->d_secsize
);
94 for (i
= 0; i
< le16toh(dl
->d_npartitions
); i
++) {
95 if (dl
->d_partitions
[i
].p_fstype
== FS_UNUSED
)
97 ofs
= le32toh(dl
->d_partitions
[i
].p_offset
) *
98 le32toh(dl
->d_secsize
);
104 for (i
= 0; i
< le16toh(dl
->d_npartitions
); i
++) {
105 switch (dl
->d_partitions
[i
].p_fstype
) {
109 uuid_t swap
= GPT_ENT_TYPE_FREEBSD_SWAP
;
110 le_uuid_enc(&ent
->ent_type
, &swap
);
111 utf8_to_utf16((const uint8_t *)"FreeBSD swap partition",
116 uuid_t ufs
= GPT_ENT_TYPE_FREEBSD_UFS
;
117 le_uuid_enc(&ent
->ent_type
, &ufs
);
118 utf8_to_utf16((const uint8_t *)"FreeBSD UFS partition",
123 uuid_t vinum
= GPT_ENT_TYPE_FREEBSD_VINUM
;
124 le_uuid_enc(&ent
->ent_type
, &vinum
);
125 utf8_to_utf16((const uint8_t *)"FreeBSD vinum partition",
130 warnx("%s: warning: unknown FreeBSD partition (%d)",
131 device_name
, dl
->d_partitions
[i
].p_fstype
);
135 ofs
= (le32toh(dl
->d_partitions
[i
].p_offset
) *
136 le32toh(dl
->d_secsize
)) / secsz
;
137 ofs
= (ofs
> 0) ? ofs
- rawofs
: 0;
138 ent
->ent_lba_start
= htole64(start
+ ofs
);
139 ent
->ent_lba_end
= htole64(start
+ ofs
+
140 le32toh(dl
->d_partitions
[i
].p_size
) - 1LL);
158 uint32_t start
, size
;
161 last
= mediasz
/ secsz
- 1LL;
163 map
= map_find(MAP_TYPE_MBR
);
164 if (map
== NULL
|| map
->map_start
!= 0) {
165 warnx("%s: error: no partitions to convert", device_name
);
171 if (map_find(MAP_TYPE_PRI_GPT_HDR
) != NULL
||
172 map_find(MAP_TYPE_SEC_GPT_HDR
) != NULL
) {
173 warnx("%s: error: device already contains a GPT", device_name
);
177 /* Get the amount of free space after the MBR */
178 blocks
= map_free(1LL, 0LL);
180 warnx("%s: error: no room for the GPT header", device_name
);
184 /* Don't create more than parts entries. */
185 if ((uint64_t)(blocks
- 1) * secsz
> parts
* sizeof(struct gpt_ent
)) {
186 blocks
= (parts
* sizeof(struct gpt_ent
)) / secsz
;
187 if ((parts
* sizeof(struct gpt_ent
)) % secsz
)
189 blocks
++; /* Don't forget the header itself */
192 /* Never cross the median of the device. */
193 if ((blocks
+ 1LL) > ((last
+ 1LL) >> 1))
194 blocks
= ((last
+ 1LL) >> 1) - 1LL;
197 * Get the amount of free space at the end of the device and
198 * calculate the size for the GPT structures.
201 if (map
->map_type
!= MAP_TYPE_UNUSED
) {
202 warnx("%s: error: no room for the backup header", device_name
);
206 if (map
->map_size
< blocks
)
207 blocks
= map
->map_size
;
209 warnx("%s: error: no room for the GPT table", device_name
);
213 blocks
--; /* Number of blocks in the GPT table. */
214 gpt
= map_add(1LL, 1LL, MAP_TYPE_PRI_GPT_HDR
, calloc(1, secsz
));
215 tbl
= map_add(2LL, blocks
, MAP_TYPE_PRI_GPT_TBL
,
216 calloc(blocks
, secsz
));
217 if (gpt
== NULL
|| tbl
== NULL
)
220 lbt
= map_add(last
- blocks
, blocks
, MAP_TYPE_SEC_GPT_TBL
,
222 tpg
= map_add(last
, 1LL, MAP_TYPE_SEC_GPT_HDR
, calloc(1, secsz
));
225 memcpy(hdr
->hdr_sig
, GPT_HDR_SIG
, sizeof(hdr
->hdr_sig
));
226 hdr
->hdr_revision
= htole32(GPT_HDR_REVISION
);
228 * XXX struct gpt_hdr is not a multiple of 8 bytes in size and thus
229 * contains padding we must not include in the size.
231 hdr
->hdr_size
= htole32(GPT_SIZE
);
232 hdr
->hdr_lba_self
= htole64(gpt
->map_start
);
233 hdr
->hdr_lba_alt
= htole64(tpg
->map_start
);
234 hdr
->hdr_lba_start
= htole64(tbl
->map_start
+ blocks
);
235 hdr
->hdr_lba_end
= htole64(lbt
->map_start
- 1LL);
236 uuid_create(&uuid
, NULL
);
237 le_uuid_enc(&hdr
->hdr_uuid
, &uuid
);
238 hdr
->hdr_lba_table
= htole64(tbl
->map_start
);
239 hdr
->hdr_entries
= htole32((blocks
* secsz
) / sizeof(struct gpt_ent
));
240 if (le32toh(hdr
->hdr_entries
) > parts
)
241 hdr
->hdr_entries
= htole32(parts
);
242 hdr
->hdr_entsz
= htole32(sizeof(struct gpt_ent
));
245 for (i
= 0; i
< le32toh(hdr
->hdr_entries
); i
++) {
246 uuid_create(&uuid
, NULL
);
247 le_uuid_enc(&ent
[i
].ent_uuid
, &uuid
);
250 /* Mirror partitions. */
251 for (i
= 0; i
< 4; i
++) {
252 start
= le16toh(mbr
->mbr_part
[i
].part_start_hi
);
253 start
= (start
<< 16) + le16toh(mbr
->mbr_part
[i
].part_start_lo
);
254 size
= le16toh(mbr
->mbr_part
[i
].part_size_hi
);
255 size
= (size
<< 16) + le16toh(mbr
->mbr_part
[i
].part_size_lo
);
257 switch (mbr
->mbr_part
[i
].part_typ
) {
260 case 165: { /* FreeBSD */
262 uuid_t freebsd
= GPT_ENT_TYPE_FREEBSD
;
263 le_uuid_enc(&ent
->ent_type
, &freebsd
);
264 ent
->ent_lba_start
= htole64((uint64_t)start
);
265 ent
->ent_lba_end
= htole64(start
+ size
- 1LL);
266 utf8_to_utf16((const uint8_t *)"FreeBSD disklabel partition",
270 ent
= migrate_disklabel(fd
, start
, ent
);
273 case 239: { /* EFI */
274 uuid_t efi_slice
= GPT_ENT_TYPE_EFI
;
275 le_uuid_enc(&ent
->ent_type
, &efi_slice
);
276 ent
->ent_lba_start
= htole64((uint64_t)start
);
277 ent
->ent_lba_end
= htole64(start
+ size
- 1LL);
278 utf8_to_utf16((const uint8_t *)"EFI system partition",
285 warnx("%s: error: unknown partition type (%d)",
286 device_name
, mbr
->mbr_part
[i
].part_typ
);
293 hdr
->hdr_crc_table
= htole32(crc32(ent
, le32toh(hdr
->hdr_entries
) *
294 le32toh(hdr
->hdr_entsz
)));
295 hdr
->hdr_crc_self
= htole32(crc32(hdr
, le32toh(hdr
->hdr_size
)));
303 memcpy(tpg
->map_data
, gpt
->map_data
, secsz
);
305 hdr
->hdr_lba_self
= htole64(tpg
->map_start
);
306 hdr
->hdr_lba_alt
= htole64(gpt
->map_start
);
307 hdr
->hdr_lba_table
= htole64(lbt
->map_start
);
308 hdr
->hdr_crc_self
= 0; /* Don't ever forget this! */
309 hdr
->hdr_crc_self
= htole32(crc32(hdr
, le32toh(hdr
->hdr_size
)));
314 map
= map_find(MAP_TYPE_MBR
);
317 * Turn the MBR into a Protective MBR.
319 bzero(mbr
->mbr_part
, sizeof(mbr
->mbr_part
));
320 mbr
->mbr_part
[0].part_shd
= 0xff;
321 mbr
->mbr_part
[0].part_ssect
= 0xff;
322 mbr
->mbr_part
[0].part_scyl
= 0xff;
323 mbr
->mbr_part
[0].part_typ
= 0xee;
324 mbr
->mbr_part
[0].part_ehd
= 0xff;
325 mbr
->mbr_part
[0].part_esect
= 0xff;
326 mbr
->mbr_part
[0].part_ecyl
= 0xff;
327 mbr
->mbr_part
[0].part_start_lo
= htole16(1);
328 if (last
> 0xffffffff) {
329 mbr
->mbr_part
[0].part_size_lo
= htole16(0xffff);
330 mbr
->mbr_part
[0].part_size_hi
= htole16(0xffff);
332 mbr
->mbr_part
[0].part_size_lo
= htole16(last
);
333 mbr
->mbr_part
[0].part_size_hi
= htole16(last
>> 16);
339 cmd_migrate(int argc
, char *argv
[])
343 /* Get the migrate options */
344 while ((ch
= getopt(argc
, argv
, "fs")) != -1) {
360 while (optind
< argc
) {
361 fd
= gpt_open(argv
[optind
++]);
363 warn("unable to open device '%s'", device_name
);