Home | History | Annotate | Line # | Download | only in gpt
migrate.c revision 1.5.2.1
      1      1.1  christos /*-
      2      1.1  christos  * Copyright (c) 2002 Marcel Moolenaar
      3      1.1  christos  * All rights reserved.
      4      1.1  christos  *
      5      1.1  christos  * Redistribution and use in source and binary forms, with or without
      6      1.1  christos  * modification, are permitted provided that the following conditions
      7      1.1  christos  * are met:
      8      1.1  christos  *
      9      1.1  christos  * 1. Redistributions of source code must retain the above copyright
     10      1.1  christos  *    notice, this list of conditions and the following disclaimer.
     11      1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     13      1.1  christos  *    documentation and/or other materials provided with the distribution.
     14      1.1  christos  *
     15      1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     16      1.1  christos  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     17      1.1  christos  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     18      1.1  christos  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     19      1.1  christos  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     20      1.1  christos  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     21      1.1  christos  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     22      1.1  christos  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     23      1.1  christos  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     24      1.1  christos  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     25      1.1  christos  */
     26      1.1  christos 
     27      1.1  christos #include <sys/cdefs.h>
     28      1.2  christos #ifdef __FBSDID
     29      1.1  christos __FBSDID("$FreeBSD: src/sbin/gpt/migrate.c,v 1.16 2005/09/01 02:42:52 marcel Exp $");
     30      1.2  christos #endif
     31      1.2  christos #ifdef __RCSID
     32  1.5.2.1      yamt __RCSID("$NetBSD: migrate.c,v 1.5.2.1 2014/05/22 11:37:28 yamt Exp $");
     33      1.2  christos #endif
     34      1.1  christos 
     35      1.1  christos #include <sys/types.h>
     36      1.3        he #include <sys/param.h>
     37  1.5.2.1      yamt #include <sys/bootblock.h>
     38      1.1  christos #include <sys/disklabel.h>
     39      1.1  christos 
     40      1.1  christos #include <err.h>
     41      1.1  christos #include <stddef.h>
     42      1.1  christos #include <stdio.h>
     43      1.1  christos #include <stdlib.h>
     44      1.1  christos #include <string.h>
     45      1.1  christos #include <unistd.h>
     46      1.1  christos 
     47      1.1  christos #include "map.h"
     48      1.1  christos #include "gpt.h"
     49      1.1  christos 
     50      1.1  christos /*
     51      1.1  christos  * Allow compilation on platforms that do not have a BSD label.
     52      1.1  christos  * The values are valid for amd64, i386 and ia64 disklabels.
     53      1.1  christos  */
     54      1.1  christos #ifndef LABELOFFSET
     55      1.1  christos #define	LABELOFFSET	0
     56      1.1  christos #endif
     57      1.1  christos #ifndef LABELSECTOR
     58      1.1  christos #define	LABELSECTOR	1
     59      1.1  christos #endif
     60      1.1  christos 
     61  1.5.2.1      yamt /* FreeBSD filesystem types that don't match corresponding NetBSD types */
     62  1.5.2.1      yamt #define	FREEBSD_FS_VINUM	14
     63  1.5.2.1      yamt #define	FREEBSD_FS_ZFS		27
     64  1.5.2.1      yamt 
     65      1.1  christos static int force;
     66      1.1  christos static int slice;
     67      1.1  christos 
     68      1.4       riz const char migratemsg[] = "migrate [-fs] device ...";
     69      1.4       riz 
     70      1.5     joerg __dead static void
     71      1.1  christos usage_migrate(void)
     72      1.1  christos {
     73      1.1  christos 
     74      1.1  christos 	fprintf(stderr,
     75      1.4       riz 	    "usage: %s %s\n", getprogname(), migratemsg);
     76      1.1  christos 	exit(1);
     77      1.1  christos }
     78      1.1  christos 
     79      1.1  christos static struct gpt_ent*
     80      1.1  christos migrate_disklabel(int fd, off_t start, struct gpt_ent *ent)
     81      1.1  christos {
     82      1.1  christos 	char *buf;
     83      1.1  christos 	struct disklabel *dl;
     84      1.1  christos 	off_t ofs, rawofs;
     85      1.1  christos 	int i;
     86      1.1  christos 
     87      1.1  christos 	buf = gpt_read(fd, start + LABELSECTOR, 1);
     88      1.1  christos 	dl = (void*)(buf + LABELOFFSET);
     89      1.1  christos 
     90      1.1  christos 	if (le32toh(dl->d_magic) != DISKMAGIC ||
     91      1.1  christos 	    le32toh(dl->d_magic2) != DISKMAGIC) {
     92      1.1  christos 		warnx("%s: warning: FreeBSD slice without disklabel",
     93      1.1  christos 		    device_name);
     94  1.5.2.1      yamt 		free(buf);
     95      1.1  christos 		return (ent);
     96      1.1  christos 	}
     97      1.1  christos 
     98      1.1  christos 	rawofs = le32toh(dl->d_partitions[RAW_PART].p_offset) *
     99      1.1  christos 	    le32toh(dl->d_secsize);
    100      1.1  christos 	for (i = 0; i < le16toh(dl->d_npartitions); i++) {
    101      1.1  christos 		if (dl->d_partitions[i].p_fstype == FS_UNUSED)
    102      1.1  christos 			continue;
    103      1.1  christos 		ofs = le32toh(dl->d_partitions[i].p_offset) *
    104      1.1  christos 		    le32toh(dl->d_secsize);
    105      1.1  christos 		if (ofs < rawofs)
    106      1.1  christos 			rawofs = 0;
    107      1.1  christos 	}
    108      1.1  christos 	rawofs /= secsz;
    109      1.1  christos 
    110      1.1  christos 	for (i = 0; i < le16toh(dl->d_npartitions); i++) {
    111      1.1  christos 		switch (dl->d_partitions[i].p_fstype) {
    112      1.1  christos 		case FS_UNUSED:
    113      1.1  christos 			continue;
    114      1.1  christos 		case FS_SWAP: {
    115  1.5.2.1      yamt 			static const uuid_t swap = GPT_ENT_TYPE_FREEBSD_SWAP;
    116  1.5.2.1      yamt 			le_uuid_enc(ent->ent_type, &swap);
    117      1.2  christos 			utf8_to_utf16((const uint8_t *)"FreeBSD swap partition",
    118      1.1  christos 			    ent->ent_name, 36);
    119      1.1  christos 			break;
    120      1.1  christos 		}
    121      1.1  christos 		case FS_BSDFFS: {
    122  1.5.2.1      yamt 			static const uuid_t ufs = GPT_ENT_TYPE_FREEBSD_UFS;
    123  1.5.2.1      yamt 			le_uuid_enc(ent->ent_type, &ufs);
    124      1.2  christos 			utf8_to_utf16((const uint8_t *)"FreeBSD UFS partition",
    125      1.1  christos 			    ent->ent_name, 36);
    126      1.1  christos 			break;
    127      1.1  christos 		}
    128  1.5.2.1      yamt 		case FREEBSD_FS_VINUM: {
    129  1.5.2.1      yamt 			static const uuid_t vinum = GPT_ENT_TYPE_FREEBSD_VINUM;
    130  1.5.2.1      yamt 			le_uuid_enc(ent->ent_type, &vinum);
    131      1.2  christos 			utf8_to_utf16((const uint8_t *)"FreeBSD vinum partition",
    132      1.1  christos 			    ent->ent_name, 36);
    133      1.1  christos 			break;
    134      1.1  christos 		}
    135  1.5.2.1      yamt 		case FREEBSD_FS_ZFS: {
    136  1.5.2.1      yamt 			static const uuid_t zfs = GPT_ENT_TYPE_FREEBSD_ZFS;
    137  1.5.2.1      yamt 			le_uuid_enc(ent->ent_type, &zfs);
    138  1.5.2.1      yamt 			utf8_to_utf16((const uint8_t *)"FreeBSD ZFS partition",
    139  1.5.2.1      yamt 			    ent->ent_name, 36);
    140  1.5.2.1      yamt 			break;
    141  1.5.2.1      yamt 		}
    142      1.1  christos 		default:
    143      1.1  christos 			warnx("%s: warning: unknown FreeBSD partition (%d)",
    144      1.1  christos 			    device_name, dl->d_partitions[i].p_fstype);
    145      1.1  christos 			continue;
    146      1.1  christos 		}
    147      1.1  christos 
    148      1.1  christos 		ofs = (le32toh(dl->d_partitions[i].p_offset) *
    149      1.1  christos 		    le32toh(dl->d_secsize)) / secsz;
    150      1.1  christos 		ofs = (ofs > 0) ? ofs - rawofs : 0;
    151      1.1  christos 		ent->ent_lba_start = htole64(start + ofs);
    152      1.1  christos 		ent->ent_lba_end = htole64(start + ofs +
    153      1.1  christos 		    le32toh(dl->d_partitions[i].p_size) - 1LL);
    154      1.1  christos 		ent++;
    155      1.1  christos 	}
    156      1.1  christos 
    157  1.5.2.1      yamt 	free(buf);
    158  1.5.2.1      yamt 	return (ent);
    159  1.5.2.1      yamt }
    160  1.5.2.1      yamt 
    161  1.5.2.1      yamt static struct gpt_ent*
    162  1.5.2.1      yamt migrate_netbsd_disklabel(int fd, off_t start, struct gpt_ent *ent)
    163  1.5.2.1      yamt {
    164  1.5.2.1      yamt 	char *buf;
    165  1.5.2.1      yamt 	struct disklabel *dl;
    166  1.5.2.1      yamt 	off_t ofs, rawofs;
    167  1.5.2.1      yamt 	int i;
    168  1.5.2.1      yamt 
    169  1.5.2.1      yamt 	buf = gpt_read(fd, start + LABELSECTOR, 1);
    170  1.5.2.1      yamt 	dl = (void*)(buf + LABELOFFSET);
    171  1.5.2.1      yamt 
    172  1.5.2.1      yamt 	if (le32toh(dl->d_magic) != DISKMAGIC ||
    173  1.5.2.1      yamt 	    le32toh(dl->d_magic2) != DISKMAGIC) {
    174  1.5.2.1      yamt 		warnx("%s: warning: NetBSD slice without disklabel",
    175  1.5.2.1      yamt 		    device_name);
    176  1.5.2.1      yamt 		free(buf);
    177  1.5.2.1      yamt 		return (ent);
    178  1.5.2.1      yamt 	}
    179  1.5.2.1      yamt 
    180  1.5.2.1      yamt 	rawofs = le32toh(dl->d_partitions[RAW_PART].p_offset) *
    181  1.5.2.1      yamt 	    le32toh(dl->d_secsize);
    182  1.5.2.1      yamt 	for (i = 0; i < le16toh(dl->d_npartitions); i++) {
    183  1.5.2.1      yamt 		if (dl->d_partitions[i].p_fstype == FS_UNUSED)
    184  1.5.2.1      yamt 			continue;
    185  1.5.2.1      yamt 		ofs = le32toh(dl->d_partitions[i].p_offset) *
    186  1.5.2.1      yamt 		    le32toh(dl->d_secsize);
    187  1.5.2.1      yamt 		if (ofs < rawofs)
    188  1.5.2.1      yamt 			rawofs = 0;
    189  1.5.2.1      yamt 	}
    190  1.5.2.1      yamt 	rawofs /= secsz;
    191  1.5.2.1      yamt 
    192  1.5.2.1      yamt 	for (i = 0; i < le16toh(dl->d_npartitions); i++) {
    193  1.5.2.1      yamt 		switch (dl->d_partitions[i].p_fstype) {
    194  1.5.2.1      yamt 		case FS_UNUSED:
    195  1.5.2.1      yamt 			continue;
    196  1.5.2.1      yamt 		case FS_SWAP: {
    197  1.5.2.1      yamt 			static const uuid_t swap = GPT_ENT_TYPE_NETBSD_SWAP;
    198  1.5.2.1      yamt 			le_uuid_enc(ent->ent_type, &swap);
    199  1.5.2.1      yamt 			utf8_to_utf16((const uint8_t *)"NetBSD swap partition",
    200  1.5.2.1      yamt 			    ent->ent_name, 36);
    201  1.5.2.1      yamt 			break;
    202  1.5.2.1      yamt 		}
    203  1.5.2.1      yamt 		case FS_BSDFFS: {
    204  1.5.2.1      yamt 			static const uuid_t ufs = GPT_ENT_TYPE_NETBSD_FFS;
    205  1.5.2.1      yamt 			le_uuid_enc(ent->ent_type, &ufs);
    206  1.5.2.1      yamt 			utf8_to_utf16((const uint8_t *)"NetBSD FFS partition",
    207  1.5.2.1      yamt 			    ent->ent_name, 36);
    208  1.5.2.1      yamt 			break;
    209  1.5.2.1      yamt 		}
    210  1.5.2.1      yamt 		case FS_BSDLFS: {
    211  1.5.2.1      yamt 			static const uuid_t zfs = GPT_ENT_TYPE_NETBSD_LFS;
    212  1.5.2.1      yamt 			le_uuid_enc(ent->ent_type, &zfs);
    213  1.5.2.1      yamt 			utf8_to_utf16((const uint8_t *)"NetBSD LFS partition",
    214  1.5.2.1      yamt 			    ent->ent_name, 36);
    215  1.5.2.1      yamt 			break;
    216  1.5.2.1      yamt 		}
    217  1.5.2.1      yamt 		case FS_RAID: {
    218  1.5.2.1      yamt 			static const uuid_t zfs = GPT_ENT_TYPE_NETBSD_RAIDFRAME;
    219  1.5.2.1      yamt 			le_uuid_enc(ent->ent_type, &zfs);
    220  1.5.2.1      yamt 			utf8_to_utf16((const uint8_t *)"NetBSD RAIDframe partition",
    221  1.5.2.1      yamt 			    ent->ent_name, 36);
    222  1.5.2.1      yamt 			break;
    223  1.5.2.1      yamt 		}
    224  1.5.2.1      yamt 		case FS_CCD: {
    225  1.5.2.1      yamt 			static const uuid_t zfs = GPT_ENT_TYPE_NETBSD_CCD;
    226  1.5.2.1      yamt 			le_uuid_enc(ent->ent_type, &zfs);
    227  1.5.2.1      yamt 			utf8_to_utf16((const uint8_t *)"NetBSD CCD partition",
    228  1.5.2.1      yamt 			    ent->ent_name, 36);
    229  1.5.2.1      yamt 			break;
    230  1.5.2.1      yamt 		}
    231  1.5.2.1      yamt 		case FS_CGD: {
    232  1.5.2.1      yamt 			static const uuid_t zfs = GPT_ENT_TYPE_NETBSD_CGD;
    233  1.5.2.1      yamt 			le_uuid_enc(ent->ent_type, &zfs);
    234  1.5.2.1      yamt 			utf8_to_utf16((const uint8_t *)"NetBSD CGD partition",
    235  1.5.2.1      yamt 			    ent->ent_name, 36);
    236  1.5.2.1      yamt 			break;
    237  1.5.2.1      yamt 		}
    238  1.5.2.1      yamt 		default:
    239  1.5.2.1      yamt 			warnx("%s: warning: unknown NetBSD partition (%d)",
    240  1.5.2.1      yamt 			    device_name, dl->d_partitions[i].p_fstype);
    241  1.5.2.1      yamt 			continue;
    242  1.5.2.1      yamt 		}
    243  1.5.2.1      yamt 
    244  1.5.2.1      yamt 		ofs = (le32toh(dl->d_partitions[i].p_offset) *
    245  1.5.2.1      yamt 		    le32toh(dl->d_secsize)) / secsz;
    246  1.5.2.1      yamt 		ofs = (ofs > 0) ? ofs - rawofs : 0;
    247  1.5.2.1      yamt 		ent->ent_lba_start = htole64(ofs);
    248  1.5.2.1      yamt 		ent->ent_lba_end = htole64(ofs +
    249  1.5.2.1      yamt 		    le32toh(dl->d_partitions[i].p_size) - 1LL);
    250  1.5.2.1      yamt 		ent++;
    251  1.5.2.1      yamt 	}
    252  1.5.2.1      yamt 
    253  1.5.2.1      yamt 	free(buf);
    254      1.1  christos 	return (ent);
    255      1.1  christos }
    256      1.1  christos 
    257      1.1  christos static void
    258      1.1  christos migrate(int fd)
    259      1.1  christos {
    260      1.1  christos 	uuid_t uuid;
    261      1.1  christos 	off_t blocks, last;
    262      1.1  christos 	map_t *gpt, *tpg;
    263      1.1  christos 	map_t *tbl, *lbt;
    264      1.1  christos 	map_t *map;
    265      1.1  christos 	struct gpt_hdr *hdr;
    266      1.1  christos 	struct gpt_ent *ent;
    267      1.1  christos 	struct mbr *mbr;
    268      1.1  christos 	uint32_t start, size;
    269      1.1  christos 	unsigned int i;
    270      1.1  christos 
    271      1.1  christos 	last = mediasz / secsz - 1LL;
    272      1.1  christos 
    273      1.1  christos 	map = map_find(MAP_TYPE_MBR);
    274      1.1  christos 	if (map == NULL || map->map_start != 0) {
    275      1.1  christos 		warnx("%s: error: no partitions to convert", device_name);
    276      1.1  christos 		return;
    277      1.1  christos 	}
    278      1.1  christos 
    279      1.1  christos 	mbr = map->map_data;
    280      1.1  christos 
    281      1.1  christos 	if (map_find(MAP_TYPE_PRI_GPT_HDR) != NULL ||
    282      1.1  christos 	    map_find(MAP_TYPE_SEC_GPT_HDR) != NULL) {
    283      1.1  christos 		warnx("%s: error: device already contains a GPT", device_name);
    284      1.1  christos 		return;
    285      1.1  christos 	}
    286      1.1  christos 
    287      1.1  christos 	/* Get the amount of free space after the MBR */
    288      1.1  christos 	blocks = map_free(1LL, 0LL);
    289      1.1  christos 	if (blocks == 0LL) {
    290      1.1  christos 		warnx("%s: error: no room for the GPT header", device_name);
    291      1.1  christos 		return;
    292      1.1  christos 	}
    293      1.1  christos 
    294      1.1  christos 	/* Don't create more than parts entries. */
    295      1.1  christos 	if ((uint64_t)(blocks - 1) * secsz > parts * sizeof(struct gpt_ent)) {
    296      1.1  christos 		blocks = (parts * sizeof(struct gpt_ent)) / secsz;
    297      1.1  christos 		if ((parts * sizeof(struct gpt_ent)) % secsz)
    298      1.1  christos 			blocks++;
    299      1.1  christos 		blocks++;		/* Don't forget the header itself */
    300      1.1  christos 	}
    301      1.1  christos 
    302      1.1  christos 	/* Never cross the median of the device. */
    303      1.1  christos 	if ((blocks + 1LL) > ((last + 1LL) >> 1))
    304      1.1  christos 		blocks = ((last + 1LL) >> 1) - 1LL;
    305      1.1  christos 
    306      1.1  christos 	/*
    307      1.1  christos 	 * Get the amount of free space at the end of the device and
    308      1.1  christos 	 * calculate the size for the GPT structures.
    309      1.1  christos 	 */
    310      1.1  christos 	map = map_last();
    311      1.1  christos 	if (map->map_type != MAP_TYPE_UNUSED) {
    312      1.1  christos 		warnx("%s: error: no room for the backup header", device_name);
    313      1.1  christos 		return;
    314      1.1  christos 	}
    315      1.1  christos 
    316      1.1  christos 	if (map->map_size < blocks)
    317      1.1  christos 		blocks = map->map_size;
    318      1.1  christos 	if (blocks == 1LL) {
    319      1.1  christos 		warnx("%s: error: no room for the GPT table", device_name);
    320      1.1  christos 		return;
    321      1.1  christos 	}
    322      1.1  christos 
    323      1.1  christos 	blocks--;		/* Number of blocks in the GPT table. */
    324      1.1  christos 	gpt = map_add(1LL, 1LL, MAP_TYPE_PRI_GPT_HDR, calloc(1, secsz));
    325      1.1  christos 	tbl = map_add(2LL, blocks, MAP_TYPE_PRI_GPT_TBL,
    326      1.1  christos 	    calloc(blocks, secsz));
    327      1.1  christos 	if (gpt == NULL || tbl == NULL)
    328      1.1  christos 		return;
    329      1.1  christos 
    330      1.1  christos 	lbt = map_add(last - blocks, blocks, MAP_TYPE_SEC_GPT_TBL,
    331      1.1  christos 	    tbl->map_data);
    332      1.1  christos 	tpg = map_add(last, 1LL, MAP_TYPE_SEC_GPT_HDR, calloc(1, secsz));
    333      1.1  christos 
    334      1.1  christos 	hdr = gpt->map_data;
    335      1.1  christos 	memcpy(hdr->hdr_sig, GPT_HDR_SIG, sizeof(hdr->hdr_sig));
    336      1.1  christos 	hdr->hdr_revision = htole32(GPT_HDR_REVISION);
    337      1.1  christos 	/*
    338      1.1  christos 	 * XXX struct gpt_hdr is not a multiple of 8 bytes in size and thus
    339      1.1  christos 	 * contains padding we must not include in the size.
    340      1.1  christos 	 */
    341      1.2  christos 	hdr->hdr_size = htole32(GPT_SIZE);
    342      1.1  christos 	hdr->hdr_lba_self = htole64(gpt->map_start);
    343      1.1  christos 	hdr->hdr_lba_alt = htole64(tpg->map_start);
    344      1.1  christos 	hdr->hdr_lba_start = htole64(tbl->map_start + blocks);
    345      1.1  christos 	hdr->hdr_lba_end = htole64(lbt->map_start - 1LL);
    346      1.1  christos 	uuid_create(&uuid, NULL);
    347  1.5.2.1      yamt 	le_uuid_enc(hdr->hdr_uuid, &uuid);
    348      1.1  christos 	hdr->hdr_lba_table = htole64(tbl->map_start);
    349      1.1  christos 	hdr->hdr_entries = htole32((blocks * secsz) / sizeof(struct gpt_ent));
    350      1.1  christos 	if (le32toh(hdr->hdr_entries) > parts)
    351      1.1  christos 		hdr->hdr_entries = htole32(parts);
    352      1.1  christos 	hdr->hdr_entsz = htole32(sizeof(struct gpt_ent));
    353      1.1  christos 
    354      1.1  christos 	ent = tbl->map_data;
    355      1.1  christos 	for (i = 0; i < le32toh(hdr->hdr_entries); i++) {
    356      1.1  christos 		uuid_create(&uuid, NULL);
    357  1.5.2.1      yamt 		le_uuid_enc(ent[i].ent_uuid, &uuid);
    358      1.1  christos 	}
    359      1.1  christos 
    360      1.1  christos 	/* Mirror partitions. */
    361      1.1  christos 	for (i = 0; i < 4; i++) {
    362      1.1  christos 		start = le16toh(mbr->mbr_part[i].part_start_hi);
    363      1.1  christos 		start = (start << 16) + le16toh(mbr->mbr_part[i].part_start_lo);
    364      1.1  christos 		size = le16toh(mbr->mbr_part[i].part_size_hi);
    365      1.1  christos 		size = (size << 16) + le16toh(mbr->mbr_part[i].part_size_lo);
    366      1.1  christos 
    367      1.1  christos 		switch (mbr->mbr_part[i].part_typ) {
    368  1.5.2.1      yamt 		case MBR_PTYPE_UNUSED:
    369      1.1  christos 			continue;
    370  1.5.2.1      yamt 		case MBR_PTYPE_386BSD: {	/* FreeBSD */
    371      1.1  christos 			if (slice) {
    372  1.5.2.1      yamt 				static const uuid_t freebsd = GPT_ENT_TYPE_FREEBSD;
    373  1.5.2.1      yamt 				le_uuid_enc(ent->ent_type, &freebsd);
    374      1.1  christos 				ent->ent_lba_start = htole64((uint64_t)start);
    375      1.1  christos 				ent->ent_lba_end = htole64(start + size - 1LL);
    376      1.2  christos 				utf8_to_utf16((const uint8_t *)"FreeBSD disklabel partition",
    377      1.1  christos 				    ent->ent_name, 36);
    378      1.1  christos 				ent++;
    379      1.1  christos 			} else
    380      1.1  christos 				ent = migrate_disklabel(fd, start, ent);
    381      1.1  christos 			break;
    382      1.1  christos 		}
    383  1.5.2.1      yamt 		case MBR_PTYPE_NETBSD:
    384  1.5.2.1      yamt 			ent = migrate_netbsd_disklabel(fd, start, ent);
    385  1.5.2.1      yamt 			break;
    386  1.5.2.1      yamt 		case MBR_PTYPE_EFI: {
    387  1.5.2.1      yamt 			static const uuid_t efi_slice = GPT_ENT_TYPE_EFI;
    388  1.5.2.1      yamt 			le_uuid_enc(ent->ent_type, &efi_slice);
    389      1.1  christos 			ent->ent_lba_start = htole64((uint64_t)start);
    390      1.1  christos 			ent->ent_lba_end = htole64(start + size - 1LL);
    391      1.2  christos 			utf8_to_utf16((const uint8_t *)"EFI system partition",
    392      1.1  christos 			    ent->ent_name, 36);
    393      1.1  christos 			ent++;
    394      1.1  christos 			break;
    395      1.1  christos 		}
    396      1.1  christos 		default:
    397      1.1  christos 			if (!force) {
    398      1.1  christos 				warnx("%s: error: unknown partition type (%d)",
    399      1.1  christos 				    device_name, mbr->mbr_part[i].part_typ);
    400      1.1  christos 				return;
    401      1.1  christos 			}
    402      1.1  christos 		}
    403      1.1  christos 	}
    404      1.1  christos 	ent = tbl->map_data;
    405      1.1  christos 
    406      1.1  christos 	hdr->hdr_crc_table = htole32(crc32(ent, le32toh(hdr->hdr_entries) *
    407      1.1  christos 	    le32toh(hdr->hdr_entsz)));
    408      1.1  christos 	hdr->hdr_crc_self = htole32(crc32(hdr, le32toh(hdr->hdr_size)));
    409      1.1  christos 
    410      1.1  christos 	gpt_write(fd, gpt);
    411      1.1  christos 	gpt_write(fd, tbl);
    412      1.1  christos 
    413      1.1  christos 	/*
    414      1.1  christos 	 * Create backup GPT.
    415      1.1  christos 	 */
    416      1.1  christos 	memcpy(tpg->map_data, gpt->map_data, secsz);
    417      1.1  christos 	hdr = tpg->map_data;
    418      1.1  christos 	hdr->hdr_lba_self = htole64(tpg->map_start);
    419      1.1  christos 	hdr->hdr_lba_alt = htole64(gpt->map_start);
    420      1.1  christos 	hdr->hdr_lba_table = htole64(lbt->map_start);
    421      1.1  christos 	hdr->hdr_crc_self = 0;			/* Don't ever forget this! */
    422      1.1  christos 	hdr->hdr_crc_self = htole32(crc32(hdr, le32toh(hdr->hdr_size)));
    423      1.1  christos 
    424      1.1  christos 	gpt_write(fd, lbt);
    425      1.1  christos 	gpt_write(fd, tpg);
    426      1.1  christos 
    427      1.1  christos 	map = map_find(MAP_TYPE_MBR);
    428      1.1  christos 	mbr = map->map_data;
    429      1.1  christos 	/*
    430      1.1  christos 	 * Turn the MBR into a Protective MBR.
    431      1.1  christos 	 */
    432      1.1  christos 	bzero(mbr->mbr_part, sizeof(mbr->mbr_part));
    433  1.5.2.1      yamt 	mbr->mbr_part[0].part_shd = 0x00;
    434  1.5.2.1      yamt 	mbr->mbr_part[0].part_ssect = 0x02;
    435  1.5.2.1      yamt 	mbr->mbr_part[0].part_scyl = 0x00;
    436  1.5.2.1      yamt 	mbr->mbr_part[0].part_typ = MBR_PTYPE_PMBR;
    437  1.5.2.1      yamt 	mbr->mbr_part[0].part_ehd = 0xfe;
    438      1.1  christos 	mbr->mbr_part[0].part_esect = 0xff;
    439      1.1  christos 	mbr->mbr_part[0].part_ecyl = 0xff;
    440      1.1  christos 	mbr->mbr_part[0].part_start_lo = htole16(1);
    441      1.1  christos 	if (last > 0xffffffff) {
    442      1.1  christos 		mbr->mbr_part[0].part_size_lo = htole16(0xffff);
    443      1.1  christos 		mbr->mbr_part[0].part_size_hi = htole16(0xffff);
    444      1.1  christos 	} else {
    445      1.1  christos 		mbr->mbr_part[0].part_size_lo = htole16(last);
    446      1.1  christos 		mbr->mbr_part[0].part_size_hi = htole16(last >> 16);
    447      1.1  christos 	}
    448      1.1  christos 	gpt_write(fd, map);
    449      1.1  christos }
    450      1.1  christos 
    451      1.1  christos int
    452      1.1  christos cmd_migrate(int argc, char *argv[])
    453      1.1  christos {
    454      1.1  christos 	int ch, fd;
    455      1.1  christos 
    456      1.1  christos 	/* Get the migrate options */
    457      1.1  christos 	while ((ch = getopt(argc, argv, "fs")) != -1) {
    458      1.1  christos 		switch(ch) {
    459      1.1  christos 		case 'f':
    460      1.1  christos 			force = 1;
    461      1.1  christos 			break;
    462      1.1  christos 		case 's':
    463      1.1  christos 			slice = 1;
    464      1.1  christos 			break;
    465      1.1  christos 		default:
    466      1.1  christos 			usage_migrate();
    467      1.1  christos 		}
    468      1.1  christos 	}
    469      1.1  christos 
    470      1.1  christos 	if (argc == optind)
    471      1.1  christos 		usage_migrate();
    472      1.1  christos 
    473      1.1  christos 	while (optind < argc) {
    474      1.1  christos 		fd = gpt_open(argv[optind++]);
    475      1.1  christos 		if (fd == -1) {
    476      1.1  christos 			warn("unable to open device '%s'", device_name);
    477      1.1  christos 			continue;
    478      1.1  christos 		}
    479      1.1  christos 
    480      1.1  christos 		migrate(fd);
    481      1.1  christos 
    482      1.1  christos 		gpt_close(fd);
    483      1.1  christos 	}
    484      1.1  christos 
    485      1.1  christos 	return (0);
    486      1.1  christos }
    487