actions: list: Add `for_each_action_{const, mutable}()` macros
[lttng-tools.git] / src / bin / lttng-sessiond / notification-thread-events.cpp
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
f2b3ef9f 8#include "lttng/action/action.h"
c9e313bc 9#include "lttng/trigger/trigger-internal.hpp"
ab0ee2ca 10#define _LGPL_SOURCE
28ab034a
JG
11#include "condition-internal.hpp"
12#include "event-notifier-error-accounting.hpp"
13#include "kernel.hpp"
14#include "lttng-sessiond.hpp"
15#include "notification-thread-commands.hpp"
16#include "notification-thread-events.hpp"
17#include "notification-thread.hpp"
ab0ee2ca 18
c9e313bc 19#include <common/defaults.hpp>
28ab034a 20#include <common/dynamic-buffer.hpp>
c9e313bc
SM
21#include <common/error.hpp>
22#include <common/futex.hpp>
c9e313bc 23#include <common/hashtable/utils.hpp>
c9e313bc 24#include <common/macros.hpp>
28ab034a
JG
25#include <common/sessiond-comm/sessiond-comm.hpp>
26#include <common/unix.hpp>
56047f5a 27#include <common/urcu.hpp>
28ab034a 28
c9e313bc
SM
29#include <lttng/action/action-internal.hpp>
30#include <lttng/action/list-internal.hpp>
c9e313bc 31#include <lttng/condition/buffer-usage-internal.hpp>
28ab034a
JG
32#include <lttng/condition/condition-internal.hpp>
33#include <lttng/condition/condition.h>
34#include <lttng/condition/event-rule-matches-internal.hpp>
c9e313bc
SM
35#include <lttng/condition/session-consumed-size-internal.hpp>
36#include <lttng/condition/session-rotation-internal.hpp>
c9e313bc 37#include <lttng/domain-internal.hpp>
c9e313bc 38#include <lttng/event-rule/event-rule-internal.hpp>
319dcddc 39#include <lttng/location-internal.hpp>
28ab034a
JG
40#include <lttng/notification/channel-internal.hpp>
41#include <lttng/notification/notification-internal.hpp>
42#include <lttng/trigger/trigger-internal.hpp>
1da26331 43
28ab034a
JG
44#include <fcntl.h>
45#include <inttypes.h>
ab0ee2ca
JG
46#include <time.h>
47#include <unistd.h>
28ab034a
JG
48#include <urcu.h>
49#include <urcu/rculfhash.h>
1da26331 50
28ab034a 51#define CLIENT_POLL_EVENTS_IN (LPOLLIN | LPOLLRDHUP)
9016dbfc 52#define CLIENT_POLL_EVENTS_IN_OUT (CLIENT_POLL_EVENTS_IN | LPOLLOUT)
ab0ee2ca 53
82b3cbf4
JR
54/* The tracers currently limit the capture size to PIPE_BUF (4kb on linux). */
55#define MAX_CAPTURE_SIZE (PIPE_BUF)
56
51eab943
JG
57enum lttng_object_type {
58 LTTNG_OBJECT_TYPE_UNKNOWN,
59 LTTNG_OBJECT_TYPE_NONE,
60 LTTNG_OBJECT_TYPE_CHANNEL,
61 LTTNG_OBJECT_TYPE_SESSION,
62};
63
ab0ee2ca
JG
64struct lttng_channel_trigger_list {
65 struct channel_key channel_key;
ea9a44f0 66 /* List of struct lttng_trigger_list_element. */
ab0ee2ca 67 struct cds_list_head list;
ea9a44f0 68 /* Node in the channel_triggers_ht */
ab0ee2ca 69 struct cds_lfht_node channel_triggers_ht_node;
83b934ad
MD
70 /* call_rcu delayed reclaim. */
71 struct rcu_head rcu_node;
ab0ee2ca
JG
72};
73
ea9a44f0
JG
74/*
75 * List of triggers applying to a given session.
76 *
77 * See:
78 * - lttng_session_trigger_list_create()
79 * - lttng_session_trigger_list_build()
80 * - lttng_session_trigger_list_destroy()
81 * - lttng_session_trigger_list_add()
82 */
83struct lttng_session_trigger_list {
319dcddc 84 char *session_name;
ea9a44f0
JG
85 /* List of struct lttng_trigger_list_element. */
86 struct cds_list_head list;
87 /* Node in the session_triggers_ht */
88 struct cds_lfht_node session_triggers_ht_node;
89 /*
90 * Weak reference to the notification system's session triggers
91 * hashtable.
92 *
93 * The session trigger list structure structure is owned by
94 * the session's session_info.
95 *
96 * The session_info is kept alive the the channel_infos holding a
97 * reference to it (reference counting). When those channels are
98 * destroyed (at runtime or on teardown), the reference they hold
99 * to the session_info are released. On destruction of session_info,
100 * session_info_destroy() will remove the list of triggers applying
101 * to this session from the notification system's state.
102 *
103 * This implies that the session_triggers_ht must be destroyed
104 * after the channels.
105 */
106 struct cds_lfht *session_triggers_ht;
107 /* Used for delayed RCU reclaim. */
108 struct rcu_head rcu_node;
109};
110
f1494934
JG
111namespace {
112struct lttng_trigger_list_element {
113 /* No ownership of the trigger object is assumed. */
114 struct lttng_trigger *trigger;
115 struct cds_list_head node;
116};
117
ab0ee2ca
JG
118struct lttng_trigger_ht_element {
119 struct lttng_trigger *trigger;
120 struct cds_lfht_node node;
242388e4 121 struct cds_lfht_node node_by_name_uid;
091fa780 122 struct cds_list_head client_list_trigger_node;
83b934ad
MD
123 /* call_rcu delayed reclaim. */
124 struct rcu_head rcu_node;
ab0ee2ca
JG
125};
126
127struct lttng_condition_list_element {
128 struct lttng_condition *condition;
129 struct cds_list_head node;
130};
131
ab0ee2ca
JG
132struct channel_state_sample {
133 struct channel_key key;
134 struct cds_lfht_node channel_state_ht_node;
135 uint64_t highest_usage;
136 uint64_t lowest_usage;
83b934ad
MD
137 /* call_rcu delayed reclaim. */
138 struct rcu_head rcu_node;
ab0ee2ca 139};
f1494934 140} /* namespace */
ab0ee2ca 141
e4db5ace 142static unsigned long hash_channel_key(struct channel_key *key);
ed327204 143static int evaluate_buffer_condition(const struct lttng_condition *condition,
28ab034a
JG
144 struct lttng_evaluation **evaluation,
145 const struct notification_thread_state *state,
146 const struct channel_state_sample *previous_sample,
147 const struct channel_state_sample *latest_sample,
148 struct channel_info *channel_info);
149static int send_evaluation_to_clients(const struct lttng_trigger *trigger,
150 const struct lttng_evaluation *evaluation,
151 struct notification_client_list *client_list,
152 struct notification_thread_state *state,
153 uid_t channel_uid,
154 gid_t channel_gid);
8abe313a 155
ea9a44f0 156/* session_info API */
28ab034a
JG
157static void session_info_destroy(void *_data);
158static void session_info_get(struct session_info *session_info);
159static void session_info_put(struct session_info *session_info);
160static struct session_info *session_info_create(uint64_t id,
161 const char *name,
162 uid_t uid,
163 gid_t gid,
164 struct lttng_session_trigger_list *trigger_list,
165 struct cds_lfht *sessions_ht);
166static void session_info_add_channel(struct session_info *session_info,
167 struct channel_info *channel_info);
168static void session_info_remove_channel(struct session_info *session_info,
169 struct channel_info *channel_info);
8abe313a 170
ea9a44f0 171/* lttng_session_trigger_list API */
28ab034a
JG
172static struct lttng_session_trigger_list *
173lttng_session_trigger_list_create(const char *session_name, struct cds_lfht *session_triggers_ht);
174static struct lttng_session_trigger_list *
175lttng_session_trigger_list_build(const struct notification_thread_state *state,
176 const char *session_name);
177static void lttng_session_trigger_list_destroy(struct lttng_session_trigger_list *list);
178static int lttng_session_trigger_list_add(struct lttng_session_trigger_list *list,
179 struct lttng_trigger *trigger);
180
181static int client_handle_transmission_status(struct notification_client *client,
182 enum client_transmission_status transmission_status,
183 struct notification_thread_state *state);
184
185static int handle_one_event_notifier_notification(struct notification_thread_state *state,
186 int pipe,
187 enum lttng_domain_type domain);
188
189static void free_lttng_trigger_ht_element_rcu(struct rcu_head *node);
190
191static int match_client_socket(struct cds_lfht_node *node, const void *key)
ab0ee2ca
JG
192{
193 /* This double-cast is intended to supress pointer-to-cast warning. */
ac1889bf 194 const int socket = (int) (intptr_t) key;
28ab034a
JG
195 const struct notification_client *client =
196 caa_container_of(node, struct notification_client, client_socket_ht_node);
ab0ee2ca 197
ac1889bf
JG
198 return client->socket == socket;
199}
200
28ab034a 201static int match_client_id(struct cds_lfht_node *node, const void *key)
ac1889bf
JG
202{
203 /* This double-cast is intended to supress pointer-to-cast warning. */
204 const notification_client_id id = *((notification_client_id *) key);
28ab034a
JG
205 const struct notification_client *client =
206 lttng::utils::container_of(node, &notification_client::client_id_ht_node);
ab0ee2ca 207
ac1889bf 208 return client->id == id;
ab0ee2ca
JG
209}
210
28ab034a 211static int match_channel_trigger_list(struct cds_lfht_node *node, const void *key)
ab0ee2ca
JG
212{
213 struct channel_key *channel_key = (struct channel_key *) key;
214 struct lttng_channel_trigger_list *trigger_list;
215
28ab034a
JG
216 trigger_list =
217 caa_container_of(node, struct lttng_channel_trigger_list, channel_triggers_ht_node);
ab0ee2ca
JG
218
219 return !!((channel_key->key == trigger_list->channel_key.key) &&
28ab034a 220 (channel_key->domain == trigger_list->channel_key.domain));
ab0ee2ca
JG
221}
222
28ab034a 223static int match_session_trigger_list(struct cds_lfht_node *node, const void *key)
51eab943
JG
224{
225 const char *session_name = (const char *) key;
226 struct lttng_session_trigger_list *trigger_list;
227
28ab034a
JG
228 trigger_list =
229 caa_container_of(node, struct lttng_session_trigger_list, session_triggers_ht_node);
51eab943
JG
230
231 return !!(strcmp(trigger_list->session_name, session_name) == 0);
232}
233
28ab034a 234static int match_channel_state_sample(struct cds_lfht_node *node, const void *key)
ab0ee2ca
JG
235{
236 struct channel_key *channel_key = (struct channel_key *) key;
237 struct channel_state_sample *sample;
238
28ab034a 239 sample = caa_container_of(node, struct channel_state_sample, channel_state_ht_node);
ab0ee2ca
JG
240
241 return !!((channel_key->key == sample->key.key) &&
28ab034a 242 (channel_key->domain == sample->key.domain));
ab0ee2ca
JG
243}
244
28ab034a 245static int match_channel_info(struct cds_lfht_node *node, const void *key)
ab0ee2ca
JG
246{
247 struct channel_key *channel_key = (struct channel_key *) key;
248 struct channel_info *channel_info;
249
28ab034a 250 channel_info = caa_container_of(node, struct channel_info, channels_ht_node);
ab0ee2ca
JG
251
252 return !!((channel_key->key == channel_info->key.key) &&
28ab034a 253 (channel_key->domain == channel_info->key.domain));
ab0ee2ca
JG
254}
255
28ab034a 256static int match_trigger(struct cds_lfht_node *node, const void *key)
ab0ee2ca 257{
242388e4
JR
258 struct lttng_trigger *trigger_key = (struct lttng_trigger *) key;
259 struct lttng_trigger_ht_element *trigger_ht_element;
ab0ee2ca 260
28ab034a 261 trigger_ht_element = caa_container_of(node, struct lttng_trigger_ht_element, node);
ab0ee2ca 262
242388e4 263 return !!lttng_trigger_is_equal(trigger_key, trigger_ht_element->trigger);
ab0ee2ca
JG
264}
265
28ab034a 266static int match_trigger_token(struct cds_lfht_node *node, const void *key)
e7c93cf9 267{
7966af57 268 const uint64_t *_key = (uint64_t *) key;
e7c93cf9
JR
269 struct notification_trigger_tokens_ht_element *element;
270
28ab034a 271 element = caa_container_of(node, struct notification_trigger_tokens_ht_element, node);
e7c93cf9
JR
272 return *_key == element->token;
273}
274
28ab034a 275static int match_client_list_condition(struct cds_lfht_node *node, const void *key)
ab0ee2ca
JG
276{
277 struct lttng_condition *condition_key = (struct lttng_condition *) key;
278 struct notification_client_list *client_list;
f82f93a1 279 const struct lttng_condition *condition;
ab0ee2ca 280
a0377dfe 281 LTTNG_ASSERT(condition_key);
ab0ee2ca 282
28ab034a
JG
283 client_list = caa_container_of(
284 node, struct notification_client_list, notification_trigger_clients_ht_node);
091fa780 285 condition = client_list->condition;
ab0ee2ca
JG
286
287 return !!lttng_condition_is_equal(condition_key, condition);
288}
289
28ab034a 290static int match_session_info(struct cds_lfht_node *node, const void *key)
f82f93a1 291{
139a8d25 292 const auto session_id = *((uint64_t *) key);
28ab034a
JG
293 const auto *session_info =
294 lttng::utils::container_of(node, &session_info::sessions_ht_node);
f82f93a1 295
139a8d25
JG
296 return session_id == session_info->id;
297}
298
28ab034a 299static unsigned long hash_session_info_id(uint64_t id)
139a8d25
JG
300{
301 return hash_key_u64(&id, lttng_ht_seed);
302}
303
28ab034a 304static unsigned long hash_session_info(const struct session_info *session_info)
139a8d25
JG
305{
306 return hash_session_info_id(session_info->id);
307}
308
28ab034a
JG
309static struct session_info *get_session_info_by_id(const struct notification_thread_state *state,
310 uint64_t id)
139a8d25
JG
311{
312 struct cds_lfht_iter iter;
313 struct cds_lfht_node *node;
314 lttng::urcu::read_lock_guard read_lock_guard;
315
28ab034a
JG
316 cds_lfht_lookup(
317 state->sessions_ht, hash_session_info_id(id), match_session_info, &id, &iter);
139a8d25
JG
318 node = cds_lfht_iter_get_node(&iter);
319
320 if (node) {
28ab034a
JG
321 auto session_info =
322 lttng::utils::container_of(node, &session_info::sessions_ht_node);
139a8d25
JG
323
324 session_info_get(session_info);
325 return session_info;
326 }
327
cd9adb8b 328 return nullptr;
139a8d25
JG
329}
330
28ab034a
JG
331static struct session_info *get_session_info_by_name(const struct notification_thread_state *state,
332 const char *name)
139a8d25
JG
333{
334 uint64_t session_id;
335 const auto found = sample_session_id_by_name(name, &session_id);
336
cd9adb8b 337 return found ? get_session_info_by_id(state, session_id) : nullptr;
f82f93a1
JG
338}
339
28ab034a 340static const char *notification_command_type_str(enum notification_thread_command_type type)
6900ae81
FD
341{
342 switch (type) {
343 case NOTIFICATION_COMMAND_TYPE_REGISTER_TRIGGER:
344 return "REGISTER_TRIGGER";
345 case NOTIFICATION_COMMAND_TYPE_UNREGISTER_TRIGGER:
346 return "UNREGISTER_TRIGGER";
347 case NOTIFICATION_COMMAND_TYPE_ADD_CHANNEL:
348 return "ADD_CHANNEL";
349 case NOTIFICATION_COMMAND_TYPE_REMOVE_CHANNEL:
350 return "REMOVE_CHANNEL";
139a8d25
JG
351 case NOTIFICATION_COMMAND_TYPE_ADD_SESSION:
352 return "ADD_SESSION";
353 case NOTIFICATION_COMMAND_TYPE_REMOVE_SESSION:
354 return "REMOVE_SESSION";
6900ae81
FD
355 case NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_ONGOING:
356 return "SESSION_ROTATION_ONGOING";
357 case NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_COMPLETED:
358 return "SESSION_ROTATION_COMPLETED";
359 case NOTIFICATION_COMMAND_TYPE_ADD_TRACER_EVENT_SOURCE:
360 return "ADD_TRACER_EVENT_SOURCE";
361 case NOTIFICATION_COMMAND_TYPE_REMOVE_TRACER_EVENT_SOURCE:
362 return "REMOVE_TRACER_EVENT_SOURCE";
363 case NOTIFICATION_COMMAND_TYPE_LIST_TRIGGERS:
364 return "LIST_TRIGGERS";
8790759c
FD
365 case NOTIFICATION_COMMAND_TYPE_GET_TRIGGER:
366 return "GET_TRIGGER";
6900ae81
FD
367 case NOTIFICATION_COMMAND_TYPE_QUIT:
368 return "QUIT";
369 case NOTIFICATION_COMMAND_TYPE_CLIENT_COMMUNICATION_UPDATE:
370 return "CLIENT_COMMUNICATION_UPDATE";
371 default:
372 abort();
373 }
374}
375
242388e4
JR
376/*
377 * Match trigger based on name and credentials only.
378 * Name duplication is NOT allowed for the same uid.
379 */
28ab034a 380static int match_trigger_by_name_uid(struct cds_lfht_node *node, const void *key)
242388e4
JR
381{
382 bool match = false;
0efb2ad7 383 const char *element_trigger_name;
242388e4
JR
384 const char *key_name;
385 enum lttng_trigger_status status;
386 const struct lttng_credentials *key_creds;
387 const struct lttng_credentials *node_creds;
28ab034a 388 const struct lttng_trigger *trigger_key = (const struct lttng_trigger *) key;
242388e4 389 const struct lttng_trigger_ht_element *trigger_ht_element =
28ab034a 390 caa_container_of(node, struct lttng_trigger_ht_element, node_by_name_uid);
242388e4 391
28ab034a 392 status = lttng_trigger_get_name(trigger_ht_element->trigger, &element_trigger_name);
cd9adb8b 393 element_trigger_name = status == LTTNG_TRIGGER_STATUS_OK ? element_trigger_name : nullptr;
242388e4
JR
394
395 status = lttng_trigger_get_name(trigger_key, &key_name);
cd9adb8b 396 key_name = status == LTTNG_TRIGGER_STATUS_OK ? key_name : nullptr;
242388e4 397
0efb2ad7
JG
398 /*
399 * Compare the names.
400 * Consider null names as not equal. This is to maintain backwards
401 * compatibility with pre-2.13 anonymous triggers. Multiples anonymous
402 * triggers are allowed for a given user.
403 */
404 if (!element_trigger_name || !key_name) {
405 goto end;
406 }
407
408 if (strcmp(element_trigger_name, key_name) != 0) {
242388e4
JR
409 goto end;
410 }
411
412 /* Compare the owners' UIDs. */
413 key_creds = lttng_trigger_get_credentials(trigger_key);
414 node_creds = lttng_trigger_get_credentials(trigger_ht_element->trigger);
415
416 match = lttng_credentials_is_equal_uid(key_creds, node_creds);
417
418end:
419 return match;
420}
421
422/*
423 * Hash trigger based on name and credentials only.
424 */
28ab034a 425static unsigned long hash_trigger_by_name_uid(const struct lttng_trigger *trigger)
242388e4
JR
426{
427 unsigned long hash = 0;
428 const struct lttng_credentials *trigger_creds;
429 const char *trigger_name;
430 enum lttng_trigger_status status;
431
432 status = lttng_trigger_get_name(trigger, &trigger_name);
433 if (status == LTTNG_TRIGGER_STATUS_OK) {
434 hash = hash_key_str(trigger_name, lttng_ht_seed);
435 }
436
437 trigger_creds = lttng_trigger_get_credentials(trigger);
438 hash ^= hash_key_ulong((void *) (unsigned long) LTTNG_OPTIONAL_GET(trigger_creds->uid),
28ab034a 439 lttng_ht_seed);
242388e4
JR
440
441 return hash;
442}
443
28ab034a 444static unsigned long hash_channel_key(struct channel_key *key)
e4db5ace
JR
445{
446 unsigned long key_hash = hash_key_u64(&key->key, lttng_ht_seed);
28ab034a
JG
447 unsigned long domain_hash =
448 hash_key_ulong((void *) (unsigned long) key->domain, lttng_ht_seed);
e4db5ace
JR
449
450 return key_hash ^ domain_hash;
451}
452
28ab034a 453static unsigned long hash_client_socket(int socket)
ac1889bf
JG
454{
455 return hash_key_ulong((void *) (unsigned long) socket, lttng_ht_seed);
456}
457
28ab034a 458static unsigned long hash_client_id(notification_client_id id)
ac1889bf
JG
459{
460 return hash_key_u64(&id, lttng_ht_seed);
461}
462
f82f93a1
JG
463/*
464 * Get the type of object to which a given condition applies. Bindings let
465 * the notification system evaluate a trigger's condition when a given
466 * object's state is updated.
467 *
468 * For instance, a condition bound to a channel will be evaluated everytime
469 * the channel's state is changed by a channel monitoring sample.
470 */
28ab034a 471static enum lttng_object_type get_condition_binding_object(const struct lttng_condition *condition)
f82f93a1
JG
472{
473 switch (lttng_condition_get_type(condition)) {
474 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
475 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH:
e742b055 476 return LTTNG_OBJECT_TYPE_CHANNEL;
f82f93a1
JG
477 case LTTNG_CONDITION_TYPE_SESSION_ROTATION_ONGOING:
478 case LTTNG_CONDITION_TYPE_SESSION_ROTATION_COMPLETED:
319dcddc 479 case LTTNG_CONDITION_TYPE_SESSION_CONSUMED_SIZE:
f82f93a1 480 return LTTNG_OBJECT_TYPE_SESSION;
8dbb86b8 481 case LTTNG_CONDITION_TYPE_EVENT_RULE_MATCHES:
959e3c66 482 return LTTNG_OBJECT_TYPE_NONE;
f82f93a1
JG
483 default:
484 return LTTNG_OBJECT_TYPE_UNKNOWN;
485 }
486}
487
28ab034a 488static void free_channel_info_rcu(struct rcu_head *node)
83b934ad 489{
0114db0e 490 free(lttng::utils::container_of(node, &channel_info::rcu_node));
83b934ad
MD
491}
492
28ab034a 493static void channel_info_destroy(struct channel_info *channel_info)
ab0ee2ca
JG
494{
495 if (!channel_info) {
496 return;
497 }
498
8abe313a 499 if (channel_info->session_info) {
28ab034a 500 session_info_remove_channel(channel_info->session_info, channel_info);
8abe313a 501 session_info_put(channel_info->session_info);
ab0ee2ca 502 }
8abe313a
JG
503 if (channel_info->name) {
504 free(channel_info->name);
ab0ee2ca 505 }
83b934ad
MD
506 call_rcu(&channel_info->rcu_node, free_channel_info_rcu);
507}
508
28ab034a 509static void free_session_info_rcu(struct rcu_head *node)
83b934ad 510{
0114db0e 511 free(lttng::utils::container_of(node, &session_info::rcu_node));
ab0ee2ca
JG
512}
513
8abe313a 514/* Don't call directly, use the ref-counting mechanism. */
28ab034a 515static void session_info_destroy(void *_data)
ab0ee2ca 516{
7966af57 517 struct session_info *session_info = (struct session_info *) _data;
3b68d0a3 518 int ret;
ab0ee2ca 519
a0377dfe 520 LTTNG_ASSERT(session_info);
8abe313a 521 if (session_info->channel_infos_ht) {
cd9adb8b 522 ret = cds_lfht_destroy(session_info->channel_infos_ht, nullptr);
3b68d0a3 523 if (ret) {
bd0514a5 524 ERR("Failed to destroy channel information hash table");
3b68d0a3 525 }
8abe313a 526 }
ea9a44f0 527 lttng_session_trigger_list_destroy(session_info->trigger_list);
1eee26c5 528
56047f5a 529 lttng::urcu::read_lock_guard read_lock;
28ab034a 530 cds_lfht_del(session_info->sessions_ht, &session_info->sessions_ht_node);
8abe313a 531 free(session_info->name);
319dcddc 532 lttng_trace_archive_location_put(session_info->last_state_sample.rotation.location);
83b934ad 533 call_rcu(&session_info->rcu_node, free_session_info_rcu);
8abe313a 534}
ab0ee2ca 535
28ab034a 536static void session_info_get(struct session_info *session_info)
8abe313a
JG
537{
538 if (!session_info) {
539 return;
540 }
541 lttng_ref_get(&session_info->ref);
542}
543
28ab034a 544static void session_info_put(struct session_info *session_info)
8abe313a
JG
545{
546 if (!session_info) {
547 return;
ab0ee2ca 548 }
8abe313a
JG
549 lttng_ref_put(&session_info->ref);
550}
551
28ab034a
JG
552static struct session_info *session_info_create(uint64_t id,
553 const char *name,
554 uid_t uid,
555 gid_t gid,
556 struct lttng_session_trigger_list *trigger_list,
557 struct cds_lfht *sessions_ht)
8abe313a
JG
558{
559 struct session_info *session_info;
ab0ee2ca 560
a0377dfe 561 LTTNG_ASSERT(name);
ab0ee2ca 562
64803277 563 session_info = zmalloc<struct session_info>();
8abe313a
JG
564 if (!session_info) {
565 goto end;
566 }
139a8d25 567
8abe313a
JG
568 lttng_ref_init(&session_info->ref, session_info_destroy);
569
28ab034a 570 session_info->channel_infos_ht = cds_lfht_new(
cd9adb8b 571 DEFAULT_HT_SIZE, 1, 0, CDS_LFHT_AUTO_RESIZE | CDS_LFHT_ACCOUNTING, nullptr);
8abe313a 572 if (!session_info->channel_infos_ht) {
ab0ee2ca
JG
573 goto error;
574 }
8abe313a
JG
575
576 cds_lfht_node_init(&session_info->sessions_ht_node);
139a8d25 577 session_info->id = id;
8abe313a
JG
578 session_info->name = strdup(name);
579 if (!session_info->name) {
ab0ee2ca
JG
580 goto error;
581 }
139a8d25 582
8abe313a
JG
583 session_info->uid = uid;
584 session_info->gid = gid;
ea9a44f0 585 session_info->trigger_list = trigger_list;
1eee26c5 586 session_info->sessions_ht = sessions_ht;
8abe313a
JG
587end:
588 return session_info;
589error:
590 session_info_put(session_info);
cd9adb8b 591 return nullptr;
8abe313a
JG
592}
593
28ab034a
JG
594static void session_info_add_channel(struct session_info *session_info,
595 struct channel_info *channel_info)
8abe313a 596{
56047f5a 597 lttng::urcu::read_lock_guard read_lock;
8abe313a 598 cds_lfht_add(session_info->channel_infos_ht,
28ab034a
JG
599 hash_channel_key(&channel_info->key),
600 &channel_info->session_info_channels_ht_node);
8abe313a
JG
601}
602
28ab034a
JG
603static void session_info_remove_channel(struct session_info *session_info,
604 struct channel_info *channel_info)
8abe313a 605{
56047f5a 606 lttng::urcu::read_lock_guard read_lock;
28ab034a 607 cds_lfht_del(session_info->channel_infos_ht, &channel_info->session_info_channels_ht_node);
8abe313a
JG
608}
609
28ab034a
JG
610static struct channel_info *channel_info_create(const char *channel_name,
611 struct channel_key *channel_key,
612 uint64_t channel_capacity,
613 struct session_info *session_info)
8abe313a 614{
64803277 615 struct channel_info *channel_info = zmalloc<struct channel_info>();
8abe313a
JG
616
617 if (!channel_info) {
618 goto end;
619 }
620
ab0ee2ca 621 cds_lfht_node_init(&channel_info->channels_ht_node);
8abe313a
JG
622 cds_lfht_node_init(&channel_info->session_info_channels_ht_node);
623 memcpy(&channel_info->key, channel_key, sizeof(*channel_key));
624 channel_info->capacity = channel_capacity;
625
626 channel_info->name = strdup(channel_name);
627 if (!channel_info->name) {
628 goto error;
629 }
630
631 /*
632 * Set the references between session and channel infos:
633 * - channel_info holds a strong reference to session_info
634 * - session_info holds a weak reference to channel_info
635 */
636 session_info_get(session_info);
637 session_info_add_channel(session_info, channel_info);
638 channel_info->session_info = session_info;
ab0ee2ca 639end:
8abe313a 640 return channel_info;
ab0ee2ca 641error:
8abe313a 642 channel_info_destroy(channel_info);
cd9adb8b 643 return nullptr;
ab0ee2ca
JG
644}
645
505b2d90
JG
646bool notification_client_list_get(struct notification_client_list *list)
647{
648 return urcu_ref_get_unless_zero(&list->ref);
649}
650
28ab034a 651static void free_notification_client_list_rcu(struct rcu_head *node)
505b2d90 652{
28ab034a 653 free(caa_container_of(node, struct notification_client_list, rcu_node));
505b2d90
JG
654}
655
28ab034a 656static void notification_client_list_release(struct urcu_ref *list_ref)
505b2d90
JG
657{
658 struct notification_client_list *list =
28ab034a 659 lttng::utils::container_of(list_ref, &notification_client_list::ref);
505b2d90
JG
660 struct notification_client_list_element *client_list_element, *tmp;
661
091fa780
FD
662 lttng_condition_put(list->condition);
663
505b2d90 664 if (list->notification_trigger_clients_ht) {
56047f5a 665 lttng::urcu::read_lock_guard read_lock;
091fa780 666
505b2d90 667 cds_lfht_del(list->notification_trigger_clients_ht,
28ab034a 668 &list->notification_trigger_clients_ht_node);
cd9adb8b 669 list->notification_trigger_clients_ht = nullptr;
505b2d90 670 }
28ab034a 671 cds_list_for_each_entry_safe (client_list_element, tmp, &list->clients_list, node) {
505b2d90
JG
672 free(client_list_element);
673 }
091fa780 674
a0377dfe 675 LTTNG_ASSERT(cds_list_empty(&list->triggers_list));
091fa780 676
505b2d90
JG
677 pthread_mutex_destroy(&list->lock);
678 call_rcu(&list->rcu_node, free_notification_client_list_rcu);
679}
680
28ab034a
JG
681static bool condition_applies_to_client(const struct lttng_condition *condition,
682 struct notification_client *client)
091fa780
FD
683{
684 bool applies = false;
685 struct lttng_condition_list_element *condition_list_element;
686
28ab034a
JG
687 cds_list_for_each_entry (condition_list_element, &client->condition_list, node) {
688 applies = lttng_condition_is_equal(condition_list_element->condition, condition);
091fa780
FD
689 if (applies) {
690 break;
691 }
692 }
693
694 return applies;
695}
696
28ab034a
JG
697static struct notification_client_list *
698notification_client_list_create(struct notification_thread_state *state,
699 const struct lttng_condition *condition)
505b2d90 700{
091fa780
FD
701 struct notification_client *client;
702 struct cds_lfht_iter iter;
703 struct notification_client_list *client_list;
505b2d90 704
64803277 705 client_list = zmalloc<notification_client_list>();
505b2d90 706 if (!client_list) {
091fa780
FD
707 PERROR("Failed to allocate notification client list");
708 goto end;
505b2d90 709 }
091fa780 710
cd9adb8b 711 pthread_mutex_init(&client_list->lock, nullptr);
091fa780
FD
712 /*
713 * The trigger that owns the condition has the first reference to this
714 * client list.
715 */
505b2d90
JG
716 urcu_ref_init(&client_list->ref);
717 cds_lfht_node_init(&client_list->notification_trigger_clients_ht_node);
091fa780
FD
718 CDS_INIT_LIST_HEAD(&client_list->clients_list);
719 CDS_INIT_LIST_HEAD(&client_list->triggers_list);
505b2d90 720
091fa780
FD
721 /*
722 * Create a copy of the condition so that it's independent of any
723 * trigger. The client list may outlive the trigger object (which owns
724 * the condition) that is used to create it.
725 */
726 client_list->condition = lttng_condition_copy(condition);
727
56047f5a
JG
728 {
729 /* Build a list of clients to which this new condition applies. */
730 lttng::urcu::read_lock_guard read_lock;
505b2d90 731
56047f5a
JG
732 cds_lfht_for_each_entry (
733 state->client_socket_ht, &iter, client, client_socket_ht_node) {
734 struct notification_client_list_element *client_list_element;
091fa780 735
56047f5a
JG
736 if (!condition_applies_to_client(condition, client)) {
737 continue;
738 }
739
740 client_list_element = zmalloc<notification_client_list_element>();
741 if (!client_list_element) {
742 goto error_put_client_list;
743 }
505b2d90 744
56047f5a
JG
745 CDS_INIT_LIST_HEAD(&client_list_element->node);
746 client_list_element->client = client;
747 cds_list_add(&client_list_element->node, &client_list->clients_list);
748 }
091fa780
FD
749 }
750
28ab034a 751 client_list->notification_trigger_clients_ht = state->notification_trigger_clients_ht;
505b2d90 752
091fa780
FD
753 /*
754 * Add the client list to the global list of client list.
755 */
56047f5a
JG
756 {
757 lttng::urcu::read_lock_guard read_lock;
758
759 cds_lfht_add_unique(state->notification_trigger_clients_ht,
760 lttng_condition_hash(client_list->condition),
761 match_client_list_condition,
762 client_list->condition,
763 &client_list->notification_trigger_clients_ht_node);
764 }
091fa780
FD
765 goto end;
766
767error_put_client_list:
768 notification_client_list_put(client_list);
cd9adb8b 769 client_list = nullptr;
091fa780
FD
770
771end:
772 return client_list;
505b2d90
JG
773}
774
505b2d90
JG
775void notification_client_list_put(struct notification_client_list *list)
776{
777 if (!list) {
778 return;
779 }
780 return urcu_ref_put(&list->ref, notification_client_list_release);
781}
782
783/* Provides a reference to the returned list. */
28ab034a
JG
784static struct notification_client_list *
785get_client_list_from_condition(struct notification_thread_state *state,
786 const struct lttng_condition *condition)
ed327204
JG
787{
788 struct cds_lfht_node *node;
789 struct cds_lfht_iter iter;
cd9adb8b 790 struct notification_client_list *list = nullptr;
ed327204 791
56047f5a 792 lttng::urcu::read_lock_guard read_lock;
ed327204
JG
793 cds_lfht_lookup(state->notification_trigger_clients_ht,
794 lttng_condition_hash(condition),
795 match_client_list_condition,
796 condition,
797 &iter);
798 node = cds_lfht_iter_get_node(&iter);
505b2d90 799 if (node) {
28ab034a
JG
800 list = lttng::utils::container_of(
801 node, &notification_client_list::notification_trigger_clients_ht_node);
cd9adb8b 802 list = notification_client_list_get(list) ? list : nullptr;
505b2d90 803 }
ed327204 804
505b2d90 805 return list;
ed327204
JG
806}
807
28ab034a
JG
808static int evaluate_channel_condition_for_client(const struct lttng_condition *condition,
809 struct notification_thread_state *state,
810 struct lttng_evaluation **evaluation,
811 uid_t *session_uid,
812 gid_t *session_gid)
e4db5ace
JR
813{
814 int ret;
815 struct cds_lfht_iter iter;
816 struct cds_lfht_node *node;
cd9adb8b
JG
817 struct channel_info *channel_info = nullptr;
818 struct channel_key *channel_key = nullptr;
819 struct channel_state_sample *last_sample = nullptr;
820 struct lttng_channel_trigger_list *channel_trigger_list = nullptr;
e4db5ace 821
56047f5a 822 lttng::urcu::read_lock_guard read_lock;
505b2d90 823
f82f93a1 824 /* Find the channel associated with the condition. */
28ab034a
JG
825 cds_lfht_for_each_entry (
826 state->channel_triggers_ht, &iter, channel_trigger_list, channel_triggers_ht_node) {
e4db5ace
JR
827 struct lttng_trigger_list_element *element;
828
28ab034a 829 cds_list_for_each_entry (element, &channel_trigger_list->list, node) {
9b63a4aa 830 const struct lttng_condition *current_condition =
28ab034a 831 lttng_trigger_get_const_condition(element->trigger);
e4db5ace 832
a0377dfe 833 LTTNG_ASSERT(current_condition);
28ab034a 834 if (!lttng_condition_is_equal(condition, current_condition)) {
e4db5ace
JR
835 continue;
836 }
837
838 /* Found the trigger, save the channel key. */
839 channel_key = &channel_trigger_list->channel_key;
840 break;
841 }
842 if (channel_key) {
843 /* The channel key was found stop iteration. */
844 break;
845 }
846 }
847
28ab034a 848 if (!channel_key) {
e4db5ace 849 /* No channel found; normal exit. */
bd0514a5 850 DBG("No known channel associated with newly subscribed-to condition");
e4db5ace
JR
851 ret = 0;
852 goto end;
853 }
854
855 /* Fetch channel info for the matching channel. */
856 cds_lfht_lookup(state->channels_ht,
857 hash_channel_key(channel_key),
858 match_channel_info,
859 channel_key,
860 &iter);
861 node = cds_lfht_iter_get_node(&iter);
a0377dfe 862 LTTNG_ASSERT(node);
28ab034a 863 channel_info = caa_container_of(node, struct channel_info, channels_ht_node);
e4db5ace
JR
864
865 /* Retrieve the channel's last sample, if it exists. */
866 cds_lfht_lookup(state->channel_state_ht,
867 hash_channel_key(channel_key),
868 match_channel_state_sample,
869 channel_key,
870 &iter);
871 node = cds_lfht_iter_get_node(&iter);
872 if (node) {
28ab034a
JG
873 last_sample =
874 caa_container_of(node, struct channel_state_sample, channel_state_ht_node);
e4db5ace
JR
875 } else {
876 /* Nothing to evaluate, no sample was ever taken. Normal exit */
bd0514a5 877 DBG("No channel sample associated with newly subscribed-to condition");
e4db5ace
JR
878 ret = 0;
879 goto end;
880 }
881
28ab034a 882 ret = evaluate_buffer_condition(
cd9adb8b 883 condition, evaluation, state, nullptr, last_sample, channel_info);
e4db5ace 884 if (ret) {
bd0514a5 885 WARN("Fatal error occurred while evaluating a newly subscribed-to condition");
e4db5ace
JR
886 goto end;
887 }
888
f82f93a1
JG
889 *session_uid = channel_info->session_info->uid;
890 *session_gid = channel_info->session_info->gid;
891end:
892 return ret;
893}
894
28ab034a 895static const char *get_condition_session_name(const struct lttng_condition *condition)
f82f93a1 896{
cd9adb8b 897 const char *session_name = nullptr;
f82f93a1
JG
898 enum lttng_condition_status status;
899
900 switch (lttng_condition_get_type(condition)) {
901 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
902 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH:
28ab034a 903 status = lttng_condition_buffer_usage_get_session_name(condition, &session_name);
f82f93a1
JG
904 break;
905 case LTTNG_CONDITION_TYPE_SESSION_CONSUMED_SIZE:
28ab034a
JG
906 status = lttng_condition_session_consumed_size_get_session_name(condition,
907 &session_name);
f82f93a1
JG
908 break;
909 case LTTNG_CONDITION_TYPE_SESSION_ROTATION_ONGOING:
910 case LTTNG_CONDITION_TYPE_SESSION_ROTATION_COMPLETED:
28ab034a
JG
911 status =
912 lttng_condition_session_rotation_get_session_name(condition, &session_name);
f82f93a1
JG
913 break;
914 default:
915 abort();
916 }
917 if (status != LTTNG_CONDITION_STATUS_OK) {
bd0514a5 918 ERR("Failed to retrieve session rotation condition's session name");
f82f93a1
JG
919 goto end;
920 }
921end:
922 return session_name;
923}
924
28ab034a
JG
925static bool evaluate_session_rotation_ongoing_condition(const struct lttng_condition *condition
926 __attribute__((unused)),
927 const struct session_state_sample *sample)
319dcddc
JG
928{
929 return sample->rotation.ongoing;
930}
931
28ab034a
JG
932static bool evaluate_session_consumed_size_condition(const struct lttng_condition *condition,
933 const struct session_state_sample *sample)
319dcddc
JG
934{
935 uint64_t threshold;
936 const struct lttng_condition_session_consumed_size *size_condition =
28ab034a
JG
937 lttng::utils::container_of(condition,
938 &lttng_condition_session_consumed_size::parent);
319dcddc
JG
939
940 threshold = size_condition->consumed_threshold_bytes.value;
28ab034a
JG
941 DBG("Session consumed size condition being evaluated: threshold = %" PRIu64
942 ", current size = %" PRIu64,
943 threshold,
944 sample->consumed_data_size);
319dcddc
JG
945 return sample->consumed_data_size >= threshold;
946}
947
948/*
949 * `new_state` can be NULL to indicate that we are not evaluating a
950 * state transition. A client subscribed or a trigger was registered and
951 * we wish to perform an initial evaluation.
952 */
28ab034a
JG
953static int evaluate_session_condition(const struct lttng_condition *condition,
954 const struct session_info *session_info,
955 const struct session_state_sample *new_state,
956 struct lttng_evaluation **evaluation)
f82f93a1
JG
957{
958 int ret;
319dcddc 959 bool previous_result, newest_result;
f82f93a1 960
319dcddc
JG
961 switch (lttng_condition_get_type(condition)) {
962 case LTTNG_CONDITION_TYPE_SESSION_ROTATION_ONGOING:
963 if (new_state) {
964 previous_result = evaluate_session_rotation_ongoing_condition(
28ab034a
JG
965 condition, &session_info->last_state_sample);
966 newest_result =
967 evaluate_session_rotation_ongoing_condition(condition, new_state);
319dcddc
JG
968 } else {
969 previous_result = false;
970 newest_result = evaluate_session_rotation_ongoing_condition(
28ab034a 971 condition, &session_info->last_state_sample);
319dcddc
JG
972 }
973 break;
974 case LTTNG_CONDITION_TYPE_SESSION_CONSUMED_SIZE:
975 if (new_state) {
976 previous_result = evaluate_session_consumed_size_condition(
28ab034a
JG
977 condition, &session_info->last_state_sample);
978 newest_result =
979 evaluate_session_consumed_size_condition(condition, new_state);
319dcddc
JG
980 } else {
981 previous_result = false;
982 newest_result = evaluate_session_consumed_size_condition(
28ab034a 983 condition, &session_info->last_state_sample);
319dcddc
JG
984 }
985 break;
986 case LTTNG_CONDITION_TYPE_SESSION_ROTATION_COMPLETED:
987 /*
988 * Note that LTTNG_CONDITION_TYPE_SESSION_ROTATION_COMPLETED is
989 * evaluated differently to only consider state transitions without regard for the
990 * initial state. This is a deliberate choice as it is unlikely that a user would
991 * expect an action to occur for a rotation that occurred long before the trigger or
992 * subscription occurred.
993 */
994 if (!new_state) {
995 ret = 0;
996 goto end;
997 }
f82f93a1 998
319dcddc
JG
999 previous_result = !session_info->last_state_sample.rotation.ongoing;
1000 newest_result = !new_state->rotation.ongoing;
1001 break;
1002 default:
1003 ret = 0;
1004 goto end;
1005 }
1006
1007 if (!newest_result || (previous_result == newest_result)) {
1008 /* Not a state transition, evaluate to false. */
f82f93a1
JG
1009 ret = 0;
1010 goto end;
1011 }
1012
f82f93a1
JG
1013 switch (lttng_condition_get_type(condition)) {
1014 case LTTNG_CONDITION_TYPE_SESSION_ROTATION_ONGOING:
319dcddc 1015 {
28ab034a
JG
1016 const auto rotation_id = new_state ? new_state->rotation.id :
1017 session_info->last_state_sample.rotation.id;
f82f93a1 1018
319dcddc
JG
1019 *evaluation = lttng_evaluation_session_rotation_ongoing_create(rotation_id);
1020 break;
1021 }
1022 case LTTNG_CONDITION_TYPE_SESSION_ROTATION_COMPLETED:
1023 {
d5ea8944
JG
1024 const auto& sample = new_state ? *new_state : session_info->last_state_sample;
1025 const auto rotation_id = sample.rotation.id;
319dcddc
JG
1026
1027 /* Callee acquires a reference to location. */
1028 *evaluation = lttng_evaluation_session_rotation_completed_create(
28ab034a 1029 rotation_id, sample.rotation.location);
319dcddc
JG
1030 break;
1031 }
1032 case LTTNG_CONDITION_TYPE_SESSION_CONSUMED_SIZE:
1033 {
1034 const auto latest_session_consumed_total = new_state ?
28ab034a
JG
1035 new_state->consumed_data_size :
1036 session_info->last_state_sample.consumed_data_size;
319dcddc
JG
1037
1038 *evaluation = lttng_evaluation_session_consumed_size_create(
28ab034a 1039 latest_session_consumed_total);
f82f93a1 1040 break;
319dcddc 1041 }
f82f93a1 1042 default:
319dcddc 1043 abort();
f82f93a1
JG
1044 }
1045
319dcddc
JG
1046 if (!*evaluation) {
1047 /* Fatal error. */
1048 ERR("Failed to create session condition evaluation: session name = `%s`",
28ab034a 1049 session_info->name);
319dcddc
JG
1050 ret = -1;
1051 goto end;
1052 }
f82f93a1 1053
319dcddc 1054 ret = 0;
f82f93a1
JG
1055end:
1056 return ret;
1057}
1058
28ab034a
JG
1059static int evaluate_condition_for_client(const struct lttng_trigger *trigger,
1060 const struct lttng_condition *condition,
1061 struct notification_client *client,
1062 struct notification_thread_state *state)
f82f93a1
JG
1063{
1064 int ret;
cd9adb8b 1065 struct lttng_evaluation *evaluation = nullptr;
505b2d90
JG
1066 struct notification_client_list client_list = {
1067 .lock = PTHREAD_MUTEX_INITIALIZER,
1c9a0b0e 1068 .ref = {},
cd9adb8b 1069 .condition = nullptr,
1c9a0b0e
MJ
1070 .triggers_list = {},
1071 .clients_list = {},
cd9adb8b 1072 .notification_trigger_clients_ht = nullptr,
1c9a0b0e
MJ
1073 .notification_trigger_clients_ht_node = {},
1074 .rcu_node = {},
505b2d90 1075 };
1c9a0b0e 1076 struct notification_client_list_element client_list_element = {};
f82f93a1
JG
1077 uid_t object_uid = 0;
1078 gid_t object_gid = 0;
1079
a0377dfe
FD
1080 LTTNG_ASSERT(trigger);
1081 LTTNG_ASSERT(condition);
1082 LTTNG_ASSERT(client);
1083 LTTNG_ASSERT(state);
f82f93a1
JG
1084
1085 switch (get_condition_binding_object(condition)) {
1086 case LTTNG_OBJECT_TYPE_SESSION:
319dcddc
JG
1087 {
1088 /* Find the session associated with the condition. */
1089 const auto *session_name = get_condition_session_name(condition);
1090 auto session_info = get_session_info_by_name(state, session_name);
1091 if (!session_info) {
1092 /* Not an error, the session doesn't exist yet. */
1093 DBG("Session not found while evaluating session condition for client: session name = `%s`",
28ab034a 1094 session_name);
319dcddc
JG
1095 ret = 0;
1096 goto end;
1097 }
1098
1099 object_uid = session_info->uid;
1100 object_gid = session_info->gid;
1101
cd9adb8b 1102 ret = evaluate_session_condition(condition, session_info, nullptr, &evaluation);
319dcddc 1103 session_info_put(session_info);
f82f93a1 1104 break;
319dcddc 1105 }
f82f93a1 1106 case LTTNG_OBJECT_TYPE_CHANNEL:
28ab034a
JG
1107 ret = evaluate_channel_condition_for_client(
1108 condition, state, &evaluation, &object_uid, &object_gid);
f82f93a1
JG
1109 break;
1110 case LTTNG_OBJECT_TYPE_NONE:
bd0514a5 1111 DBG("Newly subscribed-to condition not bound to object, nothing to evaluate");
f82f93a1
JG
1112 ret = 0;
1113 goto end;
1114 case LTTNG_OBJECT_TYPE_UNKNOWN:
1115 default:
1116 ret = -1;
1117 goto end;
1118 }
af0c318d
JG
1119 if (ret) {
1120 /* Fatal error. */
1121 goto end;
1122 }
e4db5ace
JR
1123 if (!evaluation) {
1124 /* Evaluation yielded nothing. Normal exit. */
bd0514a5 1125 DBG("Newly subscribed-to condition evaluated to false, nothing to report to client");
e4db5ace
JR
1126 ret = 0;
1127 goto end;
1128 }
1129
1130 /*
1131 * Create a temporary client list with the client currently
1132 * subscribing.
1133 */
505b2d90 1134 cds_lfht_node_init(&client_list.notification_trigger_clients_ht_node);
091fa780 1135 CDS_INIT_LIST_HEAD(&client_list.clients_list);
e4db5ace
JR
1136
1137 CDS_INIT_LIST_HEAD(&client_list_element.node);
1138 client_list_element.client = client;
091fa780 1139 cds_list_add(&client_list_element.node, &client_list.clients_list);
e4db5ace
JR
1140
1141 /* Send evaluation result to the newly-subscribed client. */
bd0514a5 1142 DBG("Newly subscribed-to condition evaluated to true, notifying client");
28ab034a
JG
1143 ret = send_evaluation_to_clients(
1144 trigger, evaluation, &client_list, state, object_uid, object_gid);
e4db5ace
JR
1145
1146end:
1147 return ret;
1148}
1149
28ab034a
JG
1150static int notification_thread_client_subscribe(struct notification_client *client,
1151 struct lttng_condition *condition,
1152 struct notification_thread_state *state,
1153 enum lttng_notification_channel_status *_status)
ab0ee2ca
JG
1154{
1155 int ret = 0;
cd9adb8b
JG
1156 struct notification_client_list *client_list = nullptr;
1157 struct lttng_condition_list_element *condition_list_element = nullptr;
1158 struct notification_client_list_element *client_list_element = nullptr;
a3ed2a4e 1159 struct lttng_trigger_ht_element *trigger_ht_element;
28ab034a 1160 enum lttng_notification_channel_status status = LTTNG_NOTIFICATION_CHANNEL_STATUS_OK;
ab0ee2ca
JG
1161
1162 /*
1163 * Ensure that the client has not already subscribed to this condition
1164 * before.
1165 */
28ab034a
JG
1166 cds_list_for_each_entry (condition_list_element, &client->condition_list, node) {
1167 if (lttng_condition_is_equal(condition_list_element->condition, condition)) {
ab0ee2ca
JG
1168 status = LTTNG_NOTIFICATION_CHANNEL_STATUS_ALREADY_SUBSCRIBED;
1169 goto end;
1170 }
1171 }
1172
64803277 1173 condition_list_element = zmalloc<lttng_condition_list_element>();
ab0ee2ca
JG
1174 if (!condition_list_element) {
1175 ret = -1;
1176 goto error;
1177 }
64803277 1178 client_list_element = zmalloc<notification_client_list_element>();
ab0ee2ca
JG
1179 if (!client_list_element) {
1180 ret = -1;
1181 goto error;
1182 }
1183
ab0ee2ca
JG
1184 /*
1185 * Add the newly-subscribed condition to the client's subscription list.
1186 */
1187 CDS_INIT_LIST_HEAD(&condition_list_element->node);
1188 condition_list_element->condition = condition;
cd9adb8b 1189 condition = nullptr;
ab0ee2ca
JG
1190 cds_list_add(&condition_list_element->node, &client->condition_list);
1191
28ab034a 1192 client_list = get_client_list_from_condition(state, condition_list_element->condition);
ed327204 1193 if (!client_list) {
2ae99f0b
JG
1194 /*
1195 * No notification-emiting trigger registered with this
1196 * condition. We don't evaluate the condition right away
1197 * since this trigger is not registered yet.
1198 */
4fb43b68 1199 free(client_list_element);
505b2d90 1200 goto end;
ab0ee2ca
JG
1201 }
1202
2ae99f0b
JG
1203 /*
1204 * The condition to which the client just subscribed is evaluated
1205 * at this point so that conditions that are already TRUE result
1206 * in a notification being sent out.
505b2d90 1207 *
57644a7f
JG
1208 * Note the iteration on all triggers which share an identical
1209 * `condition` than the one to which the client is registering. This is
1210 * done to ensure that the client receives a distinct notification for
1211 * all triggers that have a `notify` action that have this condition.
2ae99f0b 1212 */
091fa780 1213 pthread_mutex_lock(&client_list->lock);
28ab034a
JG
1214 cds_list_for_each_entry (
1215 trigger_ht_element, &client_list->triggers_list, client_list_trigger_node) {
1216 if (evaluate_condition_for_client(trigger_ht_element->trigger,
1217 condition_list_element->condition,
1218 client,
1219 state)) {
bd0514a5 1220 WARN("Evaluation of a condition on client subscription failed, aborting.");
091fa780
FD
1221 ret = -1;
1222 free(client_list_element);
ecc7ed07 1223 pthread_mutex_unlock(&client_list->lock);
091fa780
FD
1224 goto end;
1225 }
e4db5ace 1226 }
091fa780 1227 pthread_mutex_unlock(&client_list->lock);
e4db5ace
JR
1228
1229 /*
1230 * Add the client to the list of clients interested in a given trigger
1231 * if a "notification" trigger with a corresponding condition was
1232 * added prior.
1233 */
ab0ee2ca
JG
1234 client_list_element->client = client;
1235 CDS_INIT_LIST_HEAD(&client_list_element->node);
505b2d90
JG
1236
1237 pthread_mutex_lock(&client_list->lock);
091fa780 1238 cds_list_add(&client_list_element->node, &client_list->clients_list);
505b2d90 1239 pthread_mutex_unlock(&client_list->lock);
ab0ee2ca
JG
1240end:
1241 if (_status) {
1242 *_status = status;
1243 }
505b2d90
JG
1244 if (client_list) {
1245 notification_client_list_put(client_list);
1246 }
5a6306f7 1247 lttng_condition_destroy(condition);
ab0ee2ca
JG
1248 return ret;
1249error:
1250 free(condition_list_element);
1251 free(client_list_element);
5a6306f7 1252 lttng_condition_destroy(condition);
ab0ee2ca
JG
1253 return ret;
1254}
1255
28ab034a
JG
1256static int notification_thread_client_unsubscribe(struct notification_client *client,
1257 struct lttng_condition *condition,
1258 struct notification_thread_state *state,
1259 enum lttng_notification_channel_status *_status)
ab0ee2ca 1260{
ab0ee2ca 1261 struct notification_client_list *client_list;
28ab034a
JG
1262 struct lttng_condition_list_element *condition_list_element, *condition_tmp;
1263 struct notification_client_list_element *client_list_element, *client_tmp;
ab0ee2ca 1264 bool condition_found = false;
28ab034a 1265 enum lttng_notification_channel_status status = LTTNG_NOTIFICATION_CHANNEL_STATUS_OK;
ab0ee2ca
JG
1266
1267 /* Remove the condition from the client's condition list. */
28ab034a
JG
1268 cds_list_for_each_entry_safe (
1269 condition_list_element, condition_tmp, &client->condition_list, node) {
1270 if (!lttng_condition_is_equal(condition_list_element->condition, condition)) {
ab0ee2ca
JG
1271 continue;
1272 }
1273
1274 cds_list_del(&condition_list_element->node);
1275 /*
1276 * The caller may be iterating on the client's conditions to
1277 * tear down a client's connection. In this case, the condition
1278 * will be destroyed at the end.
1279 */
1280 if (condition != condition_list_element->condition) {
28ab034a 1281 lttng_condition_destroy(condition_list_element->condition);
ab0ee2ca
JG
1282 }
1283 free(condition_list_element);
1284 condition_found = true;
1285 break;
1286 }
1287
1288 if (!condition_found) {
1289 status = LTTNG_NOTIFICATION_CHANNEL_STATUS_UNKNOWN_CONDITION;
1290 goto end;
1291 }
1292
1293 /*
1294 * Remove the client from the list of clients interested the trigger
1295 * matching the condition.
1296 */
ed327204
JG
1297 client_list = get_client_list_from_condition(state, condition);
1298 if (!client_list) {
505b2d90 1299 goto end;
ab0ee2ca
JG
1300 }
1301
505b2d90 1302 pthread_mutex_lock(&client_list->lock);
28ab034a
JG
1303 cds_list_for_each_entry_safe (
1304 client_list_element, client_tmp, &client_list->clients_list, node) {
505b2d90 1305 if (client_list_element->client->id != client->id) {
ab0ee2ca
JG
1306 continue;
1307 }
1308 cds_list_del(&client_list_element->node);
1309 free(client_list_element);
1310 break;
1311 }
505b2d90
JG
1312 pthread_mutex_unlock(&client_list->lock);
1313 notification_client_list_put(client_list);
cd9adb8b 1314 client_list = nullptr;
ab0ee2ca
JG
1315end:
1316 lttng_condition_destroy(condition);
1317 if (_status) {
1318 *_status = status;
1319 }
1320 return 0;
1321}
1322
28ab034a 1323static void free_notification_client_rcu(struct rcu_head *node)
83b934ad 1324{
0114db0e 1325 free(lttng::utils::container_of(node, &notification_client::rcu_node));
83b934ad
MD
1326}
1327
28ab034a 1328static void notification_client_destroy(struct notification_client *client)
ab0ee2ca 1329{
ab0ee2ca
JG
1330 if (!client) {
1331 return;
1332 }
1333
505b2d90
JG
1334 /*
1335 * The client object is not reachable by other threads, no need to lock
1336 * the client here.
1337 */
ab0ee2ca
JG
1338 if (client->socket >= 0) {
1339 (void) lttcomm_close_unix_sock(client->socket);
ac1889bf 1340 client->socket = -1;
ab0ee2ca 1341 }
505b2d90 1342 client->communication.active = false;
882093ee
JR
1343 lttng_payload_reset(&client->communication.inbound.payload);
1344 lttng_payload_reset(&client->communication.outbound.payload);
505b2d90 1345 pthread_mutex_destroy(&client->lock);
83b934ad 1346 call_rcu(&client->rcu_node, free_notification_client_rcu);
ab0ee2ca
JG
1347}
1348
1349/*
1350 * Call with rcu_read_lock held (and hold for the lifetime of the returned
1351 * client pointer).
1352 */
28ab034a
JG
1353static struct notification_client *get_client_from_socket(int socket,
1354 struct notification_thread_state *state)
ab0ee2ca
JG
1355{
1356 struct cds_lfht_iter iter;
1357 struct cds_lfht_node *node;
cd9adb8b 1358 struct notification_client *client = nullptr;
ab0ee2ca 1359
48b7cdc2
FD
1360 ASSERT_RCU_READ_LOCKED();
1361
ab0ee2ca 1362 cds_lfht_lookup(state->client_socket_ht,
ac1889bf
JG
1363 hash_client_socket(socket),
1364 match_client_socket,
ab0ee2ca
JG
1365 (void *) (unsigned long) socket,
1366 &iter);
1367 node = cds_lfht_iter_get_node(&iter);
1368 if (!node) {
1369 goto end;
1370 }
1371
28ab034a 1372 client = caa_container_of(node, struct notification_client, client_socket_ht_node);
ab0ee2ca
JG
1373end:
1374 return client;
1375}
1376
f2b3ef9f
JG
1377/*
1378 * Call with rcu_read_lock held (and hold for the lifetime of the returned
1379 * client pointer).
1380 */
28ab034a
JG
1381static struct notification_client *get_client_from_id(notification_client_id id,
1382 struct notification_thread_state *state)
f2b3ef9f
JG
1383{
1384 struct cds_lfht_iter iter;
1385 struct cds_lfht_node *node;
cd9adb8b 1386 struct notification_client *client = nullptr;
f2b3ef9f 1387
48b7cdc2
FD
1388 ASSERT_RCU_READ_LOCKED();
1389
28ab034a 1390 cds_lfht_lookup(state->client_id_ht, hash_client_id(id), match_client_id, &id, &iter);
f2b3ef9f
JG
1391 node = cds_lfht_iter_get_node(&iter);
1392 if (!node) {
1393 goto end;
1394 }
1395
28ab034a 1396 client = caa_container_of(node, struct notification_client, client_id_ht_node);
f2b3ef9f
JG
1397end:
1398 return client;
1399}
1400
28ab034a
JG
1401static bool buffer_usage_condition_applies_to_channel(const struct lttng_condition *condition,
1402 const struct channel_info *channel_info)
ab0ee2ca
JG
1403{
1404 enum lttng_condition_status status;
e8360425 1405 enum lttng_domain_type condition_domain;
cd9adb8b
JG
1406 const char *condition_session_name = nullptr;
1407 const char *condition_channel_name = nullptr;
ab0ee2ca 1408
28ab034a 1409 status = lttng_condition_buffer_usage_get_domain_type(condition, &condition_domain);
a0377dfe 1410 LTTNG_ASSERT(status == LTTNG_CONDITION_STATUS_OK);
e8360425 1411 if (channel_info->key.domain != condition_domain) {
ab0ee2ca
JG
1412 goto fail;
1413 }
1414
28ab034a 1415 status = lttng_condition_buffer_usage_get_session_name(condition, &condition_session_name);
a0377dfe 1416 LTTNG_ASSERT((status == LTTNG_CONDITION_STATUS_OK) && condition_session_name);
e8360425 1417
28ab034a 1418 status = lttng_condition_buffer_usage_get_channel_name(condition, &condition_channel_name);
a0377dfe 1419 LTTNG_ASSERT((status == LTTNG_CONDITION_STATUS_OK) && condition_channel_name);
e8360425 1420
5c7248cd 1421 if (strcmp(channel_info->session_info->name, condition_session_name) != 0) {
e8360425
JD
1422 goto fail;
1423 }
5c7248cd 1424 if (strcmp(channel_info->name, condition_channel_name) != 0) {
ab0ee2ca
JG
1425 goto fail;
1426 }
1427
e8360425
JD
1428 return true;
1429fail:
1430 return false;
1431}
1432
28ab034a
JG
1433static bool trigger_applies_to_channel(const struct lttng_trigger *trigger,
1434 const struct channel_info *channel_info)
51eab943
JG
1435{
1436 const struct lttng_condition *condition;
e8360425 1437 bool trigger_applies;
ab0ee2ca 1438
51eab943 1439 condition = lttng_trigger_get_const_condition(trigger);
e8360425 1440 if (!condition) {
ab0ee2ca
JG
1441 goto fail;
1442 }
e8360425
JD
1443
1444 switch (lttng_condition_get_type(condition)) {
1445 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
1446 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH:
28ab034a
JG
1447 trigger_applies =
1448 buffer_usage_condition_applies_to_channel(condition, channel_info);
e8360425 1449 break;
e8360425 1450 default:
ab0ee2ca
JG
1451 goto fail;
1452 }
1453
e8360425 1454 return trigger_applies;
ab0ee2ca
JG
1455fail:
1456 return false;
1457}
1458
ed327204 1459/* Must be called with RCU read lock held. */
28ab034a
JG
1460static struct lttng_session_trigger_list *
1461get_session_trigger_list(struct notification_thread_state *state, const char *session_name)
ed327204 1462{
cd9adb8b 1463 struct lttng_session_trigger_list *list = nullptr;
ed327204
JG
1464 struct cds_lfht_node *node;
1465 struct cds_lfht_iter iter;
1466
48b7cdc2
FD
1467 ASSERT_RCU_READ_LOCKED();
1468
ed327204
JG
1469 cds_lfht_lookup(state->session_triggers_ht,
1470 hash_key_str(session_name, lttng_ht_seed),
1471 match_session_trigger_list,
1472 session_name,
1473 &iter);
1474 node = cds_lfht_iter_get_node(&iter);
1475 if (!node) {
1476 /*
1477 * Not an error, the list of triggers applying to that session
1478 * will be initialized when the session is created.
1479 */
bd0514a5 1480 DBG("No trigger list found for session \"%s\" as it is not yet known to the notification system",
28ab034a 1481 session_name);
ed327204
JG
1482 goto end;
1483 }
1484
28ab034a 1485 list = caa_container_of(node, struct lttng_session_trigger_list, session_triggers_ht_node);
ed327204
JG
1486end:
1487 return list;
1488}
1489
ea9a44f0
JG
1490/*
1491 * Allocate an empty lttng_session_trigger_list for the session named
1492 * 'session_name'.
ea9a44f0 1493 */
28ab034a
JG
1494static struct lttng_session_trigger_list *
1495lttng_session_trigger_list_create(const char *session_name, struct cds_lfht *session_triggers_ht)
ea9a44f0 1496{
cd9adb8b 1497 struct lttng_session_trigger_list *list = nullptr;
319dcddc
JG
1498 char *session_name_copy = strdup(session_name);
1499
1500 if (!session_name_copy) {
1501 PERROR("Failed to allocate session name while building trigger list");
1502 goto end;
1503 }
ea9a44f0 1504
64803277 1505 list = zmalloc<lttng_session_trigger_list>();
ea9a44f0 1506 if (!list) {
319dcddc 1507 PERROR("Failed to allocate session trigger list while building trigger list");
ea9a44f0
JG
1508 goto end;
1509 }
319dcddc
JG
1510
1511 list->session_name = session_name_copy;
ea9a44f0
JG
1512 CDS_INIT_LIST_HEAD(&list->list);
1513 cds_lfht_node_init(&list->session_triggers_ht_node);
1514 list->session_triggers_ht = session_triggers_ht;
1515
ea9a44f0 1516 /* Publish the list through the session_triggers_ht. */
56047f5a
JG
1517 {
1518 lttng::urcu::read_lock_guard read_lock;
1519 cds_lfht_add(session_triggers_ht,
1520 hash_key_str(session_name, lttng_ht_seed),
1521 &list->session_triggers_ht_node);
1522 }
ea9a44f0
JG
1523end:
1524 return list;
1525}
1526
28ab034a 1527static void free_session_trigger_list_rcu(struct rcu_head *node)
ea9a44f0 1528{
319dcddc 1529 struct lttng_session_trigger_list *list =
28ab034a 1530 caa_container_of(node, struct lttng_session_trigger_list, rcu_node);
319dcddc
JG
1531
1532 free(list->session_name);
1533 free(list);
ea9a44f0
JG
1534}
1535
28ab034a 1536static void lttng_session_trigger_list_destroy(struct lttng_session_trigger_list *list)
ea9a44f0
JG
1537{
1538 struct lttng_trigger_list_element *trigger_list_element, *tmp;
1539
1540 /* Empty the list element by element, and then free the list itself. */
28ab034a 1541 cds_list_for_each_entry_safe (trigger_list_element, tmp, &list->list, node) {
ea9a44f0
JG
1542 cds_list_del(&trigger_list_element->node);
1543 free(trigger_list_element);
1544 }
56047f5a 1545 lttng::urcu::read_lock_guard read_lock;
ea9a44f0 1546 /* Unpublish the list from the session_triggers_ht. */
28ab034a 1547 cds_lfht_del(list->session_triggers_ht, &list->session_triggers_ht_node);
ea9a44f0
JG
1548 call_rcu(&list->rcu_node, free_session_trigger_list_rcu);
1549}
1550
28ab034a
JG
1551static int lttng_session_trigger_list_add(struct lttng_session_trigger_list *list,
1552 struct lttng_trigger *trigger)
ea9a44f0
JG
1553{
1554 int ret = 0;
28ab034a 1555 struct lttng_trigger_list_element *new_element = zmalloc<lttng_trigger_list_element>();
ea9a44f0
JG
1556
1557 if (!new_element) {
1558 ret = -1;
1559 goto end;
1560 }
1561 CDS_INIT_LIST_HEAD(&new_element->node);
1562 new_element->trigger = trigger;
1563 cds_list_add(&new_element->node, &list->list);
1564end:
1565 return ret;
1566}
1567
28ab034a
JG
1568static bool trigger_applies_to_session(const struct lttng_trigger *trigger,
1569 const char *session_name)
ea9a44f0
JG
1570{
1571 bool applies = false;
1572 const struct lttng_condition *condition;
1573
1574 condition = lttng_trigger_get_const_condition(trigger);
1575 switch (lttng_condition_get_type(condition)) {
1576 case LTTNG_CONDITION_TYPE_SESSION_ROTATION_ONGOING:
1577 case LTTNG_CONDITION_TYPE_SESSION_ROTATION_COMPLETED:
319dcddc 1578 case LTTNG_CONDITION_TYPE_SESSION_CONSUMED_SIZE:
ea9a44f0 1579 {
ea9a44f0
JG
1580 const char *condition_session_name;
1581
319dcddc 1582 condition_session_name = get_condition_session_name(condition);
a0377dfe 1583 LTTNG_ASSERT(condition_session_name);
ea9a44f0
JG
1584 applies = !strcmp(condition_session_name, session_name);
1585 break;
1586 }
1587 default:
1588 goto end;
1589 }
1590end:
1591 return applies;
1592}
1593
1594/*
1595 * Allocate and initialize an lttng_session_trigger_list which contains
1596 * all triggers that apply to the session named 'session_name'.
ea9a44f0 1597 */
28ab034a
JG
1598static struct lttng_session_trigger_list *
1599lttng_session_trigger_list_build(const struct notification_thread_state *state,
1600 const char *session_name)
ea9a44f0
JG
1601{
1602 int trigger_count = 0;
cd9adb8b
JG
1603 struct lttng_session_trigger_list *session_trigger_list = nullptr;
1604 struct lttng_trigger_ht_element *trigger_ht_element = nullptr;
ea9a44f0
JG
1605 struct cds_lfht_iter iter;
1606
28ab034a
JG
1607 session_trigger_list =
1608 lttng_session_trigger_list_create(session_name, state->session_triggers_ht);
ea9a44f0 1609
56047f5a
JG
1610 {
1611 /* Add all triggers applying to the session named 'session_name'. */
1612 lttng::urcu::read_lock_guard read_lock;
ea9a44f0 1613
56047f5a
JG
1614 cds_lfht_for_each_entry (state->triggers_ht, &iter, trigger_ht_element, node) {
1615 int ret;
ea9a44f0 1616
56047f5a
JG
1617 if (!trigger_applies_to_session(trigger_ht_element->trigger,
1618 session_name)) {
1619 continue;
1620 }
ea9a44f0 1621
56047f5a
JG
1622 ret = lttng_session_trigger_list_add(session_trigger_list,
1623 trigger_ht_element->trigger);
1624 if (ret) {
1625 goto error;
1626 }
1627
1628 trigger_count++;
1629 }
ea9a44f0
JG
1630 }
1631
28ab034a 1632 DBG("Found %i triggers that apply to newly created session", trigger_count);
ea9a44f0
JG
1633 return session_trigger_list;
1634error:
1635 lttng_session_trigger_list_destroy(session_trigger_list);
cd9adb8b 1636 return nullptr;
ea9a44f0
JG
1637}
1638
28ab034a
JG
1639static struct session_info *create_and_publish_session_info(struct notification_thread_state *state,
1640 uint64_t id,
1641 const char *name,
1642 uid_t uid,
1643 gid_t gid)
8abe313a 1644{
cd9adb8b 1645 struct session_info *session = nullptr;
ea9a44f0 1646 struct lttng_session_trigger_list *trigger_list;
8abe313a 1647
56047f5a 1648 lttng::urcu::read_lock_guard read_lock;
ea9a44f0
JG
1649 trigger_list = lttng_session_trigger_list_build(state, name);
1650 if (!trigger_list) {
1651 goto error;
8abe313a
JG
1652 }
1653
28ab034a 1654 session = session_info_create(id, name, uid, gid, trigger_list, state->sessions_ht);
8abe313a 1655 if (!session) {
bd0514a5 1656 ERR("Failed to allocation session info for session \"%s\" (uid = %i, gid = %i)",
28ab034a
JG
1657 name,
1658 uid,
1659 gid);
b248644d 1660 lttng_session_trigger_list_destroy(trigger_list);
ea9a44f0 1661 goto error;
8abe313a 1662 }
139a8d25
JG
1663
1664 /* Transferred ownership to the new session. */
cd9adb8b 1665 trigger_list = nullptr;
577983cb 1666
28ab034a
JG
1667 if (cds_lfht_add_unique(state->sessions_ht,
1668 hash_session_info(session),
1669 match_session_info,
1670 &id,
1671 &session->sessions_ht_node) != &session->sessions_ht_node) {
139a8d25
JG
1672 ERR("Duplicate session found: name = `%s`, id = %" PRIu64, name, id);
1673 goto error;
1674 }
1675
8abe313a 1676 return session;
ea9a44f0 1677error:
ea9a44f0 1678 session_info_put(session);
cd9adb8b 1679 return nullptr;
8abe313a
JG
1680}
1681
28ab034a
JG
1682static int handle_notification_thread_command_add_channel(struct notification_thread_state *state,
1683 uint64_t session_id,
1684 const char *channel_name,
1685 enum lttng_domain_type channel_domain,
1686 uint64_t channel_key_int,
1687 uint64_t channel_capacity,
1688 enum lttng_error_code *cmd_result)
ab0ee2ca
JG
1689{
1690 struct cds_list_head trigger_list;
cd9adb8b 1691 struct channel_info *new_channel_info = nullptr;
8abe313a
JG
1692 struct channel_key channel_key = {
1693 .key = channel_key_int,
1694 .domain = channel_domain,
1695 };
cd9adb8b
JG
1696 struct lttng_channel_trigger_list *channel_trigger_list = nullptr;
1697 struct lttng_trigger_ht_element *trigger_ht_element = nullptr;
ab0ee2ca
JG
1698 int trigger_count = 0;
1699 struct cds_lfht_iter iter;
cd9adb8b 1700 struct session_info *session_info = nullptr;
56047f5a 1701 lttng::urcu::read_lock_guard read_lock;
ab0ee2ca 1702
28ab034a
JG
1703 DBG("Adding channel: channel name = `%s`, session id = %" PRIu64 ", channel key = %" PRIu64
1704 ", domain = %s",
1705 channel_name,
1706 session_id,
1707 channel_key_int,
1708 lttng_domain_type_str(channel_domain));
ab0ee2ca
JG
1709
1710 CDS_INIT_LIST_HEAD(&trigger_list);
1711
139a8d25 1712 session_info = get_session_info_by_id(state, session_id);
8abe313a 1713 if (!session_info) {
139a8d25
JG
1714 /* Fatal logic error. */
1715 ERR("Failed to find session while adding channel: session id = %" PRIu64,
28ab034a 1716 session_id);
ab0ee2ca
JG
1717 goto error;
1718 }
1719
28ab034a
JG
1720 new_channel_info =
1721 channel_info_create(channel_name, &channel_key, channel_capacity, session_info);
8abe313a
JG
1722 if (!new_channel_info) {
1723 goto error;
1724 }
ab0ee2ca
JG
1725
1726 /* Build a list of all triggers applying to the new channel. */
28ab034a 1727 cds_lfht_for_each_entry (state->triggers_ht, &iter, trigger_ht_element, node) {
ab0ee2ca
JG
1728 struct lttng_trigger_list_element *new_element;
1729
28ab034a 1730 if (!trigger_applies_to_channel(trigger_ht_element->trigger, new_channel_info)) {
ab0ee2ca
JG
1731 continue;
1732 }
1733
64803277 1734 new_element = zmalloc<lttng_trigger_list_element>();
ab0ee2ca
JG
1735 if (!new_element) {
1736 goto error;
1737 }
1738 CDS_INIT_LIST_HEAD(&new_element->node);
1739 new_element->trigger = trigger_ht_element->trigger;
1740 cds_list_add(&new_element->node, &trigger_list);
1741 trigger_count++;
1742 }
1743
28ab034a 1744 DBG("Found %i triggers that apply to newly added channel", trigger_count);
64803277 1745 channel_trigger_list = zmalloc<lttng_channel_trigger_list>();
ab0ee2ca
JG
1746 if (!channel_trigger_list) {
1747 goto error;
1748 }
8abe313a 1749 channel_trigger_list->channel_key = new_channel_info->key;
ab0ee2ca
JG
1750 CDS_INIT_LIST_HEAD(&channel_trigger_list->list);
1751 cds_lfht_node_init(&channel_trigger_list->channel_triggers_ht_node);
1752 cds_list_splice(&trigger_list, &channel_trigger_list->list);
1753
ab0ee2ca
JG
1754 /* Add channel to the channel_ht which owns the channel_infos. */
1755 cds_lfht_add(state->channels_ht,
28ab034a
JG
1756 hash_channel_key(&new_channel_info->key),
1757 &new_channel_info->channels_ht_node);
ab0ee2ca
JG
1758 /*
1759 * Add the list of triggers associated with this channel to the
1760 * channel_triggers_ht.
1761 */
1762 cds_lfht_add(state->channel_triggers_ht,
28ab034a
JG
1763 hash_channel_key(&new_channel_info->key),
1764 &channel_trigger_list->channel_triggers_ht_node);
1eee26c5 1765 session_info_put(session_info);
ab0ee2ca
JG
1766 *cmd_result = LTTNG_OK;
1767 return 0;
1768error:
ab0ee2ca 1769 channel_info_destroy(new_channel_info);
8abe313a 1770 session_info_put(session_info);
ab0ee2ca
JG
1771 return 1;
1772}
1773
28ab034a
JG
1774static int handle_notification_thread_command_add_session(struct notification_thread_state *state,
1775 uint64_t session_id,
1776 const char *session_name,
1777 uid_t session_uid,
1778 gid_t session_gid,
1779 enum lttng_error_code *cmd_result)
139a8d25
JG
1780{
1781 int ret;
1782
28ab034a
JG
1783 DBG("Adding session: session name = `%s`, session id = %" PRIu64
1784 ", session uid = %d, session gid = %d",
1785 session_name,
1786 session_id,
1787 session_uid,
1788 session_gid);
139a8d25 1789
28ab034a
JG
1790 auto session = create_and_publish_session_info(
1791 state, session_id, session_name, session_uid, session_gid);
139a8d25 1792 if (!session) {
28ab034a
JG
1793 PERROR("Failed to add session: session name = `%s`, session id = %" PRIu64
1794 ", session uid = %d, session gid = %d",
1795 session_name,
1796 session_id,
1797 session_uid,
1798 session_gid);
139a8d25
JG
1799 ret = -1;
1800 *cmd_result = LTTNG_ERR_NOMEM;
1801 goto end;
1802 }
1803
1804 /*
1805 * Note that the reference to `session` is not released; this reference is
1806 * the "global" reference that is used to allow look-ups. This reference will
1807 * only be released when the session is removed. See
1808 * handle_notification_thread_command_remove_session.
1809 */
1810 ret = 0;
1811 *cmd_result = LTTNG_OK;
1812end:
1813 return ret;
1814}
1815
28ab034a
JG
1816static int
1817handle_notification_thread_command_remove_session(struct notification_thread_state *state,
1818 uint64_t session_id,
1819 enum lttng_error_code *cmd_result)
139a8d25
JG
1820{
1821 int ret;
1822
1823 DBG("Removing session: session id = %" PRIu64, session_id);
1824
1825 auto session = get_session_info_by_id(state, session_id);
1826 if (!session) {
1827 ERR("Failed to remove session: session id = %" PRIu64, session_id);
1828 ret = -1;
1829 *cmd_result = LTTNG_ERR_NO_SESSION;
1830 goto end;
1831 }
1832
1833 /* Release the reference returned by the look-up, and then release the global reference. */
1834 session_info_put(session);
1835 session_info_put(session);
1836 ret = 0;
1837 *cmd_result = LTTNG_OK;
1838end:
1839 return ret;
1840}
1841
28ab034a 1842static void free_channel_trigger_list_rcu(struct rcu_head *node)
83b934ad 1843{
28ab034a 1844 free(caa_container_of(node, struct lttng_channel_trigger_list, rcu_node));
83b934ad
MD
1845}
1846
28ab034a 1847static void free_channel_state_sample_rcu(struct rcu_head *node)
83b934ad 1848{
28ab034a 1849 free(caa_container_of(node, struct channel_state_sample, rcu_node));
83b934ad
MD
1850}
1851
28ab034a
JG
1852static int
1853handle_notification_thread_command_remove_channel(struct notification_thread_state *state,
1854 uint64_t channel_key,
1855 enum lttng_domain_type domain,
1856 enum lttng_error_code *cmd_result)
ab0ee2ca
JG
1857{
1858 struct cds_lfht_node *node;
1859 struct cds_lfht_iter iter;
1860 struct lttng_channel_trigger_list *trigger_list;
1861 struct lttng_trigger_list_element *trigger_list_element, *tmp;
1862 struct channel_key key = { .key = channel_key, .domain = domain };
1863 struct channel_info *channel_info;
1864
bd0514a5 1865 DBG("Removing channel key = %" PRIu64 " in %s domain",
28ab034a
JG
1866 channel_key,
1867 lttng_domain_type_str(domain));
ab0ee2ca 1868
56047f5a 1869 lttng::urcu::read_lock_guard read_lock;
ab0ee2ca
JG
1870
1871 cds_lfht_lookup(state->channel_triggers_ht,
1872 hash_channel_key(&key),
1873 match_channel_trigger_list,
1874 &key,
1875 &iter);
1876 node = cds_lfht_iter_get_node(&iter);
1877 /*
1878 * There is a severe internal error if we are being asked to remove a
1879 * channel that doesn't exist.
1880 */
1881 if (!node) {
bd0514a5 1882 ERR("Channel being removed is unknown to the notification thread");
ab0ee2ca
JG
1883 goto end;
1884 }
1885
1886 /* Free the list of triggers associated with this channel. */
28ab034a
JG
1887 trigger_list =
1888 caa_container_of(node, struct lttng_channel_trigger_list, channel_triggers_ht_node);
1889 cds_list_for_each_entry_safe (trigger_list_element, tmp, &trigger_list->list, node) {
ab0ee2ca
JG
1890 cds_list_del(&trigger_list_element->node);
1891 free(trigger_list_element);
1892 }
1893 cds_lfht_del(state->channel_triggers_ht, node);
83b934ad 1894 call_rcu(&trigger_list->rcu_node, free_channel_trigger_list_rcu);
ab0ee2ca
JG
1895
1896 /* Free sampled channel state. */
1897 cds_lfht_lookup(state->channel_state_ht,
1898 hash_channel_key(&key),
1899 match_channel_state_sample,
1900 &key,
1901 &iter);
1902 node = cds_lfht_iter_get_node(&iter);
1903 /*
1904 * This is expected to be NULL if the channel is destroyed before we
1905 * received a sample.
1906 */
1907 if (node) {
28ab034a
JG
1908 struct channel_state_sample *sample =
1909 caa_container_of(node, struct channel_state_sample, channel_state_ht_node);
ab0ee2ca
JG
1910
1911 cds_lfht_del(state->channel_state_ht, node);
83b934ad 1912 call_rcu(&sample->rcu_node, free_channel_state_sample_rcu);
ab0ee2ca
JG
1913 }
1914
1915 /* Remove the channel from the channels_ht and free it. */
28ab034a
JG
1916 cds_lfht_lookup(
1917 state->channels_ht, hash_channel_key(&key), match_channel_info, &key, &iter);
ab0ee2ca 1918 node = cds_lfht_iter_get_node(&iter);
a0377dfe 1919 LTTNG_ASSERT(node);
28ab034a 1920 channel_info = caa_container_of(node, struct channel_info, channels_ht_node);
ab0ee2ca
JG
1921 cds_lfht_del(state->channels_ht, node);
1922 channel_info_destroy(channel_info);
1923end:
ab0ee2ca
JG
1924 *cmd_result = LTTNG_OK;
1925 return 0;
1926}
1927
28ab034a
JG
1928static int
1929handle_notification_thread_command_session_rotation(struct notification_thread_state *state,
1930 enum notification_thread_command_type cmd_type,
1931 uint64_t session_id,
1932 uint64_t trace_archive_chunk_id,
1933 struct lttng_trace_archive_location *location,
1934 enum lttng_error_code *_cmd_result)
0ca52944 1935{
ed327204
JG
1936 int ret = 0;
1937 enum lttng_error_code cmd_result = LTTNG_OK;
1938 struct lttng_session_trigger_list *trigger_list;
1939 struct lttng_trigger_list_element *trigger_list_element;
1940 struct session_info *session_info;
139a8d25 1941 struct lttng_credentials session_creds;
319dcddc 1942 struct session_state_sample new_session_state;
0ca52944 1943
56047f5a 1944 lttng::urcu::read_lock_guard read_lock;
ed327204 1945
139a8d25 1946 session_info = get_session_info_by_id(state, session_id);
ed327204 1947 if (!session_info) {
139a8d25
JG
1948 /* Fatal logic error. */
1949 ERR("Failed to find session while handling rotation state change: session id = %" PRIu64,
28ab034a 1950 session_id);
ed327204 1951 ret = -1;
139a8d25 1952 cmd_result = LTTNG_ERR_FATAL;
ed327204
JG
1953 goto end;
1954 }
1955
319dcddc
JG
1956 new_session_state = session_info->last_state_sample;
1957 if (location) {
1958 lttng_trace_archive_location_get(location);
1959 new_session_state.rotation.location = location;
1960 } else {
cd9adb8b 1961 new_session_state.rotation.location = nullptr;
319dcddc
JG
1962 }
1963
139a8d25
JG
1964 session_creds = {
1965 .uid = LTTNG_OPTIONAL_INIT_VALUE(session_info->uid),
1966 .gid = LTTNG_OPTIONAL_INIT_VALUE(session_info->gid),
1967 };
1968
319dcddc 1969 new_session_state.rotation.ongoing = cmd_type ==
28ab034a 1970 NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_ONGOING;
319dcddc
JG
1971 new_session_state.rotation.id = trace_archive_chunk_id;
1972
139a8d25 1973 trigger_list = get_session_trigger_list(state, session_info->name);
319dcddc 1974 LTTNG_ASSERT(trigger_list);
ed327204 1975
28ab034a 1976 cds_list_for_each_entry (trigger_list_element, &trigger_list->list, node) {
ed327204 1977 const struct lttng_condition *condition;
f2b3ef9f 1978 struct lttng_trigger *trigger;
ed327204 1979 struct notification_client_list *client_list;
cd9adb8b 1980 struct lttng_evaluation *evaluation = nullptr;
f2b3ef9f 1981 enum action_executor_status executor_status;
ed327204
JG
1982
1983 trigger = trigger_list_element->trigger;
1984 condition = lttng_trigger_get_const_condition(trigger);
a0377dfe 1985 LTTNG_ASSERT(condition);
ed327204 1986
319dcddc 1987 ret = evaluate_session_condition(
28ab034a 1988 condition, session_info, &new_session_state, &evaluation);
319dcddc
JG
1989 if (ret) {
1990 ret = -1;
1991 cmd_result = LTTNG_ERR_NOMEM;
1992 goto end;
ed327204
JG
1993 }
1994
1995 if (!evaluation) {
319dcddc 1996 continue;
ed327204
JG
1997 }
1998
f2b3ef9f
JG
1999 /*
2000 * Ownership of `evaluation` transferred to the action executor
319dcddc
JG
2001 * no matter the result. The callee acquires a reference to the
2002 * client list: we can release our own.
f2b3ef9f 2003 */
319dcddc 2004 client_list = get_client_list_from_condition(state, condition);
72365501 2005 executor_status = action_executor_enqueue_trigger(
28ab034a 2006 state->executor, trigger, evaluation, &session_creds, client_list);
319dcddc 2007 notification_client_list_put(client_list);
cd9adb8b 2008 evaluation = nullptr;
f2b3ef9f
JG
2009 switch (executor_status) {
2010 case ACTION_EXECUTOR_STATUS_OK:
2011 break;
2012 case ACTION_EXECUTOR_STATUS_ERROR:
2013 case ACTION_EXECUTOR_STATUS_INVALID:
2014 /*
2015 * TODO Add trigger identification (name/id) when
2016 * it is added to the API.
2017 */
2018 ERR("Fatal error occurred while enqueuing action associated with session rotation trigger");
2019 ret = -1;
319dcddc 2020 goto end;
f2b3ef9f
JG
2021 case ACTION_EXECUTOR_STATUS_OVERFLOW:
2022 /*
2023 * TODO Add trigger identification (name/id) when
2024 * it is added to the API.
2025 *
2026 * Not a fatal error.
2027 */
2028 WARN("No space left when enqueuing action associated with session rotation trigger");
2029 ret = 0;
319dcddc 2030 goto end;
f2b3ef9f
JG
2031 default:
2032 abort();
2033 }
ed327204 2034 }
319dcddc 2035
ed327204 2036end:
319dcddc
JG
2037 if (session_info) {
2038 /* Ownership of new_session_state::location is transferred. */
2039 lttng_trace_archive_location_put(session_info->last_state_sample.rotation.location);
2040 session_info->last_state_sample = new_session_state;
2041 }
2042
ed327204
JG
2043 session_info_put(session_info);
2044 *_cmd_result = cmd_result;
ed327204 2045 return ret;
0ca52944
JG
2046}
2047
28ab034a
JG
2048static int
2049handle_notification_thread_command_add_tracer_event_source(struct notification_thread_state *state,
2050 int tracer_event_source_fd,
2051 enum lttng_domain_type domain_type,
2052 enum lttng_error_code *_cmd_result)
d02d7404
JR
2053{
2054 int ret = 0;
2055 enum lttng_error_code cmd_result = LTTNG_OK;
cd9adb8b 2056 struct notification_event_tracer_event_source_element *element = nullptr;
d02d7404 2057
64803277 2058 element = zmalloc<notification_event_tracer_event_source_element>();
d02d7404
JR
2059 if (!element) {
2060 cmd_result = LTTNG_ERR_NOMEM;
2061 ret = -1;
2062 goto end;
2063 }
2064
d02d7404
JR
2065 element->fd = tracer_event_source_fd;
2066 element->domain = domain_type;
2067
2068 cds_list_add(&element->node, &state->tracer_event_sources_list);
2069
bd0514a5 2070 DBG3("Adding tracer event source fd to poll set: tracer_event_source_fd = %d, domain = '%s'",
28ab034a
JG
2071 tracer_event_source_fd,
2072 lttng_domain_type_str(domain_type));
d02d7404
JR
2073
2074 /* Adding the read side pipe to the event poll. */
1524f98c 2075 ret = lttng_poll_add(&state->events, tracer_event_source_fd, LPOLLPRI | LPOLLIN);
d02d7404 2076 if (ret < 0) {
bd0514a5 2077 ERR("Failed to add tracer event source to poll set: tracer_event_source_fd = %d, domain = '%s'",
28ab034a
JG
2078 tracer_event_source_fd,
2079 lttng_domain_type_str(element->domain));
d02d7404
JR
2080 cds_list_del(&element->node);
2081 free(element);
2082 goto end;
2083 }
2084
2085 element->is_fd_in_poll_set = true;
2086
2087end:
2088 *_cmd_result = cmd_result;
2089 return ret;
2090}
2091
28ab034a
JG
2092static int drain_event_notifier_notification_pipe(struct notification_thread_state *state,
2093 int pipe,
2094 enum lttng_domain_type domain)
8b524060 2095{
1c9a0b0e 2096 struct lttng_poll_event events = {};
8b524060
FD
2097 int ret;
2098
2099 ret = lttng_poll_create(&events, 1, LTTNG_CLOEXEC);
2100 if (ret < 0) {
bd0514a5 2101 ERR("Error creating lttng_poll_event");
8b524060
FD
2102 goto end;
2103 }
2104
2105 ret = lttng_poll_add(&events, pipe, LPOLLIN);
2106 if (ret < 0) {
bd0514a5 2107 ERR("Error adding fd event notifier notification pipe to lttng_poll_event: fd = %d",
28ab034a 2108 pipe);
8b524060
FD
2109 goto end;
2110 }
2111
2112 while (true) {
2113 /*
2114 * Continue to consume notifications as long as there are new
2115 * ones coming in. The tracer has been asked to stop producing
2116 * them.
2117 *
2118 * LPOLLIN is explicitly checked since LPOLLHUP is implicitly
2119 * monitored (on Linux, at least) and will be returned when
2120 * the pipe is closed but empty.
2121 */
2122 ret = lttng_poll_wait_interruptible(&events, 0);
a17b133b 2123 if (ret == 0 || (LTTNG_POLL_GETEV(&events, 0) & LPOLLIN) == 0) {
8b524060
FD
2124 /* No more notification to be read on this pipe. */
2125 ret = 0;
2126 goto end;
2127 } else if (ret < 0) {
2128 PERROR("Failed on lttng_poll_wait_interruptible() call");
2129 ret = -1;
2130 goto end;
2131 }
2132
2133 ret = handle_one_event_notifier_notification(state, pipe, domain);
2134 if (ret) {
bd0514a5 2135 ERR("Error consuming an event notifier notification from pipe: fd = %d",
28ab034a 2136 pipe);
8b524060
FD
2137 }
2138 }
2139end:
2140 lttng_poll_clean(&events);
2141 return ret;
2142}
2143
28ab034a 2144static struct notification_event_tracer_event_source_element *
34bf4f69 2145find_tracer_event_source_element(struct notification_thread_state *state,
28ab034a 2146 int tracer_event_source_fd)
d02d7404 2147{
34bf4f69 2148 struct notification_event_tracer_event_source_element *source_element;
d02d7404 2149
28ab034a 2150 cds_list_for_each_entry (source_element, &state->tracer_event_sources_list, node) {
34bf4f69
FD
2151 if (source_element->fd == tracer_event_source_fd) {
2152 goto end;
d02d7404 2153 }
d02d7404
JR
2154 }
2155
cd9adb8b 2156 source_element = nullptr;
34bf4f69 2157end:
97cf926d 2158 return source_element;
34bf4f69 2159}
d02d7404 2160
28ab034a
JG
2161static int remove_tracer_event_source_from_pollset(
2162 struct notification_thread_state *state,
2163 struct notification_event_tracer_event_source_element *source_element)
34bf4f69
FD
2164{
2165 int ret = 0;
2166
a0377dfe 2167 LTTNG_ASSERT(source_element->is_fd_in_poll_set);
d02d7404 2168
bd0514a5 2169 DBG3("Removing tracer event source from poll set: tracer_event_source_fd = %d, domain = '%s'",
28ab034a
JG
2170 source_element->fd,
2171 lttng_domain_type_str(source_element->domain));
d02d7404
JR
2172
2173 /* Removing the fd from the event poll set. */
34bf4f69 2174 ret = lttng_poll_del(&state->events, source_element->fd);
d02d7404 2175 if (ret < 0) {
bd0514a5 2176 ERR("Failed to remove tracer event source from poll set: tracer_event_source_fd = %d, domain = '%s'",
28ab034a
JG
2177 source_element->fd,
2178 lttng_domain_type_str(source_element->domain));
34bf4f69 2179 ret = -1;
d02d7404
JR
2180 goto end;
2181 }
2182
173900f6
JG
2183 source_element->is_fd_in_poll_set = false;
2184
2ddbdc7a
FD
2185 /*
2186 * Force the notification thread to restart the poll() loop to ensure
2187 * that any events from the removed fd are removed.
2188 */
2189 state->restart_poll = true;
2190
28ab034a
JG
2191 ret = drain_event_notifier_notification_pipe(
2192 state, source_element->fd, source_element->domain);
8b524060 2193 if (ret) {
bd0514a5 2194 ERR("Error draining event notifier notification: tracer_event_source_fd = %d, domain = %s",
28ab034a
JG
2195 source_element->fd,
2196 lttng_domain_type_str(source_element->domain));
34bf4f69 2197 ret = -1;
8b524060
FD
2198 goto end;
2199 }
2200
d02d7404 2201end:
d02d7404
JR
2202 return ret;
2203}
2204
28ab034a
JG
2205int handle_notification_thread_tracer_event_source_died(struct notification_thread_state *state,
2206 int tracer_event_source_fd)
d02d7404 2207{
34bf4f69
FD
2208 int ret = 0;
2209 struct notification_event_tracer_event_source_element *source_element;
2210
28ab034a 2211 source_element = find_tracer_event_source_element(state, tracer_event_source_fd);
34bf4f69 2212
a0377dfe 2213 LTTNG_ASSERT(source_element);
34bf4f69
FD
2214
2215 ret = remove_tracer_event_source_from_pollset(state, source_element);
2216 if (ret) {
2217 ERR("Failed to remove dead tracer event source from poll set");
2218 }
d02d7404 2219
34bf4f69
FD
2220 return ret;
2221}
2222
28ab034a
JG
2223static int handle_notification_thread_command_remove_tracer_event_source(
2224 struct notification_thread_state *state,
2225 int tracer_event_source_fd,
2226 enum lttng_error_code *_cmd_result)
34bf4f69
FD
2227{
2228 int ret = 0;
2229 enum lttng_error_code cmd_result = LTTNG_OK;
cd9adb8b 2230 struct notification_event_tracer_event_source_element *source_element = nullptr;
34bf4f69 2231
28ab034a 2232 source_element = find_tracer_event_source_element(state, tracer_event_source_fd);
34bf4f69 2233
a0377dfe 2234 LTTNG_ASSERT(source_element);
34bf4f69
FD
2235
2236 /* Remove the tracer source from the list. */
2237 cds_list_del(&source_element->node);
2238
2239 if (!source_element->is_fd_in_poll_set) {
2240 /* Skip the poll set removal. */
2241 goto end;
2242 }
2243
2244 ret = remove_tracer_event_source_from_pollset(state, source_element);
2245 if (ret) {
2246 ERR("Failed to remove tracer event source from poll set");
2247 cmd_result = LTTNG_ERR_FATAL;
2248 }
2249
2250end:
2251 free(source_element);
2252 *_cmd_result = cmd_result;
d02d7404
JR
2253 return ret;
2254}
2255
28ab034a
JG
2256static int
2257handle_notification_thread_command_list_triggers(struct notification_thread_handle *handle
2258 __attribute__((unused)),
2259 struct notification_thread_state *state,
2260 uid_t client_uid,
2261 struct lttng_triggers **triggers,
2262 enum lttng_error_code *_cmd_result)
fbc9f37d
JR
2263{
2264 int ret = 0;
2265 enum lttng_error_code cmd_result = LTTNG_OK;
2266 struct cds_lfht_iter iter;
2267 struct lttng_trigger_ht_element *trigger_ht_element;
cd9adb8b 2268 struct lttng_triggers *local_triggers = nullptr;
fbc9f37d
JR
2269 const struct lttng_credentials *creds;
2270
56047f5a 2271 lttng::urcu::read_lock_guard read_lock;
fbc9f37d
JR
2272
2273 local_triggers = lttng_triggers_create();
2274 if (!local_triggers) {
2275 /* Not a fatal error. */
2276 cmd_result = LTTNG_ERR_NOMEM;
2277 goto end;
2278 }
2279
28ab034a 2280 cds_lfht_for_each_entry (state->triggers_ht, &iter, trigger_ht_element, node) {
fbc9f37d
JR
2281 /*
2282 * Only return the triggers to which the client has access.
2283 * The root user has visibility over all triggers.
2284 */
2285 creds = lttng_trigger_get_credentials(trigger_ht_element->trigger);
2286 if (client_uid != lttng_credentials_get_uid(creds) && client_uid != 0) {
2287 continue;
2288 }
2289
28ab034a 2290 ret = lttng_triggers_add(local_triggers, trigger_ht_element->trigger);
fbc9f37d
JR
2291 if (ret < 0) {
2292 /* Not a fatal error. */
2293 ret = 0;
2294 cmd_result = LTTNG_ERR_NOMEM;
2295 goto end;
2296 }
2297 }
2298
2299 /* Transferring ownership to the caller. */
2300 *triggers = local_triggers;
cd9adb8b 2301 local_triggers = nullptr;
fbc9f37d
JR
2302
2303end:
fbc9f37d
JR
2304 lttng_triggers_destroy(local_triggers);
2305 *_cmd_result = cmd_result;
2306 return ret;
2307}
2308
8790759c 2309static inline void get_trigger_info_for_log(const struct lttng_trigger *trigger,
28ab034a
JG
2310 const char **trigger_name,
2311 uid_t *trigger_owner_uid)
8790759c
FD
2312{
2313 enum lttng_trigger_status trigger_status;
2314
2315 trigger_status = lttng_trigger_get_name(trigger, trigger_name);
2316 switch (trigger_status) {
2317 case LTTNG_TRIGGER_STATUS_OK:
2318 break;
2319 case LTTNG_TRIGGER_STATUS_UNSET:
0efb2ad7 2320 *trigger_name = "(anonymous)";
8790759c
FD
2321 break;
2322 default:
2323 abort();
2324 }
2325
28ab034a 2326 trigger_status = lttng_trigger_get_owner_uid(trigger, trigger_owner_uid);
a0377dfe 2327 LTTNG_ASSERT(trigger_status == LTTNG_TRIGGER_STATUS_OK);
8790759c
FD
2328}
2329
28ab034a
JG
2330static int handle_notification_thread_command_get_trigger(struct notification_thread_state *state,
2331 const struct lttng_trigger *trigger,
2332 struct lttng_trigger **registered_trigger,
2333 enum lttng_error_code *_cmd_result)
8790759c
FD
2334{
2335 int ret = -1;
2336 struct cds_lfht_iter iter;
2337 struct lttng_trigger_ht_element *trigger_ht_element;
2338 enum lttng_error_code cmd_result = LTTNG_ERR_TRIGGER_NOT_FOUND;
2339 const char *trigger_name;
2340 uid_t trigger_owner_uid;
2341
56047f5a
JG
2342 {
2343 lttng::urcu::read_lock_guard read_lock;
8790759c 2344
56047f5a
JG
2345 cds_lfht_for_each_entry (state->triggers_ht, &iter, trigger_ht_element, node) {
2346 if (lttng_trigger_is_equal(trigger, trigger_ht_element->trigger)) {
2347 /* Take one reference on the return trigger. */
2348 *registered_trigger = trigger_ht_element->trigger;
2349 lttng_trigger_get(*registered_trigger);
2350 ret = 0;
2351 cmd_result = LTTNG_OK;
2352 goto end;
2353 }
8790759c
FD
2354 }
2355 }
2356
2357 /* Not a fatal error if the trigger is not found. */
2358 get_trigger_info_for_log(trigger, &trigger_name, &trigger_owner_uid);
87661585 2359 DBG("Failed to retrieve registered version of trigger: trigger name = '%s', trigger owner uid = %d",
28ab034a
JG
2360 trigger_name,
2361 (int) trigger_owner_uid);
8790759c
FD
2362
2363 ret = 0;
2364
2365end:
8790759c
FD
2366 *_cmd_result = cmd_result;
2367 return ret;
2368}
2369
28ab034a 2370static bool condition_is_supported(struct lttng_condition *condition)
1da26331 2371{
959e3c66 2372 bool is_supported;
1da26331
JG
2373
2374 switch (lttng_condition_get_type(condition)) {
2375 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
2376 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH:
2377 {
959e3c66 2378 int ret;
1da26331
JG
2379 enum lttng_domain_type domain;
2380
28ab034a 2381 ret = lttng_condition_buffer_usage_get_domain_type(condition, &domain);
a0377dfe 2382 LTTNG_ASSERT(ret == 0);
1da26331
JG
2383
2384 if (domain != LTTNG_DOMAIN_KERNEL) {
959e3c66 2385 is_supported = true;
1da26331
JG
2386 goto end;
2387 }
2388
2389 /*
2390 * Older kernel tracers don't expose the API to monitor their
2391 * buffers. Therefore, we reject triggers that require that
2392 * mechanism to be available to be evaluated.
959e3c66
JR
2393 *
2394 * Assume unsupported on error.
1da26331 2395 */
959e3c66
JR
2396 is_supported = kernel_supports_ring_buffer_snapshot_sample_positions() == 1;
2397 break;
2398 }
8dbb86b8 2399 case LTTNG_CONDITION_TYPE_EVENT_RULE_MATCHES:
959e3c66
JR
2400 {
2401 const struct lttng_event_rule *event_rule;
2402 enum lttng_domain_type domain;
2403 const enum lttng_condition_status status =
28ab034a 2404 lttng_condition_event_rule_matches_get_rule(condition, &event_rule);
959e3c66 2405
a0377dfe 2406 LTTNG_ASSERT(status == LTTNG_CONDITION_STATUS_OK);
959e3c66
JR
2407
2408 domain = lttng_event_rule_get_domain_type(event_rule);
2409 if (domain != LTTNG_DOMAIN_KERNEL) {
2410 is_supported = true;
2411 goto end;
2412 }
2413
2414 /*
2415 * Older kernel tracers can't emit notification. Therefore, we
2416 * reject triggers that require that mechanism to be available
2417 * to be evaluated.
2418 *
2419 * Assume unsupported on error.
2420 */
2421 is_supported = kernel_supports_event_notifiers() == 1;
1da26331
JG
2422 break;
2423 }
2424 default:
959e3c66 2425 is_supported = true;
1da26331
JG
2426 }
2427end:
959e3c66 2428 return is_supported;
1da26331
JG
2429}
2430
51eab943 2431/* Must be called with RCU read lock held. */
28ab034a
JG
2432static int bind_trigger_to_matching_session(struct lttng_trigger *trigger,
2433 struct notification_thread_state *state)
51eab943
JG
2434{
2435 int ret = 0;
51eab943
JG
2436 const struct lttng_condition *condition;
2437 const char *session_name;
2438 struct lttng_session_trigger_list *trigger_list;
2439
48b7cdc2
FD
2440 ASSERT_RCU_READ_LOCKED();
2441
51eab943 2442 condition = lttng_trigger_get_const_condition(trigger);
319dcddc 2443 session_name = get_condition_session_name(condition);
51eab943 2444
ed327204
JG
2445 trigger_list = get_session_trigger_list(state, session_name);
2446 if (!trigger_list) {
bd0514a5 2447 DBG("Unable to bind trigger applying to session \"%s\" as it is not yet known to the notification system",
28ab034a 2448 session_name);
51eab943 2449 goto end;
ed327204 2450 }
51eab943 2451
28ab034a 2452 DBG("Newly registered trigger bound to session \"%s\"", session_name);
51eab943
JG
2453 ret = lttng_session_trigger_list_add(trigger_list, trigger);
2454end:
2455 return ret;
2456}
2457
2458/* Must be called with RCU read lock held. */
28ab034a
JG
2459static int bind_trigger_to_matching_channels(struct lttng_trigger *trigger,
2460 struct notification_thread_state *state)
51eab943
JG
2461{
2462 int ret = 0;
2463 struct cds_lfht_node *node;
2464 struct cds_lfht_iter iter;
2465 struct channel_info *channel;
2466
48b7cdc2
FD
2467 ASSERT_RCU_READ_LOCKED();
2468
28ab034a 2469 cds_lfht_for_each_entry (state->channels_ht, &iter, channel, channels_ht_node) {
51eab943
JG
2470 struct lttng_trigger_list_element *trigger_list_element;
2471 struct lttng_channel_trigger_list *trigger_list;
a5d64ae7 2472 struct cds_lfht_iter lookup_iter;
51eab943
JG
2473
2474 if (!trigger_applies_to_channel(trigger, channel)) {
2475 continue;
2476 }
2477
2478 cds_lfht_lookup(state->channel_triggers_ht,
2479 hash_channel_key(&channel->key),
2480 match_channel_trigger_list,
2481 &channel->key,
a5d64ae7
MD
2482 &lookup_iter);
2483 node = cds_lfht_iter_get_node(&lookup_iter);
a0377dfe 2484 LTTNG_ASSERT(node);
28ab034a
JG
2485 trigger_list = caa_container_of(
2486 node, struct lttng_channel_trigger_list, channel_triggers_ht_node);
51eab943 2487
64803277 2488 trigger_list_element = zmalloc<lttng_trigger_list_element>();
51eab943
JG
2489 if (!trigger_list_element) {
2490 ret = -1;
2491 goto end;
2492 }
2493 CDS_INIT_LIST_HEAD(&trigger_list_element->node);
2494 trigger_list_element->trigger = trigger;
2495 cds_list_add(&trigger_list_element->node, &trigger_list->list);
28ab034a 2496 DBG("Newly registered trigger bound to channel \"%s\"", channel->name);
51eab943
JG
2497 }
2498end:
2499 return ret;
2500}
2501
28ab034a 2502static bool is_trigger_action_notify(const struct lttng_trigger *trigger)
f2b3ef9f
JG
2503{
2504 bool is_notify = false;
28ab034a 2505 const struct lttng_action *action = lttng_trigger_get_const_action(trigger);
2460203a 2506 const struct lttng_action *inner_action;
f2b3ef9f
JG
2507 enum lttng_action_type action_type;
2508
a0377dfe 2509 LTTNG_ASSERT(action);
17182cfd 2510 action_type = lttng_action_get_type(action);
f2b3ef9f
JG
2511 if (action_type == LTTNG_ACTION_TYPE_NOTIFY) {
2512 is_notify = true;
2513 goto end;
7c2fae7c 2514 } else if (action_type != LTTNG_ACTION_TYPE_LIST) {
f2b3ef9f
JG
2515 goto end;
2516 }
2517
2460203a
FD
2518 for_each_action_const (inner_action, action) {
2519 if (lttng_action_get_type(inner_action) == LTTNG_ACTION_TYPE_NOTIFY) {
f2b3ef9f
JG
2520 is_notify = true;
2521 goto end;
2522 }
2523 }
2524
2525end:
2526 return is_notify;
2527}
2528
242388e4 2529static bool trigger_name_taken(struct notification_thread_state *state,
28ab034a 2530 const struct lttng_trigger *trigger)
242388e4
JR
2531{
2532 struct cds_lfht_iter iter;
2533
2534 /*
2535 * No duplicata is allowed in the triggers_by_name_uid_ht.
2536 * The match is done against the trigger name and uid.
2537 */
2538 cds_lfht_lookup(state->triggers_by_name_uid_ht,
2539 hash_trigger_by_name_uid(trigger),
2540 match_trigger_by_name_uid,
2541 trigger,
2542 &iter);
2543 return !!cds_lfht_iter_get_node(&iter);
2544}
2545
28ab034a
JG
2546static enum lttng_error_code generate_trigger_name(struct notification_thread_state *state,
2547 struct lttng_trigger *trigger,
2548 const char **name)
242388e4
JR
2549{
2550 enum lttng_error_code ret_code = LTTNG_OK;
2551 bool taken = false;
2552 enum lttng_trigger_status status;
2553
2554 do {
28ab034a
JG
2555 const int ret =
2556 lttng_trigger_generate_name(trigger, state->trigger_id.name_offset++);
242388e4
JR
2557 if (ret) {
2558 /* The only reason this can fail right now. */
2559 ret_code = LTTNG_ERR_NOMEM;
2560 break;
2561 }
2562
2563 status = lttng_trigger_get_name(trigger, name);
a0377dfe 2564 LTTNG_ASSERT(status == LTTNG_TRIGGER_STATUS_OK);
242388e4
JR
2565
2566 taken = trigger_name_taken(state, trigger);
2567 } while (taken || state->trigger_id.name_offset == UINT64_MAX);
2568
2569 return ret_code;
2570}
2571
28ab034a
JG
2572static inline void
2573notif_thread_state_remove_trigger_ht_elem(struct notification_thread_state *state,
2574 struct lttng_trigger_ht_element *trigger_ht_element)
2758e38b 2575{
a0377dfe
FD
2576 LTTNG_ASSERT(state);
2577 LTTNG_ASSERT(trigger_ht_element);
2758e38b
FD
2578
2579 cds_lfht_del(state->triggers_ht, &trigger_ht_element->node);
2580 cds_lfht_del(state->triggers_by_name_uid_ht, &trigger_ht_element->node_by_name_uid);
2581}
2582
28ab034a
JG
2583static enum lttng_error_code setup_tracer_notifier(struct notification_thread_state *state,
2584 struct lttng_trigger *trigger)
6487ad53
FD
2585{
2586 enum lttng_error_code ret;
2587 enum event_notifier_error_accounting_status error_accounting_status;
2588 struct cds_lfht_node *node;
2589 uint64_t error_counter_index = 0;
2590 struct lttng_condition *condition = lttng_trigger_get_condition(trigger);
cd9adb8b 2591 struct notification_trigger_tokens_ht_element *trigger_tokens_ht_element = nullptr;
6487ad53 2592
64803277 2593 trigger_tokens_ht_element = zmalloc<notification_trigger_tokens_ht_element>();
6487ad53
FD
2594 if (!trigger_tokens_ht_element) {
2595 ret = LTTNG_ERR_NOMEM;
2596 goto end;
2597 }
2598
2599 /* Add trigger token to the trigger_tokens_ht. */
2600 cds_lfht_node_init(&trigger_tokens_ht_element->node);
2601 trigger_tokens_ht_element->token = LTTNG_OPTIONAL_GET(trigger->tracer_token);
2602 trigger_tokens_ht_element->trigger = trigger;
2603
2604 node = cds_lfht_add_unique(state->trigger_tokens_ht,
28ab034a
JG
2605 hash_key_u64(&trigger_tokens_ht_element->token, lttng_ht_seed),
2606 match_trigger_token,
2607 &trigger_tokens_ht_element->token,
2608 &trigger_tokens_ht_element->node);
6487ad53
FD
2609 if (node != &trigger_tokens_ht_element->node) {
2610 ret = LTTNG_ERR_TRIGGER_EXISTS;
2611 goto error_free_ht_element;
2612 }
2613
2614 error_accounting_status = event_notifier_error_accounting_register_event_notifier(
28ab034a 2615 trigger, &error_counter_index);
6487ad53 2616 if (error_accounting_status != EVENT_NOTIFIER_ERROR_ACCOUNTING_STATUS_OK) {
28ab034a
JG
2617 if (error_accounting_status ==
2618 EVENT_NOTIFIER_ERROR_ACCOUNTING_STATUS_NO_INDEX_AVAILABLE) {
7c2fae7c 2619 DBG("Trigger list error accounting counter full.");
6487ad53
FD
2620 ret = LTTNG_ERR_EVENT_NOTIFIER_ERROR_ACCOUNTING_FULL;
2621 } else {
2622 ERR("Error registering trigger for error accounting");
2623 ret = LTTNG_ERR_EVENT_NOTIFIER_REGISTRATION;
2624 }
2625
2626 goto error_remove_ht_element;
2627 }
2628
28ab034a 2629 lttng_condition_event_rule_matches_set_error_counter_index(condition, error_counter_index);
6487ad53
FD
2630
2631 ret = LTTNG_OK;
2632 goto end;
2633
2634error_remove_ht_element:
2635 cds_lfht_del(state->trigger_tokens_ht, &trigger_tokens_ht_element->node);
2636error_free_ht_element:
2637 free(trigger_tokens_ht_element);
2638end:
2639 return ret;
2640}
2641
ab0ee2ca 2642/*
f2b3ef9f 2643 * FIXME A client's credentials are not checked when registering a trigger.
ab0ee2ca 2644 *
1da26331 2645 * The effects of this are benign since:
ab0ee2ca 2646 * - The client will succeed in registering the trigger, as it is valid,
51eab943 2647 * - The trigger will, internally, be bound to the channel/session,
ab0ee2ca
JG
2648 * - The notifications will not be sent since the client's credentials
2649 * are checked against the channel at that moment.
1da26331
JG
2650 *
2651 * If this function returns a non-zero value, it means something is
50ca7858 2652 * fundamentally broken and the whole subsystem/thread will be torn down.
1da26331
JG
2653 *
2654 * If a non-fatal error occurs, just set the cmd_result to the appropriate
2655 * error code.
ab0ee2ca 2656 */
28ab034a
JG
2657static int
2658handle_notification_thread_command_register_trigger(struct notification_thread_state *state,
2659 struct lttng_trigger *trigger,
2660 bool is_trigger_anonymous,
2661 enum lttng_error_code *cmd_result)
ab0ee2ca
JG
2662{
2663 int ret = 0;
2664 struct lttng_condition *condition;
cd9adb8b
JG
2665 struct notification_client_list *client_list = nullptr;
2666 struct lttng_trigger_ht_element *trigger_ht_element = nullptr;
ab0ee2ca 2667 struct cds_lfht_node *node;
28ab034a 2668 const char *trigger_name;
ab0ee2ca 2669 bool free_trigger = true;
cd9adb8b 2670 struct lttng_evaluation *evaluation = nullptr;
f2b3ef9f 2671 struct lttng_credentials object_creds;
ff588497
JR
2672 uid_t object_uid;
2673 gid_t object_gid;
f2b3ef9f 2674 enum action_executor_status executor_status;
28ab034a 2675 const uint64_t trigger_tracer_token = state->trigger_id.next_tracer_token++;
ab0ee2ca 2676
56047f5a 2677 lttng::urcu::read_lock_guard read_lock;
ab0ee2ca 2678
e6887944
JR
2679 /* Set the trigger's tracer token. */
2680 lttng_trigger_set_tracer_token(trigger, trigger_tracer_token);
2681
0efb2ad7 2682 if (!is_trigger_anonymous) {
28ab034a 2683 if (lttng_trigger_get_name(trigger, &trigger_name) == LTTNG_TRIGGER_STATUS_UNSET) {
0efb2ad7 2684 const enum lttng_error_code ret_code =
28ab034a 2685 generate_trigger_name(state, trigger, &trigger_name);
242388e4 2686
0efb2ad7
JG
2687 if (ret_code != LTTNG_OK) {
2688 /* Fatal error. */
2689 ret = -1;
2690 *cmd_result = ret_code;
2691 goto error;
2692 }
2693 } else if (trigger_name_taken(state, trigger)) {
2694 /* Not a fatal error. */
2695 *cmd_result = LTTNG_ERR_TRIGGER_EXISTS;
2696 ret = 0;
242388e4
JR
2697 goto error;
2698 }
0efb2ad7
JG
2699 } else {
2700 trigger_name = "(anonymous)";
242388e4
JR
2701 }
2702
ab0ee2ca 2703 condition = lttng_trigger_get_condition(trigger);
a0377dfe 2704 LTTNG_ASSERT(condition);
1da26331 2705
959e3c66
JR
2706 /* Some conditions require tracers to implement a minimal ABI version. */
2707 if (!condition_is_supported(condition)) {
1da26331
JG
2708 *cmd_result = LTTNG_ERR_NOT_SUPPORTED;
2709 goto error;
1da26331
JG
2710 }
2711
64803277 2712 trigger_ht_element = zmalloc<lttng_trigger_ht_element>();
ab0ee2ca
JG
2713 if (!trigger_ht_element) {
2714 ret = -1;
2715 goto error;
2716 }
2717
2718 /* Add trigger to the trigger_ht. */
2719 cds_lfht_node_init(&trigger_ht_element->node);
242388e4 2720 cds_lfht_node_init(&trigger_ht_element->node_by_name_uid);
ab0ee2ca
JG
2721 trigger_ht_element->trigger = trigger;
2722
2723 node = cds_lfht_add_unique(state->triggers_ht,
28ab034a
JG
2724 lttng_condition_hash(condition),
2725 match_trigger,
2726 trigger,
2727 &trigger_ht_element->node);
ab0ee2ca
JG
2728 if (node != &trigger_ht_element->node) {
2729 /* Not a fatal error, simply report it to the client. */
2730 *cmd_result = LTTNG_ERR_TRIGGER_EXISTS;
2731 goto error_free_ht_element;
2732 }
2733
242388e4 2734 node = cds_lfht_add_unique(state->triggers_by_name_uid_ht,
28ab034a
JG
2735 hash_trigger_by_name_uid(trigger),
2736 match_trigger_by_name_uid,
2737 trigger,
2738 &trigger_ht_element->node_by_name_uid);
242388e4 2739 if (node != &trigger_ht_element->node_by_name_uid) {
75e540c6
JG
2740 /* Internal error: add to triggers_ht should have failed. */
2741 ret = -1;
242388e4
JR
2742 goto error_free_ht_element;
2743 }
2744
9c374932
JR
2745 /* From this point consider the trigger registered. */
2746 lttng_trigger_set_as_registered(trigger);
2747
6487ad53
FD
2748 /*
2749 * Some triggers might need a tracer notifier depending on its
2750 * condition and actions.
2751 */
2752 if (lttng_trigger_needs_tracer_notifier(trigger)) {
2753 enum lttng_error_code error_code;
e7c93cf9 2754
6487ad53
FD
2755 error_code = setup_tracer_notifier(state, trigger);
2756 if (error_code != LTTNG_OK) {
28ab034a 2757 notif_thread_state_remove_trigger_ht_elem(state, trigger_ht_element);
6487ad53
FD
2758 if (error_code == LTTNG_ERR_NOMEM) {
2759 ret = -1;
2760 } else {
2761 *cmd_result = error_code;
2762 ret = 0;
90aa04a1
FD
2763 }
2764
6487ad53 2765 goto error_free_ht_element;
90aa04a1 2766 }
e7c93cf9
JR
2767 }
2768
ab0ee2ca
JG
2769 /*
2770 * The rest only applies to triggers that have a "notify" action.
2771 * It is not skipped as this is the only action type currently
2772 * supported.
2773 */
f2b3ef9f 2774 if (is_trigger_action_notify(trigger)) {
091fa780
FD
2775 /*
2776 * Find or create the client list of this condition. It may
2777 * already be present if another trigger is already registered
2778 * with the same condition.
2779 */
2780 client_list = get_client_list_from_condition(state, condition);
f2b3ef9f 2781 if (!client_list) {
091fa780
FD
2782 /*
2783 * No client list for this condition yet. We create new
2784 * one and build it up.
2785 */
2786 client_list = notification_client_list_create(state, condition);
2787 if (!client_list) {
28ab034a
JG
2788 ERR("Error creating notification client list for trigger %s",
2789 trigger->name);
a3c9aa3c 2790 ret = -1;
091fa780 2791 goto error_free_ht_element;
f2b3ef9f 2792 }
ab0ee2ca 2793 }
f2b3ef9f 2794
091fa780
FD
2795 CDS_INIT_LIST_HEAD(&trigger_ht_element->client_list_trigger_node);
2796
2797 pthread_mutex_lock(&client_list->lock);
28ab034a
JG
2798 cds_list_add(&trigger_ht_element->client_list_trigger_node,
2799 &client_list->triggers_list);
091fa780 2800 pthread_mutex_unlock(&client_list->lock);
ab0ee2ca
JG
2801 }
2802
091fa780
FD
2803 /*
2804 * Ownership of the trigger and of its wrapper was transfered to
2805 * the triggers_ht. Same for token ht element if necessary.
2806 */
cd9adb8b 2807 trigger_ht_element = nullptr;
091fa780
FD
2808 free_trigger = false;
2809
f82f93a1 2810 switch (get_condition_binding_object(condition)) {
51eab943
JG
2811 case LTTNG_OBJECT_TYPE_SESSION:
2812 /* Add the trigger to the list if it matches a known session. */
2813 ret = bind_trigger_to_matching_session(trigger, state);
2814 if (ret) {
091fa780 2815 goto error_free_ht_element;
ab0ee2ca 2816 }
f82f93a1 2817 break;
51eab943
JG
2818 case LTTNG_OBJECT_TYPE_CHANNEL:
2819 /*
2820 * Add the trigger to list of triggers bound to the channels
2821 * currently known.
2822 */
2823 ret = bind_trigger_to_matching_channels(trigger, state);
2824 if (ret) {
091fa780 2825 goto error_free_ht_element;
ab0ee2ca 2826 }
51eab943
JG
2827 break;
2828 case LTTNG_OBJECT_TYPE_NONE:
2829 break;
2830 default:
f2b3ef9f 2831 ERR("Unknown object type on which to bind a newly registered trigger was encountered");
51eab943 2832 ret = -1;
091fa780 2833 goto error_free_ht_element;
ab0ee2ca
JG
2834 }
2835
2ae99f0b 2836 /*
f2b3ef9f
JG
2837 * The new trigger's condition must be evaluated against the current
2838 * state.
2839 *
2840 * In the case of `notify` action, nothing preventing clients from
2841 * subscribing to a condition before the corresponding trigger is
2842 * registered, we have to evaluate this new condition right away.
2ae99f0b
JG
2843 *
2844 * At some point, we were waiting for the next "evaluation" (e.g. on
2845 * reception of a channel sample) to evaluate this new condition, but
2846 * that was broken.
2847 *
2848 * The reason it was broken is that waiting for the next sample
2849 * does not allow us to properly handle transitions for edge-triggered
2850 * conditions.
2851 *
2852 * Consider this example: when we handle a new channel sample, we
2853 * evaluate each conditions twice: once with the previous state, and
2854 * again with the newest state. We then use those two results to
2855 * determine whether a state change happened: a condition was false and
2856 * became true. If a state change happened, we have to notify clients.
2857 *
2858 * Now, if a client subscribes to a given notification and registers
2859 * a trigger *after* that subscription, we have to make sure the
2860 * condition is evaluated at this point while considering only the
2861 * current state. Otherwise, the next evaluation cycle may only see
2862 * that the evaluations remain the same (true for samples n-1 and n) and
2863 * the client will never know that the condition has been met.
2864 */
f2b3ef9f
JG
2865 switch (get_condition_binding_object(condition)) {
2866 case LTTNG_OBJECT_TYPE_SESSION:
319dcddc
JG
2867 {
2868 /* Find the session associated with the condition. */
2869 const auto *session_name = get_condition_session_name(condition);
2870 auto session_info = get_session_info_by_name(state, session_name);
2871 if (!session_info) {
2872 /* Not an error, the session doesn't exist yet. */
2873 DBG("Session not found while evaluating session condition during registration of trigger: session name = `%s`",
28ab034a 2874 session_name);
319dcddc
JG
2875 ret = 0;
2876 goto success;
2877 }
2878
2879 LTTNG_OPTIONAL_SET(&object_creds.uid, session_info->uid);
2880 LTTNG_OPTIONAL_SET(&object_creds.gid, session_info->gid);
2881
cd9adb8b 2882 ret = evaluate_session_condition(condition, session_info, nullptr, &evaluation);
319dcddc 2883 session_info_put(session_info);
b42ada90 2884 break;
319dcddc 2885 }
f2b3ef9f 2886 case LTTNG_OBJECT_TYPE_CHANNEL:
28ab034a
JG
2887 ret = evaluate_channel_condition_for_client(
2888 condition, state, &evaluation, &object_uid, &object_gid);
bc8daafb
JG
2889 LTTNG_OPTIONAL_SET(&object_creds.uid, object_uid);
2890 LTTNG_OPTIONAL_SET(&object_creds.gid, object_gid);
f2b3ef9f
JG
2891 break;
2892 case LTTNG_OBJECT_TYPE_NONE:
2893 ret = 0;
242388e4 2894 break;
f2b3ef9f
JG
2895 case LTTNG_OBJECT_TYPE_UNKNOWN:
2896 default:
2897 ret = -1;
242388e4 2898 break;
f2b3ef9f
JG
2899 }
2900
2901 if (ret) {
2902 /* Fatal error. */
091fa780 2903 goto error_free_ht_element;
f2b3ef9f
JG
2904 }
2905
28ab034a 2906 DBG("Newly registered trigger's condition evaluated to %s", evaluation ? "true" : "false");
f2b3ef9f
JG
2907 if (!evaluation) {
2908 /* Evaluation yielded nothing. Normal exit. */
2909 ret = 0;
091fa780 2910 goto success;
2ae99f0b
JG
2911 }
2912
2913 /*
f2b3ef9f
JG
2914 * Ownership of `evaluation` transferred to the action executor
2915 * no matter the result.
2ae99f0b 2916 */
28ab034a
JG
2917 executor_status = action_executor_enqueue_trigger(
2918 state->executor, trigger, evaluation, &object_creds, client_list);
cd9adb8b 2919 evaluation = nullptr;
f2b3ef9f
JG
2920 switch (executor_status) {
2921 case ACTION_EXECUTOR_STATUS_OK:
2922 break;
2923 case ACTION_EXECUTOR_STATUS_ERROR:
2924 case ACTION_EXECUTOR_STATUS_INVALID:
2925 /*
2926 * TODO Add trigger identification (name/id) when
2927 * it is added to the API.
2928 */
2929 ERR("Fatal error occurred while enqueuing action associated to newly registered trigger");
2930 ret = -1;
091fa780 2931 goto error_free_ht_element;
f2b3ef9f
JG
2932 case ACTION_EXECUTOR_STATUS_OVERFLOW:
2933 /*
2934 * TODO Add trigger identification (name/id) when
2935 * it is added to the API.
2936 *
2937 * Not a fatal error.
2938 */
2939 WARN("No space left when enqueuing action associated to newly registered trigger");
2940 ret = 0;
091fa780 2941 goto success;
f2b3ef9f
JG
2942 default:
2943 abort();
2944 }
2ae99f0b 2945
091fa780 2946success:
ab0ee2ca 2947 *cmd_result = LTTNG_OK;
e6887944 2948 DBG("Registered trigger: name = `%s`, tracer token = %" PRIu64,
28ab034a
JG
2949 trigger_name,
2950 trigger_tracer_token);
091fa780 2951 goto end;
505b2d90 2952
ab0ee2ca 2953error_free_ht_element:
242388e4
JR
2954 if (trigger_ht_element) {
2955 /* Delayed removal due to RCU constraint on delete. */
28ab034a 2956 call_rcu(&trigger_ht_element->rcu_node, free_lttng_trigger_ht_element_rcu);
242388e4 2957 }
ab0ee2ca
JG
2958error:
2959 if (free_trigger) {
9c374932
JR
2960 /*
2961 * Other objects might have a reference to the trigger, mark it
2962 * as unregistered.
2963 */
2964 lttng_trigger_set_as_unregistered(trigger);
ab0ee2ca
JG
2965 lttng_trigger_destroy(trigger);
2966 }
091fa780 2967end:
ab0ee2ca
JG
2968 return ret;
2969}
2970
28ab034a 2971static void free_lttng_trigger_ht_element_rcu(struct rcu_head *node)
83b934ad 2972{
28ab034a 2973 free(caa_container_of(node, struct lttng_trigger_ht_element, rcu_node));
83b934ad
MD
2974}
2975
28ab034a 2976static void free_notification_trigger_tokens_ht_element_rcu(struct rcu_head *node)
e7c93cf9 2977{
28ab034a 2978 free(caa_container_of(node, struct notification_trigger_tokens_ht_element, rcu_node));
e7c93cf9
JR
2979}
2980
28ab034a
JG
2981static void teardown_tracer_notifier(struct notification_thread_state *state,
2982 const struct lttng_trigger *trigger)
6487ad53
FD
2983{
2984 struct cds_lfht_iter iter;
2985 struct notification_trigger_tokens_ht_element *trigger_tokens_ht_element;
2986
56047f5a
JG
2987 {
2988 lttng::urcu::read_lock_guard read_lock;
2989
2990 cds_lfht_for_each_entry (
2991 state->trigger_tokens_ht, &iter, trigger_tokens_ht_element, node) {
2992 if (!lttng_trigger_is_equal(trigger, trigger_tokens_ht_element->trigger)) {
2993 continue;
2994 }
6487ad53 2995
56047f5a
JG
2996 event_notifier_error_accounting_unregister_event_notifier(
2997 trigger_tokens_ht_element->trigger);
6487ad53 2998
56047f5a
JG
2999 /* TODO talk to all app and remove it */
3000 DBG("Removed trigger from tokens_ht");
3001 cds_lfht_del(state->trigger_tokens_ht, &trigger_tokens_ht_element->node);
6487ad53 3002
56047f5a
JG
3003 call_rcu(&trigger_tokens_ht_element->rcu_node,
3004 free_notification_trigger_tokens_ht_element_rcu);
6487ad53 3005
56047f5a
JG
3006 break;
3007 }
6487ad53
FD
3008 }
3009}
3010
28ab034a
JG
3011static void
3012remove_trigger_from_session_trigger_list(struct lttng_session_trigger_list *trigger_list,
3013 const struct lttng_trigger *trigger)
319dcddc
JG
3014{
3015 bool found = false;
3016 struct lttng_trigger_list_element *trigger_element, *tmp;
3017
3018 cds_list_for_each_entry_safe (trigger_element, tmp, &trigger_list->list, node) {
3019 if (!lttng_trigger_is_equal(trigger, trigger_element->trigger)) {
3020 continue;
3021 }
3022
3023 DBG("Removed trigger from session_triggers_ht");
3024 cds_list_del(&trigger_element->node);
3025 free(trigger_element);
3026 /* A trigger can only appear once per session. */
3027 found = true;
3028 break;
3029 }
3030
3031 if (!found) {
3032 ERR("Failed to find trigger associated with session: session name = `%s`",
28ab034a 3033 trigger_list->session_name);
319dcddc
JG
3034 }
3035
3036 LTTNG_ASSERT(found);
3037}
3038
28ab034a
JG
3039static int
3040handle_notification_thread_command_unregister_trigger(struct notification_thread_state *state,
3041 const struct lttng_trigger *trigger,
3042 enum lttng_error_code *_cmd_reply)
ab0ee2ca
JG
3043{
3044 struct cds_lfht_iter iter;
ed327204 3045 struct cds_lfht_node *triggers_ht_node;
ab0ee2ca 3046 struct notification_client_list *client_list;
cd9adb8b 3047 struct lttng_trigger_ht_element *trigger_ht_element = nullptr;
28ab034a 3048 const struct lttng_condition *condition = lttng_trigger_get_const_condition(trigger);
ab0ee2ca
JG
3049 enum lttng_error_code cmd_reply;
3050
56047f5a 3051 lttng::urcu::read_lock_guard read_lock;
ab0ee2ca 3052
28ab034a
JG
3053 cds_lfht_lookup(
3054 state->triggers_ht, lttng_condition_hash(condition), match_trigger, trigger, &iter);
ab0ee2ca
JG
3055 triggers_ht_node = cds_lfht_iter_get_node(&iter);
3056 if (!triggers_ht_node) {
3057 cmd_reply = LTTNG_ERR_TRIGGER_NOT_FOUND;
3058 goto end;
3059 } else {
3060 cmd_reply = LTTNG_OK;
3061 }
3062
28ab034a
JG
3063 trigger_ht_element =
3064 caa_container_of(triggers_ht_node, struct lttng_trigger_ht_element, node);
9c374932 3065
319dcddc
JG
3066 switch (get_condition_binding_object(condition)) {
3067 case LTTNG_OBJECT_TYPE_CHANNEL:
3068 {
3069 struct lttng_channel_trigger_list *trigger_list;
ab0ee2ca 3070
319dcddc
JG
3071 /*
3072 * Remove trigger from channel_triggers_ht.
3073 *
3074 * Note that multiple channels may have matched the trigger's
3075 * condition (e.g. all instances of a given channel in per-pid buffering
3076 * mode).
3077 *
3078 * Iterate on all lists since we don't know the target channels' keys.
3079 */
28ab034a
JG
3080 cds_lfht_for_each_entry (
3081 state->channel_triggers_ht, &iter, trigger_list, channel_triggers_ht_node) {
319dcddc
JG
3082 struct lttng_trigger_list_element *trigger_element, *tmp;
3083
28ab034a
JG
3084 cds_list_for_each_entry_safe (
3085 trigger_element, tmp, &trigger_list->list, node) {
319dcddc
JG
3086 if (!lttng_trigger_is_equal(trigger, trigger_element->trigger)) {
3087 continue;
3088 }
3089
3090 DBG("Removed trigger from channel_triggers_ht");
3091 cds_list_del(&trigger_element->node);
6dcdb62c 3092 free(trigger_element);
319dcddc
JG
3093 /* A trigger can only appear once per channel */
3094 break;
ab0ee2ca 3095 }
319dcddc
JG
3096 }
3097 break;
3098 }
3099 case LTTNG_OBJECT_TYPE_SESSION:
3100 {
28ab034a
JG
3101 auto session =
3102 get_session_info_by_name(state, get_condition_session_name(condition));
ab0ee2ca 3103
319dcddc
JG
3104 /* Session doesn't exist, no trigger to remove. */
3105 if (!session) {
e4db5ace 3106 break;
ab0ee2ca 3107 }
319dcddc
JG
3108
3109 auto session_trigger_list = get_session_trigger_list(state, session->name);
3110 remove_trigger_from_session_trigger_list(session_trigger_list, trigger);
3111 session_info_put(session);
3112 }
3113 case LTTNG_OBJECT_TYPE_NONE:
3114 break;
3115 default:
3116 abort();
ab0ee2ca
JG
3117 }
3118
6487ad53
FD
3119 if (lttng_trigger_needs_tracer_notifier(trigger)) {
3120 teardown_tracer_notifier(state, trigger);
e7c93cf9
JR
3121 }
3122
51367634
JR
3123 if (is_trigger_action_notify(trigger)) {
3124 /*
3125 * Remove and release the client list from
3126 * notification_trigger_clients_ht.
3127 */
3128 client_list = get_client_list_from_condition(state, condition);
a0377dfe 3129 LTTNG_ASSERT(client_list);
ed327204 3130
091fa780
FD
3131 pthread_mutex_lock(&client_list->lock);
3132 cds_list_del(&trigger_ht_element->client_list_trigger_node);
3133 pthread_mutex_unlock(&client_list->lock);
3134
51367634
JR
3135 /* Put new reference and the hashtable's reference. */
3136 notification_client_list_put(client_list);
3137 notification_client_list_put(client_list);
cd9adb8b 3138 client_list = nullptr;
51367634 3139 }
ab0ee2ca 3140
2758e38b
FD
3141 /* Remove trigger from triggers_ht. */
3142 notif_thread_state_remove_trigger_ht_elem(state, trigger_ht_element);
ab0ee2ca 3143
7ca172c1 3144 /* Release the ownership of the trigger. */
ab0ee2ca 3145 lttng_trigger_destroy(trigger_ht_element->trigger);
83b934ad 3146 call_rcu(&trigger_ht_element->rcu_node, free_lttng_trigger_ht_element_rcu);
ab0ee2ca 3147end:
ab0ee2ca
JG
3148 if (_cmd_reply) {
3149 *_cmd_reply = cmd_reply;
3150 }
3151 return 0;
3152}
3153
28ab034a
JG
3154static int pop_cmd_queue(struct notification_thread_handle *handle,
3155 struct notification_thread_command **cmd)
f370852f
JR
3156{
3157 int ret;
3158 uint64_t counter;
3159
3160 pthread_mutex_lock(&handle->cmd_queue.lock);
3161 ret = lttng_read(handle->cmd_queue.event_fd, &counter, sizeof(counter));
3162 if (ret != sizeof(counter)) {
3163 ret = -1;
3164 goto error_unlock;
3165 }
3166
28ab034a
JG
3167 *cmd = cds_list_first_entry(
3168 &handle->cmd_queue.list, struct notification_thread_command, cmd_list_node);
f370852f
JR
3169 cds_list_del(&((*cmd)->cmd_list_node));
3170 ret = 0;
3171
3172error_unlock:
3173 pthread_mutex_unlock(&handle->cmd_queue.lock);
3174 return ret;
3175}
3176
ab0ee2ca 3177/* Returns 0 on success, 1 on exit requested, negative value on error. */
28ab034a
JG
3178int handle_notification_thread_command(struct notification_thread_handle *handle,
3179 struct notification_thread_state *state)
ab0ee2ca
JG
3180{
3181 int ret;
ab0ee2ca
JG
3182 struct notification_thread_command *cmd;
3183
f370852f
JR
3184 ret = pop_cmd_queue(handle, &cmd);
3185 if (ret) {
ab0ee2ca
JG
3186 goto error;
3187 }
3188
28ab034a 3189 DBG("Received `%s` command", notification_command_type_str(cmd->type));
ab0ee2ca
JG
3190 switch (cmd->type) {
3191 case NOTIFICATION_COMMAND_TYPE_REGISTER_TRIGGER:
28ab034a
JG
3192 ret = handle_notification_thread_command_register_trigger(
3193 state,
3194 cmd->parameters.register_trigger.trigger,
3195 cmd->parameters.register_trigger.is_trigger_anonymous,
3196 &cmd->reply_code);
ab0ee2ca
JG
3197 break;
3198 case NOTIFICATION_COMMAND_TYPE_UNREGISTER_TRIGGER:
ab0ee2ca 3199 ret = handle_notification_thread_command_unregister_trigger(
28ab034a 3200 state, cmd->parameters.unregister_trigger.trigger, &cmd->reply_code);
ab0ee2ca
JG
3201 break;
3202 case NOTIFICATION_COMMAND_TYPE_ADD_CHANNEL:
ab0ee2ca 3203 ret = handle_notification_thread_command_add_channel(
28ab034a
JG
3204 state,
3205 cmd->parameters.add_channel.session.id,
3206 cmd->parameters.add_channel.channel.name,
3207 cmd->parameters.add_channel.channel.domain,
3208 cmd->parameters.add_channel.channel.key,
3209 cmd->parameters.add_channel.channel.capacity,
3210 &cmd->reply_code);
ab0ee2ca
JG
3211 break;
3212 case NOTIFICATION_COMMAND_TYPE_REMOVE_CHANNEL:
ab0ee2ca 3213 ret = handle_notification_thread_command_remove_channel(
28ab034a
JG
3214 state,
3215 cmd->parameters.remove_channel.key,
3216 cmd->parameters.remove_channel.domain,
3217 &cmd->reply_code);
ab0ee2ca 3218 break;
139a8d25 3219 case NOTIFICATION_COMMAND_TYPE_ADD_SESSION:
28ab034a
JG
3220 ret = handle_notification_thread_command_add_session(
3221 state,
3222 cmd->parameters.add_session.session_id,
3223 cmd->parameters.add_session.session_name,
3224 cmd->parameters.add_session.session_uid,
3225 cmd->parameters.add_session.session_gid,
3226 &cmd->reply_code);
139a8d25
JG
3227 break;
3228 case NOTIFICATION_COMMAND_TYPE_REMOVE_SESSION:
3229 ret = handle_notification_thread_command_remove_session(
28ab034a 3230 state, cmd->parameters.remove_session.session_id, &cmd->reply_code);
139a8d25 3231 break;
0ca52944 3232 case NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_ONGOING:
0ca52944 3233 case NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_COMPLETED:
ed327204 3234 ret = handle_notification_thread_command_session_rotation(
28ab034a
JG
3235 state,
3236 cmd->type,
3237 cmd->parameters.session_rotation.session_id,
3238 cmd->parameters.session_rotation.trace_archive_chunk_id,
3239 cmd->parameters.session_rotation.location,
3240 &cmd->reply_code);
0ca52944 3241 break;
d02d7404
JR
3242 case NOTIFICATION_COMMAND_TYPE_ADD_TRACER_EVENT_SOURCE:
3243 ret = handle_notification_thread_command_add_tracer_event_source(
28ab034a
JG
3244 state,
3245 cmd->parameters.tracer_event_source.tracer_event_source_fd,
3246 cmd->parameters.tracer_event_source.domain,
3247 &cmd->reply_code);
d02d7404
JR
3248 break;
3249 case NOTIFICATION_COMMAND_TYPE_REMOVE_TRACER_EVENT_SOURCE:
3250 ret = handle_notification_thread_command_remove_tracer_event_source(
28ab034a
JG
3251 state,
3252 cmd->parameters.tracer_event_source.tracer_event_source_fd,
3253 &cmd->reply_code);
d02d7404 3254 break;
fbc9f37d
JR
3255 case NOTIFICATION_COMMAND_TYPE_LIST_TRIGGERS:
3256 {
cd9adb8b 3257 struct lttng_triggers *triggers = nullptr;
fbc9f37d
JR
3258
3259 ret = handle_notification_thread_command_list_triggers(
28ab034a
JG
3260 handle,
3261 state,
3262 cmd->parameters.list_triggers.uid,
3263 &triggers,
3264 &cmd->reply_code);
fbc9f37d
JR
3265 cmd->reply.list_triggers.triggers = triggers;
3266 ret = 0;
3267 break;
3268 }
ab0ee2ca 3269 case NOTIFICATION_COMMAND_TYPE_QUIT:
ab0ee2ca
JG
3270 cmd->reply_code = LTTNG_OK;
3271 ret = 1;
3272 goto end;
8790759c
FD
3273 case NOTIFICATION_COMMAND_TYPE_GET_TRIGGER:
3274 {
cd9adb8b 3275 struct lttng_trigger *trigger = nullptr;
8790759c 3276
28ab034a
JG
3277 ret = handle_notification_thread_command_get_trigger(
3278 state, cmd->parameters.get_trigger.trigger, &trigger, &cmd->reply_code);
8790759c
FD
3279 cmd->reply.get_trigger.trigger = trigger;
3280 break;
3281 }
f2b3ef9f
JG
3282 case NOTIFICATION_COMMAND_TYPE_CLIENT_COMMUNICATION_UPDATE:
3283 {
3284 const enum client_transmission_status client_status =
28ab034a 3285 cmd->parameters.client_communication_update.status;
f2b3ef9f 3286 const notification_client_id client_id =
28ab034a 3287 cmd->parameters.client_communication_update.id;
f2b3ef9f
JG
3288 struct notification_client *client;
3289
56047f5a 3290 lttng::urcu::read_lock_guard read_lock;
f2b3ef9f
JG
3291 client = get_client_from_id(client_id, state);
3292
3293 if (!client) {
3294 /*
3295 * Client error was probably already picked-up by the
3296 * notification thread or it has disconnected
3297 * gracefully while this command was queued.
3298 */
3299 DBG("Failed to find notification client to update communication status, client id = %" PRIu64,
28ab034a 3300 client_id);
f2b3ef9f
JG
3301 ret = 0;
3302 } else {
28ab034a 3303 ret = client_handle_transmission_status(client, client_status, state);
f2b3ef9f 3304 }
f2b3ef9f
JG
3305 break;
3306 }
ab0ee2ca 3307 default:
bd0514a5 3308 ERR("Unknown internal command received");
ab0ee2ca
JG
3309 goto error_unlock;
3310 }
3311
3312 if (ret) {
3313 goto error_unlock;
3314 }
3315end:
0ab399e0
JG
3316 if (cmd->is_async) {
3317 free(cmd);
cd9adb8b 3318 cmd = nullptr;
0ab399e0
JG
3319 } else {
3320 lttng_waiter_wake_up(&cmd->reply_waiter);
3321 }
ab0ee2ca
JG
3322 return ret;
3323error_unlock:
3324 /* Wake-up and return a fatal error to the calling thread. */
8ada111f 3325 lttng_waiter_wake_up(&cmd->reply_waiter);
ab0ee2ca
JG
3326 cmd->reply_code = LTTNG_ERR_FATAL;
3327error:
3328 /* Indicate a fatal error to the caller. */
3329 return -1;
3330}
3331
28ab034a 3332static int socket_set_non_blocking(int socket)
ab0ee2ca
JG
3333{
3334 int ret, flags;
3335
3336 /* Set the pipe as non-blocking. */
3337 ret = fcntl(socket, F_GETFL, 0);
3338 if (ret == -1) {
3339 PERROR("fcntl get socket flags");
3340 goto end;
3341 }
3342 flags = ret;
3343
3344 ret = fcntl(socket, F_SETFL, flags | O_NONBLOCK);
3345 if (ret == -1) {
3346 PERROR("fcntl set O_NONBLOCK socket flag");
3347 goto end;
3348 }
3349 DBG("Client socket (fd = %i) set as non-blocking", socket);
3350end:
3351 return ret;
3352}
3353
28ab034a 3354static int client_reset_inbound_state(struct notification_client *client)
ab0ee2ca
JG
3355{
3356 int ret;
3357
882093ee 3358 lttng_payload_clear(&client->communication.inbound.payload);
ab0ee2ca
JG
3359
3360 client->communication.inbound.bytes_to_receive =
28ab034a
JG
3361 sizeof(struct lttng_notification_channel_message);
3362 client->communication.inbound.msg_type = LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_UNKNOWN;
ab0ee2ca
JG
3363 LTTNG_SOCK_SET_UID_CRED(&client->communication.inbound.creds, -1);
3364 LTTNG_SOCK_SET_GID_CRED(&client->communication.inbound.creds, -1);
28ab034a
JG
3365 ret = lttng_dynamic_buffer_set_size(&client->communication.inbound.payload.buffer,
3366 client->communication.inbound.bytes_to_receive);
882093ee 3367
14fa22f8 3368 return ret;
ab0ee2ca
JG
3369}
3370
28ab034a 3371int handle_notification_thread_client_connect(struct notification_thread_state *state)
ab0ee2ca
JG
3372{
3373 int ret;
3374 struct notification_client *client;
3375
bd0514a5 3376 DBG("Handling new notification channel client connection");
ab0ee2ca 3377
64803277 3378 client = zmalloc<notification_client>();
ab0ee2ca
JG
3379 if (!client) {
3380 /* Fatal error. */
3381 ret = -1;
3382 goto error;
3383 }
6c24d3fd 3384
cd9adb8b 3385 pthread_mutex_init(&client->lock, nullptr);
ac1889bf 3386 client->id = state->next_notification_client_id++;
ab0ee2ca 3387 CDS_INIT_LIST_HEAD(&client->condition_list);
882093ee
JR
3388 lttng_payload_init(&client->communication.inbound.payload);
3389 lttng_payload_init(&client->communication.outbound.payload);
01ea340e 3390 client->communication.inbound.expect_creds = true;
505b2d90 3391
14fa22f8
JG
3392 ret = client_reset_inbound_state(client);
3393 if (ret) {
bd0514a5 3394 ERR("Failed to reset client communication's inbound state");
e742b055 3395 ret = 0;
14fa22f8
JG
3396 goto error;
3397 }
ab0ee2ca
JG
3398
3399 ret = lttcomm_accept_unix_sock(state->notification_channel_socket);
3400 if (ret < 0) {
bd0514a5 3401 ERR("Failed to accept new notification channel client connection");
ab0ee2ca
JG
3402 ret = 0;
3403 goto error;
3404 }
3405
3406 client->socket = ret;
3407
3408 ret = socket_set_non_blocking(client->socket);
3409 if (ret) {
bd0514a5 3410 ERR("Failed to set new notification channel client connection socket as non-blocking");
ab0ee2ca
JG
3411 goto error;
3412 }
3413
3414 ret = lttcomm_setsockopt_creds_unix_sock(client->socket);
3415 if (ret < 0) {
bd0514a5 3416 ERR("Failed to set socket options on new notification channel client socket");
ab0ee2ca
JG
3417 ret = 0;
3418 goto error;
3419 }
3420
9016dbfc 3421 client->communication.current_poll_events = CLIENT_POLL_EVENTS_IN;
28ab034a
JG
3422 ret = lttng_poll_add(
3423 &state->events, client->socket, client->communication.current_poll_events);
ab0ee2ca 3424 if (ret < 0) {
bd0514a5 3425 ERR("Failed to add notification channel client socket to poll set");
ab0ee2ca
JG
3426 ret = 0;
3427 goto error;
3428 }
28ab034a 3429 DBG("Added new notification channel client socket (%i) to poll set", client->socket);
ab0ee2ca 3430
56047f5a
JG
3431 {
3432 lttng::urcu::read_lock_guard read_lock;
3433
3434 cds_lfht_add(state->client_socket_ht,
3435 hash_client_socket(client->socket),
3436 &client->client_socket_ht_node);
3437 cds_lfht_add(state->client_id_ht,
3438 hash_client_id(client->id),
3439 &client->client_id_ht_node);
3440 }
ab0ee2ca
JG
3441
3442 return ret;
6c24d3fd 3443
ab0ee2ca 3444error:
f46376a1 3445 notification_client_destroy(client);
ab0ee2ca
JG
3446 return ret;
3447}
3448
6c24d3fd
JG
3449/*
3450 * RCU read-lock must be held by the caller.
3451 * Client lock must _not_ be held by the caller.
3452 */
28ab034a
JG
3453static int notification_thread_client_disconnect(struct notification_client *client,
3454 struct notification_thread_state *state)
505b2d90
JG
3455{
3456 int ret;
3457 struct lttng_condition_list_element *condition_list_element, *tmp;
3458
48b7cdc2
FD
3459 ASSERT_RCU_READ_LOCKED();
3460
505b2d90 3461 /* Acquire the client lock to disable its communication atomically. */
6c24d3fd 3462 pthread_mutex_lock(&client->lock);
505b2d90 3463 client->communication.active = false;
6c24d3fd
JG
3464 cds_lfht_del(state->client_socket_ht, &client->client_socket_ht_node);
3465 cds_lfht_del(state->client_id_ht, &client->client_id_ht_node);
3466 pthread_mutex_unlock(&client->lock);
3467
505b2d90
JG
3468 ret = lttng_poll_del(&state->events, client->socket);
3469 if (ret) {
28ab034a 3470 ERR("Failed to remove client socket %d from poll set", client->socket);
505b2d90
JG
3471 }
3472
505b2d90 3473 /* Release all conditions to which the client was subscribed. */
28ab034a
JG
3474 cds_list_for_each_entry_safe (condition_list_element, tmp, &client->condition_list, node) {
3475 (void) notification_thread_client_unsubscribe(
cd9adb8b 3476 client, condition_list_element->condition, state, nullptr);
505b2d90
JG
3477 }
3478
3479 /*
3480 * Client no longer accessible to other threads (through the
3481 * client lists).
3482 */
f46376a1 3483 notification_client_destroy(client);
505b2d90
JG
3484 return ret;
3485}
3486
28ab034a
JG
3487int handle_notification_thread_client_disconnect(int client_socket,
3488 struct notification_thread_state *state)
ab0ee2ca
JG
3489{
3490 int ret = 0;
3491 struct notification_client *client;
3492
56047f5a
JG
3493 lttng::urcu::read_lock_guard read_lock;
3494
28ab034a 3495 DBG("Closing client connection (socket fd = %i)", client_socket);
ab0ee2ca
JG
3496 client = get_client_from_socket(client_socket, state);
3497 if (!client) {
3498 /* Internal state corruption, fatal error. */
28ab034a 3499 ERR("Unable to find client (socket fd = %i)", client_socket);
ab0ee2ca
JG
3500 ret = -1;
3501 goto end;
3502 }
3503
505b2d90 3504 ret = notification_thread_client_disconnect(client, state);
ab0ee2ca 3505end:
ab0ee2ca
JG
3506 return ret;
3507}
3508
28ab034a 3509int handle_notification_thread_client_disconnect_all(struct notification_thread_state *state)
ab0ee2ca
JG
3510{
3511 struct cds_lfht_iter iter;
3512 struct notification_client *client;
3513 bool error_encoutered = false;
3514
bd0514a5 3515 DBG("Closing all client connections");
ab0ee2ca 3516
56047f5a
JG
3517 {
3518 lttng::urcu::read_lock_guard read_lock;
3519
3520 cds_lfht_for_each_entry (
3521 state->client_socket_ht, &iter, client, client_socket_ht_node) {
3522 int ret;
3523
3524 ret = notification_thread_client_disconnect(client, state);
3525 if (ret) {
3526 error_encoutered = true;
3527 }
ab0ee2ca
JG
3528 }
3529 }
56047f5a 3530
ab0ee2ca
JG
3531 return error_encoutered ? 1 : 0;
3532}
3533
28ab034a 3534int handle_notification_thread_trigger_unregister_all(struct notification_thread_state *state)
ab0ee2ca 3535{
4149ace8 3536 bool error_occurred = false;
ab0ee2ca
JG
3537 struct cds_lfht_iter iter;
3538 struct lttng_trigger_ht_element *trigger_ht_element;
3539
56047f5a 3540 lttng::urcu::read_lock_guard read_lock;
28ab034a 3541 cds_lfht_for_each_entry (state->triggers_ht, &iter, trigger_ht_element, node) {
ab0ee2ca 3542 int ret = handle_notification_thread_command_unregister_trigger(
cd9adb8b 3543 state, trigger_ht_element->trigger, nullptr);
ab0ee2ca 3544 if (ret) {
4149ace8 3545 error_occurred = true;
ab0ee2ca
JG
3546 }
3547 }
4149ace8 3548 return error_occurred ? -1 : 0;
ab0ee2ca
JG
3549}
3550
28ab034a 3551static bool client_has_outbound_data_left(const struct notification_client *client)
9016dbfc 3552{
28ab034a
JG
3553 const struct lttng_payload_view pv =
3554 lttng_payload_view_from_payload(&client->communication.outbound.payload, 0, -1);
9016dbfc
JG
3555 const bool has_data = pv.buffer.size != 0;
3556 const bool has_fds = lttng_payload_view_get_fd_handle_count(&pv);
3557
3558 return has_data || has_fds;
3559}
3560
28ab034a
JG
3561static int client_handle_transmission_status(struct notification_client *client,
3562 enum client_transmission_status transmission_status,
3563 struct notification_thread_state *state)
dd877ea6
JG
3564{
3565 int ret = 0;
3566
3567 switch (transmission_status) {
3568 case CLIENT_TRANSMISSION_STATUS_COMPLETE:
dd877ea6 3569 case CLIENT_TRANSMISSION_STATUS_QUEUED:
9016dbfc
JG
3570 {
3571 int current_poll_events;
3572 int new_poll_events;
dd877ea6
JG
3573 /*
3574 * We want to be notified whenever there is buffer space
9016dbfc
JG
3575 * available to send the rest of the payload if we are
3576 * waiting to send data to the client.
3577 *
3578 * The state of the outbound queue being sampled here is
3579 * fine since:
3580 * - it is okay to wake-up "for nothing" in case we see
3581 * that data is left, but another thread succeeds in
3582 * flushing it before us when handling the client "out"
3583 * event. We will simply stop monitoring that event the next
3584 * time it wakes us up and we see no data left to be sent,
3585 * - if another thread fails to flush the entire client
3586 * outgoing queue, it will issue a "communication update"
3587 * command and cause the client's (e)poll mask to be
3588 * re-evaluated.
3589 *
3590 * The situation we seek to avoid would be to disable the
3591 * monitoring of "out" client events indefinitely when there is
3592 * data to be sent, which can't happen because of the
3593 * aforementioned "communication update" mechanism.
dd877ea6 3594 */
9016dbfc
JG
3595 pthread_mutex_lock(&client->lock);
3596 current_poll_events = client->communication.current_poll_events;
3597 new_poll_events = client_has_outbound_data_left(client) ?
28ab034a
JG
3598 CLIENT_POLL_EVENTS_IN_OUT :
3599 CLIENT_POLL_EVENTS_IN;
9016dbfc
JG
3600 client->communication.current_poll_events = new_poll_events;
3601 pthread_mutex_unlock(&client->lock);
3602
3603 /* Update the monitored event set only if it changed. */
3604 if (current_poll_events != new_poll_events) {
28ab034a 3605 ret = lttng_poll_mod(&state->events, client->socket, new_poll_events);
9016dbfc
JG
3606 if (ret) {
3607 goto end;
3608 }
dd877ea6 3609 }
9016dbfc 3610
dd877ea6 3611 break;
9016dbfc 3612 }
dd877ea6
JG
3613 case CLIENT_TRANSMISSION_STATUS_FAIL:
3614 ret = notification_thread_client_disconnect(client, state);
3615 if (ret) {
3616 goto end;
3617 }
3618 break;
3619 case CLIENT_TRANSMISSION_STATUS_ERROR:
3620 ret = -1;
3621 goto end;
3622 default:
3623 abort();
3624 }
3625end:
3626 return ret;
3627}
3628
505b2d90 3629/* Client lock must be acquired by caller. */
28ab034a
JG
3630static enum client_transmission_status
3631client_flush_outgoing_queue(struct notification_client *client)
ab0ee2ca
JG
3632{
3633 ssize_t ret;
3634 size_t to_send_count;
dd877ea6 3635 enum client_transmission_status status;
28ab034a
JG
3636 struct lttng_payload_view pv =
3637 lttng_payload_view_from_payload(&client->communication.outbound.payload, 0, -1);
3638 const int fds_to_send_count = lttng_payload_view_get_fd_handle_count(&pv);
ab0ee2ca 3639
505b2d90
JG
3640 ASSERT_LOCKED(client->lock);
3641
f2b3ef9f
JG
3642 if (!client->communication.active) {
3643 status = CLIENT_TRANSMISSION_STATUS_FAIL;
3644 goto end;
3645 }
3646
882093ee
JR
3647 if (pv.buffer.size == 0) {
3648 /*
3649 * If both data and fds are equal to zero, we are in an invalid
3650 * state.
3651 */
a0377dfe 3652 LTTNG_ASSERT(fds_to_send_count != 0);
882093ee
JR
3653 goto send_fds;
3654 }
3655
3656 /* Send data. */
3657 to_send_count = pv.buffer.size;
28ab034a 3658 DBG("Flushing client (socket fd = %i) outgoing queue", client->socket);
ab0ee2ca 3659
28ab034a 3660 ret = lttcomm_send_unix_sock_non_block(client->socket, pv.buffer.data, to_send_count);
44c180ca 3661 if ((ret >= 0 && ret < to_send_count)) {
bd0514a5 3662 DBG("Client (socket fd = %i) outgoing queue could not be completely flushed",
28ab034a 3663 client->socket);
7966af57 3664 to_send_count -= std::max(ret, (ssize_t) 0);
ab0ee2ca 3665
6f110534 3666 memmove(client->communication.outbound.payload.buffer.data,
28ab034a
JG
3667 pv.buffer.data + pv.buffer.size - to_send_count,
3668 to_send_count);
3669 ret = lttng_dynamic_buffer_set_size(&client->communication.outbound.payload.buffer,
3670 to_send_count);
ab0ee2ca
JG
3671 if (ret) {
3672 goto error;
3673 }
6c24d3fd 3674
dd877ea6 3675 status = CLIENT_TRANSMISSION_STATUS_QUEUED;
882093ee 3676 goto end;
ab0ee2ca 3677 } else if (ret < 0) {
6c24d3fd 3678 /* Generic error, disable the client's communication. */
bd0514a5 3679 ERR("Failed to flush outgoing queue, disconnecting client (socket fd = %i)",
28ab034a 3680 client->socket);
6c24d3fd 3681 client->communication.active = false;
dd877ea6 3682 status = CLIENT_TRANSMISSION_STATUS_FAIL;
882093ee 3683 goto end;
ab0ee2ca 3684 } else {
882093ee
JR
3685 /*
3686 * No error and flushed the queue completely.
3687 *
3688 * The payload buffer size is used later to
3689 * check if there is notifications queued. So albeit that the
3690 * direct caller knows that the transmission is complete, we
3691 * need to set the buffer size to zero.
3692 */
28ab034a
JG
3693 ret = lttng_dynamic_buffer_set_size(&client->communication.outbound.payload.buffer,
3694 0);
ab0ee2ca
JG
3695 if (ret) {
3696 goto error;
3697 }
882093ee 3698 }
6c24d3fd 3699
882093ee
JR
3700send_fds:
3701 /* No fds to send, transmission is complete. */
3702 if (fds_to_send_count == 0) {
dd877ea6 3703 status = CLIENT_TRANSMISSION_STATUS_COMPLETE;
882093ee 3704 goto end;
dd877ea6 3705 }
882093ee 3706
28ab034a 3707 ret = lttcomm_send_payload_view_fds_unix_sock_non_block(client->socket, &pv);
882093ee
JR
3708 if (ret < 0) {
3709 /* Generic error, disable the client's communication. */
bd0514a5 3710 ERR("Failed to flush outgoing fds queue, disconnecting client (socket fd = %i)",
28ab034a 3711 client->socket);
882093ee
JR
3712 client->communication.active = false;
3713 status = CLIENT_TRANSMISSION_STATUS_FAIL;
3714 goto end;
3715 } else if (ret == 0) {
3716 /* Nothing could be sent. */
3717 status = CLIENT_TRANSMISSION_STATUS_QUEUED;
3718 } else {
3719 /* Fd passing is an all or nothing kind of thing. */
3720 status = CLIENT_TRANSMISSION_STATUS_COMPLETE;
3721 /*
3722 * The payload _fd_array count is used later to
3723 * check if there is notifications queued. So although the
3724 * direct caller knows that the transmission is complete, we
3725 * need to clear the _fd_array for the queuing check.
3726 */
3727 lttng_dynamic_pointer_array_clear(
28ab034a 3728 &client->communication.outbound.payload._fd_handles);
882093ee
JR
3729 }
3730
f2b3ef9f 3731end:
882093ee
JR
3732 if (status == CLIENT_TRANSMISSION_STATUS_COMPLETE) {
3733 client->communication.outbound.queued_command_reply = false;
3734 client->communication.outbound.dropped_notification = false;
3735 lttng_payload_clear(&client->communication.outbound.payload);
3736 }
3737
f2b3ef9f 3738 return status;
ab0ee2ca 3739error:
f2b3ef9f 3740 return CLIENT_TRANSMISSION_STATUS_ERROR;
ab0ee2ca
JG
3741}
3742
6c24d3fd 3743/* Client lock must _not_ be held by the caller. */
28ab034a
JG
3744static int client_send_command_reply(struct notification_client *client,
3745 struct notification_thread_state *state,
3746 enum lttng_notification_channel_status status)
ab0ee2ca
JG
3747{
3748 int ret;
3749 struct lttng_notification_channel_command_reply reply = {
3750 .status = (int8_t) status,
3751 };
6bd79809 3752 struct lttng_notification_channel_message msg;
ab0ee2ca 3753 char buffer[sizeof(msg) + sizeof(reply)];
f2b3ef9f 3754 enum client_transmission_status transmission_status;
ab0ee2ca 3755
6bd79809
JG
3756 msg.type = (int8_t) LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_COMMAND_REPLY;
3757 msg.size = sizeof(reply);
3758 msg.fds = 0;
3759
6c24d3fd
JG
3760 memcpy(buffer, &msg, sizeof(msg));
3761 memcpy(buffer + sizeof(msg), &reply, sizeof(reply));
bd0514a5 3762 DBG("Send command reply (%i)", (int) status);
505b2d90 3763
6c24d3fd 3764 pthread_mutex_lock(&client->lock);
ab0ee2ca
JG
3765 if (client->communication.outbound.queued_command_reply) {
3766 /* Protocol error. */
6c24d3fd 3767 goto error_unlock;
ab0ee2ca
JG
3768 }
3769
ab0ee2ca
JG
3770 /* Enqueue buffer to outgoing queue and flush it. */
3771 ret = lttng_dynamic_buffer_append(
28ab034a 3772 &client->communication.outbound.payload.buffer, buffer, sizeof(buffer));
ab0ee2ca 3773 if (ret) {
6c24d3fd 3774 goto error_unlock;
ab0ee2ca
JG
3775 }
3776
f2b3ef9f 3777 transmission_status = client_flush_outgoing_queue(client);
882093ee
JR
3778
3779 if (client_has_outbound_data_left(client)) {
6c24d3fd
JG
3780 /* Queue could not be emptied. */
3781 client->communication.outbound.queued_command_reply = true;
3782 }
3783
3784 pthread_mutex_unlock(&client->lock);
28ab034a 3785 ret = client_handle_transmission_status(client, transmission_status, state);
ab0ee2ca
JG
3786 if (ret) {
3787 goto error;
3788 }
3789
ab0ee2ca 3790 return 0;
6c24d3fd
JG
3791error_unlock:
3792 pthread_mutex_unlock(&client->lock);
ab0ee2ca
JG
3793error:
3794 return -1;
3795}
3796
28ab034a
JG
3797static int client_handle_message_unknown(struct notification_client *client,
3798 struct notification_thread_state *state
3799 __attribute__((unused)))
505b2d90
JG
3800{
3801 int ret;
505b2d90
JG
3802 /*
3803 * Receiving message header. The function will be called again
3804 * once the rest of the message as been received and can be
3805 * interpreted.
3806 */
3807 const struct lttng_notification_channel_message *msg;
3808
a0377dfe 3809 LTTNG_ASSERT(sizeof(*msg) == client->communication.inbound.payload.buffer.size);
505b2d90 3810 msg = (const struct lttng_notification_channel_message *)
28ab034a 3811 client->communication.inbound.payload.buffer.data;
505b2d90 3812
28ab034a
JG
3813 if (msg->size == 0 || msg->size > DEFAULT_MAX_NOTIFICATION_CLIENT_MESSAGE_PAYLOAD_SIZE) {
3814 ERR("Invalid notification channel message: length = %u", msg->size);
505b2d90
JG
3815 ret = -1;
3816 goto end;
3817 }
3818
3819 switch (msg->type) {
3820 case LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_SUBSCRIBE:
3821 case LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_UNSUBSCRIBE:
3822 case LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_HANDSHAKE:
3823 break;
3824 default:
3825 ret = -1;
bd0514a5 3826 ERR("Invalid notification channel message: unexpected message type");
505b2d90
JG
3827 goto end;
3828 }
3829
3830 client->communication.inbound.bytes_to_receive = msg->size;
882093ee 3831 client->communication.inbound.fds_to_receive = msg->fds;
505b2d90 3832 client->communication.inbound.msg_type =
28ab034a
JG
3833 (enum lttng_notification_channel_message_type) msg->type;
3834 ret = lttng_dynamic_buffer_set_size(&client->communication.inbound.payload.buffer,
3835 msg->size);
882093ee
JR
3836
3837 /* msg is not valid anymore due to lttng_dynamic_buffer_set_size. */
cd9adb8b 3838 msg = nullptr;
505b2d90 3839end:
505b2d90
JG
3840 return ret;
3841}
3842
28ab034a
JG
3843static int client_handle_message_handshake(struct notification_client *client,
3844 struct notification_thread_state *state)
505b2d90
JG
3845{
3846 int ret;
3847 struct lttng_notification_channel_command_handshake *handshake_client;
3848 const struct lttng_notification_channel_command_handshake handshake_reply = {
28ab034a
JG
3849 .major = LTTNG_NOTIFICATION_CHANNEL_VERSION_MAJOR,
3850 .minor = LTTNG_NOTIFICATION_CHANNEL_VERSION_MINOR,
505b2d90 3851 };
6bd79809 3852 struct lttng_notification_channel_message msg_header;
28ab034a 3853 enum lttng_notification_channel_status status = LTTNG_NOTIFICATION_CHANNEL_STATUS_OK;
505b2d90 3854 char send_buffer[sizeof(msg_header) + sizeof(handshake_reply)];
505b2d90 3855
6bd79809
JG
3856 msg_header.type = LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_HANDSHAKE;
3857 msg_header.size = sizeof(handshake_reply);
3858 msg_header.fds = 0;
3859
505b2d90 3860 memcpy(send_buffer, &msg_header, sizeof(msg_header));
28ab034a 3861 memcpy(send_buffer + sizeof(msg_header), &handshake_reply, sizeof(handshake_reply));
505b2d90 3862
28ab034a
JG
3863 handshake_client = (struct lttng_notification_channel_command_handshake *)
3864 client->communication.inbound.payload.buffer.data;
505b2d90
JG
3865 client->major = handshake_client->major;
3866 client->minor = handshake_client->minor;
3867 if (!client->communication.inbound.creds_received) {
bd0514a5 3868 ERR("No credentials received from client");
505b2d90
JG
3869 ret = -1;
3870 goto end;
3871 }
3872
28ab034a
JG
3873 client->uid = LTTNG_SOCK_GET_UID_CRED(&client->communication.inbound.creds);
3874 client->gid = LTTNG_SOCK_GET_GID_CRED(&client->communication.inbound.creds);
3875 client->is_sessiond = LTTNG_SOCK_GET_PID_CRED(&client->communication.inbound.creds) ==
3876 getpid();
f2bda80e 3877 DBG("Received handshake from client: uid = %u, gid = %u, protocol version = %i.%i, client is sessiond = %s",
28ab034a
JG
3878 client->uid,
3879 client->gid,
3880 (int) client->major,
3881 (int) client->minor,
3882 client->is_sessiond ? "true" : "false");
505b2d90 3883
28ab034a 3884 if (handshake_client->major != LTTNG_NOTIFICATION_CHANNEL_VERSION_MAJOR) {
505b2d90
JG
3885 status = LTTNG_NOTIFICATION_CHANNEL_STATUS_UNSUPPORTED_VERSION;
3886 }
3887
6c24d3fd
JG
3888 pthread_mutex_lock(&client->lock);
3889 /* Outgoing queue will be flushed when the command reply is sent. */
505b2d90 3890 ret = lttng_dynamic_buffer_append(
28ab034a 3891 &client->communication.outbound.payload.buffer, send_buffer, sizeof(send_buffer));
505b2d90 3892 if (ret) {
bd0514a5 3893 ERR("Failed to send protocol version to notification channel client");
6c24d3fd 3894 goto end_unlock;
505b2d90
JG
3895 }
3896
3897 client->validated = true;
3898 client->communication.active = true;
6c24d3fd 3899 pthread_mutex_unlock(&client->lock);
505b2d90 3900
6c24d3fd
JG
3901 /* Set reception state to receive the next message header. */
3902 ret = client_reset_inbound_state(client);
505b2d90 3903 if (ret) {
bd0514a5 3904 ERR("Failed to reset client communication's inbound state");
505b2d90
JG
3905 goto end;
3906 }
3907
6c24d3fd 3908 /* Flushes the outgoing queue. */
505b2d90
JG
3909 ret = client_send_command_reply(client, state, status);
3910 if (ret) {
bd0514a5 3911 ERR("Failed to send reply to notification channel client");
505b2d90
JG
3912 goto end;
3913 }
3914
6c24d3fd
JG
3915 goto end;
3916end_unlock:
505b2d90 3917 pthread_mutex_unlock(&client->lock);
6c24d3fd 3918end:
505b2d90
JG
3919 return ret;
3920}
3921
28ab034a
JG
3922static int client_handle_message_subscription(struct notification_client *client,
3923 enum lttng_notification_channel_message_type msg_type,
3924 struct notification_thread_state *state)
505b2d90
JG
3925{
3926 int ret;
3927 struct lttng_condition *condition;
28ab034a 3928 enum lttng_notification_channel_status status = LTTNG_NOTIFICATION_CHANNEL_STATUS_OK;
505b2d90 3929 struct lttng_payload_view condition_view =
28ab034a 3930 lttng_payload_view_from_payload(&client->communication.inbound.payload, 0, -1);
505b2d90
JG
3931 size_t expected_condition_size;
3932
6c24d3fd
JG
3933 /*
3934 * No need to lock client to sample the inbound state as the only
3935 * other thread accessing clients (action executor) only uses the
3936 * outbound state.
3937 */
882093ee 3938 expected_condition_size = client->communication.inbound.payload.buffer.size;
505b2d90
JG
3939 ret = lttng_condition_create_from_payload(&condition_view, &condition);
3940 if (ret != expected_condition_size) {
bd0514a5 3941 ERR("Malformed condition received from client");
505b2d90
JG
3942 goto end;
3943 }
3944
5a6306f7 3945 /* Ownership of condition is always transferred. */
505b2d90 3946 if (msg_type == LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_SUBSCRIBE) {
28ab034a 3947 ret = notification_thread_client_subscribe(client, condition, state, &status);
505b2d90 3948 } else {
28ab034a 3949 ret = notification_thread_client_unsubscribe(client, condition, state, &status);
505b2d90 3950 }
505b2d90 3951
505b2d90 3952 if (ret) {
6c24d3fd 3953 goto end;
505b2d90
JG
3954 }
3955
3956 /* Set reception state to receive the next message header. */
3957 ret = client_reset_inbound_state(client);
3958 if (ret) {
bd0514a5 3959 ERR("Failed to reset client communication's inbound state");
6c24d3fd
JG
3960 goto end;
3961 }
3962
3963 ret = client_send_command_reply(client, state, status);
3964 if (ret) {
bd0514a5 3965 ERR("Failed to send reply to notification channel client");
6c24d3fd 3966 goto end;
505b2d90
JG
3967 }
3968
505b2d90
JG
3969end:
3970 return ret;
3971}
3972
28ab034a
JG
3973static int client_dispatch_message(struct notification_client *client,
3974 struct notification_thread_state *state)
ab0ee2ca
JG
3975{
3976 int ret = 0;
3977
3978 if (client->communication.inbound.msg_type !=
28ab034a
JG
3979 LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_HANDSHAKE &&
3980 client->communication.inbound.msg_type !=
3981 LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_UNKNOWN &&
3982 !client->validated) {
bd0514a5 3983 WARN("client attempted a command before handshake");
ab0ee2ca
JG
3984 ret = -1;
3985 goto end;
3986 }
3987
3988 switch (client->communication.inbound.msg_type) {
3989 case LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_UNKNOWN:
3990 {
505b2d90 3991 ret = client_handle_message_unknown(client, state);
ab0ee2ca
JG
3992 break;
3993 }
3994 case LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_HANDSHAKE:
3995 {
505b2d90 3996 ret = client_handle_message_handshake(client, state);
ab0ee2ca
JG
3997 break;
3998 }
3999 case LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_SUBSCRIBE:
4000 case LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_UNSUBSCRIBE:
4001 {
28ab034a
JG
4002 ret = client_handle_message_subscription(
4003 client, client->communication.inbound.msg_type, state);
ab0ee2ca
JG
4004 break;
4005 }
4006 default:
4007 abort();
4008 }
4009end:
4010 return ret;
4011}
4012
4013/* Incoming data from client. */
28ab034a 4014int handle_notification_thread_client_in(struct notification_thread_state *state, int socket)
ab0ee2ca 4015{
14fa22f8 4016 int ret = 0;
ab0ee2ca
JG
4017 struct notification_client *client;
4018 ssize_t recv_ret;
4019 size_t offset;
4020
56047f5a 4021 lttng::urcu::read_lock_guard read_lock;
ab0ee2ca
JG
4022 client = get_client_from_socket(socket, state);
4023 if (!client) {
4024 /* Internal error, abort. */
4025 ret = -1;
4026 goto end;
4027 }
4028
982583bd 4029 if (client->communication.inbound.bytes_to_receive == 0 &&
28ab034a 4030 client->communication.inbound.fds_to_receive != 0) {
982583bd
JR
4031 /* Only FDs left to receive. */
4032 goto receive_fds;
4033 }
4034
882093ee 4035 offset = client->communication.inbound.payload.buffer.size -
28ab034a 4036 client->communication.inbound.bytes_to_receive;
01ea340e 4037 if (client->communication.inbound.expect_creds) {
28ab034a
JG
4038 recv_ret = lttcomm_recv_creds_unix_sock(
4039 socket,
4040 client->communication.inbound.payload.buffer.data + offset,
4041 client->communication.inbound.bytes_to_receive,
4042 &client->communication.inbound.creds);
ab0ee2ca 4043 if (recv_ret > 0) {
01ea340e 4044 client->communication.inbound.expect_creds = false;
ab0ee2ca
JG
4045 client->communication.inbound.creds_received = true;
4046 }
4047 } else {
28ab034a
JG
4048 recv_ret = lttcomm_recv_unix_sock_non_block(
4049 socket,
4050 client->communication.inbound.payload.buffer.data + offset,
4051 client->communication.inbound.bytes_to_receive);
ab0ee2ca 4052 }
505b2d90
JG
4053 if (recv_ret >= 0) {
4054 client->communication.inbound.bytes_to_receive -= recv_ret;
882093ee
JR
4055 } else {
4056 goto error_disconnect_client;
505b2d90 4057 }
6c24d3fd 4058
882093ee
JR
4059 if (client->communication.inbound.bytes_to_receive != 0) {
4060 /* Message incomplete wait for more data. */
4061 ret = 0;
4062 goto end;
ab0ee2ca
JG
4063 }
4064
982583bd 4065receive_fds:
a0377dfe 4066 LTTNG_ASSERT(client->communication.inbound.bytes_to_receive == 0);
882093ee
JR
4067
4068 /* Receive fds. */
4069 if (client->communication.inbound.fds_to_receive != 0) {
4070 ret = lttcomm_recv_payload_fds_unix_sock_non_block(
28ab034a
JG
4071 client->socket,
4072 client->communication.inbound.fds_to_receive,
4073 &client->communication.inbound.payload);
882093ee 4074 if (ret > 0) {
ab0ee2ca 4075 /*
882093ee
JR
4076 * Fds received. non blocking fds passing is all
4077 * or nothing.
ab0ee2ca 4078 */
882093ee
JR
4079 ssize_t expected_size;
4080
28ab034a 4081 expected_size = sizeof(int) * client->communication.inbound.fds_to_receive;
a0377dfe 4082 LTTNG_ASSERT(ret == expected_size);
882093ee
JR
4083 client->communication.inbound.fds_to_receive = 0;
4084 } else if (ret == 0) {
4085 /* Received nothing. */
4086 ret = 0;
4087 goto end;
4088 } else {
ab0ee2ca
JG
4089 goto error_disconnect_client;
4090 }
ab0ee2ca 4091 }
882093ee
JR
4092
4093 /* At this point the message is complete.*/
a0377dfe 4094 LTTNG_ASSERT(client->communication.inbound.bytes_to_receive == 0 &&
28ab034a 4095 client->communication.inbound.fds_to_receive == 0);
882093ee
JR
4096 ret = client_dispatch_message(client, state);
4097 if (ret) {
4098 /*
4099 * Only returns an error if this client must be
4100 * disconnected.
4101 */
4102 goto error_disconnect_client;
4103 }
4104
ab0ee2ca
JG
4105end:
4106 return ret;
882093ee 4107
ab0ee2ca 4108error_disconnect_client:
505b2d90 4109 ret = notification_thread_client_disconnect(client, state);
98b5ff34 4110 goto end;
ab0ee2ca
JG
4111}
4112
4113/* Client ready to receive outgoing data. */
28ab034a 4114int handle_notification_thread_client_out(struct notification_thread_state *state, int socket)
ab0ee2ca
JG
4115{
4116 int ret;
4117 struct notification_client *client;
f2b3ef9f 4118 enum client_transmission_status transmission_status;
ab0ee2ca 4119
56047f5a 4120 lttng::urcu::read_lock_guard read_lock;
ab0ee2ca
JG
4121 client = get_client_from_socket(socket, state);
4122 if (!client) {
4123 /* Internal error, abort. */
4124 ret = -1;
4125 goto end;
4126 }
4127
505b2d90 4128 pthread_mutex_lock(&client->lock);
9016dbfc
JG
4129 if (!client_has_outbound_data_left(client)) {
4130 /*
4131 * A client "out" event can be received when no payload is left
4132 * to send under some circumstances.
4133 *
4134 * Many threads can flush a client's outgoing queue and, if they
4135 * had to queue their message (socket was full), will use the
4136 * "communication update" command to signal the (e)poll thread
4137 * to monitor for space being made available in the socket.
4138 *
4139 * Commands are sent over an internal pipe serviced by the same
4140 * thread as the client sockets.
4141 *
4142 * When space is made available in the socket, there is a race
4143 * between the (e)poll thread and the other threads that may
4144 * wish to use the client's socket to flush its outgoing queue.
4145 *
4146 * A non-(e)poll thread may attempt (and succeed) in flushing
4147 * the queue before the (e)poll thread gets a chance to service
4148 * the client's "out" event.
4149 *
4150 * In this situation, the (e)poll thread processing the client
4151 * out event will see an empty payload: there is nothing to do
4152 * except unsubscribing (e)poll "out" events.
4153 *
4154 * Note that this thread is the (e)poll thread so it can modify
4155 * the (e)poll mask directly without using a communication
4156 * update command. Other threads that flush the outgoing queue
4157 * will use the "communication update" command to wake up this
4158 * thread and force it to monitor "out" events.
4159 *
4160 * When other threads succeed in emptying the outgoing queue,
4161 * they don't need to update the (e)poll mask: if the "out"
4162 * event is monitored, it will fire once and the (e)poll
4163 * thread will reach this condition, causing the event to
4164 * stop being monitored.
4165 */
4166 transmission_status = CLIENT_TRANSMISSION_STATUS_COMPLETE;
4167 } else {
4168 transmission_status = client_flush_outgoing_queue(client);
4169 }
6c24d3fd
JG
4170 pthread_mutex_unlock(&client->lock);
4171
28ab034a 4172 ret = client_handle_transmission_status(client, transmission_status, state);
ab0ee2ca
JG
4173 if (ret) {
4174 goto end;
4175 }
4176end:
4177 return ret;
4178}
4179
28ab034a
JG
4180static bool evaluate_buffer_usage_condition(const struct lttng_condition *condition,
4181 const struct channel_state_sample *sample,
4182 uint64_t buffer_capacity)
ab0ee2ca
JG
4183{
4184 bool result = false;
4185 uint64_t threshold;
4186 enum lttng_condition_type condition_type;
28ab034a
JG
4187 const struct lttng_condition_buffer_usage *use_condition =
4188 lttng::utils::container_of(condition, &lttng_condition_buffer_usage::parent);
ab0ee2ca 4189
ab0ee2ca
JG
4190 if (use_condition->threshold_bytes.set) {
4191 threshold = use_condition->threshold_bytes.value;
4192 } else {
4193 /*
4194 * Threshold was expressed as a ratio.
4195 *
4196 * TODO the threshold (in bytes) of conditions expressed
4197 * as a ratio of total buffer size could be cached to
4198 * forego this double-multiplication or it could be performed
4199 * as fixed-point math.
4200 *
d49487dc 4201 * Note that caching should accommodates the case where the
ab0ee2ca
JG
4202 * condition applies to multiple channels (i.e. don't assume
4203 * that all channels matching my_chann* have the same size...)
4204 */
4205 threshold = (uint64_t) (use_condition->threshold_ratio.value *
28ab034a 4206 (double) buffer_capacity);
ab0ee2ca
JG
4207 }
4208
4209 condition_type = lttng_condition_get_type(condition);
4210 if (condition_type == LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW) {
28ab034a
JG
4211 DBG("Low buffer usage condition being evaluated: threshold = %" PRIu64
4212 ", highest usage = %" PRIu64,
4213 threshold,
4214 sample->highest_usage);
ab0ee2ca
JG
4215
4216 /*
4217 * The low condition should only be triggered once _all_ of the
4218 * streams in a channel have gone below the "low" threshold.
4219 */
4220 if (sample->highest_usage <= threshold) {
4221 result = true;
4222 }
4223 } else {
28ab034a
JG
4224 DBG("High buffer usage condition being evaluated: threshold = %" PRIu64
4225 ", highest usage = %" PRIu64,
4226 threshold,
4227 sample->highest_usage);
ab0ee2ca
JG
4228
4229 /*
4230 * For high buffer usage scenarios, we want to trigger whenever
4231 * _any_ of the streams has reached the "high" threshold.
4232 */
4233 if (sample->highest_usage >= threshold) {
4234 result = true;
4235 }
4236 }
e8360425 4237
ab0ee2ca
JG
4238 return result;
4239}
4240
28ab034a
JG
4241static int evaluate_buffer_condition(const struct lttng_condition *condition,
4242 struct lttng_evaluation **evaluation,
4243 const struct notification_thread_state *state
4244 __attribute__((unused)),
4245 const struct channel_state_sample *previous_sample,
4246 const struct channel_state_sample *latest_sample,
4247 struct channel_info *channel_info)
ab0ee2ca
JG
4248{
4249 int ret = 0;
4250 enum lttng_condition_type condition_type;
e8360425
JD
4251 const bool previous_sample_available = !!previous_sample;
4252 bool previous_sample_result = false;
ab0ee2ca
JG
4253 bool latest_sample_result;
4254
4255 condition_type = lttng_condition_get_type(condition);
ab0ee2ca 4256
e8360425
JD
4257 switch (condition_type) {
4258 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
4259 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH:
4260 if (caa_likely(previous_sample_available)) {
28ab034a
JG
4261 previous_sample_result = evaluate_buffer_usage_condition(
4262 condition, previous_sample, channel_info->capacity);
e8360425
JD
4263 }
4264 latest_sample_result = evaluate_buffer_usage_condition(
28ab034a 4265 condition, latest_sample, channel_info->capacity);
e8360425 4266 break;
e8360425
JD
4267 default:
4268 /* Unknown condition type; internal error. */
4269 abort();
4270 }
ab0ee2ca 4271
28ab034a 4272 if (!latest_sample_result || (previous_sample_result == latest_sample_result)) {
ab0ee2ca
JG
4273 /*
4274 * Only trigger on a condition evaluation transition.
4275 *
4276 * NOTE: This edge-triggered logic may not be appropriate for
4277 * future condition types.
4278 */
4279 goto end;
4280 }
4281
e8360425
JD
4282 if (!evaluation || !latest_sample_result) {
4283 goto end;
4284 }
4285
4286 switch (condition_type) {
4287 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
4288 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH:
ab0ee2ca 4289 *evaluation = lttng_evaluation_buffer_usage_create(
28ab034a 4290 condition_type, latest_sample->highest_usage, channel_info->capacity);
e8360425 4291 break;
e8360425
JD
4292 default:
4293 abort();
4294 }
4295
4296 if (!*evaluation) {
4297 ret = -1;
4298 goto end;
ab0ee2ca
JG
4299 }
4300end:
4301 return ret;
4302}
4303
28ab034a 4304static int client_notification_overflow(struct notification_client *client)
ab0ee2ca 4305{
f2b3ef9f 4306 int ret = 0;
6bd79809
JG
4307 struct lttng_notification_channel_message msg;
4308
4309 msg.type = (int8_t) LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_NOTIFICATION_DROPPED;
4310 msg.size = 0;
4311 msg.fds = 0;
ab0ee2ca 4312
505b2d90
JG
4313 ASSERT_LOCKED(client->lock);
4314
28ab034a 4315 DBG("Dropping notification addressed to client (socket fd = %i)", client->socket);
f2b3ef9f
JG
4316 if (client->communication.outbound.dropped_notification) {
4317 /*
4318 * The client already has a "notification dropped" message
4319 * in its outgoing queue. Nothing to do since all
4320 * of those messages are coalesced.
4321 */
4322 goto end;
4323 }
4324
4325 client->communication.outbound.dropped_notification = true;
ab0ee2ca 4326 ret = lttng_dynamic_buffer_append(
28ab034a 4327 &client->communication.outbound.payload.buffer, &msg, sizeof(msg));
f2b3ef9f
JG
4328 if (ret) {
4329 PERROR("Failed to enqueue \"dropped notification\" message in client's (socket fd = %i) outgoing queue",
28ab034a 4330 client->socket);
f2b3ef9f
JG
4331 }
4332end:
ab0ee2ca
JG
4333 return ret;
4334}
4335
28ab034a
JG
4336static int client_handle_transmission_status_wrapper(struct notification_client *client,
4337 enum client_transmission_status status,
4338 void *user_data)
f2b3ef9f 4339{
28ab034a
JG
4340 return client_handle_transmission_status(
4341 client, status, (struct notification_thread_state *) user_data);
f2b3ef9f
JG
4342}
4343
28ab034a
JG
4344static int send_evaluation_to_clients(const struct lttng_trigger *trigger,
4345 const struct lttng_evaluation *evaluation,
4346 struct notification_client_list *client_list,
4347 struct notification_thread_state *state,
4348 uid_t object_uid,
4349 gid_t object_gid)
f2b3ef9f 4350{
ff588497
JR
4351 const struct lttng_credentials creds = {
4352 .uid = LTTNG_OPTIONAL_INIT_VALUE(object_uid),
4353 .gid = LTTNG_OPTIONAL_INIT_VALUE(object_gid),
4354 };
4355
f2b3ef9f 4356 return notification_client_list_send_evaluation(client_list,
28ab034a
JG
4357 trigger,
4358 evaluation,
4359 &creds,
4360 client_handle_transmission_status_wrapper,
4361 state);
f2b3ef9f
JG
4362}
4363
f37d0f86
JG
4364/*
4365 * Permission checks relative to notification channel clients are performed
4366 * here. Notice how object, client, and trigger credentials are involved in
4367 * this check.
4368 *
4369 * The `object` credentials are the credentials associated with the "subject"
4370 * of a condition. For instance, a `rotation completed` condition applies
4371 * to a session. When that condition is met, it will produce an evaluation
4372 * against a session. Hence, in this case, the `object` credentials are the
4373 * credentials of the "subject" session.
4374 *
4375 * The `trigger` credentials are the credentials of the user that registered the
4376 * trigger.
4377 *
4378 * The `client` credentials are the credentials of the user that created a given
4379 * notification channel.
4380 *
4381 * In terms of visibility, it is expected that non-privilieged users can only
4382 * register triggers against "their" objects (their own sessions and
4383 * applications they are allowed to interact with). They can then open a
4384 * notification channel and subscribe to notifications associated with those
4385 * triggers.
4386 *
4387 * As for privilieged users, they can register triggers against the objects of
4388 * other users. They can then subscribe to the notifications associated to their
4389 * triggers. Privilieged users _can't_ subscribe to the notifications of
4390 * triggers owned by other users; they must create their own triggers.
4391 *
4392 * This is more a concern of usability than security. It would be difficult for
4393 * a root user reliably subscribe to a specific set of conditions without
4394 * interference from external users (those could, for instance, unregister
4395 * their triggers).
4396 */
28ab034a
JG
4397int notification_client_list_send_evaluation(struct notification_client_list *client_list,
4398 const struct lttng_trigger *trigger,
4399 const struct lttng_evaluation *evaluation,
4400 const struct lttng_credentials *source_object_creds,
4401 report_client_transmission_result_cb client_report,
4402 void *user_data)
ab0ee2ca
JG
4403{
4404 int ret = 0;
c0a66c84 4405 struct lttng_payload msg_payload;
ab0ee2ca 4406 struct notification_client_list_element *client_list_element, *tmp;
9b63a4aa 4407 const struct lttng_notification notification = {
52d55cf9 4408 .trigger = (struct lttng_trigger *) trigger,
9b63a4aa
JG
4409 .evaluation = (struct lttng_evaluation *) evaluation,
4410 };
6bd79809 4411 struct lttng_notification_channel_message msg_header;
28ab034a 4412 const struct lttng_credentials *trigger_creds = lttng_trigger_get_credentials(trigger);
ab0ee2ca 4413
c0a66c84 4414 lttng_payload_init(&msg_payload);
ab0ee2ca 4415
6bd79809
JG
4416 msg_header.type = (int8_t) LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_NOTIFICATION;
4417 msg_header.size = 0;
4418 msg_header.fds = 0;
4419
28ab034a 4420 ret = lttng_dynamic_buffer_append(&msg_payload.buffer, &msg_header, sizeof(msg_header));
ab0ee2ca
JG
4421 if (ret) {
4422 goto end;
4423 }
4424
c0a66c84 4425 ret = lttng_notification_serialize(&notification, &msg_payload);
ab0ee2ca 4426 if (ret) {
bd0514a5 4427 ERR("Failed to serialize notification");
ab0ee2ca
JG
4428 ret = -1;
4429 goto end;
4430 }
4431
3647288f 4432 /* Update payload size. */
28ab034a
JG
4433 ((struct lttng_notification_channel_message *) msg_payload.buffer.data)->size =
4434 (uint32_t) (msg_payload.buffer.size - sizeof(msg_header));
3647288f 4435
882093ee
JR
4436 /* Update the payload number of fds. */
4437 {
28ab034a
JG
4438 const struct lttng_payload_view pv =
4439 lttng_payload_view_from_payload(&msg_payload, 0, -1);
882093ee 4440
28ab034a
JG
4441 ((struct lttng_notification_channel_message *) msg_payload.buffer.data)->fds =
4442 (uint32_t) lttng_payload_view_get_fd_handle_count(&pv);
882093ee
JR
4443 }
4444
505b2d90 4445 pthread_mutex_lock(&client_list->lock);
28ab034a 4446 cds_list_for_each_entry_safe (client_list_element, tmp, &client_list->clients_list, node) {
f2b3ef9f 4447 enum client_transmission_status transmission_status;
28ab034a 4448 struct notification_client *client = client_list_element->client;
ab0ee2ca 4449
505b2d90
JG
4450 ret = 0;
4451 pthread_mutex_lock(&client->lock);
6c24d3fd
JG
4452 if (!client->communication.active) {
4453 /*
4454 * Skip inactive client (protocol error or
4455 * disconnecting).
4456 */
4457 DBG("Skipping client at it is marked as inactive");
4458 goto skip_client;
4459 }
4460
f2bda80e
JG
4461 if (lttng_trigger_is_hidden(trigger) && !client->is_sessiond) {
4462 /*
4463 * Notifications resulting from an hidden trigger are
4464 * only sent to the session daemon.
4465 */
70eb2f6f
JG
4466 DBG("Skipping client as the trigger is hidden and the client is not the session daemon");
4467 goto skip_client;
f2bda80e
JG
4468 }
4469
f2b3ef9f 4470 if (source_object_creds) {
ff588497 4471 if (client->uid != lttng_credentials_get_uid(source_object_creds) &&
28ab034a
JG
4472 client->gid != lttng_credentials_get_gid(source_object_creds) &&
4473 client->uid != 0) {
f2b3ef9f
JG
4474 /*
4475 * Client is not allowed to monitor this
4476 * object.
4477 */
bd0514a5 4478 DBG("Skipping client at it does not have the object permission to receive notification for this trigger");
6c24d3fd 4479 goto skip_client;
f2b3ef9f 4480 }
90843f49
JR
4481 }
4482
f712e5f6 4483 if (client->uid != lttng_credentials_get_uid(trigger_creds)) {
bd0514a5 4484 DBG("Skipping client at it does not have the permission to receive notification for this trigger");
6c24d3fd 4485 goto skip_client;
ab0ee2ca
JG
4486 }
4487
bd0514a5 4488 DBG("Sending notification to client (fd = %i, %zu bytes)",
28ab034a
JG
4489 client->socket,
4490 msg_payload.buffer.size);
882093ee
JR
4491
4492 if (client_has_outbound_data_left(client)) {
ab0ee2ca
JG
4493 /*
4494 * Outgoing data is already buffered for this client;
4495 * drop the notification and enqueue a "dropped
4496 * notification" message if this is the first dropped
4497 * notification since the socket spilled-over to the
4498 * queue.
4499 */
f2b3ef9f
JG
4500 ret = client_notification_overflow(client);
4501 if (ret) {
6c24d3fd
JG
4502 /* Fatal error. */
4503 goto skip_client;
ab0ee2ca 4504 }
ab0ee2ca
JG
4505 }
4506
882093ee 4507 ret = lttng_payload_copy(&msg_payload, &client->communication.outbound.payload);
ab0ee2ca 4508 if (ret) {
6c24d3fd
JG
4509 /* Fatal error. */
4510 goto skip_client;
ab0ee2ca
JG
4511 }
4512
f2b3ef9f 4513 transmission_status = client_flush_outgoing_queue(client);
6c24d3fd 4514 pthread_mutex_unlock(&client->lock);
f2b3ef9f 4515 ret = client_report(client, transmission_status, user_data);
ab0ee2ca 4516 if (ret) {
6c24d3fd
JG
4517 /* Fatal error. */
4518 goto end_unlock_list;
505b2d90 4519 }
6c24d3fd
JG
4520
4521 continue;
4522
28ab034a 4523 skip_client:
505b2d90
JG
4524 pthread_mutex_unlock(&client->lock);
4525 if (ret) {
6c24d3fd 4526 /* Fatal error. */
505b2d90 4527 goto end_unlock_list;
ab0ee2ca
JG
4528 }
4529 }
4530 ret = 0;
505b2d90
JG
4531
4532end_unlock_list:
4533 pthread_mutex_unlock(&client_list->lock);
ab0ee2ca 4534end:
c0a66c84 4535 lttng_payload_reset(&msg_payload);
ab0ee2ca
JG
4536 return ret;
4537}
4538
28ab034a
JG
4539static struct lttng_event_notifier_notification *
4540recv_one_event_notifier_notification(int notification_pipe_read_fd, enum lttng_domain_type domain)
94078603
JR
4541{
4542 int ret;
b9a8d78f 4543 uint64_t token;
cd9adb8b
JG
4544 struct lttng_event_notifier_notification *notification = nullptr;
4545 char *capture_buffer = nullptr;
82b3cbf4 4546 size_t capture_buffer_size;
94078603
JR
4547 void *reception_buffer;
4548 size_t reception_size;
4549
fc4b93fa 4550 struct lttng_ust_abi_event_notifier_notification ust_notification;
b8e2fb80 4551 struct lttng_kernel_abi_event_notifier_notification kernel_notification;
94078603 4552
b9a8d78f 4553 /* Init lttng_event_notifier_notification */
28ab034a 4554 switch (domain) {
94078603
JR
4555 case LTTNG_DOMAIN_UST:
4556 reception_buffer = (void *) &ust_notification;
4557 reception_size = sizeof(ust_notification);
94078603
JR
4558 break;
4559 case LTTNG_DOMAIN_KERNEL:
4560 reception_buffer = (void *) &kernel_notification;
4561 reception_size = sizeof(kernel_notification);
94078603
JR
4562 break;
4563 default:
4564 abort();
4565 }
4566
4567 /*
4568 * The monitoring pipe only holds messages smaller than PIPE_BUF,
4569 * ensuring that read/write of tracer notifications are atomic.
4570 */
28ab034a 4571 ret = lttng_read(notification_pipe_read_fd, reception_buffer, reception_size);
94078603
JR
4572 if (ret != reception_size) {
4573 PERROR("Failed to read from event source notification pipe: fd = %d, size to read = %zu, ret = %d",
28ab034a
JG
4574 notification_pipe_read_fd,
4575 reception_size,
4576 ret);
94078603
JR
4577 ret = -1;
4578 goto end;
4579 }
4580
28ab034a 4581 switch (domain) {
94078603 4582 case LTTNG_DOMAIN_UST:
b9a8d78f 4583 token = ust_notification.token;
82b3cbf4 4584 capture_buffer_size = ust_notification.capture_buf_size;
94078603
JR
4585 break;
4586 case LTTNG_DOMAIN_KERNEL:
b9a8d78f 4587 token = kernel_notification.token;
bbd6675c 4588 capture_buffer_size = kernel_notification.capture_buf_size;
94078603
JR
4589 break;
4590 default:
4591 abort();
4592 }
4593
82b3cbf4 4594 if (capture_buffer_size == 0) {
cd9adb8b 4595 capture_buffer = nullptr;
82b3cbf4
JR
4596 goto skip_capture;
4597 }
4598
4599 if (capture_buffer_size > MAX_CAPTURE_SIZE) {
bd0514a5 4600 ERR("Event notifier has a capture payload size which exceeds the maximum allowed size: capture_payload_size = %zu bytes, max allowed size = %d bytes",
28ab034a
JG
4601 capture_buffer_size,
4602 MAX_CAPTURE_SIZE);
82b3cbf4
JR
4603 goto end;
4604 }
4605
64803277 4606 capture_buffer = calloc<char>(capture_buffer_size);
82b3cbf4 4607 if (!capture_buffer) {
bd0514a5 4608 ERR("Failed to allocate capture buffer");
82b3cbf4
JR
4609 goto end;
4610 }
4611
4612 /* Fetch additional payload (capture). */
4613 ret = lttng_read(notification_pipe_read_fd, capture_buffer, capture_buffer_size);
4614 if (ret != capture_buffer_size) {
28ab034a 4615 ERR("Failed to read from event source pipe (fd = %i)", notification_pipe_read_fd);
82b3cbf4
JR
4616 goto end;
4617 }
4618
4619skip_capture:
28ab034a
JG
4620 notification = lttng_event_notifier_notification_create(
4621 token, domain, capture_buffer, capture_buffer_size);
cd9adb8b 4622 if (notification == nullptr) {
82b3cbf4
JR
4623 goto end;
4624 }
4625
4626 /*
4627 * Ownership transfered to the lttng_event_notifier_notification object.
4628 */
cd9adb8b 4629 capture_buffer = nullptr;
82b3cbf4 4630
b9a8d78f 4631end:
82b3cbf4 4632 free(capture_buffer);
b9a8d78f
FD
4633 return notification;
4634}
4635
28ab034a
JG
4636static int
4637dispatch_one_event_notifier_notification(struct notification_thread_state *state,
4638 struct lttng_event_notifier_notification *notification)
b9a8d78f 4639{
b9a8d78f
FD
4640 struct cds_lfht_node *node;
4641 struct cds_lfht_iter iter;
4642 struct notification_trigger_tokens_ht_element *element;
cd9adb8b 4643 struct lttng_evaluation *evaluation = nullptr;
b9a8d78f 4644 enum action_executor_status executor_status;
cd9adb8b 4645 struct notification_client_list *client_list = nullptr;
8b524060 4646 int ret;
7c920b63 4647 unsigned int capture_count = 0;
b9a8d78f 4648
94078603 4649 /* Find triggers associated with this token. */
56047f5a 4650 lttng::urcu::read_lock_guard read_lock;
94078603 4651 cds_lfht_lookup(state->trigger_tokens_ht,
b9a8d78f 4652 hash_key_u64(&notification->tracer_token, lttng_ht_seed),
28ab034a
JG
4653 match_trigger_token,
4654 &notification->tracer_token,
4655 &iter);
94078603 4656 node = cds_lfht_iter_get_node(&iter);
f1446131 4657 if (caa_unlikely(!node)) {
94078603 4658 /*
f1446131
JR
4659 * This is not an error, slow consumption of the tracer
4660 * notifications can lead to situations where a trigger is
4661 * removed but we still get tracer notifications matching a
4662 * trigger that no longer exists.
94078603
JR
4663 */
4664 ret = 0;
4665 goto end_unlock;
4666 }
4667
28ab034a 4668 element = caa_container_of(node, struct notification_trigger_tokens_ht_element, node);
94078603 4669
8dbb86b8 4670 if (lttng_condition_event_rule_matches_get_capture_descriptor_count(
28ab034a
JG
4671 lttng_trigger_get_const_condition(element->trigger), &capture_count) !=
4672 LTTNG_CONDITION_STATUS_OK) {
7c920b63
PP
4673 ERR("Failed to get capture count");
4674 ret = -1;
4675 goto end;
4676 }
4677
4678 if (!notification->capture_buffer && capture_count != 0) {
4679 ERR("Expected capture but capture buffer is null");
4680 ret = -1;
4681 goto end;
4682 }
4683
8dbb86b8 4684 evaluation = lttng_evaluation_event_rule_matches_create(
28ab034a
JG
4685 lttng::utils::container_of(lttng_trigger_get_const_condition(element->trigger),
4686 &lttng_condition_event_rule_matches::parent),
4687 notification->capture_buffer,
4688 notification->capture_buf_size,
4689 false);
7c920b63 4690
cd9adb8b 4691 if (evaluation == nullptr) {
8c1d25ff 4692 ERR("Failed to create event rule matches evaluation while creating and enqueuing action executor job");
f1446131
JR
4693 ret = -1;
4694 goto end_unlock;
4695 }
8c1d25ff 4696
28ab034a
JG
4697 client_list = get_client_list_from_condition(
4698 state, lttng_trigger_get_const_condition(element->trigger));
4699 executor_status = action_executor_enqueue_trigger(
cd9adb8b 4700 state->executor, element->trigger, evaluation, nullptr, client_list);
f1446131
JR
4701 switch (executor_status) {
4702 case ACTION_EXECUTOR_STATUS_OK:
4703 ret = 0;
4704 break;
4705 case ACTION_EXECUTOR_STATUS_OVERFLOW:
4706 {
28ab034a 4707 struct notification_client_list_element *client_list_element, *tmp;
f1446131
JR
4708
4709 /*
4710 * Not a fatal error; this is expected and simply means the
4711 * executor has too much work queued already.
4712 */
4713 ret = 0;
4714
4715 /* No clients subscribed to notifications for this trigger. */
4716 if (!client_list) {
4717 break;
4718 }
4719
4720 /* Warn clients that a notification (or more) was dropped. */
4721 pthread_mutex_lock(&client_list->lock);
28ab034a
JG
4722 cds_list_for_each_entry_safe (
4723 client_list_element, tmp, &client_list->clients_list, node) {
f1446131 4724 enum client_transmission_status transmission_status;
28ab034a 4725 struct notification_client *client = client_list_element->client;
f1446131
JR
4726
4727 pthread_mutex_lock(&client->lock);
4728 ret = client_notification_overflow(client);
4729 if (ret) {
4730 /* Fatal error. */
4731 goto next_client;
4732 }
4733
28ab034a
JG
4734 transmission_status = client_flush_outgoing_queue(client);
4735 ret = client_handle_transmission_status(client, transmission_status, state);
f1446131
JR
4736 if (ret) {
4737 /* Fatal error. */
4738 goto next_client;
4739 }
28ab034a 4740 next_client:
f1446131
JR
4741 pthread_mutex_unlock(&client->lock);
4742 if (ret) {
4743 break;
4744 }
4745 }
4746
4747 pthread_mutex_unlock(&client_list->lock);
4748 break;
4749 }
98dfca79 4750 case ACTION_EXECUTOR_STATUS_INVALID:
f1446131
JR
4751 case ACTION_EXECUTOR_STATUS_ERROR:
4752 /* Fatal error, shut down everything. */
4753 ERR("Fatal error encoutered while enqueuing action to the action executor");
4754 ret = -1;
4755 goto end_unlock;
4756 default:
4757 /* Unhandled error. */
4758 abort();
4759 }
94078603
JR
4760
4761end_unlock:
f1446131 4762 notification_client_list_put(client_list);
7c920b63 4763end:
8b524060
FD
4764 return ret;
4765}
4766
28ab034a
JG
4767static int handle_one_event_notifier_notification(struct notification_thread_state *state,
4768 int pipe,
4769 enum lttng_domain_type domain)
8b524060 4770{
82b3cbf4 4771 int ret = 0;
cd9adb8b 4772 struct lttng_event_notifier_notification *notification = nullptr;
8b524060
FD
4773
4774 notification = recv_one_event_notifier_notification(pipe, domain);
cd9adb8b 4775 if (notification == nullptr) {
82b3cbf4 4776 /* Reception failed, don't consider it fatal. */
bd0514a5 4777 ERR("Error receiving an event notifier notification from tracer: fd = %i, domain = %s",
28ab034a
JG
4778 pipe,
4779 lttng_domain_type_str(domain));
8b524060
FD
4780 goto end;
4781 }
4782
4783 ret = dispatch_one_event_notifier_notification(state, notification);
4784 if (ret) {
bd0514a5 4785 ERR("Error dispatching an event notifier notification from tracer: fd = %i, domain = %s",
28ab034a
JG
4786 pipe,
4787 lttng_domain_type_str(domain));
8b524060
FD
4788 goto end;
4789 }
4790
94078603 4791end:
8b524060 4792 lttng_event_notifier_notification_destroy(notification);
94078603
JR
4793 return ret;
4794}
4795
8b524060 4796int handle_notification_thread_event_notification(struct notification_thread_state *state,
28ab034a
JG
4797 int pipe,
4798 enum lttng_domain_type domain)
8b524060
FD
4799{
4800 return handle_one_event_notifier_notification(state, pipe, domain);
4801}
4802
28ab034a
JG
4803int handle_notification_thread_channel_sample(struct notification_thread_state *state,
4804 int pipe,
4805 enum lttng_domain_type domain)
ab0ee2ca
JG
4806{
4807 int ret = 0;
4808 struct lttcomm_consumer_channel_monitor_msg sample_msg;
cd9adb8b 4809 struct channel_info *channel_info = nullptr;
ab0ee2ca
JG
4810 struct cds_lfht_node *node;
4811 struct cds_lfht_iter iter;
319dcddc
JG
4812 struct lttng_channel_trigger_list *channel_trigger_list;
4813 struct lttng_session_trigger_list *session_trigger_list;
ab0ee2ca
JG
4814 struct lttng_trigger_list_element *trigger_list_element;
4815 bool previous_sample_available = false;
319dcddc
JG
4816 struct channel_state_sample channel_previous_sample, channel_new_sample;
4817 struct session_state_sample session_new_sample;
4818 struct lttng_credentials channel_creds = {};
4819 struct lttng_credentials session_creds = {};
4820 struct session_info *session;
56047f5a 4821 lttng::urcu::read_lock_guard read_lock;
ab0ee2ca
JG
4822
4823 /*
4824 * The monitoring pipe only holds messages smaller than PIPE_BUF,
4825 * ensuring that read/write of sampling messages are atomic.
4826 */
7c2551ef 4827 ret = lttng_read(pipe, &sample_msg, sizeof(sample_msg));
ab0ee2ca 4828 if (ret != sizeof(sample_msg)) {
28ab034a 4829 ERR("Failed to read from monitoring pipe (fd = %i)", pipe);
ab0ee2ca
JG
4830 ret = -1;
4831 goto end;
4832 }
4833
4834 ret = 0;
319dcddc
JG
4835 channel_new_sample.key.key = sample_msg.key;
4836 channel_new_sample.key.domain = domain;
4837 channel_new_sample.highest_usage = sample_msg.highest;
4838 channel_new_sample.lowest_usage = sample_msg.lowest;
ab0ee2ca 4839
319dcddc
JG
4840 session = get_session_info_by_id(state, sample_msg.session_id);
4841 if (!session) {
4842 DBG("Received a sample for an unknown session from consumerd: session id = %" PRIu64,
28ab034a 4843 sample_msg.session_id);
319dcddc
JG
4844 goto end_unlock;
4845 }
4846
4847 session_new_sample = session->last_state_sample;
4848 session_new_sample.consumed_data_size += sample_msg.consumed_since_last_sample;
4849 session_creds = {
4850 .uid = LTTNG_OPTIONAL_INIT_VALUE(session->uid),
4851 .gid = LTTNG_OPTIONAL_INIT_VALUE(session->gid),
4852 };
4853
4854 session_trigger_list = get_session_trigger_list(state, session->name);
4855 LTTNG_ASSERT(session_trigger_list);
28ab034a 4856 cds_list_for_each_entry (trigger_list_element, &session_trigger_list->list, node) {
319dcddc
JG
4857 const struct lttng_condition *condition;
4858 struct lttng_trigger *trigger;
cd9adb8b
JG
4859 struct notification_client_list *client_list = nullptr;
4860 struct lttng_evaluation *evaluation = nullptr;
319dcddc
JG
4861 enum action_executor_status executor_status;
4862
4863 ret = 0;
4864 trigger = trigger_list_element->trigger;
4865 condition = lttng_trigger_get_const_condition(trigger);
4866 LTTNG_ASSERT(condition);
4867
4868 ret = evaluate_session_condition(
28ab034a 4869 condition, session, &session_new_sample, &evaluation);
319dcddc
JG
4870 if (caa_unlikely(ret)) {
4871 break;
4872 }
4873
4874 if (caa_likely(!evaluation)) {
4875 continue;
4876 }
4877
4878 /*
4879 * Ownership of `evaluation` transferred to the action executor
4880 * no matter the result. The callee acquires a reference to the
4881 * client list: we can release our own.
4882 */
4883 client_list = get_client_list_from_condition(state, condition);
4884 executor_status = action_executor_enqueue_trigger(
28ab034a 4885 state->executor, trigger, evaluation, &session_creds, client_list);
319dcddc 4886 notification_client_list_put(client_list);
cd9adb8b 4887 evaluation = nullptr;
319dcddc
JG
4888 switch (executor_status) {
4889 case ACTION_EXECUTOR_STATUS_OK:
4890 break;
4891 case ACTION_EXECUTOR_STATUS_ERROR:
4892 case ACTION_EXECUTOR_STATUS_INVALID:
4893 /*
4894 * TODO Add trigger identification (name/id) when
4895 * it is added to the API.
4896 */
4897 ERR("Fatal error occurred while enqueuing action associated with buffer-condition trigger");
4898 ret = -1;
4899 goto end_unlock;
4900 case ACTION_EXECUTOR_STATUS_OVERFLOW:
4901 /*
4902 * TODO Add trigger identification (name/id) when
4903 * it is added to the API.
4904 *
4905 * Not a fatal error.
4906 */
4907 WARN("No space left when enqueuing action associated with buffer-condition trigger");
4908 ret = 0;
4909 goto end_unlock;
4910 default:
4911 abort();
4912 }
4913 }
4914
ab0ee2ca
JG
4915 /* Retrieve the channel's informations */
4916 cds_lfht_lookup(state->channels_ht,
319dcddc 4917 hash_channel_key(&channel_new_sample.key),
ab0ee2ca 4918 match_channel_info,
319dcddc 4919 &channel_new_sample.key,
ab0ee2ca
JG
4920 &iter);
4921 node = cds_lfht_iter_get_node(&iter);
e0b5f87b 4922 if (caa_unlikely(!node)) {
ab0ee2ca
JG
4923 /*
4924 * Not an error since the consumer can push a sample to the pipe
4925 * and the rest of the session daemon could notify us of the
4926 * channel's destruction before we get a chance to process that
4927 * sample.
4928 */
28ab034a
JG
4929 DBG("Received a sample for an unknown channel from consumerd, key = %" PRIu64
4930 " in %s domain",
4931 channel_new_sample.key.key,
4932 lttng_domain_type_str(domain));
ab0ee2ca
JG
4933 goto end_unlock;
4934 }
319dcddc 4935
28ab034a
JG
4936 channel_info = caa_container_of(node, struct channel_info, channels_ht_node);
4937 DBG("Handling channel sample for channel %s (key = %" PRIu64
4938 ") in session %s (highest usage = %" PRIu64 ", lowest usage = %" PRIu64
4939 ", consumed since last sample = %" PRIu64 ")",
4940 channel_info->name,
4941 channel_new_sample.key.key,
4942 channel_info->session_info->name,
4943 channel_new_sample.highest_usage,
4944 channel_new_sample.lowest_usage,
4945 sample_msg.consumed_since_last_sample);
ab0ee2ca
JG
4946
4947 /* Retrieve the channel's last sample, if it exists, and update it. */
4948 cds_lfht_lookup(state->channel_state_ht,
319dcddc 4949 hash_channel_key(&channel_new_sample.key),
ab0ee2ca 4950 match_channel_state_sample,
319dcddc 4951 &channel_new_sample.key,
ab0ee2ca
JG
4952 &iter);
4953 node = cds_lfht_iter_get_node(&iter);
e0b5f87b 4954 if (caa_likely(node)) {
ab0ee2ca
JG
4955 struct channel_state_sample *stored_sample;
4956
4957 /* Update the sample stored. */
28ab034a
JG
4958 stored_sample =
4959 caa_container_of(node, struct channel_state_sample, channel_state_ht_node);
e8360425 4960
28ab034a 4961 memcpy(&channel_previous_sample, stored_sample, sizeof(channel_previous_sample));
319dcddc
JG
4962 stored_sample->highest_usage = channel_new_sample.highest_usage;
4963 stored_sample->lowest_usage = channel_new_sample.lowest_usage;
ab0ee2ca
JG
4964 previous_sample_available = true;
4965 } else {
4966 /*
4967 * This is the channel's first sample, allocate space for and
4968 * store the new sample.
4969 */
4970 struct channel_state_sample *stored_sample;
4971
64803277 4972 stored_sample = zmalloc<channel_state_sample>();
ab0ee2ca
JG
4973 if (!stored_sample) {
4974 ret = -1;
4975 goto end_unlock;
4976 }
4977
319dcddc 4978 memcpy(stored_sample, &channel_new_sample, sizeof(*stored_sample));
ab0ee2ca
JG
4979 cds_lfht_node_init(&stored_sample->channel_state_ht_node);
4980 cds_lfht_add(state->channel_state_ht,
28ab034a
JG
4981 hash_channel_key(&stored_sample->key),
4982 &stored_sample->channel_state_ht_node);
ab0ee2ca
JG
4983 }
4984
4985 /* Find triggers associated with this channel. */
4986 cds_lfht_lookup(state->channel_triggers_ht,
319dcddc 4987 hash_channel_key(&channel_new_sample.key),
ab0ee2ca 4988 match_channel_trigger_list,
319dcddc 4989 &channel_new_sample.key,
ab0ee2ca
JG
4990 &iter);
4991 node = cds_lfht_iter_get_node(&iter);
319dcddc 4992 LTTNG_ASSERT(node);
ab0ee2ca 4993
28ab034a 4994 channel_creds = (typeof(channel_creds)){
ff588497
JR
4995 .uid = LTTNG_OPTIONAL_INIT_VALUE(channel_info->session_info->uid),
4996 .gid = LTTNG_OPTIONAL_INIT_VALUE(channel_info->session_info->gid),
f2b3ef9f
JG
4997 };
4998
28ab034a
JG
4999 channel_trigger_list =
5000 caa_container_of(node, struct lttng_channel_trigger_list, channel_triggers_ht_node);
5001 cds_list_for_each_entry (trigger_list_element, &channel_trigger_list->list, node) {
9b63a4aa 5002 const struct lttng_condition *condition;
f2b3ef9f 5003 struct lttng_trigger *trigger;
cd9adb8b
JG
5004 struct notification_client_list *client_list = nullptr;
5005 struct lttng_evaluation *evaluation = nullptr;
f2b3ef9f 5006 enum action_executor_status executor_status;
ab0ee2ca 5007
505b2d90 5008 ret = 0;
ab0ee2ca 5009 trigger = trigger_list_element->trigger;
9b63a4aa 5010 condition = lttng_trigger_get_const_condition(trigger);
a0377dfe 5011 LTTNG_ASSERT(condition);
ab0ee2ca 5012
28ab034a
JG
5013 ret = evaluate_buffer_condition(
5014 condition,
5015 &evaluation,
5016 state,
cd9adb8b 5017 previous_sample_available ? &channel_previous_sample : nullptr,
28ab034a
JG
5018 &channel_new_sample,
5019 channel_info);
e8360425 5020 if (caa_unlikely(ret)) {
319dcddc 5021 break;
ab0ee2ca
JG
5022 }
5023
e8360425 5024 if (caa_likely(!evaluation)) {
319dcddc 5025 continue;
ab0ee2ca
JG
5026 }
5027
f2b3ef9f
JG
5028 /*
5029 * Ownership of `evaluation` transferred to the action executor
319dcddc
JG
5030 * no matter the result. The callee acquires a reference to the
5031 * client list: we can release our own.
f2b3ef9f 5032 */
319dcddc 5033 client_list = get_client_list_from_condition(state, condition);
72365501 5034 executor_status = action_executor_enqueue_trigger(
28ab034a 5035 state->executor, trigger, evaluation, &channel_creds, client_list);
319dcddc 5036 notification_client_list_put(client_list);
cd9adb8b 5037 evaluation = nullptr;
f2b3ef9f
JG
5038 switch (executor_status) {
5039 case ACTION_EXECUTOR_STATUS_OK:
5040 break;
5041 case ACTION_EXECUTOR_STATUS_ERROR:
5042 case ACTION_EXECUTOR_STATUS_INVALID:
5043 /*
5044 * TODO Add trigger identification (name/id) when
5045 * it is added to the API.
5046 */
5047 ERR("Fatal error occurred while enqueuing action associated with buffer-condition trigger");
5048 ret = -1;
319dcddc 5049 goto end_unlock;
f2b3ef9f
JG
5050 case ACTION_EXECUTOR_STATUS_OVERFLOW:
5051 /*
5052 * TODO Add trigger identification (name/id) when
5053 * it is added to the API.
5054 *
5055 * Not a fatal error.
5056 */
5057 WARN("No space left when enqueuing action associated with buffer-condition trigger");
5058 ret = 0;
319dcddc 5059 goto end_unlock;
f2b3ef9f
JG
5060 default:
5061 abort();
5062 }
ab0ee2ca
JG
5063 }
5064end_unlock:
319dcddc
JG
5065 if (session) {
5066 session->last_state_sample = session_new_sample;
5067 }
5068 session_info_put(session);
ab0ee2ca
JG
5069end:
5070 return ret;
5071}
This page took 0.430201 seconds and 4 git commands to generate.