2 * Copyright (C) 2018 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 * Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
5 * SPDX-License-Identifier: LGPL-2.1-only
9 #include <common/compat/string.hpp>
20 const lttng_uuid nil_uuid
= {};
21 bool lttng_uuid_is_init
;
24 void lttng_uuid_to_str(const lttng_uuid
& uuid
, char *uuid_str
)
26 sprintf(uuid_str
, LTTNG_UUID_FMT
, LTTNG_UUID_FMT_VALUES(uuid
));
29 std::string
lttng::utils::uuid_to_str(const lttng_uuid
& uuid
)
31 std::string
uuid_str(LTTNG_UUID_STR_LEN
, '\0');
33 ::lttng_uuid_to_str(uuid
, &uuid_str
[0]);
35 /* Don't include '\0' in the C++ string. */
36 uuid_str
.resize(uuid_str
.size() - 1);
41 int lttng_uuid_from_str(const char *str_in
, lttng_uuid
& uuid_out
)
46 if (str_in
== nullptr) {
51 if (lttng_strnlen(str_in
, LTTNG_UUID_STR_LEN
) != LTTNG_UUID_STR_LEN
- 1) {
56 /* Scan to a temporary location in case of a partial match. */
57 if (sscanf(str_in
, LTTNG_UUID_FMT
, LTTNG_UUID_SCAN_VALUES(uuid_scan
)) !=
68 bool lttng_uuid_is_nil(const lttng_uuid
& uuid
)
70 return uuid
== nil_uuid
;
74 * Generate a random UUID according to RFC4122, section 4.4.
76 int lttng_uuid_generate(lttng_uuid
& uuid_out
)
80 if (!lttng_uuid_is_init
) {
82 * We don't need cryptographic quality randomness to
83 * generate UUIDs, seed rand with the epoch.
85 const time_t epoch
= time(NULL
);
87 if (epoch
== (time_t) -1) {
93 lttng_uuid_is_init
= true;
97 * Generate 16 bytes of random bits.
99 for (i
= 0; i
< LTTNG_UUID_LEN
; i
++) {
100 uuid_out
[i
] = (uint8_t) rand();
104 * Set the two most significant bits (bits 6 and 7) of the
105 * clock_seq_hi_and_reserved to zero and one, respectively.
107 uuid_out
[8] &= ~(1 << 6);
108 uuid_out
[8] |= (1 << 7);
111 * Set the four most significant bits (bits 12 through 15) of the
112 * time_hi_and_version field to the 4-bit version number from
116 uuid_out
[6] |= (LTTNG_UUID_VER
<< 4);
This page took 0.035161 seconds and 5 git commands to generate.