]> Git Repo - u-boot.git/blob - lib/uuid.c
efi_loader: rename check_disk_has_default_file function
[u-boot.git] / lib / uuid.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2011 Calxeda, Inc.
4  * Copyright 2022-2023 Arm Limited and/or its affiliates <[email protected]>
5  *
6  * Authors:
7  *   Abdellatif El Khlifi <[email protected]>
8  */
9
10 #define LOG_CATEGOT LOGC_CORE
11
12 #include <command.h>
13 #include <efi_api.h>
14 #include <env.h>
15 #include <rand.h>
16 #include <time.h>
17 #include <uuid.h>
18 #include <linux/ctype.h>
19 #include <errno.h>
20 #include <asm/io.h>
21 #include <part_efi.h>
22 #include <malloc.h>
23 #include <dm/uclass.h>
24 #include <rng.h>
25
26 int uuid_str_valid(const char *uuid)
27 {
28         int i, valid;
29
30         if (uuid == NULL)
31                 return 0;
32
33         for (i = 0, valid = 1; uuid[i] && valid; i++) {
34                 switch (i) {
35                 case 8: case 13: case 18: case 23:
36                         valid = (uuid[i] == '-');
37                         break;
38                 default:
39                         valid = isxdigit(uuid[i]);
40                         break;
41                 }
42         }
43
44         if (i != UUID_STR_LEN || !valid)
45                 return 0;
46
47         return 1;
48 }
49
50 static const struct {
51         const char *string;
52         efi_guid_t guid;
53 } list_guid[] = {
54 #ifdef CONFIG_PARTITION_TYPE_GUID
55         {"system",      PARTITION_SYSTEM_GUID},
56         {"mbr",         LEGACY_MBR_PARTITION_GUID},
57         {"msft",        PARTITION_MSFT_RESERVED_GUID},
58         {"data",        PARTITION_BASIC_DATA_GUID},
59         {"linux",       PARTITION_LINUX_FILE_SYSTEM_DATA_GUID},
60         {"raid",        PARTITION_LINUX_RAID_GUID},
61         {"swap",        PARTITION_LINUX_SWAP_GUID},
62         {"lvm",         PARTITION_LINUX_LVM_GUID},
63         {"u-boot-env",  PARTITION_U_BOOT_ENVIRONMENT},
64         {"cros-kern",   PARTITION_CROS_KERNEL},
65         {"cros-root",   PARTITION_CROS_ROOT},
66         {"cros-fw",     PARTITION_CROS_FIRMWARE},
67         {"cros-rsrv",   PARTITION_CROS_RESERVED},
68 #endif
69 #if defined(CONFIG_CMD_EFIDEBUG) || defined(CONFIG_EFI)
70         {
71                 "Device Path",
72                 EFI_DEVICE_PATH_PROTOCOL_GUID,
73         },
74         {
75                 "Device Path To Text",
76                 EFI_DEVICE_PATH_TO_TEXT_PROTOCOL_GUID,
77         },
78         {
79                 "Device Path Utilities",
80                 EFI_DEVICE_PATH_UTILITIES_PROTOCOL_GUID,
81         },
82         {
83                 "Unicode Collation 2",
84                 EFI_UNICODE_COLLATION_PROTOCOL2_GUID,
85         },
86         {
87                 "Driver Binding",
88                 EFI_DRIVER_BINDING_PROTOCOL_GUID,
89         },
90         {
91                 "Simple Text Input",
92                 EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID,
93         },
94         {
95                 "Simple Text Input Ex",
96                 EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL_GUID,
97         },
98         {
99                 "Simple Text Output",
100                 EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL_GUID,
101         },
102         {
103                 "Block IO",
104                 EFI_BLOCK_IO_PROTOCOL_GUID,
105         },
106         {
107                 "Simple File System",
108                 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID,
109         },
110         {
111                 "Loaded Image",
112                 EFI_LOADED_IMAGE_PROTOCOL_GUID,
113         },
114         {
115                 "Graphics Output",
116                 EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID,
117         },
118         {
119                 "HII String",
120                 EFI_HII_STRING_PROTOCOL_GUID,
121         },
122         {
123                 "HII Database",
124                 EFI_HII_DATABASE_PROTOCOL_GUID,
125         },
126         {
127                 "HII Config Routing",
128                 EFI_HII_CONFIG_ROUTING_PROTOCOL_GUID,
129         },
130         {
131                 "Load File2",
132                 EFI_LOAD_FILE2_PROTOCOL_GUID,
133         },
134         {
135                 "Random Number Generator",
136                 EFI_RNG_PROTOCOL_GUID,
137         },
138         {
139                 "Simple Network",
140                 EFI_SIMPLE_NETWORK_PROTOCOL_GUID,
141         },
142         {
143                 "PXE Base Code",
144                 EFI_PXE_BASE_CODE_PROTOCOL_GUID,
145         },
146         {
147                 "Device-Tree Fixup",
148                 EFI_DT_FIXUP_PROTOCOL_GUID,
149         },
150         {
151                 "TCG2",
152                 EFI_TCG2_PROTOCOL_GUID,
153                 },
154         {
155                 "System Partition",
156                 PARTITION_SYSTEM_GUID
157         },
158         {
159                 "Firmware Management",
160                 EFI_FIRMWARE_MANAGEMENT_PROTOCOL_GUID
161         },
162         /* Configuration table GUIDs */
163         {
164                 "ACPI table",
165                 EFI_ACPI_TABLE_GUID,
166         },
167         {
168                 "EFI System Resource Table",
169                 EFI_SYSTEM_RESOURCE_TABLE_GUID,
170         },
171         {
172                 "device tree",
173                 EFI_FDT_GUID,
174         },
175         {
176                 "SMBIOS table",
177                 SMBIOS_TABLE_GUID,
178         },
179         {
180                 "Runtime properties",
181                 EFI_RT_PROPERTIES_TABLE_GUID,
182         },
183         {
184                 "TCG2 Final Events Table",
185                 EFI_TCG2_FINAL_EVENTS_TABLE_GUID,
186         },
187         {
188                 "EFI Conformance Profiles Table",
189                 EFI_CONFORMANCE_PROFILES_TABLE_GUID,
190         },
191 #ifdef CONFIG_EFI_RISCV_BOOT_PROTOCOL
192         {
193                 "RISC-V Boot",
194                 RISCV_EFI_BOOT_PROTOCOL_GUID,
195         },
196 #endif
197 #endif /* CONFIG_CMD_EFIDEBUG */
198 #ifdef CONFIG_CMD_NVEDIT_EFI
199         /* signature database */
200         {
201                 "EFI_GLOBAL_VARIABLE_GUID",
202                 EFI_GLOBAL_VARIABLE_GUID,
203         },
204         {
205                 "EFI_IMAGE_SECURITY_DATABASE_GUID",
206                 EFI_IMAGE_SECURITY_DATABASE_GUID,
207         },
208         /* certificate types */
209         {
210                 "EFI_CERT_SHA256_GUID",
211                 EFI_CERT_SHA256_GUID,
212         },
213         {
214                 "EFI_CERT_X509_GUID",
215                 EFI_CERT_X509_GUID,
216         },
217         {
218                 "EFI_CERT_TYPE_PKCS7_GUID",
219                 EFI_CERT_TYPE_PKCS7_GUID,
220         },
221 #endif
222 #if defined(CONFIG_CMD_EFIDEBUG) || defined(CONFIG_EFI)
223         { "EFI_LZMA_COMPRESSED", EFI_LZMA_COMPRESSED },
224         { "EFI_DXE_SERVICES", EFI_DXE_SERVICES },
225         { "EFI_HOB_LIST", EFI_HOB_LIST },
226         { "EFI_MEMORY_TYPE", EFI_MEMORY_TYPE },
227         { "EFI_MEM_STATUS_CODE_REC", EFI_MEM_STATUS_CODE_REC },
228         { "EFI_GUID_EFI_ACPI1", EFI_GUID_EFI_ACPI1 },
229 #endif
230 };
231
232 int uuid_guid_get_bin(const char *guid_str, unsigned char *guid_bin)
233 {
234         int i;
235
236         for (i = 0; i < ARRAY_SIZE(list_guid); i++) {
237                 if (!strcmp(list_guid[i].string, guid_str)) {
238                         memcpy(guid_bin, &list_guid[i].guid, 16);
239                         return 0;
240                 }
241         }
242         return -ENODEV;
243 }
244
245 const char *uuid_guid_get_str(const unsigned char *guid_bin)
246 {
247         int i;
248
249         for (i = 0; i < ARRAY_SIZE(list_guid); i++) {
250                 if (!memcmp(list_guid[i].guid.b, guid_bin, 16)) {
251                         return list_guid[i].string;
252                 }
253         }
254         return NULL;
255 }
256
257 int uuid_str_to_bin(const char *uuid_str, unsigned char *uuid_bin,
258                     int str_format)
259 {
260         uint16_t tmp16;
261         uint32_t tmp32;
262         uint64_t tmp64;
263
264         if (!uuid_str_valid(uuid_str)) {
265                 log_debug("not valid\n");
266 #ifdef CONFIG_PARTITION_TYPE_GUID
267                 if (!uuid_guid_get_bin(uuid_str, uuid_bin))
268                         return 0;
269 #endif
270                 return -EINVAL;
271         }
272
273         if (str_format == UUID_STR_FORMAT_STD) {
274                 tmp32 = cpu_to_be32(hextoul(uuid_str, NULL));
275                 memcpy(uuid_bin, &tmp32, 4);
276
277                 tmp16 = cpu_to_be16(hextoul(uuid_str + 9, NULL));
278                 memcpy(uuid_bin + 4, &tmp16, 2);
279
280                 tmp16 = cpu_to_be16(hextoul(uuid_str + 14, NULL));
281                 memcpy(uuid_bin + 6, &tmp16, 2);
282         } else {
283                 tmp32 = cpu_to_le32(hextoul(uuid_str, NULL));
284                 memcpy(uuid_bin, &tmp32, 4);
285
286                 tmp16 = cpu_to_le16(hextoul(uuid_str + 9, NULL));
287                 memcpy(uuid_bin + 4, &tmp16, 2);
288
289                 tmp16 = cpu_to_le16(hextoul(uuid_str + 14, NULL));
290                 memcpy(uuid_bin + 6, &tmp16, 2);
291         }
292
293         tmp16 = cpu_to_be16(hextoul(uuid_str + 19, NULL));
294         memcpy(uuid_bin + 8, &tmp16, 2);
295
296         tmp64 = cpu_to_be64(simple_strtoull(uuid_str + 24, NULL, 16));
297         memcpy(uuid_bin + 10, (char *)&tmp64 + 2, 6);
298
299         return 0;
300 }
301
302 int uuid_str_to_le_bin(const char *uuid_str, unsigned char *uuid_bin)
303 {
304         u16 tmp16;
305         u32 tmp32;
306         u64 tmp64;
307
308         if (!uuid_str_valid(uuid_str) || !uuid_bin)
309                 return -EINVAL;
310
311         tmp32 = cpu_to_le32(hextoul(uuid_str, NULL));
312         memcpy(uuid_bin, &tmp32, 4);
313
314         tmp16 = cpu_to_le16(hextoul(uuid_str + 9, NULL));
315         memcpy(uuid_bin + 4, &tmp16, 2);
316
317         tmp16 = cpu_to_le16(hextoul(uuid_str + 14, NULL));
318         memcpy(uuid_bin + 6, &tmp16, 2);
319
320         tmp16 = cpu_to_le16(hextoul(uuid_str + 19, NULL));
321         memcpy(uuid_bin + 8, &tmp16, 2);
322
323         tmp64 = cpu_to_le64(simple_strtoull(uuid_str + 24, NULL, 16));
324         memcpy(uuid_bin + 10, &tmp64, 6);
325
326         return 0;
327 }
328
329 void uuid_bin_to_str(const unsigned char *uuid_bin, char *uuid_str,
330                      int str_format)
331 {
332         const u8 uuid_char_order[UUID_BIN_LEN] = {0, 1, 2, 3, 4, 5, 6, 7, 8,
333                                                   9, 10, 11, 12, 13, 14, 15};
334         const u8 guid_char_order[UUID_BIN_LEN] = {3, 2, 1, 0, 5, 4, 7, 6, 8,
335                                                   9, 10, 11, 12, 13, 14, 15};
336         const u8 *char_order;
337         const char *format;
338         int i;
339
340         /*
341          * UUID and GUID bin data - always in big endian:
342          * 4B-2B-2B-2B-6B
343          * be be be be be
344          */
345         if (str_format & UUID_STR_FORMAT_GUID)
346                 char_order = guid_char_order;
347         else
348                 char_order = uuid_char_order;
349         if (str_format & UUID_STR_UPPER_CASE)
350                 format = "%02X";
351         else
352                 format = "%02x";
353
354         for (i = 0; i < 16; i++) {
355                 sprintf(uuid_str, format, uuid_bin[char_order[i]]);
356                 uuid_str += 2;
357                 switch (i) {
358                 case 3:
359                 case 5:
360                 case 7:
361                 case 9:
362                         *uuid_str++ = '-';
363                         break;
364                 }
365         }
366 }
367
368 #if defined(CONFIG_RANDOM_UUID) || defined(CONFIG_CMD_UUID)
369 void gen_rand_uuid(unsigned char *uuid_bin)
370 {
371         u32 ptr[4];
372         struct uuid *uuid = (struct uuid *)ptr;
373         int i, ret;
374         struct udevice *devp;
375         u32 randv = 0;
376
377         if (IS_ENABLED(CONFIG_DM_RNG)) {
378                 ret = uclass_get_device(UCLASS_RNG, 0, &devp);
379                 if (!ret) {
380                         ret = dm_rng_read(devp, &randv, sizeof(randv));
381                         if (ret < 0)
382                                 randv = 0;
383                 }
384         }
385         if (randv)
386                 srand(randv);
387         else
388                 srand(get_ticks() + rand());
389
390         /* Set all fields randomly */
391         for (i = 0; i < 4; i++)
392                 ptr[i] = rand();
393
394         clrsetbits_be16(&uuid->time_hi_and_version,
395                         UUID_VERSION_MASK,
396                         UUID_VERSION << UUID_VERSION_SHIFT);
397
398         clrsetbits_8(&uuid->clock_seq_hi_and_reserved,
399                      UUID_VARIANT_MASK,
400                      UUID_VARIANT << UUID_VARIANT_SHIFT);
401
402         memcpy(uuid_bin, uuid, 16);
403 }
404
405 void gen_rand_uuid_str(char *uuid_str, int str_format)
406 {
407         unsigned char uuid_bin[UUID_BIN_LEN];
408
409         /* Generate UUID (big endian) */
410         gen_rand_uuid(uuid_bin);
411
412         /* Convert UUID bin to UUID or GUID formated STRING  */
413         uuid_bin_to_str(uuid_bin, uuid_str, str_format);
414 }
415
416 #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_CMD_UUID)
417 int do_uuid(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
418 {
419         char uuid[UUID_STR_LEN + 1];
420         int str_format;
421
422         if (!strcmp(argv[0], "uuid"))
423                 str_format = UUID_STR_FORMAT_STD;
424         else
425                 str_format = UUID_STR_FORMAT_GUID;
426
427         if (argc > 2)
428                 return CMD_RET_USAGE;
429
430         gen_rand_uuid_str(uuid, str_format);
431
432         if (argc == 1)
433                 printf("%s\n", uuid);
434         else
435                 env_set(argv[1], uuid);
436
437         return CMD_RET_SUCCESS;
438 }
439
440 U_BOOT_CMD(uuid, CONFIG_SYS_MAXARGS, 1, do_uuid,
441            "UUID - generate random Universally Unique Identifier",
442            "[<varname>]\n"
443            "Argument:\n"
444            "varname: for set result in a environment variable\n"
445            "e.g. uuid uuid_env"
446 );
447
448 U_BOOT_CMD(guid, CONFIG_SYS_MAXARGS, 1, do_uuid,
449            "GUID - generate Globally Unique Identifier based on random UUID",
450            "[<varname>]\n"
451            "Argument:\n"
452            "varname: for set result in a environment variable\n"
453            "e.g. guid guid_env"
454 );
455 #endif /* CONFIG_CMD_UUID */
456 #endif /* CONFIG_RANDOM_UUID || CONFIG_CMD_UUID */
This page took 0.052091 seconds and 4 git commands to generate.