blob: 56c452ee77ecead2958bbd1884404e4290f14bba [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 Glass09140112020-05-10 11:40:03 -06007#include <command.h>
Simon Glass9fb625c2019-08-01 09:46:51 -06008#include <env.h>
Simon Glass90526e92020-05-10 11:39:56 -06009#include <rand.h>
Simon Glass10453152019-11-14 12:57:30 -070010#include <time.h>
Simon Glassba06b3c2020-05-10 11:39:52 -060011#include <uuid.h>
Jason Hobbse11938e2011-08-23 11:06:56 +000012#include <linux/ctype.h>
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020013#include <errno.h>
14#include <common.h>
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +020015#include <asm/io.h>
16#include <part_efi.h>
17#include <malloc.h>
Matthias Brugger92fdad22020-12-18 10:28:03 +010018#include <dm/uclass.h>
19#include <rng.h>
Jason Hobbse11938e2011-08-23 11:06:56 +000020
21/*
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020022 * UUID - Universally Unique IDentifier - 128 bits unique number.
23 * There are 5 versions and one variant of UUID defined by RFC4122
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +020024 * specification. A UUID contains a set of fields. The set varies
25 * depending on the version of the UUID, as shown below:
26 * - time, MAC address(v1),
27 * - user ID(v2),
28 * - MD5 of name or URL(v3),
29 * - random data(v4),
30 * - SHA-1 of name or URL(v5),
31 *
32 * Layout of UUID:
33 * timestamp - 60-bit: time_low, time_mid, time_hi_and_version
34 * version - 4 bit (bit 4 through 7 of the time_hi_and_version)
35 * clock seq - 14 bit: clock_seq_hi_and_reserved, clock_seq_low
36 * variant: - bit 6 and 7 of clock_seq_hi_and_reserved
37 * node - 48 bit
38 *
39 * source: https://www.ietf.org/rfc/rfc4122.txt
Jason Hobbse11938e2011-08-23 11:06:56 +000040 *
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020041 * UUID binary format (16 bytes):
42 *
43 * 4B-2B-2B-2B-6B (big endian - network byte order)
44 *
45 * UUID string is 36 length of characters (36 bytes):
Jason Hobbse11938e2011-08-23 11:06:56 +000046 *
47 * 0 9 14 19 24
48 * xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020049 * be be be be be
50 *
51 * where x is a hexadecimal character. Fields are separated by '-'s.
52 * When converting to a binary UUID, le means the field should be converted
53 * to little endian and be means it should be converted to big endian.
54 *
55 * UUID is also used as GUID (Globally Unique Identifier) with the same binary
56 * format but it differs in string format like below.
57 *
58 * GUID:
59 * 0 9 14 19 24
60 * xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Jason Hobbse11938e2011-08-23 11:06:56 +000061 * le le le be be
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +020062 *
63 * GUID is used e.g. in GPT (GUID Partition Table) as a partiions unique id.
Jason Hobbse11938e2011-08-23 11:06:56 +000064 */
Jason Hobbse11938e2011-08-23 11:06:56 +000065int uuid_str_valid(const char *uuid)
66{
67 int i, valid;
68
69 if (uuid == NULL)
70 return 0;
71
72 for (i = 0, valid = 1; uuid[i] && valid; i++) {
73 switch (i) {
74 case 8: case 13: case 18: case 23:
75 valid = (uuid[i] == '-');
76 break;
77 default:
78 valid = isxdigit(uuid[i]);
79 break;
80 }
81 }
82
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +020083 if (i != UUID_STR_LEN || !valid)
Jason Hobbse11938e2011-08-23 11:06:56 +000084 return 0;
85
86 return 1;
87}
88
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +010089static const struct {
90 const char *string;
91 efi_guid_t guid;
92} list_guid[] = {
Heinrich Schuchardtc1528f32022-01-16 11:55:39 +010093#ifdef CONFIG_PARTITION_TYPE_GUID
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +010094 {"system", PARTITION_SYSTEM_GUID},
95 {"mbr", LEGACY_MBR_PARTITION_GUID},
96 {"msft", PARTITION_MSFT_RESERVED_GUID},
97 {"data", PARTITION_BASIC_DATA_GUID},
98 {"linux", PARTITION_LINUX_FILE_SYSTEM_DATA_GUID},
99 {"raid", PARTITION_LINUX_RAID_GUID},
100 {"swap", PARTITION_LINUX_SWAP_GUID},
Rasmus Villemoesc0364ce2020-11-20 11:45:36 +0100101 {"lvm", PARTITION_LINUX_LVM_GUID},
102 {"u-boot-env", PARTITION_U_BOOT_ENVIRONMENT},
Heinrich Schuchardtc1528f32022-01-16 11:55:39 +0100103#endif
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100104};
105
106/*
107 * uuid_guid_get_bin() - this function get GUID bin for string
108 *
109 * @param guid_str - pointer to partition type string
110 * @param guid_bin - pointer to allocated array for big endian output [16B]
111 */
112int uuid_guid_get_bin(const char *guid_str, unsigned char *guid_bin)
113{
114 int i;
115
116 for (i = 0; i < ARRAY_SIZE(list_guid); i++) {
117 if (!strcmp(list_guid[i].string, guid_str)) {
118 memcpy(guid_bin, &list_guid[i].guid, 16);
119 return 0;
120 }
121 }
122 return -ENODEV;
123}
124
125/*
126 * uuid_guid_get_str() - this function get string for GUID.
127 *
128 * @param guid_bin - pointer to string with partition type guid [16B]
Rasmus Villemoes31ce3672020-11-20 11:45:35 +0100129 *
130 * Returns NULL if the type GUID is not known.
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100131 */
Rasmus Villemoes31ce3672020-11-20 11:45:35 +0100132const char *uuid_guid_get_str(const unsigned char *guid_bin)
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100133{
134 int i;
135
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100136 for (i = 0; i < ARRAY_SIZE(list_guid); i++) {
137 if (!memcmp(list_guid[i].guid.b, guid_bin, 16)) {
Rasmus Villemoes31ce3672020-11-20 11:45:35 +0100138 return list_guid[i].string;
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100139 }
140 }
Rasmus Villemoes31ce3672020-11-20 11:45:35 +0100141 return NULL;
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100142}
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100143
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200144/*
145 * uuid_str_to_bin() - convert string UUID or GUID to big endian binary data.
146 *
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100147 * @param uuid_str - pointer to UUID or GUID string [37B] or GUID shorcut
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200148 * @param uuid_bin - pointer to allocated array for big endian output [16B]
149 * @str_format - UUID string format: 0 - UUID; 1 - GUID
150 */
Simon Glass2c2ca202020-04-08 08:32:58 -0600151int uuid_str_to_bin(const char *uuid_str, unsigned char *uuid_bin,
152 int str_format)
Jason Hobbse11938e2011-08-23 11:06:56 +0000153{
154 uint16_t tmp16;
155 uint32_t tmp32;
156 uint64_t tmp64;
157
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100158 if (!uuid_str_valid(uuid_str)) {
159#ifdef CONFIG_PARTITION_TYPE_GUID
160 if (!uuid_guid_get_bin(uuid_str, uuid_bin))
161 return 0;
162#endif
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200163 return -EINVAL;
Patrick Delaunaybcb41dc2015-10-27 11:00:28 +0100164 }
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200165
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200166 if (str_format == UUID_STR_FORMAT_STD) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600167 tmp32 = cpu_to_be32(hextoul(uuid_str, NULL));
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200168 memcpy(uuid_bin, &tmp32, 4);
Jason Hobbse11938e2011-08-23 11:06:56 +0000169
Simon Glass7e5f4602021-07-24 09:03:29 -0600170 tmp16 = cpu_to_be16(hextoul(uuid_str + 9, NULL));
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200171 memcpy(uuid_bin + 4, &tmp16, 2);
Jason Hobbse11938e2011-08-23 11:06:56 +0000172
Simon Glass7e5f4602021-07-24 09:03:29 -0600173 tmp16 = cpu_to_be16(hextoul(uuid_str + 14, NULL));
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200174 memcpy(uuid_bin + 6, &tmp16, 2);
175 } else {
Simon Glass7e5f4602021-07-24 09:03:29 -0600176 tmp32 = cpu_to_le32(hextoul(uuid_str, NULL));
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200177 memcpy(uuid_bin, &tmp32, 4);
Jason Hobbse11938e2011-08-23 11:06:56 +0000178
Simon Glass7e5f4602021-07-24 09:03:29 -0600179 tmp16 = cpu_to_le16(hextoul(uuid_str + 9, NULL));
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200180 memcpy(uuid_bin + 4, &tmp16, 2);
Jason Hobbse11938e2011-08-23 11:06:56 +0000181
Simon Glass7e5f4602021-07-24 09:03:29 -0600182 tmp16 = cpu_to_le16(hextoul(uuid_str + 14, NULL));
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200183 memcpy(uuid_bin + 6, &tmp16, 2);
184 }
Jason Hobbse11938e2011-08-23 11:06:56 +0000185
Simon Glass7e5f4602021-07-24 09:03:29 -0600186 tmp16 = cpu_to_be16(hextoul(uuid_str + 19, NULL));
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200187 memcpy(uuid_bin + 8, &tmp16, 2);
188
189 tmp64 = cpu_to_be64(simple_strtoull(uuid_str + 24, NULL, 16));
190 memcpy(uuid_bin + 10, (char *)&tmp64 + 2, 6);
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200191
192 return 0;
193}
194
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200195/*
196 * uuid_bin_to_str() - convert big endian binary data to string UUID or GUID.
197 *
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +0200198 * @param uuid_bin: pointer to binary data of UUID (big endian) [16B]
199 * @param uuid_str: pointer to allocated array for output string [37B]
200 * @str_format: bit 0: 0 - UUID; 1 - GUID
201 * bit 1: 0 - lower case; 2 - upper case
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200202 */
Simon Glass2c2ca202020-04-08 08:32:58 -0600203void uuid_bin_to_str(const unsigned char *uuid_bin, char *uuid_str,
204 int str_format)
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200205{
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200206 const u8 uuid_char_order[UUID_BIN_LEN] = {0, 1, 2, 3, 4, 5, 6, 7, 8,
207 9, 10, 11, 12, 13, 14, 15};
208 const u8 guid_char_order[UUID_BIN_LEN] = {3, 2, 1, 0, 5, 4, 7, 6, 8,
209 9, 10, 11, 12, 13, 14, 15};
210 const u8 *char_order;
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +0200211 const char *format;
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200212 int i;
213
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200214 /*
215 * UUID and GUID bin data - always in big endian:
216 * 4B-2B-2B-2B-6B
217 * be be be be be
218 */
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +0200219 if (str_format & UUID_STR_FORMAT_GUID)
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200220 char_order = guid_char_order;
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +0200221 else
222 char_order = uuid_char_order;
223 if (str_format & UUID_STR_UPPER_CASE)
224 format = "%02X";
225 else
226 format = "%02x";
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200227
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200228 for (i = 0; i < 16; i++) {
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +0200229 sprintf(uuid_str, format, uuid_bin[char_order[i]]);
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200230 uuid_str += 2;
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200231 switch (i) {
232 case 3:
233 case 5:
234 case 7:
235 case 9:
Przemyslaw Marczakd718ded2014-04-02 10:20:03 +0200236 *uuid_str++ = '-';
Przemyslaw Marczaka96a0e62014-04-02 10:20:02 +0200237 break;
238 }
239 }
Jason Hobbse11938e2011-08-23 11:06:56 +0000240}
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200241
242/*
243 * gen_rand_uuid() - this function generates a random binary UUID version 4.
244 * In this version all fields beside 4 bits of version and
245 * 2 bits of variant are randomly generated.
246 *
247 * @param uuid_bin - pointer to allocated array [16B]. Output is in big endian.
248*/
Przemyslaw Marczak89c82302014-04-02 10:20:05 +0200249#if defined(CONFIG_RANDOM_UUID) || defined(CONFIG_CMD_UUID)
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200250void gen_rand_uuid(unsigned char *uuid_bin)
251{
Heinrich Schuchardta1b633d2019-07-14 23:31:50 +0200252 u32 ptr[4];
253 struct uuid *uuid = (struct uuid *)ptr;
Matthias Brugger92fdad22020-12-18 10:28:03 +0100254 int i, ret;
255 struct udevice *devp;
256 u32 randv = 0;
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200257
Matthias Brugger92fdad22020-12-18 10:28:03 +0100258 if (IS_ENABLED(CONFIG_DM_RNG)) {
259 ret = uclass_get_device(UCLASS_RNG, 0, &devp);
Patrick Delaunay70a9f4d2021-10-22 17:05:47 +0200260 if (!ret) {
Matthias Brugger92fdad22020-12-18 10:28:03 +0100261 ret = dm_rng_read(devp, &randv, sizeof(randv));
262 if (ret < 0)
263 randv = 0;
264 }
265 }
266 if (randv)
267 srand(randv);
268 else
269 srand(get_ticks() + rand());
Eugeniu Rosca4ccf6782019-05-02 14:27:06 +0200270
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200271 /* Set all fields randomly */
Heinrich Schuchardta1b633d2019-07-14 23:31:50 +0200272 for (i = 0; i < 4; i++)
273 ptr[i] = rand();
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200274
Heinrich Schuchardta1b633d2019-07-14 23:31:50 +0200275 clrsetbits_be16(&uuid->time_hi_and_version,
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200276 UUID_VERSION_MASK,
277 UUID_VERSION << UUID_VERSION_SHIFT);
278
Heinrich Schuchardta1b633d2019-07-14 23:31:50 +0200279 clrsetbits_8(&uuid->clock_seq_hi_and_reserved,
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200280 UUID_VARIANT_MASK,
281 UUID_VARIANT << UUID_VARIANT_SHIFT);
282
Heinrich Schuchardta1b633d2019-07-14 23:31:50 +0200283 memcpy(uuid_bin, uuid, 16);
Przemyslaw Marczak4e4815f2014-04-02 10:20:04 +0200284}
285
286/*
287 * gen_rand_uuid_str() - this function generates UUID v4 (random) in two string
288 * formats UUID or GUID.
289 *
290 * @param uuid_str - pointer to allocated array [37B].
291 * @param - uuid output type: UUID - 0, GUID - 1
292 */
293void gen_rand_uuid_str(char *uuid_str, int str_format)
294{
295 unsigned char uuid_bin[UUID_BIN_LEN];
296
297 /* Generate UUID (big endian) */
298 gen_rand_uuid(uuid_bin);
299
300 /* Convert UUID bin to UUID or GUID formated STRING */
301 uuid_bin_to_str(uuid_bin, uuid_str, str_format);
302}
Przemyslaw Marczak89c82302014-04-02 10:20:05 +0200303
Marek Vasut05f6da32019-01-07 21:23:38 +0100304#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_CMD_UUID)
Simon Glass09140112020-05-10 11:40:03 -0600305int do_uuid(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Przemyslaw Marczak89c82302014-04-02 10:20:05 +0200306{
307 char uuid[UUID_STR_LEN + 1];
308 int str_format;
309
310 if (!strcmp(argv[0], "uuid"))
311 str_format = UUID_STR_FORMAT_STD;
312 else
313 str_format = UUID_STR_FORMAT_GUID;
314
315 if (argc > 2)
316 return CMD_RET_USAGE;
317
318 gen_rand_uuid_str(uuid, str_format);
319
320 if (argc == 1)
321 printf("%s\n", uuid);
322 else
Simon Glass382bee52017-08-03 12:22:09 -0600323 env_set(argv[1], uuid);
Przemyslaw Marczak89c82302014-04-02 10:20:05 +0200324
325 return CMD_RET_SUCCESS;
326}
327
328U_BOOT_CMD(uuid, CONFIG_SYS_MAXARGS, 1, do_uuid,
329 "UUID - generate random Universally Unique Identifier",
330 "[<varname>]\n"
331 "Argument:\n"
332 "varname: for set result in a environment variable\n"
333 "e.g. uuid uuid_env"
334);
335
336U_BOOT_CMD(guid, CONFIG_SYS_MAXARGS, 1, do_uuid,
337 "GUID - generate Globally Unique Identifier based on random UUID",
338 "[<varname>]\n"
339 "Argument:\n"
340 "varname: for set result in a environment variable\n"
341 "e.g. guid guid_env"
342);
Przemyslaw Marczak39206382014-04-02 10:20:06 +0200343#endif /* CONFIG_CMD_UUID */
344#endif /* CONFIG_RANDOM_UUID || CONFIG_CMD_UUID */