Home | History | Annotate | Line # | Download | only in gpt
gpt_uuid.c revision 1.1
      1 /*	$NetBSD: gpt_uuid.c,v 1.1 2014/09/30 17:59:59 christos Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2014 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  *
     16  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26  * POSSIBILITY OF SUCH DAMAGE.
     27  */
     28 
     29 #if HAVE_NBTOOL_CONFIG_H
     30 #include "nbtool_config.h"
     31 #endif
     32 
     33 #include <sys/cdefs.h>
     34 #ifdef __RCSID
     35 __RCSID("$NetBSD: gpt_uuid.c,v 1.1 2014/09/30 17:59:59 christos Exp $");
     36 #endif
     37 
     38 #include <stdio.h>
     39 
     40 #include "map.h"
     41 #include "gpt.h"
     42 
     43 #ifndef HAVE_NBTOOLS_CONFIG_H
     44 #include <sys/endian.h>
     45 #endif
     46 
     47 const gpt_uuid_t gpt_uuid_nil;
     48 
     49 struct dce_uuid {
     50 	uint32_t	time_low;
     51 	uint16_t	time_mid;
     52 	uint16_t	time_hi_and_version;
     53 	uint8_t		clock_seq_hi_and_reserved;
     54 	uint8_t		clock_seq_low;
     55 	uint8_t		node[6];
     56 };
     57 
     58 static const struct {
     59 	struct dce_uuid u;
     60 	const char *n;
     61 	const char *d;
     62 } gpt_nv[] = {
     63 	{ GPT_ENT_TYPE_APPLE_HFS, "apple", "Apple HFS" },
     64 	{ GPT_ENT_TYPE_BIOS, "bios", "BIOS Boot" },
     65 	{ GPT_ENT_TYPE_EFI, "efi", "EFI System" },
     66 	{ GPT_ENT_TYPE_FREEBSD, "fbsd-legacy", "FreeBSD legacy" },
     67 	{ GPT_ENT_TYPE_FREEBSD_SWAP, "fbsd-swap", "FreeBSD swap" },
     68 	{ GPT_ENT_TYPE_FREEBSD_UFS, "fbsd-ufs", "FreeBSD UFS/UFS2" },
     69 	{ GPT_ENT_TYPE_FREEBSD_VINUM, "fbsd-vinum", "FreeBSD vinum" },
     70 	{ GPT_ENT_TYPE_FREEBSD_ZFS, "fbsd-zfs", "FreeBSD ZFS" },
     71 	{ GPT_ENT_TYPE_LINUX_DATA, "linux-data", "Linux data" },
     72 	{ GPT_ENT_TYPE_LINUX_SWAP, "linux-swap", "Linux swap" },
     73 	{ GPT_ENT_TYPE_MS_BASIC_DATA, "windows", "Windows basic data" },
     74 	{ GPT_ENT_TYPE_MS_RESERVED, "windows-reserved", "Windows reserved" },
     75 	{ GPT_ENT_TYPE_NETBSD_CCD, "ccd", "NetBSD ccd component" },
     76 	{ GPT_ENT_TYPE_NETBSD_CGD, "cgd", "NetBSD Cryptographic Disk" },
     77 	{ GPT_ENT_TYPE_NETBSD_FFS, "ffs", "NetBSD FFSv1/FFSv2" },
     78 	{ GPT_ENT_TYPE_NETBSD_LFS, "lfs", "NetBSD LFS" },
     79 	{ GPT_ENT_TYPE_NETBSD_RAIDFRAME, "raid",
     80 	    "NetBSD RAIDFrame component" },
     81 	{ GPT_ENT_TYPE_NETBSD_SWAP, "swap", "NetBSD swap" },
     82 };
     83 
     84 static void
     85 gpt_uuid_to_dce(const gpt_uuid_t buf, struct dce_uuid *uuid)
     86 {
     87 	const uint8_t *p = buf;
     88 	size_t i;
     89 
     90 	uuid->time_low = le32dec(p);
     91 	uuid->time_mid = le16dec(p + 4);
     92 	uuid->time_hi_and_version = le16dec(p + 6);
     93 	uuid->clock_seq_hi_and_reserved = p[8];
     94 	uuid->clock_seq_low = p[9];
     95 	for (i = 0; i < sizeof(uuid->node); i++)
     96 		uuid->node[i] = p[10 + i];
     97 }
     98 
     99 static void
    100 gpt_dce_to_uuid(const struct dce_uuid *uuid, uint8_t *buf)
    101 {
    102 	uint8_t *p = buf;
    103 	size_t i;
    104 
    105 	le32enc(p, uuid->time_low);
    106 	le16enc(p + 4, uuid->time_mid);
    107 	le16enc(p + 6, uuid->time_hi_and_version);
    108 	p[8] = uuid->clock_seq_hi_and_reserved;
    109 	p[9] = uuid->clock_seq_low;
    110 	for (i = 0; i < sizeof(uuid->node); i++)
    111 		p[10 + i] = uuid->node[i];
    112 }
    113 
    114 static int
    115 gpt_uuid_numeric(char *buf, size_t bufsiz, const struct dce_uuid *u)
    116 {
    117 	return snprintf(buf, bufsiz,
    118 	    "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
    119 	    u->time_low, u->time_mid, u->time_hi_and_version,
    120 	    u->clock_seq_hi_and_reserved, u->clock_seq_low, u->node[0],
    121 	    u->node[1], u->node[2], u->node[3], u->node[4], u->node[5]);
    122 }
    123 
    124 
    125 static int
    126 gpt_uuid_symbolic(char *buf, size_t bufsiz, const struct dce_uuid *u)
    127 {
    128 	size_t i;
    129 
    130 	for (i = 0; i < __arraycount(gpt_nv); i++)
    131 		if (memcmp(&gpt_nv[i].u, u, sizeof(*u)) == 0)
    132 			return strlcpy(buf, gpt_nv[i].n, bufsiz);
    133 	return -1;
    134 }
    135 
    136 int
    137 gpt_uuid_snprintf(char *buf, size_t bufsiz, const char *fmt,
    138     const gpt_uuid_t uu)
    139 {
    140 	struct dce_uuid u;
    141 	gpt_uuid_to_dce(uu, &u);
    142 
    143 	if (fmt[1] == 's') {
    144 		int r;
    145 		if ((r = gpt_uuid_symbolic(buf, bufsiz, &u)) != -1)
    146 			return r;
    147 	}
    148 	return gpt_uuid_numeric(buf, bufsiz, &u);
    149 }
    150 
    151 static int
    152 gpt_uuid_parse_numeric(const char *s, struct dce_uuid *u)
    153 {
    154 	int n;
    155 
    156 	if (s == NULL || *s == '\0') {
    157 		memset(u, 0, sizeof(*u));
    158 		return 0;
    159 	}
    160 
    161 	n = sscanf(s,
    162 	    "%8x-%4hx-%4hx-%2hhx%2hhx-%2hhx%2hhx%2hhx%2hhx%2hhx%2hhx",
    163 	    &u->time_low, &u->time_mid, &u->time_hi_and_version,
    164 	    &u->clock_seq_hi_and_reserved, &u->clock_seq_low, &u->node[0],
    165 	    &u->node[1], &u->node[2], &u->node[3], &u->node[4], &u->node[5]);
    166 
    167 	/* Make sure we have all conversions. */
    168 	if (n != 11)
    169 		return -1;
    170 
    171 	/* We have a successful scan. Check semantics... */
    172 	n = u->clock_seq_hi_and_reserved;
    173 	if ((n & 0x80) != 0x00 &&			/* variant 0? */
    174 	    (n & 0xc0) != 0x80 &&			/* variant 1? */
    175 	    (n & 0xe0) != 0xc0) 			/* variant 2? */
    176 		return -1;
    177 	return 0;
    178 }
    179 
    180 static int
    181 gpt_uuid_parse_symbolic(const char *s, struct dce_uuid *u)
    182 {
    183 	size_t i;
    184 
    185 	for (i = 0; i < __arraycount(gpt_nv); i++)
    186 		if (strcmp(gpt_nv[i].n, s) == 0) {
    187 			*u = gpt_nv[i].u;
    188 			return 0;
    189 		}
    190 	return -1;
    191 }
    192 
    193 int
    194 gpt_uuid_parse(const char *s, gpt_uuid_t uuid)
    195 {
    196 	struct dce_uuid u;
    197 
    198 	if (gpt_uuid_parse_numeric(s, &u) != -1)
    199 		return 0;
    200 
    201 	if (gpt_uuid_parse_symbolic(s, &u) == -1)
    202 		return -1;
    203 
    204 	gpt_dce_to_uuid(&u, uuid);
    205 	return 0;
    206 }
    207 
    208 void
    209 gpt_uuid_create(gpt_type_t t, gpt_uuid_t u, uint16_t *b, size_t s)
    210 {
    211 	gpt_dce_to_uuid(&gpt_nv[t].u, u);
    212 	if (b)
    213 		utf8_to_utf16((const uint8_t *)gpt_nv[t].d, b, s / sizeof(*b));
    214 }
    215