Commit | Line | Data |
---|---|---|
d0b96690 | 1 | /* |
ab5be9fa | 2 | * Copyright (C) 2013 David Goulet <dgoulet@efficios.com> |
aeeb48c6 | 3 | * Copyright (C) 2022 Jérémie Galarneau <jeremie.galarneau@efficios.com> |
d0b96690 | 4 | * |
ab5be9fa | 5 | * SPDX-License-Identifier: GPL-2.0-only |
d0b96690 | 6 | * |
d0b96690 DG |
7 | */ |
8 | ||
9 | #ifndef LTTNG_UST_REGISTRY_H | |
10 | #define LTTNG_UST_REGISTRY_H | |
11 | ||
d7bfb9b0 JG |
12 | #include "event-class.hpp" |
13 | #include "field.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" | |
21 | ||
22 | #include <common/format.hpp> | |
c9e313bc | 23 | #include <common/hashtable/hashtable.hpp> |
d7bfb9b0 JG |
24 | #include <common/locked-reference.hpp> |
25 | #include <common/urcu.hpp> | |
c9e313bc | 26 | #include <common/uuid.hpp> |
d0b96690 | 27 | |
aeeb48c6 JG |
28 | #include <lttng/domain.h> |
29 | ||
d7bfb9b0 JG |
30 | #include <ctime> |
31 | #include <memory> | |
32 | #include <pthread.h> | |
33 | #include <stdint.h> | |
34 | #include <string> | |
35 | #include <type_traits> | |
7972aab2 | 36 | |
d0b96690 DG |
37 | #define CTF_SPEC_MAJOR 1 |
38 | #define CTF_SPEC_MINOR 8 | |
39 | ||
40 | struct ust_app; | |
d0b96690 | 41 | |
d7bfb9b0 JG |
42 | namespace lttng { |
43 | namespace sessiond { | |
44 | namespace ust { | |
97f630d4 JG |
45 | |
46 | class registry_session; | |
47 | ||
d7bfb9b0 | 48 | namespace details { |
b0f2e8db | 49 | |
d7bfb9b0 JG |
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) | |
d0b96690 | 53 | { |
d7bfb9b0 JG |
54 | if (entry.u.extra.options & LTTNG_UST_CTL_UST_ENUM_ENTRY_OPTION_IS_AUTO) { |
55 | return {entry.string}; | |
56 | ||
57 | } else { | |
58 | return {entry.string, | |
59 | {(MappingIntegerType) entry.start.value, | |
60 | (MappingIntegerType) entry.end.value}}; | |
61 | } | |
d0b96690 DG |
62 | } |
63 | ||
d7bfb9b0 JG |
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) | |
d0b96690 | 67 | { |
d7bfb9b0 JG |
68 | typename trace::typed_enumeration_type<MappingIntegerType>::mappings mappings; |
69 | ||
70 | for (size_t entry_idx = 0; entry_idx < in_entry_count; entry_idx++) { | |
71 | const auto& entry = in_entries[entry_idx]; | |
72 | ||
73 | mappings.emplace_back(mapping_from_ust_ctl_entry<MappingIntegerType>(entry)); | |
d0b96690 DG |
74 | } |
75 | ||
d7bfb9b0 | 76 | return mappings; |
d0b96690 | 77 | } |
d7bfb9b0 | 78 | } /* namespace details */ |
d0b96690 | 79 | |
b0f2e8db JG |
80 | class registry_enum { |
81 | public: | |
82 | using const_rcu_protected_reference = lttng::locked_reference<const registry_enum, lttng::urcu::unique_read_lock>; | |
83 | ||
84 | registry_enum(std::string name, enum lttng::sessiond::trace::integer_type::signedness signedness); | |
85 | virtual ~registry_enum() = default; | |
86 | ||
87 | std::string name; | |
88 | enum lttng::sessiond::trace::integer_type::signedness signedness; | |
89 | /* enum id in session */ | |
90 | uint64_t id = -1ULL; | |
91 | /* Enumeration node in session hash table. */ | |
92 | struct lttng_ht_node_str node; | |
93 | /* For delayed reclaim. */ | |
94 | struct rcu_head rcu_head; | |
95 | ||
96 | friend bool operator==(const registry_enum& lhs, const registry_enum& rhs) noexcept; | |
97 | protected: | |
98 | virtual bool _is_equal(const registry_enum& other) const noexcept = 0; | |
99 | }; | |
100 | ||
101 | bool operator==(const registry_enum& lhs, const registry_enum& rhs) noexcept; | |
102 | ||
d7bfb9b0 JG |
103 | template <class MappingIntegerType> |
104 | class registry_typed_enum : public registry_enum { | |
105 | public: | |
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))} | |
117 | { | |
d0b96690 DG |
118 | } |
119 | ||
d7bfb9b0 JG |
120 | const typename std::shared_ptr<const typename lttng::sessiond::trace::typed_enumeration_type< |
121 | MappingIntegerType>::mappings> | |
122 | _mappings; | |
d0b96690 | 123 | |
d7bfb9b0 JG |
124 | protected: |
125 | virtual bool _is_equal(const registry_enum& base_other) const noexcept | |
126 | { | |
127 | const auto &other = static_cast<decltype(*this)&>(base_other); | |
d0b96690 | 128 | |
d7bfb9b0 JG |
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; | |
131 | } | |
132 | }; | |
7972aab2 | 133 | |
d7bfb9b0 JG |
134 | using registry_signed_enum = registry_typed_enum<int64_t>; |
135 | using registry_unsigned_enum = registry_typed_enum<uint64_t>; | |
136 | ||
137 | } /* namespace ust */ | |
138 | } /* namespace sessiond */ | |
139 | } /* namespace lttng */ | |
140 | ||
141 | #ifdef HAVE_LIBLTTNG_UST_CTL | |
45893984 | 142 | |
aeeb48c6 JG |
143 | /* |
144 | * Create per-uid registry with default values. | |
145 | * | |
146 | * Return new instance on success, nullptr on error. | |
147 | */ | |
b0f2e8db | 148 | lttng::sessiond::ust::registry_session *ust_registry_session_per_uid_create( |
d7bfb9b0 | 149 | const lttng::sessiond::trace::abi& abi, |
af6142cf | 150 | uint32_t major, |
d7ba1388 | 151 | uint32_t minor, |
3d071855 | 152 | const char *root_shm_path, |
d7ba1388 MD |
153 | const char *shm_path, |
154 | uid_t euid, | |
8de88061 JR |
155 | gid_t egid, |
156 | uint64_t tracing_id, | |
157 | uid_t tracing_uid); | |
d0b96690 | 158 | |
aeeb48c6 JG |
159 | /* |
160 | * Create per-pid registry with default values. | |
161 | * | |
162 | * Return new instance on success, nullptr on error. | |
163 | */ | |
b0f2e8db | 164 | lttng::sessiond::ust::registry_session *ust_registry_session_per_pid_create(struct ust_app *app, |
d7bfb9b0 | 165 | const lttng::sessiond::trace::abi& abi, |
aeeb48c6 JG |
166 | uint32_t major, |
167 | uint32_t minor, | |
168 | const char *root_shm_path, | |
169 | const char *shm_path, | |
170 | uid_t euid, | |
171 | gid_t egid, | |
172 | uint64_t tracing_id); | |
b0f2e8db | 173 | void ust_registry_session_destroy(lttng::sessiond::ust::registry_session *session); |
aeeb48c6 | 174 | |
d7bfb9b0 JG |
175 | void ust_registry_channel_destroy_event(lttng::sessiond::ust::registry_channel *chan, |
176 | lttng::sessiond::ust::registry_event *event); | |
177 | ||
7972aab2 DG |
178 | #else /* HAVE_LIBLTTNG_UST_CTL */ |
179 | ||
7972aab2 | 180 | static inline |
b0f2e8db | 181 | lttng::sessiond::ust::registry_session *ust_registry_session_per_uid_create( |
f46376a1 MJ |
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))) | |
7972aab2 | 197 | { |
aeeb48c6 JG |
198 | return nullptr; |
199 | } | |
200 | ||
201 | static inline | |
b0f2e8db | 202 | lttng::sessiond::ust::registry_session *ust_registry_session_per_pid_create( |
aeeb48c6 JG |
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))) | |
218 | { | |
219 | return nullptr; | |
7972aab2 | 220 | } |
f46376a1 | 221 | |
7972aab2 | 222 | static inline |
f46376a1 | 223 | void ust_registry_session_destroy( |
b0f2e8db | 224 | lttng::sessiond::ust::registry_session *session __attribute__((unused))) |
7972aab2 | 225 | {} |
f46376a1 | 226 | |
7972aab2 | 227 | static inline |
f46376a1 | 228 | void ust_registry_destroy_event( |
d7bfb9b0 JG |
229 | lttng::sessiond::ust::registry_channel *chan __attribute__((unused)), |
230 | lttng::sessiond::ust::registry_event *event __attribute__((unused))) | |
7972aab2 DG |
231 | {} |
232 | ||
233 | /* The app object can be NULL for registry shared across applications. */ | |
234 | static inline | |
f46376a1 | 235 | int ust_metadata_session_statedump( |
b0f2e8db | 236 | lttng::sessiond::ust::registry_session *session __attribute__((unused))) |
7972aab2 DG |
237 | { |
238 | return 0; | |
239 | } | |
f46376a1 | 240 | |
7972aab2 | 241 | static inline |
f46376a1 | 242 | int ust_metadata_channel_statedump( |
b0f2e8db | 243 | lttng::sessiond::ust::registry_session *session __attribute__((unused)), |
d7bfb9b0 | 244 | lttng::sessiond::ust::registry_channel *chan __attribute__((unused))) |
7972aab2 DG |
245 | { |
246 | return 0; | |
247 | } | |
f46376a1 | 248 | |
7972aab2 | 249 | static inline |
f46376a1 | 250 | int ust_metadata_event_statedump( |
b0f2e8db | 251 | lttng::sessiond::ust::registry_session *session __attribute__((unused)), |
d7bfb9b0 JG |
252 | lttng::sessiond::ust::registry_channel *chan __attribute__((unused)), |
253 | lttng::sessiond::ust::registry_event *event __attribute__((unused))) | |
7972aab2 DG |
254 | { |
255 | return 0; | |
256 | } | |
f46376a1 | 257 | |
7972aab2 DG |
258 | #endif /* HAVE_LIBLTTNG_UST_CTL */ |
259 | ||
d0b96690 | 260 | #endif /* LTTNG_UST_REGISTRY_H */ |