blob: 8db865fc694604769878a809903537cad900c5ae [file] [log] [blame]
Jason Hobbse11938e2011-08-23 11:06:56 +00001/*
2 * Copyright 2011 Calxeda, Inc.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Jason Hobbse11938e2011-08-23 11:06:56 +00005 */
6
7#include <linux/ctype.h>
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +02008#include <errno.h>
9#include <common.h>
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +020010#include <asm/io.h>
11#include <part_efi.h>
12#include <malloc.h>
Jason Hobbse11938e2011-08-23 11:06:56 +000013
14/*
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020015 * UUID - Universally Unique IDentifier - 128 bits unique number.
16 * There are 5 versions and one variant of UUID defined by RFC4122
17 * specification. Depends on version uuid number base on a time,
18 * host name, MAC address or random data.
Jason Hobbse11938e2011-08-23 11:06:56 +000019 *
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020020 * UUID binary format (16 bytes):
21 *
22 * 4B-2B-2B-2B-6B (big endian - network byte order)
23 *
24 * UUID string is 36 length of characters (36 bytes):
Jason Hobbse11938e2011-08-23 11:06:56 +000025 *
26 * 0 9 14 19 24
27 * xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020028 * be be be be be
29 *
30 * where x is a hexadecimal character. Fields are separated by '-'s.
31 * When converting to a binary UUID, le means the field should be converted
32 * to little endian and be means it should be converted to big endian.
33 *
34 * UUID is also used as GUID (Globally Unique Identifier) with the same binary
35 * format but it differs in string format like below.
36 *
37 * GUID:
38 * 0 9 14 19 24
39 * xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Jason Hobbse11938e2011-08-23 11:06:56 +000040 * le le le be be
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020041 *
42 * GUID is used e.g. in GPT (GUID Partition Table) as a partiions unique id.
Jason Hobbse11938e2011-08-23 11:06:56 +000043 */
Jason Hobbse11938e2011-08-23 11:06:56 +000044int uuid_str_valid(const char *uuid)
45{
46 int i, valid;
47
48 if (uuid == NULL)
49 return 0;
50
51 for (i = 0, valid = 1; uuid[i] && valid; i++) {
52 switch (i) {
53 case 8: case 13: case 18: case 23:
54 valid = (uuid[i] == '-');
55 break;
56 default:
57 valid = isxdigit(uuid[i]);
58 break;
59 }
60 }
61
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +020062 if (i != UUID_STR_LEN || !valid)
Jason Hobbse11938e2011-08-23 11:06:56 +000063 return 0;
64
65 return 1;
66}
67
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +020068/*
69 * uuid_str_to_bin() - convert string UUID or GUID to big endian binary data.
70 *
71 * @param uuid_str - pointer to UUID or GUID string [37B]
72 * @param uuid_bin - pointer to allocated array for big endian output [16B]
73 * @str_format - UUID string format: 0 - UUID; 1 - GUID
74 */
75int uuid_str_to_bin(char *uuid_str, unsigned char *uuid_bin, int str_format)
Jason Hobbse11938e2011-08-23 11:06:56 +000076{
77 uint16_t tmp16;
78 uint32_t tmp32;
79 uint64_t tmp64;
80
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +020081 if (!uuid_str_valid(uuid_str))
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020082 return -EINVAL;
83
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +020084 if (str_format == UUID_STR_FORMAT_STD) {
85 tmp32 = cpu_to_be32(simple_strtoul(uuid_str, NULL, 16));
86 memcpy(uuid_bin, &tmp32, 4);
Jason Hobbse11938e2011-08-23 11:06:56 +000087
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +020088 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 9, NULL, 16));
89 memcpy(uuid_bin + 4, &tmp16, 2);
Jason Hobbse11938e2011-08-23 11:06:56 +000090
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +020091 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 14, NULL, 16));
92 memcpy(uuid_bin + 6, &tmp16, 2);
93 } else {
94 tmp32 = cpu_to_le32(simple_strtoul(uuid_str, NULL, 16));
95 memcpy(uuid_bin, &tmp32, 4);
Jason Hobbse11938e2011-08-23 11:06:56 +000096
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +020097 tmp16 = cpu_to_le16(simple_strtoul(uuid_str + 9, NULL, 16));
98 memcpy(uuid_bin + 4, &tmp16, 2);
Jason Hobbse11938e2011-08-23 11:06:56 +000099
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200100 tmp16 = cpu_to_le16(simple_strtoul(uuid_str + 14, NULL, 16));
101 memcpy(uuid_bin + 6, &tmp16, 2);
102 }
Jason Hobbse11938e2011-08-23 11:06:56 +0000103
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200104 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 19, NULL, 16));
105 memcpy(uuid_bin + 8, &tmp16, 2);
106
107 tmp64 = cpu_to_be64(simple_strtoull(uuid_str + 24, NULL, 16));
108 memcpy(uuid_bin + 10, (char *)&tmp64 + 2, 6);
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200109
110 return 0;
111}
112
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200113/*
114 * uuid_bin_to_str() - convert big endian binary data to string UUID or GUID.
115 *
116 * @param uuid_bin - pointer to binary data of UUID (big endian) [16B]
117 * @param uuid_str - pointer to allocated array for output string [37B]
118 * @str_format - UUID string format: 0 - UUID; 1 - GUID
119 */
120void uuid_bin_to_str(unsigned char *uuid_bin, char *uuid_str, int str_format)
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200121{
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200122 const u8 uuid_char_order[UUID_BIN_LEN] = {0, 1, 2, 3, 4, 5, 6, 7, 8,
123 9, 10, 11, 12, 13, 14, 15};
124 const u8 guid_char_order[UUID_BIN_LEN] = {3, 2, 1, 0, 5, 4, 7, 6, 8,
125 9, 10, 11, 12, 13, 14, 15};
126 const u8 *char_order;
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200127 int i;
128
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200129 /*
130 * UUID and GUID bin data - always in big endian:
131 * 4B-2B-2B-2B-6B
132 * be be be be be
133 */
134 if (str_format == UUID_STR_FORMAT_STD)
135 char_order = uuid_char_order;
136 else
137 char_order = guid_char_order;
138
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200139 for (i = 0; i < 16; i++) {
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200140 sprintf(uuid_str, "%02x", uuid_bin[char_order[i]]);
141 uuid_str += 2;
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200142 switch (i) {
143 case 3:
144 case 5:
145 case 7:
146 case 9:
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200147 *uuid_str++ = '-';
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200148 break;
149 }
150 }
Jason Hobbse11938e2011-08-23 11:06:56 +0000151}