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