g_part_gpt.c revision 185497
1/*-
2 * Copyright (c) 2002, 2005, 2006, 2007 Marcel Moolenaar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
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.
14 *
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.
25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/sys/geom/part/g_part_gpt.c 185497 2008-12-01 00:07:17Z marcel $");
29
30#include <sys/param.h>
31#include <sys/bio.h>
32#include <sys/diskmbr.h>
33#include <sys/endian.h>
34#include <sys/gpt.h>
35#include <sys/kernel.h>
36#include <sys/kobj.h>
37#include <sys/limits.h>
38#include <sys/lock.h>
39#include <sys/malloc.h>
40#include <sys/mutex.h>
41#include <sys/queue.h>
42#include <sys/sbuf.h>
43#include <sys/systm.h>
44#include <sys/uuid.h>
45#include <geom/geom.h>
46#include <geom/part/g_part.h>
47
48#include "g_part_if.h"
49
50CTASSERT(offsetof(struct gpt_hdr, padding) == 92);
51CTASSERT(sizeof(struct gpt_ent) == 128);
52
53#define	EQUUID(a,b)	(memcmp(a, b, sizeof(struct uuid)) == 0)
54
55#define	MBRSIZE		512
56
57enum gpt_elt {
58	GPT_ELT_PRIHDR,
59	GPT_ELT_PRITBL,
60	GPT_ELT_SECHDR,
61	GPT_ELT_SECTBL,
62	GPT_ELT_COUNT
63};
64
65enum gpt_state {
66	GPT_STATE_UNKNOWN,	/* Not determined. */
67	GPT_STATE_MISSING,	/* No signature found. */
68	GPT_STATE_CORRUPT,	/* Checksum mismatch. */
69	GPT_STATE_INVALID,	/* Nonconformant/invalid. */
70	GPT_STATE_OK		/* Perfectly fine. */
71};
72
73struct g_part_gpt_table {
74	struct g_part_table	base;
75	u_char			mbr[MBRSIZE];
76	struct gpt_hdr		hdr;
77	quad_t			lba[GPT_ELT_COUNT];
78	enum gpt_state		state[GPT_ELT_COUNT];
79};
80
81struct g_part_gpt_entry {
82	struct g_part_entry	base;
83	struct gpt_ent		ent;
84};
85
86static void g_gpt_printf_utf16(struct sbuf *, uint16_t *, size_t);
87static void g_gpt_utf8_to_utf16(const uint8_t *, uint16_t *, size_t);
88
89static int g_part_gpt_add(struct g_part_table *, struct g_part_entry *,
90    struct g_part_parms *);
91static int g_part_gpt_bootcode(struct g_part_table *, struct g_part_parms *);
92static int g_part_gpt_create(struct g_part_table *, struct g_part_parms *);
93static int g_part_gpt_destroy(struct g_part_table *, struct g_part_parms *);
94static int g_part_gpt_dumpconf(struct g_part_table *, struct g_part_entry *,
95    struct sbuf *, const char *);
96static int g_part_gpt_dumpto(struct g_part_table *, struct g_part_entry *);
97static int g_part_gpt_modify(struct g_part_table *, struct g_part_entry *,
98    struct g_part_parms *);
99static char *g_part_gpt_name(struct g_part_table *, struct g_part_entry *,
100    char *, size_t);
101static int g_part_gpt_probe(struct g_part_table *, struct g_consumer *);
102static int g_part_gpt_read(struct g_part_table *, struct g_consumer *);
103static const char *g_part_gpt_type(struct g_part_table *, struct g_part_entry *,
104    char *, size_t);
105static int g_part_gpt_write(struct g_part_table *, struct g_consumer *);
106
107static kobj_method_t g_part_gpt_methods[] = {
108	KOBJMETHOD(g_part_add,		g_part_gpt_add),
109	KOBJMETHOD(g_part_bootcode,	g_part_gpt_bootcode),
110	KOBJMETHOD(g_part_create,	g_part_gpt_create),
111	KOBJMETHOD(g_part_destroy,	g_part_gpt_destroy),
112	KOBJMETHOD(g_part_dumpconf,	g_part_gpt_dumpconf),
113	KOBJMETHOD(g_part_dumpto,	g_part_gpt_dumpto),
114	KOBJMETHOD(g_part_modify,	g_part_gpt_modify),
115	KOBJMETHOD(g_part_name,		g_part_gpt_name),
116	KOBJMETHOD(g_part_probe,	g_part_gpt_probe),
117	KOBJMETHOD(g_part_read,		g_part_gpt_read),
118	KOBJMETHOD(g_part_type,		g_part_gpt_type),
119	KOBJMETHOD(g_part_write,	g_part_gpt_write),
120	{ 0, 0 }
121};
122
123static struct g_part_scheme g_part_gpt_scheme = {
124	"GPT",
125	g_part_gpt_methods,
126	sizeof(struct g_part_gpt_table),
127	.gps_entrysz = sizeof(struct g_part_gpt_entry),
128	.gps_minent = 128,
129	.gps_maxent = INT_MAX,
130	.gps_bootcodesz = MBRSIZE,
131};
132G_PART_SCHEME_DECLARE(g_part_gpt);
133
134static struct uuid gpt_uuid_apple_hfs = GPT_ENT_TYPE_APPLE_HFS;
135static struct uuid gpt_uuid_efi = GPT_ENT_TYPE_EFI;
136static struct uuid gpt_uuid_freebsd = GPT_ENT_TYPE_FREEBSD;
137static struct uuid gpt_uuid_freebsd_boot = GPT_ENT_TYPE_FREEBSD_BOOT;
138static struct uuid gpt_uuid_freebsd_swap = GPT_ENT_TYPE_FREEBSD_SWAP;
139static struct uuid gpt_uuid_freebsd_ufs = GPT_ENT_TYPE_FREEBSD_UFS;
140static struct uuid gpt_uuid_freebsd_vinum = GPT_ENT_TYPE_FREEBSD_VINUM;
141static struct uuid gpt_uuid_freebsd_zfs = GPT_ENT_TYPE_FREEBSD_ZFS;
142static struct uuid gpt_uuid_linux_swap = GPT_ENT_TYPE_LINUX_SWAP;
143static struct uuid gpt_uuid_mbr = GPT_ENT_TYPE_MBR;
144static struct uuid gpt_uuid_unused = GPT_ENT_TYPE_UNUSED;
145
146static void
147gpt_read_hdr(struct g_part_gpt_table *table, struct g_consumer *cp,
148    enum gpt_elt elt, struct gpt_hdr *hdr)
149{
150	struct uuid uuid;
151	struct g_provider *pp;
152	char *buf;
153	quad_t lba, last;
154	int error;
155	uint32_t crc, sz;
156
157	pp = cp->provider;
158	last = (pp->mediasize / pp->sectorsize) - 1;
159	table->lba[elt] = (elt == GPT_ELT_PRIHDR) ? 1 : last;
160	table->state[elt] = GPT_STATE_MISSING;
161	buf = g_read_data(cp, table->lba[elt] * pp->sectorsize, pp->sectorsize,
162	    &error);
163	if (buf == NULL)
164		return;
165	bcopy(buf, hdr, sizeof(*hdr));
166	if (memcmp(hdr->hdr_sig, GPT_HDR_SIG, sizeof(hdr->hdr_sig)) != 0)
167		return;
168
169	table->state[elt] = GPT_STATE_CORRUPT;
170	sz = le32toh(hdr->hdr_size);
171	if (sz < 92 || sz > pp->sectorsize)
172		return;
173	crc = le32toh(hdr->hdr_crc_self);
174	hdr->hdr_crc_self = 0;
175	if (crc32(hdr, sz) != crc)
176		return;
177	hdr->hdr_size = sz;
178	hdr->hdr_crc_self = crc;
179
180	table->state[elt] = GPT_STATE_INVALID;
181	hdr->hdr_revision = le32toh(hdr->hdr_revision);
182	if (hdr->hdr_revision < 0x00010000)
183		return;
184	hdr->hdr_lba_self = le64toh(hdr->hdr_lba_self);
185	if (hdr->hdr_lba_self != table->lba[elt])
186		return;
187	hdr->hdr_lba_alt = le64toh(hdr->hdr_lba_alt);
188
189	/* Check the managed area. */
190	hdr->hdr_lba_start = le64toh(hdr->hdr_lba_start);
191	if (hdr->hdr_lba_start < 2 || hdr->hdr_lba_start >= last)
192		return;
193	hdr->hdr_lba_end = le64toh(hdr->hdr_lba_end);
194	if (hdr->hdr_lba_end < hdr->hdr_lba_start || hdr->hdr_lba_end >= last)
195		return;
196
197	/* Check the table location and size of the table. */
198	hdr->hdr_entries = le32toh(hdr->hdr_entries);
199	hdr->hdr_entsz = le32toh(hdr->hdr_entsz);
200	if (hdr->hdr_entries == 0 || hdr->hdr_entsz < 128 ||
201	    (hdr->hdr_entsz & 7) != 0)
202		return;
203	hdr->hdr_lba_table = le64toh(hdr->hdr_lba_table);
204	if (hdr->hdr_lba_table < 2 || hdr->hdr_lba_table >= last)
205		return;
206	if (hdr->hdr_lba_table >= hdr->hdr_lba_start &&
207	    hdr->hdr_lba_table <= hdr->hdr_lba_end)
208		return;
209	lba = hdr->hdr_lba_table +
210	    (hdr->hdr_entries * hdr->hdr_entsz + pp->sectorsize - 1) /
211	    pp->sectorsize - 1;
212	if (lba >= last)
213		return;
214	if (lba >= hdr->hdr_lba_start && lba <= hdr->hdr_lba_end)
215		return;
216
217	table->state[elt] = GPT_STATE_OK;
218	le_uuid_dec(&hdr->hdr_uuid, &uuid);
219	hdr->hdr_uuid = uuid;
220	hdr->hdr_crc_table = le32toh(hdr->hdr_crc_table);
221}
222
223static struct gpt_ent *
224gpt_read_tbl(struct g_part_gpt_table *table, struct g_consumer *cp,
225    enum gpt_elt elt, struct gpt_hdr *hdr)
226{
227	struct g_provider *pp;
228	struct gpt_ent *ent, *tbl;
229	char *buf, *p;
230	unsigned int idx, sectors, tblsz;
231	int error;
232
233	pp = cp->provider;
234	table->lba[elt] = hdr->hdr_lba_table;
235
236	table->state[elt] = GPT_STATE_MISSING;
237	tblsz = hdr->hdr_entries * hdr->hdr_entsz;
238	sectors = (tblsz + pp->sectorsize - 1) / pp->sectorsize;
239	buf = g_read_data(cp, table->lba[elt] * pp->sectorsize,
240	    sectors * pp->sectorsize, &error);
241	if (buf == NULL)
242		return (NULL);
243
244	table->state[elt] = GPT_STATE_CORRUPT;
245	if (crc32(buf, tblsz) != hdr->hdr_crc_table) {
246		g_free(buf);
247		return (NULL);
248	}
249
250	table->state[elt] = GPT_STATE_OK;
251	tbl = g_malloc(hdr->hdr_entries * sizeof(struct gpt_ent),
252	    M_WAITOK | M_ZERO);
253
254	for (idx = 0, ent = tbl, p = buf;
255	     idx < hdr->hdr_entries;
256	     idx++, ent++, p += hdr->hdr_entsz) {
257		le_uuid_dec(p, &ent->ent_type);
258		le_uuid_dec(p + 16, &ent->ent_uuid);
259		ent->ent_lba_start = le64dec(p + 32);
260		ent->ent_lba_end = le64dec(p + 40);
261		ent->ent_attr = le64dec(p + 48);
262		/* Keep UTF-16 in little-endian. */
263		bcopy(p + 56, ent->ent_name, sizeof(ent->ent_name));
264	}
265
266	g_free(buf);
267	return (tbl);
268}
269
270static int
271gpt_matched_hdrs(struct gpt_hdr *pri, struct gpt_hdr *sec)
272{
273
274	if (!EQUUID(&pri->hdr_uuid, &sec->hdr_uuid))
275		return (0);
276	return ((pri->hdr_revision == sec->hdr_revision &&
277	    pri->hdr_size == sec->hdr_size &&
278	    pri->hdr_lba_start == sec->hdr_lba_start &&
279	    pri->hdr_lba_end == sec->hdr_lba_end &&
280	    pri->hdr_entries == sec->hdr_entries &&
281	    pri->hdr_entsz == sec->hdr_entsz &&
282	    pri->hdr_crc_table == sec->hdr_crc_table) ? 1 : 0);
283}
284
285static int
286gpt_parse_type(const char *type, struct uuid *uuid)
287{
288	struct uuid tmp;
289	const char *alias;
290	int error;
291
292	if (type[0] == '!') {
293		error = parse_uuid(type + 1, &tmp);
294		if (error)
295			return (error);
296		if (EQUUID(&tmp, &gpt_uuid_unused))
297			return (EINVAL);
298		*uuid = tmp;
299		return (0);
300	}
301	alias = g_part_alias_name(G_PART_ALIAS_EFI);
302	if (!strcasecmp(type, alias)) {
303		*uuid = gpt_uuid_efi;
304		return (0);
305	}
306	alias = g_part_alias_name(G_PART_ALIAS_FREEBSD);
307	if (!strcasecmp(type, alias)) {
308		*uuid = gpt_uuid_freebsd;
309		return (0);
310	}
311	alias = g_part_alias_name(G_PART_ALIAS_FREEBSD_BOOT);
312	if (!strcasecmp(type, alias)) {
313		*uuid = gpt_uuid_freebsd_boot;
314		return (0);
315	}
316	alias = g_part_alias_name(G_PART_ALIAS_FREEBSD_SWAP);
317	if (!strcasecmp(type, alias)) {
318		*uuid = gpt_uuid_freebsd_swap;
319		return (0);
320	}
321	alias = g_part_alias_name(G_PART_ALIAS_FREEBSD_UFS);
322	if (!strcasecmp(type, alias)) {
323		*uuid = gpt_uuid_freebsd_ufs;
324		return (0);
325	}
326	alias = g_part_alias_name(G_PART_ALIAS_FREEBSD_VINUM);
327	if (!strcasecmp(type, alias)) {
328		*uuid = gpt_uuid_freebsd_vinum;
329		return (0);
330	}
331	alias = g_part_alias_name(G_PART_ALIAS_FREEBSD_ZFS);
332	if (!strcasecmp(type, alias)) {
333		*uuid = gpt_uuid_freebsd_zfs;
334		return (0);
335	}
336	alias = g_part_alias_name(G_PART_ALIAS_MBR);
337	if (!strcasecmp(type, alias)) {
338		*uuid = gpt_uuid_mbr;
339		return (0);
340	}
341	alias = g_part_alias_name(G_PART_ALIAS_APPLE_HFS);
342	if (!strcasecmp(type, alias)) {
343		*uuid = gpt_uuid_apple_hfs;
344		return (0);
345	}
346	return (EINVAL);
347}
348
349static int
350g_part_gpt_add(struct g_part_table *basetable, struct g_part_entry *baseentry,
351    struct g_part_parms *gpp)
352{
353	struct g_part_gpt_entry *entry;
354	int error;
355
356	entry = (struct g_part_gpt_entry *)baseentry;
357	error = gpt_parse_type(gpp->gpp_type, &entry->ent.ent_type);
358	if (error)
359		return (error);
360	kern_uuidgen(&entry->ent.ent_uuid, 1);
361	entry->ent.ent_lba_start = baseentry->gpe_start;
362	entry->ent.ent_lba_end = baseentry->gpe_end;
363	if (baseentry->gpe_deleted) {
364		entry->ent.ent_attr = 0;
365		bzero(entry->ent.ent_name, sizeof(entry->ent.ent_name));
366	}
367	if (gpp->gpp_parms & G_PART_PARM_LABEL)
368		g_gpt_utf8_to_utf16(gpp->gpp_label, entry->ent.ent_name,
369		    sizeof(entry->ent.ent_name));
370	return (0);
371}
372
373static int
374g_part_gpt_bootcode(struct g_part_table *basetable, struct g_part_parms *gpp)
375{
376	struct g_part_gpt_table *table;
377	size_t codesz;
378
379	codesz = DOSPARTOFF;
380	table = (struct g_part_gpt_table *)basetable;
381	bzero(table->mbr, codesz);
382	codesz = MIN(codesz, gpp->gpp_codesize);
383	if (codesz > 0)
384		bcopy(gpp->gpp_codeptr, table->mbr, codesz);
385	return (0);
386}
387
388static int
389g_part_gpt_create(struct g_part_table *basetable, struct g_part_parms *gpp)
390{
391	struct g_provider *pp;
392	struct g_part_gpt_table *table;
393	quad_t last;
394	size_t tblsz;
395
396	table = (struct g_part_gpt_table *)basetable;
397	pp = gpp->gpp_provider;
398	tblsz = (basetable->gpt_entries * sizeof(struct gpt_ent) +
399	    pp->sectorsize - 1) / pp->sectorsize;
400	if (pp->sectorsize < MBRSIZE ||
401	    pp->mediasize < (3 + 2 * tblsz + basetable->gpt_entries) *
402	    pp->sectorsize)
403		return (ENOSPC);
404
405	last = (pp->mediasize / pp->sectorsize) - 1;
406
407	le16enc(table->mbr + DOSMAGICOFFSET, DOSMAGIC);
408	table->mbr[DOSPARTOFF + 1] = 0xff;		/* shd */
409	table->mbr[DOSPARTOFF + 2] = 0xff;		/* ssect */
410	table->mbr[DOSPARTOFF + 3] = 0xff;		/* scyl */
411	table->mbr[DOSPARTOFF + 4] = 0xee;		/* typ */
412	table->mbr[DOSPARTOFF + 5] = 0xff;		/* ehd */
413	table->mbr[DOSPARTOFF + 6] = 0xff;		/* esect */
414	table->mbr[DOSPARTOFF + 7] = 0xff;		/* ecyl */
415	le32enc(table->mbr + DOSPARTOFF + 8, 1);	/* start */
416	le32enc(table->mbr + DOSPARTOFF + 12, MIN(last, 0xffffffffLL));
417
418	table->lba[GPT_ELT_PRIHDR] = 1;
419	table->lba[GPT_ELT_PRITBL] = 2;
420	table->lba[GPT_ELT_SECHDR] = last;
421	table->lba[GPT_ELT_SECTBL] = last - tblsz;
422
423	bcopy(GPT_HDR_SIG, table->hdr.hdr_sig, sizeof(table->hdr.hdr_sig));
424	table->hdr.hdr_revision = GPT_HDR_REVISION;
425	table->hdr.hdr_size = offsetof(struct gpt_hdr, padding);
426	table->hdr.hdr_lba_start = 2 + tblsz;
427	table->hdr.hdr_lba_end = last - tblsz - 1;
428	kern_uuidgen(&table->hdr.hdr_uuid, 1);
429	table->hdr.hdr_entries = basetable->gpt_entries;
430	table->hdr.hdr_entsz = sizeof(struct gpt_ent);
431
432	basetable->gpt_first = table->hdr.hdr_lba_start;
433	basetable->gpt_last = table->hdr.hdr_lba_end;
434	return (0);
435}
436
437static int
438g_part_gpt_destroy(struct g_part_table *basetable, struct g_part_parms *gpp)
439{
440
441	/*
442	 * Wipe the first 2 sectors as well as the last to clear the
443	 * partitioning.
444	 */
445	basetable->gpt_smhead |= 3;
446	basetable->gpt_smtail |= 1;
447	return (0);
448}
449
450static int
451g_part_gpt_dumpconf(struct g_part_table *table, struct g_part_entry *baseentry,
452    struct sbuf *sb, const char *indent)
453{
454	struct g_part_gpt_entry *entry;
455
456	entry = (struct g_part_gpt_entry *)baseentry;
457	if (indent == NULL) {
458		/* conftxt: libdisk compatibility */
459		sbuf_printf(sb, " xs GPT xt ");
460		sbuf_printf_uuid(sb, &entry->ent.ent_type);
461	} else if (entry != NULL) {
462		/* confxml: partition entry information */
463		sbuf_printf(sb, "%s<label>", indent);
464		g_gpt_printf_utf16(sb, entry->ent.ent_name,
465		    sizeof(entry->ent.ent_name) >> 1);
466		sbuf_printf(sb, "</label>\n");
467		sbuf_printf(sb, "%s<rawtype>", indent);
468		sbuf_printf_uuid(sb, &entry->ent.ent_type);
469		sbuf_printf(sb, "</rawtype>\n");
470	} else {
471		/* confxml: scheme information */
472	}
473	return (0);
474}
475
476static int
477g_part_gpt_dumpto(struct g_part_table *table, struct g_part_entry *baseentry)
478{
479	struct g_part_gpt_entry *entry;
480
481	entry = (struct g_part_gpt_entry *)baseentry;
482	return ((EQUUID(&entry->ent.ent_type, &gpt_uuid_freebsd_swap) ||
483	    EQUUID(&entry->ent.ent_type, &gpt_uuid_linux_swap)) ? 1 : 0);
484}
485
486static int
487g_part_gpt_modify(struct g_part_table *basetable,
488    struct g_part_entry *baseentry, struct g_part_parms *gpp)
489{
490	struct g_part_gpt_entry *entry;
491	int error;
492
493	entry = (struct g_part_gpt_entry *)baseentry;
494	if (gpp->gpp_parms & G_PART_PARM_TYPE) {
495		error = gpt_parse_type(gpp->gpp_type, &entry->ent.ent_type);
496		if (error)
497			return (error);
498	}
499	if (gpp->gpp_parms & G_PART_PARM_LABEL)
500		g_gpt_utf8_to_utf16(gpp->gpp_label, entry->ent.ent_name,
501		    sizeof(entry->ent.ent_name));
502	return (0);
503}
504
505static char *
506g_part_gpt_name(struct g_part_table *table, struct g_part_entry *baseentry,
507    char *buf, size_t bufsz)
508{
509	struct g_part_gpt_entry *entry;
510	char c;
511
512	entry = (struct g_part_gpt_entry *)baseentry;
513	c = (EQUUID(&entry->ent.ent_type, &gpt_uuid_freebsd)) ? 's' : 'p';
514	snprintf(buf, bufsz, "%c%d", c, baseentry->gpe_index);
515	return (buf);
516}
517
518static int
519g_part_gpt_probe(struct g_part_table *table, struct g_consumer *cp)
520{
521	struct g_provider *pp;
522	char *buf;
523	int error, res;
524
525	/* We don't nest, which means that our depth should be 0. */
526	if (table->gpt_depth != 0)
527		return (ENXIO);
528
529	pp = cp->provider;
530
531	/*
532	 * Sanity-check the provider. Since the first sector on the provider
533	 * must be a PMBR and a PMBR is 512 bytes large, the sector size
534	 * must be at least 512 bytes.  Also, since the theoretical minimum
535	 * number of sectors needed by GPT is 6, any medium that has less
536	 * than 6 sectors is never going to be able to hold a GPT. The
537	 * number 6 comes from:
538	 *	1 sector for the PMBR
539	 *	2 sectors for the GPT headers (each 1 sector)
540	 *	2 sectors for the GPT tables (each 1 sector)
541	 *	1 sector for an actual partition
542	 * It's better to catch this pathological case early than behaving
543	 * pathologically later on...
544	 */
545	if (pp->sectorsize < MBRSIZE || pp->mediasize < 6 * pp->sectorsize)
546		return (ENOSPC);
547
548	/* Check that there's a MBR. */
549	buf = g_read_data(cp, 0L, pp->sectorsize, &error);
550	if (buf == NULL)
551		return (error);
552	res = le16dec(buf + DOSMAGICOFFSET);
553	g_free(buf);
554	if (res != DOSMAGIC)
555		return (ENXIO);
556
557	/* Check that there's a primary header. */
558	buf = g_read_data(cp, pp->sectorsize, pp->sectorsize, &error);
559	if (buf == NULL)
560		return (error);
561	res = memcmp(buf, GPT_HDR_SIG, 8);
562	g_free(buf);
563	if (res == 0)
564		return (G_PART_PROBE_PRI_HIGH);
565
566	/* No primary? Check that there's a secondary. */
567	buf = g_read_data(cp, pp->mediasize - pp->sectorsize, pp->sectorsize,
568	    &error);
569	if (buf == NULL)
570		return (error);
571	res = memcmp(buf, GPT_HDR_SIG, 8);
572	g_free(buf);
573	return ((res == 0) ? G_PART_PROBE_PRI_HIGH : ENXIO);
574}
575
576static int
577g_part_gpt_read(struct g_part_table *basetable, struct g_consumer *cp)
578{
579	struct gpt_hdr prihdr, sechdr;
580	struct gpt_ent *tbl, *pritbl, *sectbl;
581	struct g_provider *pp;
582	struct g_part_gpt_table *table;
583	struct g_part_gpt_entry *entry;
584	u_char *buf;
585	int error, index;
586
587	table = (struct g_part_gpt_table *)basetable;
588	pp = cp->provider;
589
590	/* Read the PMBR */
591	buf = g_read_data(cp, 0, pp->sectorsize, &error);
592	if (buf == NULL)
593		return (error);
594	bcopy(buf, table->mbr, MBRSIZE);
595	g_free(buf);
596
597	/* Read the primary header and table. */
598	gpt_read_hdr(table, cp, GPT_ELT_PRIHDR, &prihdr);
599	if (table->state[GPT_ELT_PRIHDR] == GPT_STATE_OK) {
600		pritbl = gpt_read_tbl(table, cp, GPT_ELT_PRITBL, &prihdr);
601	} else {
602		table->state[GPT_ELT_PRITBL] = GPT_STATE_MISSING;
603		pritbl = NULL;
604	}
605
606	/* Read the secondary header and table. */
607	gpt_read_hdr(table, cp, GPT_ELT_SECHDR, &sechdr);
608	if (table->state[GPT_ELT_SECHDR] == GPT_STATE_OK) {
609		sectbl = gpt_read_tbl(table, cp, GPT_ELT_SECTBL, &sechdr);
610	} else {
611		table->state[GPT_ELT_SECTBL] = GPT_STATE_MISSING;
612		sectbl = NULL;
613	}
614
615	/* Fail if we haven't got any good tables at all. */
616	if (table->state[GPT_ELT_PRITBL] != GPT_STATE_OK &&
617	    table->state[GPT_ELT_SECTBL] != GPT_STATE_OK) {
618		printf("GEOM: %s: corrupt or invalid GPT detected.\n",
619		    pp->name);
620		printf("GEOM: %s: GPT rejected -- may not be recoverable.\n",
621		    pp->name);
622		return (EINVAL);
623	}
624
625	/*
626	 * If both headers are good but they disagree with each other,
627	 * then invalidate one. We prefer to keep the primary header,
628	 * unless the primary table is corrupt.
629	 */
630	if (table->state[GPT_ELT_PRIHDR] == GPT_STATE_OK &&
631	    table->state[GPT_ELT_SECHDR] == GPT_STATE_OK &&
632	    !gpt_matched_hdrs(&prihdr, &sechdr)) {
633		if (table->state[GPT_ELT_PRITBL] == GPT_STATE_OK) {
634			table->state[GPT_ELT_SECHDR] = GPT_STATE_INVALID;
635			table->state[GPT_ELT_SECTBL] = GPT_STATE_MISSING;
636		} else {
637			table->state[GPT_ELT_PRIHDR] = GPT_STATE_INVALID;
638			table->state[GPT_ELT_PRITBL] = GPT_STATE_MISSING;
639		}
640	}
641
642	if (table->state[GPT_ELT_PRITBL] != GPT_STATE_OK) {
643		printf("GEOM: %s: the primary GPT table is corrupt or "
644		    "invalid.\n", pp->name);
645		printf("GEOM: %s: using the secondary instead -- recovery "
646		    "strongly advised.\n", pp->name);
647		table->hdr = sechdr;
648		tbl = sectbl;
649		if (pritbl != NULL)
650			g_free(pritbl);
651	} else {
652		if (table->state[GPT_ELT_SECTBL] != GPT_STATE_OK) {
653			printf("GEOM: %s: the secondary GPT table is corrupt "
654			    "or invalid.\n", pp->name);
655			printf("GEOM: %s: using the primary only -- recovery "
656			    "suggested.\n", pp->name);
657		}
658		table->hdr = prihdr;
659		tbl = pritbl;
660		if (sectbl != NULL)
661			g_free(sectbl);
662	}
663
664	basetable->gpt_first = table->hdr.hdr_lba_start;
665	basetable->gpt_last = table->hdr.hdr_lba_end;
666	basetable->gpt_entries = table->hdr.hdr_entries;
667
668	for (index = basetable->gpt_entries - 1; index >= 0; index--) {
669		if (EQUUID(&tbl[index].ent_type, &gpt_uuid_unused))
670			continue;
671		entry = (struct g_part_gpt_entry *)g_part_new_entry(basetable,
672		    index+1, tbl[index].ent_lba_start, tbl[index].ent_lba_end);
673		entry->ent = tbl[index];
674	}
675
676	g_free(tbl);
677	return (0);
678}
679
680static const char *
681g_part_gpt_type(struct g_part_table *basetable, struct g_part_entry *baseentry,
682    char *buf, size_t bufsz)
683{
684	struct g_part_gpt_entry *entry;
685	struct uuid *type;
686
687	entry = (struct g_part_gpt_entry *)baseentry;
688	type = &entry->ent.ent_type;
689	if (EQUUID(type, &gpt_uuid_efi))
690		return (g_part_alias_name(G_PART_ALIAS_EFI));
691	if (EQUUID(type, &gpt_uuid_freebsd))
692		return (g_part_alias_name(G_PART_ALIAS_FREEBSD));
693	if (EQUUID(type, &gpt_uuid_freebsd_boot))
694		return (g_part_alias_name(G_PART_ALIAS_FREEBSD_BOOT));
695	if (EQUUID(type, &gpt_uuid_freebsd_swap))
696		return (g_part_alias_name(G_PART_ALIAS_FREEBSD_SWAP));
697	if (EQUUID(type, &gpt_uuid_freebsd_ufs))
698		return (g_part_alias_name(G_PART_ALIAS_FREEBSD_UFS));
699	if (EQUUID(type, &gpt_uuid_freebsd_vinum))
700		return (g_part_alias_name(G_PART_ALIAS_FREEBSD_VINUM));
701	if (EQUUID(type, &gpt_uuid_freebsd_zfs))
702		return (g_part_alias_name(G_PART_ALIAS_FREEBSD_ZFS));
703	if (EQUUID(type, &gpt_uuid_mbr))
704		return (g_part_alias_name(G_PART_ALIAS_MBR));
705	buf[0] = '!';
706	snprintf_uuid(buf + 1, bufsz - 1, type);
707	return (buf);
708}
709
710static int
711g_part_gpt_write(struct g_part_table *basetable, struct g_consumer *cp)
712{
713	unsigned char *buf, *bp;
714	struct g_provider *pp;
715	struct g_part_entry *baseentry;
716	struct g_part_gpt_entry *entry;
717	struct g_part_gpt_table *table;
718	size_t tlbsz;
719	uint32_t crc;
720	int error, index;
721
722	pp = cp->provider;
723	table = (struct g_part_gpt_table *)basetable;
724	tlbsz = (table->hdr.hdr_entries * table->hdr.hdr_entsz +
725	    pp->sectorsize - 1) / pp->sectorsize;
726
727	/* Write the PMBR */
728	buf = g_malloc(pp->sectorsize, M_WAITOK | M_ZERO);
729	bcopy(table->mbr, buf, MBRSIZE);
730	error = g_write_data(cp, 0, buf, pp->sectorsize);
731	g_free(buf);
732	if (error)
733		return (error);
734
735	/* Allocate space for the header and entries. */
736	buf = g_malloc((tlbsz + 1) * pp->sectorsize, M_WAITOK | M_ZERO);
737
738	memcpy(buf, table->hdr.hdr_sig, sizeof(table->hdr.hdr_sig));
739	le32enc(buf + 8, table->hdr.hdr_revision);
740	le32enc(buf + 12, table->hdr.hdr_size);
741	le64enc(buf + 40, table->hdr.hdr_lba_start);
742	le64enc(buf + 48, table->hdr.hdr_lba_end);
743	le_uuid_enc(buf + 56, &table->hdr.hdr_uuid);
744	le32enc(buf + 80, table->hdr.hdr_entries);
745	le32enc(buf + 84, table->hdr.hdr_entsz);
746
747	LIST_FOREACH(baseentry, &basetable->gpt_entry, gpe_entry) {
748		if (baseentry->gpe_deleted)
749			continue;
750		entry = (struct g_part_gpt_entry *)baseentry;
751		index = baseentry->gpe_index - 1;
752		bp = buf + pp->sectorsize + table->hdr.hdr_entsz * index;
753		le_uuid_enc(bp, &entry->ent.ent_type);
754		le_uuid_enc(bp + 16, &entry->ent.ent_uuid);
755		le64enc(bp + 32, entry->ent.ent_lba_start);
756		le64enc(bp + 40, entry->ent.ent_lba_end);
757		le64enc(bp + 48, entry->ent.ent_attr);
758		memcpy(bp + 56, entry->ent.ent_name,
759		    sizeof(entry->ent.ent_name));
760	}
761
762	crc = crc32(buf + pp->sectorsize,
763	    table->hdr.hdr_entries * table->hdr.hdr_entsz);
764	le32enc(buf + 88, crc);
765
766	/* Write primary meta-data. */
767	le32enc(buf + 16, 0);	/* hdr_crc_self. */
768	le64enc(buf + 24, table->lba[GPT_ELT_PRIHDR]);	/* hdr_lba_self. */
769	le64enc(buf + 32, table->lba[GPT_ELT_SECHDR]);	/* hdr_lba_alt. */
770	le64enc(buf + 72, table->lba[GPT_ELT_PRITBL]);	/* hdr_lba_table. */
771	crc = crc32(buf, table->hdr.hdr_size);
772	le32enc(buf + 16, crc);
773
774	error = g_write_data(cp, table->lba[GPT_ELT_PRITBL] * pp->sectorsize,
775	    buf + pp->sectorsize, tlbsz * pp->sectorsize);
776	if (error)
777		goto out;
778	error = g_write_data(cp, table->lba[GPT_ELT_PRIHDR] * pp->sectorsize,
779	    buf, pp->sectorsize);
780	if (error)
781		goto out;
782
783	/* Write secondary meta-data. */
784	le32enc(buf + 16, 0);	/* hdr_crc_self. */
785	le64enc(buf + 24, table->lba[GPT_ELT_SECHDR]);	/* hdr_lba_self. */
786	le64enc(buf + 32, table->lba[GPT_ELT_PRIHDR]);	/* hdr_lba_alt. */
787	le64enc(buf + 72, table->lba[GPT_ELT_SECTBL]);	/* hdr_lba_table. */
788	crc = crc32(buf, table->hdr.hdr_size);
789	le32enc(buf + 16, crc);
790
791	error = g_write_data(cp, table->lba[GPT_ELT_SECTBL] * pp->sectorsize,
792	    buf + pp->sectorsize, tlbsz * pp->sectorsize);
793	if (error)
794		goto out;
795	error = g_write_data(cp, table->lba[GPT_ELT_SECHDR] * pp->sectorsize,
796	    buf, pp->sectorsize);
797
798 out:
799	g_free(buf);
800	return (error);
801}
802
803static void
804g_gpt_printf_utf16(struct sbuf *sb, uint16_t *str, size_t len)
805{
806	u_int bo;
807	uint32_t ch;
808	uint16_t c;
809
810	bo = LITTLE_ENDIAN;	/* GPT is little-endian */
811	while (len > 0 && *str != 0) {
812		ch = (bo == BIG_ENDIAN) ? be16toh(*str) : le16toh(*str);
813		str++, len--;
814		if ((ch & 0xf800) == 0xd800) {
815			if (len > 0) {
816				c = (bo == BIG_ENDIAN) ? be16toh(*str)
817				    : le16toh(*str);
818				str++, len--;
819			} else
820				c = 0xfffd;
821			if ((ch & 0x400) == 0 && (c & 0xfc00) == 0xdc00) {
822				ch = ((ch & 0x3ff) << 10) + (c & 0x3ff);
823				ch += 0x10000;
824			} else
825				ch = 0xfffd;
826		} else if (ch == 0xfffe) { /* BOM (U+FEFF) swapped. */
827			bo = (bo == BIG_ENDIAN) ? LITTLE_ENDIAN : BIG_ENDIAN;
828			continue;
829		} else if (ch == 0xfeff) /* BOM (U+FEFF) unswapped. */
830			continue;
831
832		/* Write the Unicode character in UTF-8 */
833		if (ch < 0x80)
834			sbuf_printf(sb, "%c", ch);
835		else if (ch < 0x800)
836			sbuf_printf(sb, "%c%c", 0xc0 | (ch >> 6),
837			    0x80 | (ch & 0x3f));
838		else if (ch < 0x10000)
839			sbuf_printf(sb, "%c%c%c", 0xe0 | (ch >> 12),
840			    0x80 | ((ch >> 6) & 0x3f), 0x80 | (ch & 0x3f));
841		else if (ch < 0x200000)
842			sbuf_printf(sb, "%c%c%c%c", 0xf0 | (ch >> 18),
843			    0x80 | ((ch >> 12) & 0x3f),
844			    0x80 | ((ch >> 6) & 0x3f), 0x80 | (ch & 0x3f));
845	}
846}
847
848static void
849g_gpt_utf8_to_utf16(const uint8_t *s8, uint16_t *s16, size_t s16len)
850{
851	size_t s16idx, s8idx;
852	uint32_t utfchar;
853	unsigned int c, utfbytes;
854
855	s8idx = s16idx = 0;
856	utfchar = 0;
857	utfbytes = 0;
858	bzero(s16, s16len << 1);
859	while (s8[s8idx] != 0 && s16idx < s16len) {
860		c = s8[s8idx++];
861		if ((c & 0xc0) != 0x80) {
862			/* Initial characters. */
863			if (utfbytes != 0) {
864				/* Incomplete encoding of previous char. */
865				s16[s16idx++] = htole16(0xfffd);
866			}
867			if ((c & 0xf8) == 0xf0) {
868				utfchar = c & 0x07;
869				utfbytes = 3;
870			} else if ((c & 0xf0) == 0xe0) {
871				utfchar = c & 0x0f;
872				utfbytes = 2;
873			} else if ((c & 0xe0) == 0xc0) {
874				utfchar = c & 0x1f;
875				utfbytes = 1;
876			} else {
877				utfchar = c & 0x7f;
878				utfbytes = 0;
879			}
880		} else {
881			/* Followup characters. */
882			if (utfbytes > 0) {
883				utfchar = (utfchar << 6) + (c & 0x3f);
884				utfbytes--;
885			} else if (utfbytes == 0)
886				utfbytes = ~0;
887		}
888		/*
889		 * Write the complete Unicode character as UTF-16 when we
890		 * have all the UTF-8 charactars collected.
891		 */
892		if (utfbytes == 0) {
893			/*
894			 * If we need to write 2 UTF-16 characters, but
895			 * we only have room for 1, then we truncate the
896			 * string by writing a 0 instead.
897			 */
898			if (utfchar >= 0x10000 && s16idx < s16len - 1) {
899				s16[s16idx++] =
900				    htole16(0xd800 | ((utfchar >> 10) - 0x40));
901				s16[s16idx++] =
902				    htole16(0xdc00 | (utfchar & 0x3ff));
903			} else
904				s16[s16idx++] = (utfchar >= 0x10000) ? 0 :
905				    htole16(utfchar);
906		}
907	}
908	/*
909	 * If our input string was truncated, append an invalid encoding
910	 * character to the output string.
911	 */
912	if (utfbytes != 0 && s16idx < s16len)
913		s16[s16idx++] = htole16(0xfffd);
914}
915