blob: f94c6abd2975cb549ee934acc7e417dfc6c2e213 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jason Hobbse11938e2011-08-23 11:06:56 +00002/*
3 * Copyright 2011 Calxeda, Inc.
Jason Hobbse11938e2011-08-23 11:06:56 +00004 */
5
Przemyslaw Marczak89c82302014-04-02 10:20:05 +02006#include <common.h>
Simon Glass9fb625c2019-08-01 09:46:51 -06007#include <env.h>
Simon Glass90526e92020-05-10 11:39:56 -06008#include <rand.h>
Simon Glass10453152019-11-14 12:57:30 -07009#include <time.h>
Simon Glassba06b3c2020-05-10 11:39:52 -060010#include <uuid.h>
Jason Hobbse11938e2011-08-23 11:06:56 +000011#include <linux/ctype.h>
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020012#include <errno.h>
13#include <common.h>
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +020014#include <asm/io.h>
15#include <part_efi.h>
16#include <malloc.h>
Jason Hobbse11938e2011-08-23 11:06:56 +000017
18/*
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020019 * UUID - Universally Unique IDentifier - 128 bits unique number.
20 * There are 5 versions and one variant of UUID defined by RFC4122
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +020021 * specification. A UUID contains a set of fields. The set varies
22 * depending on the version of the UUID, as shown below:
23 * - time, MAC address(v1),
24 * - user ID(v2),
25 * - MD5 of name or URL(v3),
26 * - random data(v4),
27 * - SHA-1 of name or URL(v5),
28 *
29 * Layout of UUID:
30 * timestamp - 60-bit: time_low, time_mid, time_hi_and_version
31 * version - 4 bit (bit 4 through 7 of the time_hi_and_version)
32 * clock seq - 14 bit: clock_seq_hi_and_reserved, clock_seq_low
33 * variant: - bit 6 and 7 of clock_seq_hi_and_reserved
34 * node - 48 bit
35 *
36 * source: https://www.ietf.org/rfc/rfc4122.txt
Jason Hobbse11938e2011-08-23 11:06:56 +000037 *
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020038 * UUID binary format (16 bytes):
39 *
40 * 4B-2B-2B-2B-6B (big endian - network byte order)
41 *
42 * UUID string is 36 length of characters (36 bytes):
Jason Hobbse11938e2011-08-23 11:06:56 +000043 *
44 * 0 9 14 19 24
45 * xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020046 * be be be be be
47 *
48 * where x is a hexadecimal character. Fields are separated by '-'s.
49 * When converting to a binary UUID, le means the field should be converted
50 * to little endian and be means it should be converted to big endian.
51 *
52 * UUID is also used as GUID (Globally Unique Identifier) with the same binary
53 * format but it differs in string format like below.
54 *
55 * GUID:
56 * 0 9 14 19 24
57 * xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Jason Hobbse11938e2011-08-23 11:06:56 +000058 * le le le be be
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020059 *
60 * GUID is used e.g. in GPT (GUID Partition Table) as a partiions unique id.
Jason Hobbse11938e2011-08-23 11:06:56 +000061 */
Jason Hobbse11938e2011-08-23 11:06:56 +000062int uuid_str_valid(const char *uuid)
63{
64 int i, valid;
65
66 if (uuid == NULL)
67 return 0;
68
69 for (i = 0, valid = 1; uuid[i] && valid; i++) {
70 switch (i) {
71 case 8: case 13: case 18: case 23:
72 valid = (uuid[i] == '-');
73 break;
74 default:
75 valid = isxdigit(uuid[i]);
76 break;
77 }
78 }
79
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +020080 if (i != UUID_STR_LEN || !valid)
Jason Hobbse11938e2011-08-23 11:06:56 +000081 return 0;
82
83 return 1;
84}
85
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +010086#ifdef CONFIG_PARTITION_TYPE_GUID
87static const struct {
88 const char *string;
89 efi_guid_t guid;
90} list_guid[] = {
91 {"system", PARTITION_SYSTEM_GUID},
92 {"mbr", LEGACY_MBR_PARTITION_GUID},
93 {"msft", PARTITION_MSFT_RESERVED_GUID},
94 {"data", PARTITION_BASIC_DATA_GUID},
95 {"linux", PARTITION_LINUX_FILE_SYSTEM_DATA_GUID},
96 {"raid", PARTITION_LINUX_RAID_GUID},
97 {"swap", PARTITION_LINUX_SWAP_GUID},
98 {"lvm", PARTITION_LINUX_LVM_GUID}
99};
100
101/*
102 * uuid_guid_get_bin() - this function get GUID bin for string
103 *
104 * @param guid_str - pointer to partition type string
105 * @param guid_bin - pointer to allocated array for big endian output [16B]
106 */
107int uuid_guid_get_bin(const char *guid_str, unsigned char *guid_bin)
108{
109 int i;
110
111 for (i = 0; i < ARRAY_SIZE(list_guid); i++) {
112 if (!strcmp(list_guid[i].string, guid_str)) {
113 memcpy(guid_bin, &list_guid[i].guid, 16);
114 return 0;
115 }
116 }
117 return -ENODEV;
118}
119
120/*
121 * uuid_guid_get_str() - this function get string for GUID.
122 *
123 * @param guid_bin - pointer to string with partition type guid [16B]
124 * @param guid_str - pointer to allocated partition type string [7B]
125 */
Simon Glass2c2ca202020-04-08 08:32:58 -0600126int uuid_guid_get_str(const unsigned char *guid_bin, char *guid_str)
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100127{
128 int i;
129
130 *guid_str = 0;
131 for (i = 0; i < ARRAY_SIZE(list_guid); i++) {
132 if (!memcmp(list_guid[i].guid.b, guid_bin, 16)) {
133 strcpy(guid_str, list_guid[i].string);
134 return 0;
135 }
136 }
137 return -ENODEV;
138}
139#endif
140
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200141/*
142 * uuid_str_to_bin() - convert string UUID or GUID to big endian binary data.
143 *
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100144 * @param uuid_str - pointer to UUID or GUID string [37B] or GUID shorcut
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200145 * @param uuid_bin - pointer to allocated array for big endian output [16B]
146 * @str_format - UUID string format: 0 - UUID; 1 - GUID
147 */
Simon Glass2c2ca202020-04-08 08:32:58 -0600148int uuid_str_to_bin(const char *uuid_str, unsigned char *uuid_bin,
149 int str_format)
Jason Hobbse11938e2011-08-23 11:06:56 +0000150{
151 uint16_t tmp16;
152 uint32_t tmp32;
153 uint64_t tmp64;
154
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100155 if (!uuid_str_valid(uuid_str)) {
156#ifdef CONFIG_PARTITION_TYPE_GUID
157 if (!uuid_guid_get_bin(uuid_str, uuid_bin))
158 return 0;
159#endif
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200160 return -EINVAL;
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100161 }
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200162
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200163 if (str_format == UUID_STR_FORMAT_STD) {
164 tmp32 = cpu_to_be32(simple_strtoul(uuid_str, NULL, 16));
165 memcpy(uuid_bin, &tmp32, 4);
Jason Hobbse11938e2011-08-23 11:06:56 +0000166
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200167 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 9, NULL, 16));
168 memcpy(uuid_bin + 4, &tmp16, 2);
Jason Hobbse11938e2011-08-23 11:06:56 +0000169
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200170 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 14, NULL, 16));
171 memcpy(uuid_bin + 6, &tmp16, 2);
172 } else {
173 tmp32 = cpu_to_le32(simple_strtoul(uuid_str, NULL, 16));
174 memcpy(uuid_bin, &tmp32, 4);
Jason Hobbse11938e2011-08-23 11:06:56 +0000175
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200176 tmp16 = cpu_to_le16(simple_strtoul(uuid_str + 9, NULL, 16));
177 memcpy(uuid_bin + 4, &tmp16, 2);
Jason Hobbse11938e2011-08-23 11:06:56 +0000178
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200179 tmp16 = cpu_to_le16(simple_strtoul(uuid_str + 14, NULL, 16));
180 memcpy(uuid_bin + 6, &tmp16, 2);
181 }
Jason Hobbse11938e2011-08-23 11:06:56 +0000182
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200183 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 19, NULL, 16));
184 memcpy(uuid_bin + 8, &tmp16, 2);
185
186 tmp64 = cpu_to_be64(simple_strtoull(uuid_str + 24, NULL, 16));
187 memcpy(uuid_bin + 10, (char *)&tmp64 + 2, 6);
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200188
189 return 0;
190}
191
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200192/*
193 * uuid_bin_to_str() - convert big endian binary data to string UUID or GUID.
194 *
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +0200195 * @param uuid_bin: pointer to binary data of UUID (big endian) [16B]
196 * @param uuid_str: pointer to allocated array for output string [37B]
197 * @str_format: bit 0: 0 - UUID; 1 - GUID
198 * bit 1: 0 - lower case; 2 - upper case
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200199 */
Simon Glass2c2ca202020-04-08 08:32:58 -0600200void uuid_bin_to_str(const unsigned char *uuid_bin, char *uuid_str,
201 int str_format)
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200202{
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200203 const u8 uuid_char_order[UUID_BIN_LEN] = {0, 1, 2, 3, 4, 5, 6, 7, 8,
204 9, 10, 11, 12, 13, 14, 15};
205 const u8 guid_char_order[UUID_BIN_LEN] = {3, 2, 1, 0, 5, 4, 7, 6, 8,
206 9, 10, 11, 12, 13, 14, 15};
207 const u8 *char_order;
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +0200208 const char *format;
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200209 int i;
210
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200211 /*
212 * UUID and GUID bin data - always in big endian:
213 * 4B-2B-2B-2B-6B
214 * be be be be be
215 */
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +0200216 if (str_format & UUID_STR_FORMAT_GUID)
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200217 char_order = guid_char_order;
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +0200218 else
219 char_order = uuid_char_order;
220 if (str_format & UUID_STR_UPPER_CASE)
221 format = "%02X";
222 else
223 format = "%02x";
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200224
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200225 for (i = 0; i < 16; i++) {
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +0200226 sprintf(uuid_str, format, uuid_bin[char_order[i]]);
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200227 uuid_str += 2;
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200228 switch (i) {
229 case 3:
230 case 5:
231 case 7:
232 case 9:
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200233 *uuid_str++ = '-';
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200234 break;
235 }
236 }
Jason Hobbse11938e2011-08-23 11:06:56 +0000237}
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200238
239/*
240 * gen_rand_uuid() - this function generates a random binary UUID version 4.
241 * In this version all fields beside 4 bits of version and
242 * 2 bits of variant are randomly generated.
243 *
244 * @param uuid_bin - pointer to allocated array [16B]. Output is in big endian.
245*/
Przemyslaw Marczak89c82302014-04-02 10:20:05 +0200246#if defined(CONFIG_RANDOM_UUID) || defined(CONFIG_CMD_UUID)
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200247void gen_rand_uuid(unsigned char *uuid_bin)
248{
Heinrich Schuchardta1b633d2019-07-14 23:31:50 +0200249 u32 ptr[4];
250 struct uuid *uuid = (struct uuid *)ptr;
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200251 int i;
252
Eugeniu Rosca4ccf6782019-05-02 14:27:06 +0200253 srand(get_ticks() + rand());
254
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200255 /* Set all fields randomly */
Heinrich Schuchardta1b633d2019-07-14 23:31:50 +0200256 for (i = 0; i < 4; i++)
257 ptr[i] = rand();
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200258
Heinrich Schuchardta1b633d2019-07-14 23:31:50 +0200259 clrsetbits_be16(&uuid->time_hi_and_version,
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200260 UUID_VERSION_MASK,
261 UUID_VERSION << UUID_VERSION_SHIFT);
262
Heinrich Schuchardta1b633d2019-07-14 23:31:50 +0200263 clrsetbits_8(&uuid->clock_seq_hi_and_reserved,
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200264 UUID_VARIANT_MASK,
265 UUID_VARIANT << UUID_VARIANT_SHIFT);
266
Heinrich Schuchardta1b633d2019-07-14 23:31:50 +0200267 memcpy(uuid_bin, uuid, 16);
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200268}
269
270/*
271 * gen_rand_uuid_str() - this function generates UUID v4 (random) in two string
272 * formats UUID or GUID.
273 *
274 * @param uuid_str - pointer to allocated array [37B].
275 * @param - uuid output type: UUID - 0, GUID - 1
276 */
277void gen_rand_uuid_str(char *uuid_str, int str_format)
278{
279 unsigned char uuid_bin[UUID_BIN_LEN];
280
281 /* Generate UUID (big endian) */
282 gen_rand_uuid(uuid_bin);
283
284 /* Convert UUID bin to UUID or GUID formated STRING */
285 uuid_bin_to_str(uuid_bin, uuid_str, str_format);
286}
Przemyslaw Marczak89c82302014-04-02 10:20:05 +0200287
Marek Vasut05f6da32019-01-07 21:23:38 +0100288#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_CMD_UUID)
Przemyslaw Marczak89c82302014-04-02 10:20:05 +0200289int do_uuid(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
290{
291 char uuid[UUID_STR_LEN + 1];
292 int str_format;
293
294 if (!strcmp(argv[0], "uuid"))
295 str_format = UUID_STR_FORMAT_STD;
296 else
297 str_format = UUID_STR_FORMAT_GUID;
298
299 if (argc > 2)
300 return CMD_RET_USAGE;
301
302 gen_rand_uuid_str(uuid, str_format);
303
304 if (argc == 1)
305 printf("%s\n", uuid);
306 else
Simon Glass382bee52017-08-03 12:22:09 -0600307 env_set(argv[1], uuid);
Przemyslaw Marczak89c82302014-04-02 10:20:05 +0200308
309 return CMD_RET_SUCCESS;
310}
311
312U_BOOT_CMD(uuid, CONFIG_SYS_MAXARGS, 1, do_uuid,
313 "UUID - generate random Universally Unique Identifier",
314 "[<varname>]\n"
315 "Argument:\n"
316 "varname: for set result in a environment variable\n"
317 "e.g. uuid uuid_env"
318);
319
320U_BOOT_CMD(guid, CONFIG_SYS_MAXARGS, 1, do_uuid,
321 "GUID - generate Globally Unique Identifier based on random UUID",
322 "[<varname>]\n"
323 "Argument:\n"
324 "varname: for set result in a environment variable\n"
325 "e.g. guid guid_env"
326);
Przemyslaw Marczak39206382014-04-02 10:20:06 +0200327#endif /* CONFIG_CMD_UUID */
328#endif /* CONFIG_RANDOM_UUID || CONFIG_CMD_UUID */