2011-08-23 11:06:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Calxeda, Inc.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-08-23 11:06:56 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/ctype.h>
|
2014-04-02 08:20:02 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <common.h>
|
2014-04-02 08:20:03 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
#include <part_efi.h>
|
|
|
|
#include <malloc.h>
|
2011-08-23 11:06:56 +00:00
|
|
|
|
|
|
|
/*
|
2014-04-02 08:20:02 +00:00
|
|
|
* UUID - Universally Unique IDentifier - 128 bits unique number.
|
|
|
|
* There are 5 versions and one variant of UUID defined by RFC4122
|
|
|
|
* specification. Depends on version uuid number base on a time,
|
|
|
|
* host name, MAC address or random data.
|
|
|
|
*
|
|
|
|
* UUID binary format (16 bytes):
|
|
|
|
*
|
|
|
|
* 4B-2B-2B-2B-6B (big endian - network byte order)
|
|
|
|
*
|
|
|
|
* UUID string is 36 length of characters (36 bytes):
|
|
|
|
*
|
|
|
|
* 0 9 14 19 24
|
|
|
|
* xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
|
|
* be be be be be
|
|
|
|
*
|
|
|
|
* where x is a hexadecimal character. Fields are separated by '-'s.
|
|
|
|
* When converting to a binary UUID, le means the field should be converted
|
|
|
|
* to little endian and be means it should be converted to big endian.
|
2011-08-23 11:06:56 +00:00
|
|
|
*
|
2014-04-02 08:20:02 +00:00
|
|
|
* UUID is also used as GUID (Globally Unique Identifier) with the same binary
|
|
|
|
* format but it differs in string format like below.
|
2011-08-23 11:06:56 +00:00
|
|
|
*
|
2014-04-02 08:20:02 +00:00
|
|
|
* GUID:
|
2011-08-23 11:06:56 +00:00
|
|
|
* 0 9 14 19 24
|
|
|
|
* xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
|
|
* le le le be be
|
2014-04-02 08:20:02 +00:00
|
|
|
*
|
|
|
|
* GUID is used e.g. in GPT (GUID Partition Table) as a partiions unique id.
|
2011-08-23 11:06:56 +00:00
|
|
|
*/
|
|
|
|
int uuid_str_valid(const char *uuid)
|
|
|
|
{
|
|
|
|
int i, valid;
|
|
|
|
|
|
|
|
if (uuid == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0, valid = 1; uuid[i] && valid; i++) {
|
|
|
|
switch (i) {
|
|
|
|
case 8: case 13: case 18: case 23:
|
|
|
|
valid = (uuid[i] == '-');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
valid = isxdigit(uuid[i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-02 08:20:03 +00:00
|
|
|
if (i != UUID_STR_LEN || !valid)
|
2011-08-23 11:06:56 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-04-02 08:20:03 +00:00
|
|
|
/*
|
|
|
|
* uuid_str_to_bin() - convert string UUID or GUID to big endian binary data.
|
|
|
|
*
|
|
|
|
* @param uuid_str - pointer to UUID or GUID string [37B]
|
|
|
|
* @param uuid_bin - pointer to allocated array for big endian output [16B]
|
|
|
|
* @str_format - UUID string format: 0 - UUID; 1 - GUID
|
|
|
|
*/
|
|
|
|
int uuid_str_to_bin(char *uuid_str, unsigned char *uuid_bin, int str_format)
|
2011-08-23 11:06:56 +00:00
|
|
|
{
|
|
|
|
uint16_t tmp16;
|
|
|
|
uint32_t tmp32;
|
|
|
|
uint64_t tmp64;
|
|
|
|
|
2014-04-02 08:20:03 +00:00
|
|
|
if (!uuid_str_valid(uuid_str))
|
2014-04-02 08:20:02 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2014-04-02 08:20:03 +00:00
|
|
|
if (str_format == UUID_STR_FORMAT_STD) {
|
|
|
|
tmp32 = cpu_to_be32(simple_strtoul(uuid_str, NULL, 16));
|
|
|
|
memcpy(uuid_bin, &tmp32, 4);
|
2011-08-23 11:06:56 +00:00
|
|
|
|
2014-04-02 08:20:03 +00:00
|
|
|
tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 9, NULL, 16));
|
|
|
|
memcpy(uuid_bin + 4, &tmp16, 2);
|
2011-08-23 11:06:56 +00:00
|
|
|
|
2014-04-02 08:20:03 +00:00
|
|
|
tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 14, NULL, 16));
|
|
|
|
memcpy(uuid_bin + 6, &tmp16, 2);
|
|
|
|
} else {
|
|
|
|
tmp32 = cpu_to_le32(simple_strtoul(uuid_str, NULL, 16));
|
|
|
|
memcpy(uuid_bin, &tmp32, 4);
|
2011-08-23 11:06:56 +00:00
|
|
|
|
2014-04-02 08:20:03 +00:00
|
|
|
tmp16 = cpu_to_le16(simple_strtoul(uuid_str + 9, NULL, 16));
|
|
|
|
memcpy(uuid_bin + 4, &tmp16, 2);
|
2011-08-23 11:06:56 +00:00
|
|
|
|
2014-04-02 08:20:03 +00:00
|
|
|
tmp16 = cpu_to_le16(simple_strtoul(uuid_str + 14, NULL, 16));
|
|
|
|
memcpy(uuid_bin + 6, &tmp16, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 19, NULL, 16));
|
|
|
|
memcpy(uuid_bin + 8, &tmp16, 2);
|
2011-08-23 11:06:56 +00:00
|
|
|
|
2014-04-02 08:20:03 +00:00
|
|
|
tmp64 = cpu_to_be64(simple_strtoull(uuid_str + 24, NULL, 16));
|
|
|
|
memcpy(uuid_bin + 10, (char *)&tmp64 + 2, 6);
|
2014-04-02 08:20:02 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-04-02 08:20:03 +00:00
|
|
|
/*
|
|
|
|
* uuid_bin_to_str() - convert big endian binary data to string UUID or GUID.
|
|
|
|
*
|
|
|
|
* @param uuid_bin - pointer to binary data of UUID (big endian) [16B]
|
|
|
|
* @param uuid_str - pointer to allocated array for output string [37B]
|
|
|
|
* @str_format - UUID string format: 0 - UUID; 1 - GUID
|
|
|
|
*/
|
|
|
|
void uuid_bin_to_str(unsigned char *uuid_bin, char *uuid_str, int str_format)
|
2014-04-02 08:20:02 +00:00
|
|
|
{
|
2014-04-02 08:20:03 +00:00
|
|
|
const u8 uuid_char_order[UUID_BIN_LEN] = {0, 1, 2, 3, 4, 5, 6, 7, 8,
|
|
|
|
9, 10, 11, 12, 13, 14, 15};
|
|
|
|
const u8 guid_char_order[UUID_BIN_LEN] = {3, 2, 1, 0, 5, 4, 7, 6, 8,
|
|
|
|
9, 10, 11, 12, 13, 14, 15};
|
|
|
|
const u8 *char_order;
|
2014-04-02 08:20:02 +00:00
|
|
|
int i;
|
|
|
|
|
2014-04-02 08:20:03 +00:00
|
|
|
/*
|
|
|
|
* UUID and GUID bin data - always in big endian:
|
|
|
|
* 4B-2B-2B-2B-6B
|
|
|
|
* be be be be be
|
|
|
|
*/
|
|
|
|
if (str_format == UUID_STR_FORMAT_STD)
|
|
|
|
char_order = uuid_char_order;
|
|
|
|
else
|
|
|
|
char_order = guid_char_order;
|
|
|
|
|
2014-04-02 08:20:02 +00:00
|
|
|
for (i = 0; i < 16; i++) {
|
2014-04-02 08:20:03 +00:00
|
|
|
sprintf(uuid_str, "%02x", uuid_bin[char_order[i]]);
|
|
|
|
uuid_str += 2;
|
2014-04-02 08:20:02 +00:00
|
|
|
switch (i) {
|
|
|
|
case 3:
|
|
|
|
case 5:
|
|
|
|
case 7:
|
|
|
|
case 9:
|
2014-04-02 08:20:03 +00:00
|
|
|
*uuid_str++ = '-';
|
2014-04-02 08:20:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-08-23 11:06:56 +00:00
|
|
|
}
|