blob: 7f8414dc906c4bfc8c118a49d3d2080033ff0fbe [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Przemyslaw Marczak0c813362014-04-02 10:20:03 +02002/*
3 * Copyright (C) 2014 Samsung Electronics
4 * Przemyslaw Marczak <p.marczak@samsung.com>
Abdellatif El Khlifidc3cb5d2023-08-04 14:33:38 +01005 * Copyright 2022-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
6 *
7 * Authors:
8 * Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com>
Przemyslaw Marczak0c813362014-04-02 10:20:03 +02009 */
10#ifndef __UUID_H__
11#define __UUID_H__
12
Heinrich Schuchardt6f035662019-04-29 08:08:43 +020013#include <linux/bitops.h>
Caleb Connolly2f4f0be2024-08-30 13:34:32 +010014#include <linux/kconfig.h>
Heinrich Schuchardt6f035662019-04-29 08:08:43 +020015
Simon Glass317bdb22023-08-24 13:55:36 -060016/*
17 * UUID - Universally Unique IDentifier - 128 bits unique number.
18 * There are 5 versions and one variant of UUID defined by RFC4122
19 * specification. A UUID contains a set of fields. The set varies
20 * depending on the version of the UUID, as shown below:
21 * - time, MAC address(v1),
22 * - user ID(v2),
23 * - MD5 of name or URL(v3),
24 * - random data(v4),
25 * - SHA-1 of name or URL(v5),
26 *
27 * Layout of UUID:
28 * timestamp - 60-bit: time_low, time_mid, time_hi_and_version
29 * version - 4 bit (bit 4 through 7 of the time_hi_and_version)
30 * clock seq - 14 bit: clock_seq_hi_and_reserved, clock_seq_low
31 * variant: - bit 6 and 7 of clock_seq_hi_and_reserved
32 * node - 48 bit
33 *
34 * source: https://www.ietf.org/rfc/rfc4122.txt
35 *
36 * UUID binary format (16 bytes):
37 *
38 * 4B-2B-2B-2B-6B (big endian - network byte order)
39 *
40 * UUID string is 36 length of characters (36 bytes):
41 *
42 * 0 9 14 19 24
43 * xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
44 * be be be be be
45 *
46 * where x is a hexadecimal character. Fields are separated by '-'s.
47 * When converting to a binary UUID, le means the field should be converted
48 * to little endian and be means it should be converted to big endian.
49 *
Caleb Connolly2f4f0be2024-08-30 13:34:32 +010050 * UUID is also used as GUID (Globally Unique Identifier) with the same format
51 * but with some fields stored in little endian.
Simon Glass317bdb22023-08-24 13:55:36 -060052 *
53 * GUID:
54 * 0 9 14 19 24
55 * xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
56 * le le le be be
57 *
58 * GUID is used e.g. in GPT (GUID Partition Table) as a partiions unique id.
59 */
60
Przemyslaw Marczakb4285142014-04-02 10:20:04 +020061/* This is structure is in big-endian */
62struct uuid {
63 unsigned int time_low;
64 unsigned short time_mid;
65 unsigned short time_hi_and_version;
66 unsigned char clock_seq_hi_and_reserved;
67 unsigned char clock_seq_low;
68 unsigned char node[6];
69} __packed;
70
Heinrich Schuchardt6f035662019-04-29 08:08:43 +020071/* Bits of a bitmask specifying the output format for GUIDs */
72#define UUID_STR_FORMAT_STD 0
Caleb Connollyfb9e9482024-08-30 13:34:36 +010073#define UUID_STR_FORMAT_GUID 0x1
74#define UUID_STR_UPPER_CASE 0x2
Przemyslaw Marczak0c813362014-04-02 10:20:03 +020075
Simon Glass4ab17ee2021-01-13 20:29:51 -070076/* Use UUID_STR_LEN + 1 for string space */
Przemyslaw Marczak0c813362014-04-02 10:20:03 +020077#define UUID_STR_LEN 36
Przemyslaw Marczakb4285142014-04-02 10:20:04 +020078#define UUID_BIN_LEN sizeof(struct uuid)
79
80#define UUID_VERSION_MASK 0xf000
81#define UUID_VERSION_SHIFT 12
82#define UUID_VERSION 0x4
83
84#define UUID_VARIANT_MASK 0xc0
85#define UUID_VARIANT_SHIFT 7
86#define UUID_VARIANT 0x1
Przemyslaw Marczak0c813362014-04-02 10:20:03 +020087
88int uuid_str_valid(const char *uuid);
Simon Glass317bdb22023-08-24 13:55:36 -060089
90/*
91 * uuid_str_to_bin() - convert string UUID or GUID to big endian binary data.
92 *
93 * @param uuid_str - pointer to UUID or GUID string [37B] or GUID shorcut
94 * @param uuid_bin - pointer to allocated array for big endian output [16B]
95 * @str_format - UUID string format: 0 - UUID; 1 - GUID
96 * Return: 0 if OK, -EINVAL if the string is not a valid UUID
97 */
Simon Glass4acd4f02020-04-08 08:32:58 -060098int uuid_str_to_bin(const char *uuid_str, unsigned char *uuid_bin,
99 int str_format);
Simon Glass317bdb22023-08-24 13:55:36 -0600100
101/*
102 * uuid_bin_to_str() - convert big endian binary data to string UUID or GUID.
103 *
104 * @param uuid_bin: pointer to binary data of UUID (big endian) [16B]
105 * @param uuid_str: pointer to allocated array for output string [37B]
106 * @str_format: bit 0: 0 - UUID; 1 - GUID
107 * bit 1: 0 - lower case; 2 - upper case
108 */
Simon Glass4acd4f02020-04-08 08:32:58 -0600109void uuid_bin_to_str(const unsigned char *uuid_bin, char *uuid_str,
110 int str_format);
Simon Glass317bdb22023-08-24 13:55:36 -0600111
112/*
113 * uuid_guid_get_bin() - this function get GUID bin for string
114 *
115 * @param guid_str - pointer to partition type string
116 * @param guid_bin - pointer to allocated array for big endian output [16B]
117 */
Patrick Delaunay65f94ed2015-10-27 11:00:28 +0100118int uuid_guid_get_bin(const char *guid_str, unsigned char *guid_bin);
Simon Glass317bdb22023-08-24 13:55:36 -0600119
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 *
125 * Returns NULL if the type GUID is not known.
126 */
Rasmus Villemoes7b70bdc2020-11-20 11:45:35 +0100127const char *uuid_guid_get_str(const unsigned char *guid_bin);
Simon Glass317bdb22023-08-24 13:55:36 -0600128
129/*
130 * gen_rand_uuid() - this function generates a random binary UUID version 4.
131 * In this version all fields beside 4 bits of version and
132 * 2 bits of variant are randomly generated.
133 *
134 * @param uuid_bin - pointer to allocated array [16B]. Output is in big endian.
135 */
Przemyslaw Marczakb4285142014-04-02 10:20:04 +0200136void gen_rand_uuid(unsigned char *uuid_bin);
Simon Glass317bdb22023-08-24 13:55:36 -0600137
138/*
139 * gen_rand_uuid_str() - this function generates UUID v4 (random) in two string
140 * formats UUID or GUID.
141 *
142 * @param uuid_str - pointer to allocated array [37B].
143 * @param - uuid output type: UUID - 0, GUID - 1
144 */
Przemyslaw Marczakb4285142014-04-02 10:20:04 +0200145void gen_rand_uuid_str(char *uuid_str, int str_format);
Abdellatif El Khlifidc3cb5d2023-08-04 14:33:38 +0100146
Caleb Connolly2f4f0be2024-08-30 13:34:32 +0100147struct efi_guid;
148
149/**
150 * gen_v5_guid() - generate little endian v5 GUID from namespace and other seed data.
151 *
152 * @namespace: pointer to UUID namespace salt
153 * @guid: pointer to allocated GUID output
154 * @...: NULL terminated list of seed data as pairs of pointers
155 * to data and their lengths
156 */
157void gen_v5_guid(const struct uuid *namespace, struct efi_guid *guid, ...);
158
Abdellatif El Khlifidc3cb5d2023-08-04 14:33:38 +0100159/**
160 * uuid_str_to_le_bin() - Convert string UUID to little endian binary data.
161 * @uuid_str: pointer to UUID string
162 * @uuid_bin: pointer to allocated array for little endian output [16B]
Simon Glass317bdb22023-08-24 13:55:36 -0600163 *
164 * UUID string is 36 characters (36 bytes):
165 *
166 * xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
167 *
168 * where x is a hexadecimal character. Fields are separated by '-'s.
169 * When converting to a little endian binary UUID, the string fields are reversed.
170 *
Abdellatif El Khlifidc3cb5d2023-08-04 14:33:38 +0100171 * Return:
Simon Glass317bdb22023-08-24 13:55:36 -0600172 *
Abdellatif El Khlifidc3cb5d2023-08-04 14:33:38 +0100173 * uuid_bin filled with little endian UUID data
174 * On success 0 is returned. Otherwise, failure code.
175 */
176int uuid_str_to_le_bin(const char *uuid_str, unsigned char *uuid_bin);
177
Przemyslaw Marczak0c813362014-04-02 10:20:03 +0200178#endif