Fix: sessiond: assertion fails when getting name of trigger
[lttng-tools.git] / src / bin / lttng-sessiond / notification-thread.h
CommitLineData
ab0ee2ca 1/*
ab5be9fa 2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
ab0ee2ca 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
ab0ee2ca 5 *
ab0ee2ca
JG
6 */
7
8#ifndef NOTIFICATION_THREAD_H
9#define NOTIFICATION_THREAD_H
10
f2b3ef9f
JG
11#include "action-executor.h"
12#include "thread.h"
ab0ee2ca
JG
13#include <common/compat/poll.h>
14#include <common/hashtable/hashtable.h>
f2b3ef9f
JG
15#include <common/pipe.h>
16#include <lttng/trigger/trigger.h>
d02d7404 17#include <lttng/domain.h>
ab0ee2ca 18#include <pthread.h>
90936dcf 19#include <semaphore.h>
f2b3ef9f
JG
20#include <urcu.h>
21#include <urcu/list.h>
22#include <urcu/rculfhash.h>
ab0ee2ca 23
ac1889bf
JG
24typedef uint64_t notification_client_id;
25
d02d7404
JR
26/*
27 * The notification thread holds no ownership of the tracer event source pipe
28 * file descriptor. The tracer management logic must remove the event source
29 * from the notification thread (see external commands) before releasing
30 * this file descriptor.
31 */
32struct notification_event_tracer_event_source_element {
33 int fd;
34 /*
35 * A tracer event source can be removed from the notification thread's
36 * poll set before the end of its lifetime (for instance, when an error
37 * or hang-up is detected on its file descriptor). This is done to
38 * allow the notification thread to ignore follow-up events on this
39 * file descriptors.
40 *
41 * Under such circumstances, the notification thread still expects
42 * the normal clean-up to occur through the 'REMOVE_TRACER_EVENT_SOURCE'
43 * command.
44 */
45 bool is_fd_in_poll_set;
46 enum lttng_domain_type domain;
47 struct cds_list_head node;
48};
49
e7c93cf9
JR
50struct notification_trigger_tokens_ht_element {
51 uint64_t token;
52 /* Weak reference to the trigger. */
53 struct lttng_trigger *trigger;
54 struct cds_lfht_node node;
55 /* call_rcu delayed reclaim. */
56 struct rcu_head rcu_node;
57};
58
ab0ee2ca
JG
59struct notification_thread_handle {
60 /*
61 * Queue of struct notification command.
814b4934 62 * event_pipe must be WRITE(2) to signal that a new command
ab0ee2ca
JG
63 * has been enqueued.
64 */
65 struct {
814b4934 66 struct lttng_pipe *event_pipe;
ab0ee2ca
JG
67 struct cds_list_head list;
68 pthread_mutex_t lock;
69 } cmd_queue;
70 /*
71 * Read side of pipes used to receive channel status info collected
72 * by the various consumer daemons.
73 */
74 struct {
75 int ust32_consumer;
76 int ust64_consumer;
77 int kernel_consumer;
78 } channel_monitoring_pipes;
c8a9de5a
JG
79 /* Used to wait for the launch of the notification thread. */
80 sem_t ready;
ab0ee2ca
JG
81};
82
74df9916
JG
83/**
84 * This thread maintains an internal state associating clients and triggers.
85 *
86 * In order to speed-up and simplify queries, hash tables providing the
87 * following associations are maintained:
88 *
ac1889bf
JG
89 * - client_socket_ht: associate a client's socket (fd) to its
90 * "struct notification_client".
91 * This hash table owns the "struct notification_client" which must
92 * thus be disposed-of on removal from the hash table.
93 *
94 * - client_id_ht: associate a client's id to its "struct notification_client"
95 * This hash table holds a _weak_ reference to the
96 * "struct notification_client".
74df9916
JG
97 *
98 * - channel_triggers_ht:
99 * associates a channel key to a list of
100 * struct lttng_trigger_list_nodes. The triggers in this list are
ea9a44f0 101 * those that have conditions that apply to a particular channel.
74df9916
JG
102 * A channel entry is only created when a channel is added; the
103 * list of triggers applying to such a channel is built at that
104 * moment.
105 * This hash table owns the list, but not the triggers themselves.
106 *
ea9a44f0
JG
107 * - session_triggers_ht:
108 * associates a session name to a list of
109 * struct lttng_trigger_list_nodes. The triggers in this list are
110 * those that have conditions that apply to a particular session.
111 * A session entry is only created when a session is created; the
112 * list of triggers applying to this new session is built at that
113 * moment. This happens at the time of creation of a session_info.
114 * Likewise, the list is destroyed at the time of the session_info's
115 * destruction.
116 *
74df9916
JG
117 * - channel_state_ht:
118 * associates a pair (channel key, channel domain) to its last
119 * sampled state received from the consumer daemon
120 * (struct channel_state).
121 * This previous sample is kept to implement edge-triggered
122 * conditions as we need to detect the state transitions.
123 * This hash table owns the channel state.
124 *
125 * - notification_trigger_clients_ht:
126 * associates notification-emitting triggers to clients
127 * (struct notification_client_list) subscribed to those
128 * conditions.
129 * The condition's hash and match functions are used directly since
130 * all triggers in this hash table have the "notify" action.
131 * This hash table holds no ownership.
132 *
133 * - channels_ht:
134 * associates a channel_key to a struct channel_info. The hash table
135 * holds the ownership of the struct channel_info.
136 *
8abe313a
JG
137 * - sessions_ht:
138 * associates a session_name (hash) to a struct session_info. The
139 * hash table holds no ownership of the struct session_info;
140 * the session_info structure is owned by the session's various
141 * channels through their struct channel_info (ref-counting is used).
142 *
74df9916 143 * - triggers_ht:
242388e4 144 * associates a trigger to a struct lttng_trigger_ht_element.
74df9916
JG
145 * The hash table holds the ownership of the
146 * lttng_trigger_ht_elements along with the triggers themselves.
242388e4
JR
147 * - triggers_by_name_uid_ht:
148 * associates a trigger (name, uid) tuple to
149 * a struct lttng_trigger_ht_element.
150 * The hash table does not hold any ownership and is used strictly
151 * for lookup on registration.
d02d7404
JR
152 * - tracer_event_sources_list:
153 * A list of tracer event source (read side fd) of type
154* struct notification_event_tracer_event_source_element.
155*
74df9916
JG
156 *
157 * The thread reacts to the following internal events:
158 * 1) creation of a tracing channel,
159 * 2) destruction of a tracing channel,
160 * 3) registration of a trigger,
161 * 4) unregistration of a trigger,
d02d7404
JR
162 * 5) reception of a channel monitor sample from the consumer daemon,
163 * 6) Session rotation ongoing,
164 * 7) Session rotation completed,
165 * 8) registration of a tracer event source,
166 * 9) unregistration of a tracer event source,
74df9916
JG
167 *
168 * Events specific to notification-emitting triggers:
d02d7404
JR
169 * 9) connection of a notification client,
170 * 10) disconnection of a notification client,
171 * 11) subscription of a client to a conditions' notifications,
172 * 12) unsubscription of a client from a conditions' notifications,
74df9916
JG
173 *
174 *
175 * 1) Creation of a tracing channel
176 * - notification_trigger_clients_ht is traversed to identify
177 * triggers which apply to this new channel,
8abe313a 178 * - triggers identified are added to the channel_triggers_ht.
74df9916 179 * - add channel to channels_ht
ea9a44f0
JG
180 * - if it is the first channel of a session, a session_info is created and
181 * added to the sessions_ht. A list of the triggers associated with that
182 * session is built, and it is added to session_triggers_ht.
74df9916
JG
183 *
184 * 2) Destruction of a tracing channel
185 * - remove entry from channel_triggers_ht, releasing the list wrapper and
186 * elements,
187 * - remove entry from the channel_state_ht.
188 * - remove channel from channels_ht
ea9a44f0
JG
189 * - if it was the last known channel of a session, the session_info
190 * structure is torndown, which in return destroys the list of triggers
191 * applying to that session.
74df9916
JG
192 *
193 * 3) Registration of a trigger
194 * - if the trigger's action is of type "notify",
195 * - traverse the list of conditions of every client to build a list of
196 * clients which have to be notified when this trigger's condition is met,
197 * - add list of clients (even if it is empty) to the
198 * notification_trigger_clients_ht,
199 * - add trigger to channel_triggers_ht (if applicable),
ea9a44f0 200 * - add trigger to session_triggers_ht (if applicable),
242388e4 201 * - add trigger to triggers_by_name_uid_ht
74df9916 202 * - add trigger to triggers_ht
2ae99f0b
JG
203 * - evaluate the trigger's condition right away to react if that condition
204 * is true from the beginning.
74df9916
JG
205 *
206 * 4) Unregistration of a trigger
207 * - if the trigger's action is of type "notify",
208 * - remove the trigger from the notification_trigger_clients_ht,
209 * - remove trigger from channel_triggers_ht (if applicable),
ea9a44f0 210 * - remove trigger from session_triggers_ht (if applicable),
242388e4 211 * - remove trigger from triggers_by_name_uid_ht
74df9916
JG
212 * - remove trigger from triggers_ht
213 *
214 * 5) Reception of a channel monitor sample from the consumer daemon
215 * - evaluate the conditions associated with the triggers found in
216 * the channel_triggers_ht,
217 * - if a condition evaluates to "true" and the condition is of type
218 * "notify", query the notification_trigger_clients_ht and send
219 * a notification to the clients.
220 *
51eab943
JG
221 * 6) Session rotation ongoing
222 *
223 * 7) Session rotation completed
224 *
d02d7404
JR
225 * 8) Registration of a tracer event source
226 * - Add the tracer event source of the application to
227 * tracer_event_sources_list,
228 * - Add the trace event source to the pollset.
229 *
230 * 8) Unregistration of a tracer event source
231 * - Remove the tracer event source of the application from
232 * tracer_event_sources_list,
233 * - Remove the trace event source from the pollset.
234 *
235 * 10) Connection of a client
ac1889bf
JG
236 * - add client socket to the client_socket_ht,
237 * - add client socket to the client_id_ht.
74df9916 238 *
d02d7404 239 * 11) Disconnection of a client
ac1889bf 240 * - remove client socket from the client_id_ht,
74df9916
JG
241 * - remove client socket from the client_socket_ht,
242 * - traverse all conditions to which the client is subscribed and remove
243 * the client from the notification_trigger_clients_ht.
244 *
d02d7404 245 * 12) Subscription of a client to a condition's notifications
74df9916
JG
246 * - Add the condition to the client's list of subscribed conditions,
247 * - Look-up notification_trigger_clients_ht and add the client to
248 * list of clients.
2ae99f0b
JG
249 * - Evaluate the condition for the client that subscribed if the trigger
250 * was already registered.
74df9916 251 *
d02d7404 252 * 13) Unsubscription of a client to a condition's notifications
74df9916
JG
253 * - Remove the condition from the client's list of subscribed conditions,
254 * - Look-up notification_trigger_clients_ht and remove the client
255 * from the list of clients.
256 */
ab0ee2ca
JG
257struct notification_thread_state {
258 int notification_channel_socket;
259 struct lttng_poll_event events;
260 struct cds_lfht *client_socket_ht;
ac1889bf 261 struct cds_lfht *client_id_ht;
ab0ee2ca 262 struct cds_lfht *channel_triggers_ht;
ea9a44f0 263 struct cds_lfht *session_triggers_ht;
ab0ee2ca
JG
264 struct cds_lfht *channel_state_ht;
265 struct cds_lfht *notification_trigger_clients_ht;
266 struct cds_lfht *channels_ht;
8abe313a 267 struct cds_lfht *sessions_ht;
ab0ee2ca 268 struct cds_lfht *triggers_ht;
242388e4 269 struct cds_lfht *triggers_by_name_uid_ht;
e7c93cf9 270 struct cds_lfht *trigger_tokens_ht;
242388e4 271 struct {
e6887944 272 uint64_t next_tracer_token;
242388e4
JR
273 uint64_t name_offset;
274 } trigger_id;
d02d7404
JR
275 /*
276 * Read side of the pipes used to receive tracer events. As their name
277 * implies, tracer event source activity originate from either
278 * registered applications (user space tracer) or from the kernel
279 * tracer.
280 *
281 * The list is not protected by a lock since add and remove operations
282 * are currently done only by the notification thread through in
283 * response to blocking commands.
284 */
285 struct cds_list_head tracer_event_sources_list;
ac1889bf 286 notification_client_id next_notification_client_id;
f2b3ef9f 287 struct action_executor *executor;
ab0ee2ca
JG
288};
289
290/* notification_thread_data takes ownership of the channel monitor pipes. */
291struct notification_thread_handle *notification_thread_handle_create(
292 struct lttng_pipe *ust32_channel_monitor_pipe,
293 struct lttng_pipe *ust64_channel_monitor_pipe,
c8a9de5a 294 struct lttng_pipe *kernel_channel_monitor_pipe);
ab0ee2ca
JG
295void notification_thread_handle_destroy(
296 struct notification_thread_handle *handle);
4a91420c
JG
297struct lttng_thread *launch_notification_thread(
298 struct notification_thread_handle *handle);
ab0ee2ca
JG
299
300#endif /* NOTIFICATION_THREAD_H */
This page took 0.049509 seconds and 4 git commands to generate.