2 * Copyright (c) 2004 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.
26 * $FreeBSD: src/sbin/gpt/remove.c,v 1.10 2006/10/04 18:20:25 marcel Exp $
27 * $DragonFly: src/sbin/gpt/remove.c,v 1.2 2007/06/17 08:34:59 dillon Exp $
30 #include <sys/types.h>
44 static off_t block
, size
;
45 static unsigned int entry
= NOENTRY
;
52 "usage: %s -a device ...\n"
53 " %s [-b lba] [-i index] [-s lba] [-t uuid] device ...\n",
54 getprogname(), getprogname());
69 gpt
= map_find(MAP_TYPE_PRI_GPT_HDR
);
71 warnx("%s: error: no primary GPT header; run create or recover",
76 tpg
= map_find(MAP_TYPE_SEC_GPT_HDR
);
78 warnx("%s: error: no secondary GPT header; run recover",
83 tbl
= map_find(MAP_TYPE_PRI_GPT_TBL
);
84 lbt
= map_find(MAP_TYPE_SEC_GPT_TBL
);
85 if (tbl
== NULL
|| lbt
== NULL
) {
86 warnx("%s: error: run recover -- trust me", device_name
);
90 /* Remove all matching entries in the map. */
91 for (m
= map_first(); m
!= NULL
; m
= m
->map_next
) {
92 if (m
->map_type
!= MAP_TYPE_GPT_PART
|| m
->map_index
== NOENTRY
)
94 if (entry
!= NOENTRY
&& entry
!= m
->map_index
)
96 if (block
> 0 && block
!= m
->map_start
)
98 if (size
> 0 && size
!= m
->map_size
)
104 ent
= (void*)((char*)tbl
->map_data
+ i
*
105 le32toh(hdr
->hdr_entsz
));
106 le_uuid_dec(&ent
->ent_type
, &uuid
);
107 if (!uuid_is_nil(&type
, NULL
) &&
108 !uuid_equal(&type
, &uuid
, NULL
))
111 /* Remove the primary entry by clearing the partition type. */
112 uuid_create_nil(&ent
->ent_type
, NULL
);
114 hdr
->hdr_crc_table
= htole32(crc32(tbl
->map_data
,
115 le32toh(hdr
->hdr_entries
) * le32toh(hdr
->hdr_entsz
)));
116 hdr
->hdr_crc_self
= 0;
117 hdr
->hdr_crc_self
= htole32(crc32(hdr
, le32toh(hdr
->hdr_size
)));
123 ent
= (void*)((char*)lbt
->map_data
+ i
*
124 le32toh(hdr
->hdr_entsz
));
126 /* Remove the secundary entry. */
127 uuid_create_nil(&ent
->ent_type
, NULL
);
129 hdr
->hdr_crc_table
= htole32(crc32(lbt
->map_data
,
130 le32toh(hdr
->hdr_entries
) * le32toh(hdr
->hdr_entsz
)));
131 hdr
->hdr_crc_self
= 0;
132 hdr
->hdr_crc_self
= htole32(crc32(hdr
, le32toh(hdr
->hdr_size
)));
137 printf("%ss%u removed\n", device_name
, m
->map_index
);
142 cmd_remove(int argc
, char *argv
[])
147 /* Get the remove options */
148 while ((ch
= getopt(argc
, argv
, "ab:i:s:t:")) != -1) {
158 block
= strtoll(optarg
, &p
, 10);
159 if (*p
!= 0 || block
< 1)
163 if (entry
!= NOENTRY
)
165 entry
= strtoul(optarg
, &p
, 10);
166 if (*p
!= 0 || entry
== NOENTRY
)
172 size
= strtoll(optarg
, &p
, 10);
173 if (*p
!= 0 || size
< 1)
177 if (!uuid_is_nil(&type
, NULL
))
179 if (parse_uuid(optarg
, &type
) != 0)
188 (block
> 0 || entry
!= NOENTRY
|| size
> 0 ||
189 !uuid_is_nil(&type
, NULL
)))
195 while (optind
< argc
) {
196 fd
= gpt_open(argv
[optind
++]);
198 warn("unable to open device '%s'", device_name
);