2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: GPL-2.0-only
8 #ifndef NOTIFICATION_THREAD_H
9 #define NOTIFICATION_THREAD_H
11 #include "action-executor.h"
13 #include <common/compat/poll.h>
14 #include <common/hashtable/hashtable.h>
15 #include <common/pipe.h>
16 #include <lttng/trigger/trigger.h>
17 #include <lttng/domain.h>
19 #include <semaphore.h>
21 #include <urcu/list.h>
22 #include <urcu/rculfhash.h>
24 typedef uint64_t notification_client_id
;
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.
32 struct notification_event_tracer_event_source_element
{
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
41 * Under such circumstances, the notification thread still expects
42 * the normal clean-up to occur through the 'REMOVE_TRACER_EVENT_SOURCE'
45 bool is_fd_in_poll_set
;
46 enum lttng_domain_type domain
;
47 struct cds_list_head node
;
50 struct notification_trigger_tokens_ht_element
{
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
;
59 struct notification_thread_handle
{
61 * Queue of struct notification command.
62 * event_pipe must be WRITE(2) to signal that a new command
66 struct lttng_pipe
*event_pipe
;
67 struct cds_list_head list
;
71 * Read side of pipes used to receive channel status info collected
72 * by the various consumer daemons.
78 } channel_monitoring_pipes
;
79 /* Used to wait for the launch of the notification thread. */
84 * This thread maintains an internal state associating clients and triggers.
86 * In order to speed-up and simplify queries, hash tables providing the
87 * following associations are maintained:
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.
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".
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
101 * those that have conditions that apply to a particular channel.
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
105 * This hash table owns the list, but not the triggers themselves.
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
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.
125 * - notification_trigger_clients_ht:
126 * associates notification-emitting triggers to clients
127 * (struct notification_client_list) subscribed to those
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.
134 * associates a channel_key to a struct channel_info. The hash table
135 * holds the ownership of the struct channel_info.
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).
144 * associates a trigger to a struct lttng_trigger_ht_element.
145 * The hash table holds the ownership of the
146 * lttng_trigger_ht_elements along with the triggers themselves.
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.
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.
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,
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,
168 * Events specific to notification-emitting triggers:
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,
175 * 1) Creation of a tracing channel
176 * - notification_trigger_clients_ht is traversed to identify
177 * triggers which apply to this new channel,
178 * - triggers identified are added to the channel_triggers_ht.
179 * - add channel to channels_ht
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.
184 * 2) Destruction of a tracing channel
185 * - remove entry from channel_triggers_ht, releasing the list wrapper and
187 * - remove entry from the channel_state_ht.
188 * - remove channel from channels_ht
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.
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),
200 * - add trigger to session_triggers_ht (if applicable),
201 * - add trigger to triggers_by_name_uid_ht
202 * - add trigger to triggers_ht
203 * - evaluate the trigger's condition right away to react if that condition
204 * is true from the beginning.
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),
210 * - remove trigger from session_triggers_ht (if applicable),
211 * - remove trigger from triggers_by_name_uid_ht
212 * - remove trigger from triggers_ht
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.
221 * 6) Session rotation ongoing
223 * 7) Session rotation completed
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.
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.
235 * 10) Connection of a client
236 * - add client socket to the client_socket_ht,
237 * - add client socket to the client_id_ht.
239 * 11) Disconnection of a client
240 * - remove client socket from the client_id_ht,
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.
245 * 12) Subscription of a client to a condition's notifications
246 * - Add the condition to the client's list of subscribed conditions,
247 * - Look-up notification_trigger_clients_ht and add the client to
249 * - Evaluate the condition for the client that subscribed if the trigger
250 * was already registered.
252 * 13) Unsubscription of a client to a condition's notifications
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.
257 struct notification_thread_state
{
258 int notification_channel_socket
;
259 struct lttng_poll_event events
;
260 struct cds_lfht
*client_socket_ht
;
261 struct cds_lfht
*client_id_ht
;
262 struct cds_lfht
*channel_triggers_ht
;
263 struct cds_lfht
*session_triggers_ht
;
264 struct cds_lfht
*channel_state_ht
;
265 struct cds_lfht
*notification_trigger_clients_ht
;
266 struct cds_lfht
*channels_ht
;
267 struct cds_lfht
*sessions_ht
;
268 struct cds_lfht
*triggers_ht
;
269 struct cds_lfht
*triggers_by_name_uid_ht
;
270 struct cds_lfht
*trigger_tokens_ht
;
272 uint64_t next_tracer_token
;
273 uint64_t name_offset
;
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
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.
285 struct cds_list_head tracer_event_sources_list
;
286 notification_client_id next_notification_client_id
;
287 struct action_executor
*executor
;
290 /* notification_thread_data takes ownership of the channel monitor pipes. */
291 struct notification_thread_handle
*notification_thread_handle_create(
292 struct lttng_pipe
*ust32_channel_monitor_pipe
,
293 struct lttng_pipe
*ust64_channel_monitor_pipe
,
294 struct lttng_pipe
*kernel_channel_monitor_pipe
);
295 void notification_thread_handle_destroy(
296 struct notification_thread_handle
*handle
);
297 struct lttng_thread
*launch_notification_thread(
298 struct notification_thread_handle
*handle
);
300 #endif /* NOTIFICATION_THREAD_H */