2 * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
3 * Copyright (C) 2022 Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * SPDX-License-Identifier: GPL-2.0-only
9 #ifndef LTTNG_UST_REGISTRY_H
10 #define LTTNG_UST_REGISTRY_H
12 #include "event-class.hpp"
14 #include "lttng-ust-ctl.hpp"
15 #include "session.hpp"
16 #include "stream-class.hpp"
17 #include "trace-class.hpp"
18 #include "ust-clock-class.hpp"
19 #include "ust-registry-channel.hpp"
20 #include "ust-registry-event.hpp"
22 #include <common/format.hpp>
23 #include <common/hashtable/hashtable.hpp>
24 #include <common/locked-reference.hpp>
25 #include <common/urcu.hpp>
26 #include <common/uuid.hpp>
28 #include <lttng/domain.h>
35 #include <type_traits>
37 #define CTF_SPEC_MAJOR 1
38 #define CTF_SPEC_MINOR 8
46 class registry_session;
50 template <class MappingIntegerType>
51 typename trace::typed_enumeration_type<MappingIntegerType>::mapping mapping_from_ust_ctl_entry(
52 const lttng_ust_ctl_enum_entry& entry)
54 if (entry.u.extra.options & LTTNG_UST_CTL_UST_ENUM_ENTRY_OPTION_IS_AUTO) {
55 return {entry.string};
59 {(MappingIntegerType) entry.start.value,
60 (MappingIntegerType) entry.end.value}};
64 template <class MappingIntegerType>
65 typename trace::typed_enumeration_type<MappingIntegerType>::mappings mappings_from_ust_ctl_entries(
66 const lttng_ust_ctl_enum_entry *in_entries, size_t in_entry_count)
68 typename trace::typed_enumeration_type<MappingIntegerType>::mappings mappings;
70 for (size_t entry_idx = 0; entry_idx < in_entry_count; entry_idx++) {
71 const auto& entry = in_entries[entry_idx];
73 mappings.emplace_back(mapping_from_ust_ctl_entry<MappingIntegerType>(entry));
78 } /* namespace details */
82 using const_rcu_protected_reference = lttng::locked_reference<const registry_enum, lttng::urcu::unique_read_lock>;
84 registry_enum(std::string name, enum lttng::sessiond::trace::integer_type::signedness signedness);
85 virtual ~registry_enum() = default;
88 enum lttng::sessiond::trace::integer_type::signedness signedness;
89 /* enum id in session */
91 /* Enumeration node in session hash table. */
92 struct lttng_ht_node_str node;
93 /* For delayed reclaim. */
94 struct rcu_head rcu_head;
96 friend bool operator==(const registry_enum& lhs, const registry_enum& rhs) noexcept;
98 virtual bool _is_equal(const registry_enum& other) const noexcept = 0;
101 bool operator==(const registry_enum& lhs, const registry_enum& rhs) noexcept;
103 template <class MappingIntegerType>
104 class registry_typed_enum : public registry_enum {
106 registry_typed_enum(const char *in_name,
107 const lttng_ust_ctl_enum_entry *entries,
108 size_t entry_count) :
109 registry_enum(in_name,
110 std::is_signed<MappingIntegerType>::value ?
111 lttng::sessiond::trace::integer_type::signedness::SIGNED :
112 lttng::sessiond::trace::integer_type::signedness::UNSIGNED),
113 _mappings{std::make_shared<
114 typename trace::typed_enumeration_type<MappingIntegerType>::mappings>(
115 details::mappings_from_ust_ctl_entries<MappingIntegerType>(
116 entries, entry_count))}
120 const typename std::shared_ptr<const typename lttng::sessiond::trace::typed_enumeration_type<
121 MappingIntegerType>::mappings>
125 virtual bool _is_equal(const registry_enum& base_other) const noexcept
127 const auto &other = static_cast<decltype(*this)&>(base_other);
129 /* Don't compare IDs as some comparisons are performed before an id is assigned. */
130 return this->name == other.name && *this->_mappings == *other._mappings;
134 using registry_signed_enum = registry_typed_enum<int64_t>;
135 using registry_unsigned_enum = registry_typed_enum<uint64_t>;
137 } /* namespace ust */
138 } /* namespace sessiond */
139 } /* namespace lttng */
141 #ifdef HAVE_LIBLTTNG_UST_CTL
144 * Create per-uid registry with default values.
146 * Return new instance on success, nullptr on error.
148 lttng::sessiond::ust::registry_session *ust_registry_session_per_uid_create(
149 const lttng::sessiond::trace::abi& abi,
152 const char *root_shm_path,
153 const char *shm_path,
160 * Create per-pid registry with default values.
162 * Return new instance on success, nullptr on error.
164 lttng::sessiond::ust::registry_session *ust_registry_session_per_pid_create(struct ust_app *app,
165 const lttng::sessiond::trace::abi& abi,
168 const char *root_shm_path,
169 const char *shm_path,
172 uint64_t tracing_id);
173 void ust_registry_session_destroy(lttng::sessiond::ust::registry_session *session);
175 void ust_registry_channel_destroy_event(lttng::sessiond::ust::registry_channel *chan,
176 lttng::sessiond::ust::registry_event *event);
178 #else /* HAVE_LIBLTTNG_UST_CTL */
181 lttng::sessiond::ust::registry_session *ust_registry_session_per_uid_create(
182 uint32_t bits_per_long __attribute__((unused)),
183 uint32_t uint8_t_alignment __attribute__((unused)),
184 uint32_t uint16_t_alignment __attribute__((unused)),
185 uint32_t uint32_t_alignment __attribute__((unused)),
186 uint32_t uint64_t_alignment __attribute__((unused)),
187 uint32_t long_alignment __attribute__((unused)),
188 int byte_order __attribute__((unused)),
189 uint32_t major __attribute__((unused)),
190 uint32_t minor __attribute__((unused)),
191 const char *root_shm_path __attribute__((unused)),
192 const char *shm_path __attribute__((unused)),
193 uid_t euid __attribute__((unused)),
194 gid_t egid __attribute__((unused)),
195 uint64_t tracing_id __attribute__((unused)),
196 uid_t tracing_uid __attribute__((unused)))
202 lttng::sessiond::ust::registry_session *ust_registry_session_per_pid_create(
203 struct ust_app *app __attribute__((unused)),
204 uint32_t bits_per_long __attribute__((unused)),
205 uint32_t uint8_t_alignment __attribute__((unused)),
206 uint32_t uint16_t_alignment __attribute__((unused)),
207 uint32_t uint32_t_alignment __attribute__((unused)),
208 uint32_t uint64_t_alignment __attribute__((unused)),
209 uint32_t long_alignment __attribute__((unused)),
210 int byte_order __attribute__((unused)),
211 uint32_t major __attribute__((unused)),
212 uint32_t minor __attribute__((unused)),
213 const char *root_shm_path __attribute__((unused)),
214 const char *shm_path __attribute__((unused)),
215 uid_t euid __attribute__((unused)),
216 gid_t egid __attribute__((unused)),
217 uint64_t tracing_id __attribute__((unused)))
223 void ust_registry_session_destroy(
224 lttng::sessiond::ust::registry_session *session __attribute__((unused)))
228 void ust_registry_destroy_event(
229 lttng::sessiond::ust::registry_channel *chan __attribute__((unused)),
230 lttng::sessiond::ust::registry_event *event __attribute__((unused)))
233 /* The app object can be NULL for registry shared across applications. */
235 int ust_metadata_session_statedump(
236 lttng::sessiond::ust::registry_session *session __attribute__((unused)))
242 int ust_metadata_channel_statedump(
243 lttng::sessiond::ust::registry_session *session __attribute__((unused)),
244 lttng::sessiond::ust::registry_channel *chan __attribute__((unused)))
250 int ust_metadata_event_statedump(
251 lttng::sessiond::ust::registry_session *session __attribute__((unused)),
252 lttng::sessiond::ust::registry_channel *chan __attribute__((unused)),
253 lttng::sessiond::ust::registry_event *event __attribute__((unused)))
258 #endif /* HAVE_LIBLTTNG_UST_CTL */
260 #endif /* LTTNG_UST_REGISTRY_H */