Home | History | Annotate | Line # | Download | only in gpt
recover.c revision 1.6
      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.5  christos #if HAVE_NBTOOL_CONFIG_H
     28  1.5  christos #include "nbtool_config.h"
     29  1.5  christos #endif
     30  1.5  christos 
     31  1.1  christos #include <sys/cdefs.h>
     32  1.2  christos #ifdef __FBSDID
     33  1.1  christos __FBSDID("$FreeBSD: src/sbin/gpt/recover.c,v 1.8 2005/08/31 01:47:19 marcel Exp $");
     34  1.2  christos #endif
     35  1.2  christos #ifdef __RCSID
     36  1.6   jnemeth __RCSID("$NetBSD: recover.c,v 1.6 2015/06/18 01:37:23 jnemeth Exp $");
     37  1.2  christos #endif
     38  1.1  christos 
     39  1.1  christos #include <sys/types.h>
     40  1.1  christos 
     41  1.1  christos #include <err.h>
     42  1.1  christos #include <stddef.h>
     43  1.1  christos #include <stdio.h>
     44  1.1  christos #include <stdlib.h>
     45  1.1  christos #include <string.h>
     46  1.1  christos #include <unistd.h>
     47  1.1  christos 
     48  1.1  christos #include "map.h"
     49  1.1  christos #include "gpt.h"
     50  1.1  christos 
     51  1.1  christos static int recoverable;
     52  1.1  christos 
     53  1.3       riz const char recovermsg[] = "recover device ...";
     54  1.3       riz 
     55  1.4     joerg __dead static void
     56  1.1  christos usage_recover(void)
     57  1.1  christos {
     58  1.1  christos 
     59  1.1  christos 	fprintf(stderr,
     60  1.3       riz 	    "usage: %s %s\n", getprogname(), recovermsg);
     61  1.1  christos 	exit(1);
     62  1.1  christos }
     63  1.1  christos 
     64  1.1  christos static void
     65  1.1  christos recover(int fd)
     66  1.1  christos {
     67  1.6   jnemeth 	uint64_t last;
     68  1.1  christos 	map_t *gpt, *tpg;
     69  1.1  christos 	map_t *tbl, *lbt;
     70  1.1  christos 	struct gpt_hdr *hdr;
     71  1.1  christos 
     72  1.1  christos 	if (map_find(MAP_TYPE_MBR) != NULL) {
     73  1.1  christos 		warnx("%s: error: device contains a MBR", device_name);
     74  1.1  christos 		return;
     75  1.1  christos 	}
     76  1.1  christos 
     77  1.1  christos 	gpt = map_find(MAP_TYPE_PRI_GPT_HDR);
     78  1.1  christos 	tpg = map_find(MAP_TYPE_SEC_GPT_HDR);
     79  1.1  christos 	tbl = map_find(MAP_TYPE_PRI_GPT_TBL);
     80  1.1  christos 	lbt = map_find(MAP_TYPE_SEC_GPT_TBL);
     81  1.1  christos 
     82  1.1  christos 	if (gpt == NULL && tpg == NULL) {
     83  1.1  christos 		warnx("%s: no primary or secondary GPT headers, can't recover",
     84  1.1  christos 		    device_name);
     85  1.1  christos 		return;
     86  1.1  christos 	}
     87  1.1  christos 	if (tbl == NULL && lbt == NULL) {
     88  1.1  christos 		warnx("%s: no primary or secondary GPT tables, can't recover",
     89  1.1  christos 		    device_name);
     90  1.1  christos 		return;
     91  1.1  christos 	}
     92  1.1  christos 
     93  1.1  christos 	last = mediasz / secsz - 1LL;
     94  1.1  christos 
     95  1.6   jnemeth 	if (gpt != NULL &&
     96  1.6   jnemeth 	    ((struct gpt_hdr *)(gpt->map_data))->hdr_lba_alt != last) {
     97  1.6   jnemeth 		warnx("%s: media size has changed, please use 'gpt resizedisk'",
     98  1.6   jnemeth 		   device_name);
     99  1.6   jnemeth 		return;
    100  1.6   jnemeth 	}
    101  1.6   jnemeth 
    102  1.1  christos 	if (tbl != NULL && lbt == NULL) {
    103  1.1  christos 		lbt = map_add(last - tbl->map_size, tbl->map_size,
    104  1.1  christos 		    MAP_TYPE_SEC_GPT_TBL, tbl->map_data);
    105  1.1  christos 		if (lbt == NULL) {
    106  1.1  christos 			warnx("%s: adding secondary GPT table failed",
    107  1.1  christos 			    device_name);
    108  1.1  christos 			return;
    109  1.1  christos 		}
    110  1.1  christos 		gpt_write(fd, lbt);
    111  1.1  christos 		warnx("%s: recovered secondary GPT table from primary",
    112  1.1  christos 		    device_name);
    113  1.1  christos 	} else if (tbl == NULL && lbt != NULL) {
    114  1.1  christos 		tbl = map_add(2LL, lbt->map_size, MAP_TYPE_PRI_GPT_TBL,
    115  1.1  christos 		    lbt->map_data);
    116  1.1  christos 		if (tbl == NULL) {
    117  1.1  christos 			warnx("%s: adding primary GPT table failed",
    118  1.1  christos 			    device_name);
    119  1.1  christos 			return;
    120  1.1  christos 		}
    121  1.1  christos 		gpt_write(fd, tbl);
    122  1.1  christos 		warnx("%s: recovered primary GPT table from secondary",
    123  1.1  christos 		    device_name);
    124  1.1  christos 	}
    125  1.1  christos 
    126  1.1  christos 	if (gpt != NULL && tpg == NULL) {
    127  1.1  christos 		tpg = map_add(last, 1LL, MAP_TYPE_SEC_GPT_HDR,
    128  1.1  christos 		    calloc(1, secsz));
    129  1.1  christos 		if (tpg == NULL) {
    130  1.1  christos 			warnx("%s: adding secondary GPT header failed",
    131  1.1  christos 			    device_name);
    132  1.1  christos 			return;
    133  1.1  christos 		}
    134  1.1  christos 		memcpy(tpg->map_data, gpt->map_data, secsz);
    135  1.1  christos 		hdr = tpg->map_data;
    136  1.1  christos 		hdr->hdr_lba_self = htole64(tpg->map_start);
    137  1.1  christos 		hdr->hdr_lba_alt = htole64(gpt->map_start);
    138  1.1  christos 		hdr->hdr_lba_table = htole64(lbt->map_start);
    139  1.1  christos 		hdr->hdr_crc_self = 0;
    140  1.1  christos 		hdr->hdr_crc_self = htole32(crc32(hdr, le32toh(hdr->hdr_size)));
    141  1.1  christos 		gpt_write(fd, tpg);
    142  1.1  christos 		warnx("%s: recovered secondary GPT header from primary",
    143  1.1  christos 		    device_name);
    144  1.1  christos 	} else if (gpt == NULL && tpg != NULL) {
    145  1.1  christos 		gpt = map_add(1LL, 1LL, MAP_TYPE_PRI_GPT_HDR,
    146  1.1  christos 		    calloc(1, secsz));
    147  1.1  christos 		if (gpt == NULL) {
    148  1.1  christos 			warnx("%s: adding primary GPT header failed",
    149  1.1  christos 			    device_name);
    150  1.1  christos 			return;
    151  1.1  christos 		}
    152  1.1  christos 		memcpy(gpt->map_data, tpg->map_data, secsz);
    153  1.1  christos 		hdr = gpt->map_data;
    154  1.1  christos 		hdr->hdr_lba_self = htole64(gpt->map_start);
    155  1.1  christos 		hdr->hdr_lba_alt = htole64(tpg->map_start);
    156  1.1  christos 		hdr->hdr_lba_table = htole64(tbl->map_start);
    157  1.1  christos 		hdr->hdr_crc_self = 0;
    158  1.1  christos 		hdr->hdr_crc_self = htole32(crc32(hdr, le32toh(hdr->hdr_size)));
    159  1.1  christos 		gpt_write(fd, gpt);
    160  1.1  christos 		warnx("%s: recovered primary GPT header from secondary",
    161  1.1  christos 		    device_name);
    162  1.1  christos 	}
    163  1.1  christos }
    164  1.1  christos 
    165  1.1  christos int
    166  1.1  christos cmd_recover(int argc, char *argv[])
    167  1.1  christos {
    168  1.1  christos 	int ch, fd;
    169  1.1  christos 
    170  1.1  christos 	while ((ch = getopt(argc, argv, "r")) != -1) {
    171  1.1  christos 		switch(ch) {
    172  1.1  christos 		case 'r':
    173  1.1  christos 			recoverable = 1;
    174  1.1  christos 			break;
    175  1.1  christos 		default:
    176  1.1  christos 			usage_recover();
    177  1.1  christos 		}
    178  1.1  christos 	}
    179  1.1  christos 
    180  1.1  christos 	if (argc == optind)
    181  1.1  christos 		usage_recover();
    182  1.1  christos 
    183  1.1  christos 	while (optind < argc) {
    184  1.1  christos 		fd = gpt_open(argv[optind++]);
    185  1.1  christos 		if (fd == -1) {
    186  1.1  christos 			warn("unable to open device '%s'", device_name);
    187  1.1  christos 			continue;
    188  1.1  christos 		}
    189  1.1  christos 
    190  1.1  christos 		recover(fd);
    191  1.1  christos 
    192  1.1  christos 		gpt_close(fd);
    193  1.1  christos 	}
    194  1.1  christos 
    195  1.1  christos 	return (0);
    196  1.1  christos }
    197