dcavalca / rpms / util-linux

Forked from rpms/util-linux 2 years ago
Clone
069435
From f942ba2c4c14b6bf7720e8316afe1971231553bc Mon Sep 17 00:00:00 2001
069435
From: Karel Zak <kzak@redhat.com>
069435
Date: Fri, 31 Aug 2018 12:27:32 +0200
069435
Subject: [PATCH 7/8] libuuid: fix name-based UUIDs
069435
069435
The current version is not fully compatible with RFC4122. It
069435
incorrectly encodes UUID variant
069435
069435
	xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxx
069435
069435
where M is UUID version and N is UUID variant.
069435
069435
 $ python -c "import uuid ; print(uuid.uuid5(uuid.UUID(int=0), 'foo'))"
069435
 aa752cea-8222-5bc8-acd9-555b090c0ccb
069435
                    ^^
069435
069435
Old version:
069435
069435
 $ uuidgen --namespace 00000000-0000-0000-0000-000000000000 --name 'foo' --sha1
069435
 aa752cea-8222-5bc8-8cd9-555b090c0ccb
069435
                    ^^
069435
069435
Fixed version:
069435
 ./uuidgen --namespace 00000000-0000-0000-0000-000000000000 --name 'foo' --sha1;
069435
 aa752cea-8222-5bc8-acd9-555b090c0ccb
069435
                    ^^
069435
069435
The patch uses uuid_unpack and uuid_pack. It makes code more readable
069435
and allow to access proper octens. The same way we already use for
069435
time and random based UUIDs.
069435
069435
Upstream: http://github.com/karelzak/util-linux/commit/d6ddf07d31dfdc894eb8e7e6842aa856342c526e
069435
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=1624877
069435
Addresses: https://github.com/karelzak/util-linux/issues/683
069435
Signed-off-by: Karel Zak <kzak@redhat.com>
069435
---
069435
 libuuid/src/gen_uuid.c | 34 ++++++++++++++++------------------
069435
 1 file changed, 16 insertions(+), 18 deletions(-)
069435
069435
diff --git a/libuuid/src/gen_uuid.c b/libuuid/src/gen_uuid.c
069435
index a374e75c9..27c135db5 100644
069435
--- a/libuuid/src/gen_uuid.c
069435
+++ b/libuuid/src/gen_uuid.c
069435
@@ -96,9 +96,6 @@
069435
 #define THREAD_LOCAL static
069435
 #endif
069435
 
069435
-/* index with UUID_VARIANT_xxx and shift 5 bits */
069435
-static unsigned char variant_bits[] = { 0x00, 0x04, 0x06, 0x07 };
069435
-
069435
 #ifdef _WIN32
069435
 static void gettimeofday (struct timeval *tv, void *dummy)
069435
 {
069435
@@ -566,21 +563,22 @@ void uuid_generate_md5(uuid_t out, const uuid_t ns, const char *name, size_t len
069435
 {
069435
 	UL_MD5_CTX ctx;
069435
 	char hash[UL_MD5LENGTH];
069435
+	uuid_t buf;
069435
+	struct uuid uu;
069435
 
069435
 	ul_MD5Init(&ctx;;
069435
-	/* hash concatenation of well-known UUID with name */
069435
 	ul_MD5Update(&ctx, ns, sizeof(uuid_t));
069435
 	ul_MD5Update(&ctx, (const unsigned char *)name, len);
069435
-
069435
 	ul_MD5Final((unsigned char *)hash, &ctx;;
069435
 
069435
-	memcpy(out, hash, sizeof(uuid_t));
069435
+	assert(sizeof(buf) <= sizeof(hash));
069435
 
069435
-	out[6] &= ~(UUID_TYPE_MASK << UUID_TYPE_SHIFT);
069435
-	out[6] |= (UUID_TYPE_DCE_MD5 << UUID_TYPE_SHIFT);
069435
+	memcpy(buf, hash, sizeof(buf));
069435
+	uuid_unpack(buf, &uu);
069435
 
069435
-	out[8] &= ~(UUID_VARIANT_MASK << UUID_VARIANT_SHIFT);
069435
-	out[8] |= (variant_bits[UUID_VARIANT_DCE] << UUID_VARIANT_SHIFT);
069435
+	uu.clock_seq = (uu.clock_seq & 0x3FFF) | 0x8000;
069435
+	uu.time_hi_and_version = (uu.time_hi_and_version & 0x0FFF) | 0x3000;
069435
+	uuid_pack(&uu, out);
069435
 }
069435
 
069435
 /*
069435
@@ -591,20 +589,20 @@ void uuid_generate_sha1(uuid_t out, const uuid_t ns, const char *name, size_t le
069435
 {
069435
 	UL_SHA1_CTX ctx;
069435
 	char hash[UL_SHA1LENGTH];
069435
+	uuid_t buf;
069435
+	struct uuid uu;
069435
 
069435
 	ul_SHA1Init(&ctx;;
069435
-	/* hash concatenation of well-known UUID with name */
069435
 	ul_SHA1Update(&ctx, ns, sizeof(uuid_t));
069435
 	ul_SHA1Update(&ctx, (const unsigned char *)name, len);
069435
-
069435
 	ul_SHA1Final((unsigned char *)hash, &ctx;;
069435
 
069435
-	memcpy(out, hash, sizeof(uuid_t));
069435
+	assert(sizeof(buf) <= sizeof(hash));
069435
 
069435
-	out[6] &= ~(UUID_TYPE_MASK << UUID_TYPE_SHIFT);
069435
-	out[6] |= (UUID_TYPE_DCE_SHA1 << UUID_TYPE_SHIFT);
069435
+	memcpy(buf, hash, sizeof(buf));
069435
+	uuid_unpack(buf, &uu);
069435
 
069435
-	out[8] &= ~(UUID_VARIANT_MASK << UUID_VARIANT_SHIFT);
069435
-	out[8] |= (variant_bits[UUID_VARIANT_DCE] << UUID_VARIANT_SHIFT);
069435
+	uu.clock_seq = (uu.clock_seq & 0x3FFF) | 0x8000;
069435
+	uu.time_hi_and_version = (uu.time_hi_and_version & 0x0FFF) | 0x5000;
069435
+	uuid_pack(&uu, out);
069435
 }
069435
-
069435
-- 
069435
2.14.4
069435