Fix: sessiond: registry_channel: initialize _rcu_head and _node
[lttng-tools.git] / src / common / uuid.cpp
CommitLineData
c70636a7
MJ
1/*
2 * Copyright (C) 2018 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 * Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
4 *
ab5be9fa 5 * SPDX-License-Identifier: LGPL-2.1-only
c70636a7 6 *
c70636a7
MJ
7 */
8
c9e313bc 9#include <common/compat/string.hpp>
c70636a7
MJ
10#include <stddef.h>
11#include <stdint.h>
12#include <stdio.h>
13#include <stdlib.h>
14#include <string.h>
15#include <time.h>
16
c9e313bc 17#include "uuid.hpp"
c70636a7 18
328c2fe7
JG
19namespace {
20const lttng_uuid nil_uuid = {};
21bool lttng_uuid_is_init;
22} /* namespace */
c70636a7 23
328c2fe7 24void lttng_uuid_to_str(const lttng_uuid& uuid, char *uuid_str)
c70636a7
MJ
25{
26 sprintf(uuid_str, LTTNG_UUID_FMT, LTTNG_UUID_FMT_VALUES(uuid));
27}
28
23083fa0
JG
29std::string lttng::utils::uuid_to_str(const lttng_uuid& uuid)
30{
31 std::string uuid_str(LTTNG_UUID_STR_LEN, '\0');
32
33 ::lttng_uuid_to_str(uuid, &uuid_str[0]);
34
35 /* Don't include '\0' in the C++ string. */
36 uuid_str.resize(uuid_str.size() - 1);
37
38 return uuid_str;
39}
40
328c2fe7 41int lttng_uuid_from_str(const char *str_in, lttng_uuid& uuid_out)
c70636a7
MJ
42{
43 int ret = 0;
44 lttng_uuid uuid_scan;
45
328c2fe7 46 if (str_in == nullptr) {
c70636a7
MJ
47 ret = -1;
48 goto end;
49 }
50
a1298db6 51 if (lttng_strnlen(str_in, LTTNG_UUID_STR_LEN) != LTTNG_UUID_STR_LEN - 1) {
c70636a7
MJ
52 ret = -1;
53 goto end;
54 }
55
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)) !=
58 LTTNG_UUID_LEN) {
59 ret = -1;
60 }
61
328c2fe7 62 uuid_out = uuid_scan;
c70636a7
MJ
63end:
64 return ret;
65}
66
328c2fe7 67bool lttng_uuid_is_nil(const lttng_uuid& uuid)
c70636a7 68{
328c2fe7 69 return uuid == nil_uuid;
c70636a7
MJ
70}
71
72/*
73 * Generate a random UUID according to RFC4122, section 4.4.
74 */
328c2fe7 75int lttng_uuid_generate(lttng_uuid& uuid_out)
c70636a7
MJ
76{
77 int i, ret = 0;
78
c70636a7
MJ
79 if (!lttng_uuid_is_init) {
80 /*
81 * We don't need cryptographic quality randomness to
82 * generate UUIDs, seed rand with the epoch.
83 */
84 const time_t epoch = time(NULL);
85
86 if (epoch == (time_t) -1) {
87 ret = -1;
88 goto end;
89 }
c70636a7 90
aeeb48c6 91 srand(epoch);
c70636a7
MJ
92 lttng_uuid_is_init = true;
93 }
94
95 /*
96 * Generate 16 bytes of random bits.
97 */
98 for (i = 0; i < LTTNG_UUID_LEN; i++) {
99 uuid_out[i] = (uint8_t) rand();
100 }
101
102 /*
103 * Set the two most significant bits (bits 6 and 7) of the
104 * clock_seq_hi_and_reserved to zero and one, respectively.
105 */
106 uuid_out[8] &= ~(1 << 6);
107 uuid_out[8] |= (1 << 7);
108
109 /*
110 * Set the four most significant bits (bits 12 through 15) of the
111 * time_hi_and_version field to the 4-bit version number from
112 * Section 4.1.3.
113 */
114 uuid_out[6] &= 0x0f;
115 uuid_out[6] |= (LTTNG_UUID_VER << 4);
116
117end:
118 return ret;
119}
This page took 0.045399 seconds and 4 git commands to generate.