2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: GPL-2.0-only
9 #include <lttng/trigger/trigger.h>
10 #include <lttng/notification/channel-internal.h>
11 #include <lttng/notification/notification-internal.h>
12 #include <lttng/condition/condition-internal.h>
13 #include <lttng/condition/buffer-usage-internal.h>
14 #include <common/error.h>
15 #include <common/config/session-config.h>
16 #include <common/defaults.h>
17 #include <common/utils.h>
18 #include <common/align.h>
19 #include <common/time.h>
20 #include <sys/eventfd.h>
25 #include "notification-thread.h"
26 #include "notification-thread-events.h"
27 #include "notification-thread-commands.h"
28 #include "lttng-sessiond.h"
29 #include "health-sessiond.h"
33 #include <urcu/list.h>
34 #include <urcu/rculfhash.h>
37 * Destroy the thread data previously created by the init function.
39 void notification_thread_handle_destroy(
40 struct notification_thread_handle
*handle
)
48 assert(cds_list_empty(&handle
->cmd_queue
.list
));
49 pthread_mutex_destroy(&handle
->cmd_queue
.lock
);
50 sem_destroy(&handle
->ready
);
52 if (handle
->cmd_queue
.event_pipe
) {
53 lttng_pipe_destroy(handle
->cmd_queue
.event_pipe
);
55 if (handle
->channel_monitoring_pipes
.ust32_consumer
>= 0) {
56 ret
= close(handle
->channel_monitoring_pipes
.ust32_consumer
);
58 PERROR("close 32-bit consumer channel monitoring pipe");
61 if (handle
->channel_monitoring_pipes
.ust64_consumer
>= 0) {
62 ret
= close(handle
->channel_monitoring_pipes
.ust64_consumer
);
64 PERROR("close 64-bit consumer channel monitoring pipe");
67 if (handle
->channel_monitoring_pipes
.kernel_consumer
>= 0) {
68 ret
= close(handle
->channel_monitoring_pipes
.kernel_consumer
);
70 PERROR("close kernel consumer channel monitoring pipe");
77 struct notification_thread_handle
*notification_thread_handle_create(
78 struct lttng_pipe
*ust32_channel_monitor_pipe
,
79 struct lttng_pipe
*ust64_channel_monitor_pipe
,
80 struct lttng_pipe
*kernel_channel_monitor_pipe
)
83 struct notification_thread_handle
*handle
;
84 struct lttng_pipe
*event_pipe
= NULL
;
86 handle
= zmalloc(sizeof(*handle
));
91 sem_init(&handle
->ready
, 0, 0);
93 event_pipe
= lttng_pipe_open(FD_CLOEXEC
);
95 ERR("event_pipe creation");
99 handle
->cmd_queue
.event_pipe
= event_pipe
;
102 CDS_INIT_LIST_HEAD(&handle
->cmd_queue
.list
);
103 ret
= pthread_mutex_init(&handle
->cmd_queue
.lock
, NULL
);
108 if (ust32_channel_monitor_pipe
) {
109 handle
->channel_monitoring_pipes
.ust32_consumer
=
110 lttng_pipe_release_readfd(
111 ust32_channel_monitor_pipe
);
112 if (handle
->channel_monitoring_pipes
.ust32_consumer
< 0) {
116 handle
->channel_monitoring_pipes
.ust32_consumer
= -1;
118 if (ust64_channel_monitor_pipe
) {
119 handle
->channel_monitoring_pipes
.ust64_consumer
=
120 lttng_pipe_release_readfd(
121 ust64_channel_monitor_pipe
);
122 if (handle
->channel_monitoring_pipes
.ust64_consumer
< 0) {
126 handle
->channel_monitoring_pipes
.ust64_consumer
= -1;
128 if (kernel_channel_monitor_pipe
) {
129 handle
->channel_monitoring_pipes
.kernel_consumer
=
130 lttng_pipe_release_readfd(
131 kernel_channel_monitor_pipe
);
132 if (handle
->channel_monitoring_pipes
.kernel_consumer
< 0) {
136 handle
->channel_monitoring_pipes
.kernel_consumer
= -1;
141 lttng_pipe_destroy(event_pipe
);
142 notification_thread_handle_destroy(handle
);
147 char *get_notification_channel_sock_path(void)
150 bool is_root
= !getuid();
153 sock_path
= zmalloc(LTTNG_PATH_MAX
);
159 ret
= snprintf(sock_path
, LTTNG_PATH_MAX
,
160 DEFAULT_GLOBAL_NOTIFICATION_CHANNEL_UNIX_SOCK
);
165 const char *home_path
= utils_get_home_dir();
168 ERR("Can't get HOME directory for socket creation");
172 ret
= snprintf(sock_path
, LTTNG_PATH_MAX
,
173 DEFAULT_HOME_NOTIFICATION_CHANNEL_UNIX_SOCK
,
187 void notification_channel_socket_destroy(int fd
)
190 char *sock_path
= get_notification_channel_sock_path();
192 DBG("[notification-thread] Destroying notification channel socket");
195 ret
= unlink(sock_path
);
198 PERROR("unlink notification channel socket");
204 PERROR("close notification channel socket");
209 int notification_channel_socket_create(void)
212 char *sock_path
= get_notification_channel_sock_path();
214 DBG("[notification-thread] Creating notification channel UNIX socket at %s",
217 ret
= lttcomm_create_unix_sock(sock_path
);
219 ERR("[notification-thread] Failed to create notification socket");
224 ret
= chmod(sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
226 ERR("Set file permissions failed: %s", sock_path
);
227 PERROR("chmod notification channel socket");
234 ret
= utils_get_group_id(config
.tracing_group_name
.value
, true,
237 /* Default to root group. */
241 ret
= chown(sock_path
, 0, gid
);
243 ERR("Failed to set the notification channel socket's group");
249 DBG("[notification-thread] Notification channel UNIX socket created (fd = %i)",
254 if (fd
>= 0 && close(fd
) < 0) {
255 PERROR("close notification channel socket");
262 int init_poll_set(struct lttng_poll_event
*poll_set
,
263 struct notification_thread_handle
*handle
,
264 int notification_channel_socket
)
269 * Create pollset with size 5:
270 * - notification channel socket (listen for new connections),
271 * - command queue event fd (internal sessiond commands),
272 * - consumerd (32-bit user space) channel monitor pipe,
273 * - consumerd (64-bit user space) channel monitor pipe,
274 * - consumerd (kernel) channel monitor pipe.
276 ret
= lttng_poll_create(poll_set
, 5, LTTNG_CLOEXEC
);
281 ret
= lttng_poll_add(poll_set
, notification_channel_socket
,
282 LPOLLIN
| LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
);
284 ERR("[notification-thread] Failed to add notification channel socket to pollset");
287 ret
= lttng_poll_add(poll_set
, lttng_pipe_get_readfd(handle
->cmd_queue
.event_pipe
),
290 ERR("[notification-thread] Failed to add notification command queue event fd to pollset");
293 ret
= lttng_poll_add(poll_set
,
294 handle
->channel_monitoring_pipes
.ust32_consumer
,
297 ERR("[notification-thread] Failed to add ust-32 channel monitoring pipe fd to pollset");
300 ret
= lttng_poll_add(poll_set
,
301 handle
->channel_monitoring_pipes
.ust64_consumer
,
304 ERR("[notification-thread] Failed to add ust-64 channel monitoring pipe fd to pollset");
307 if (handle
->channel_monitoring_pipes
.kernel_consumer
< 0) {
310 ret
= lttng_poll_add(poll_set
,
311 handle
->channel_monitoring_pipes
.kernel_consumer
,
314 ERR("[notification-thread] Failed to add kernel channel monitoring pipe fd to pollset");
320 lttng_poll_clean(poll_set
);
325 void fini_thread_state(struct notification_thread_state
*state
)
329 if (state
->client_socket_ht
) {
330 ret
= handle_notification_thread_client_disconnect_all(state
);
332 ret
= cds_lfht_destroy(state
->client_socket_ht
, NULL
);
335 if (state
->triggers_ht
) {
336 ret
= handle_notification_thread_trigger_unregister_all(state
);
338 ret
= cds_lfht_destroy(state
->triggers_ht
, NULL
);
341 if (state
->channel_triggers_ht
) {
342 ret
= cds_lfht_destroy(state
->channel_triggers_ht
, NULL
);
345 if (state
->channel_state_ht
) {
346 ret
= cds_lfht_destroy(state
->channel_state_ht
, NULL
);
349 if (state
->notification_trigger_clients_ht
) {
350 ret
= cds_lfht_destroy(state
->notification_trigger_clients_ht
,
354 if (state
->channels_ht
) {
355 ret
= cds_lfht_destroy(state
->channels_ht
, NULL
);
358 if (state
->sessions_ht
) {
359 ret
= cds_lfht_destroy(state
->sessions_ht
, NULL
);
363 * Must be destroyed after all channels have been destroyed.
364 * See comment in struct lttng_session_trigger_list.
366 if (state
->session_triggers_ht
) {
367 ret
= cds_lfht_destroy(state
->session_triggers_ht
, NULL
);
370 if (state
->notification_channel_socket
>= 0) {
371 notification_channel_socket_destroy(
372 state
->notification_channel_socket
);
374 lttng_poll_clean(&state
->events
);
378 void mark_thread_as_ready(struct notification_thread_handle
*handle
)
380 DBG("Marking notification thread as ready");
381 sem_post(&handle
->ready
);
385 void wait_until_thread_is_ready(struct notification_thread_handle
*handle
)
387 DBG("Waiting for notification thread to be ready");
388 sem_wait(&handle
->ready
);
389 DBG("Notification thread is ready");
393 int init_thread_state(struct notification_thread_handle
*handle
,
394 struct notification_thread_state
*state
)
398 memset(state
, 0, sizeof(*state
));
399 state
->notification_channel_socket
= -1;
400 lttng_poll_init(&state
->events
);
402 ret
= notification_channel_socket_create();
406 state
->notification_channel_socket
= ret
;
408 ret
= init_poll_set(&state
->events
, handle
,
409 state
->notification_channel_socket
);
414 DBG("[notification-thread] Listening on notification channel socket");
415 ret
= lttcomm_listen_unix_sock(state
->notification_channel_socket
);
417 ERR("[notification-thread] Listen failed on notification channel socket");
421 state
->client_socket_ht
= cds_lfht_new(DEFAULT_HT_SIZE
, 1, 0,
422 CDS_LFHT_AUTO_RESIZE
| CDS_LFHT_ACCOUNTING
, NULL
);
423 if (!state
->client_socket_ht
) {
427 state
->channel_triggers_ht
= cds_lfht_new(DEFAULT_HT_SIZE
, 1, 0,
428 CDS_LFHT_AUTO_RESIZE
| CDS_LFHT_ACCOUNTING
, NULL
);
429 if (!state
->channel_triggers_ht
) {
433 state
->session_triggers_ht
= cds_lfht_new(DEFAULT_HT_SIZE
, 1, 0,
434 CDS_LFHT_AUTO_RESIZE
| CDS_LFHT_ACCOUNTING
, NULL
);
435 if (!state
->session_triggers_ht
) {
439 state
->channel_state_ht
= cds_lfht_new(DEFAULT_HT_SIZE
, 1, 0,
440 CDS_LFHT_AUTO_RESIZE
| CDS_LFHT_ACCOUNTING
, NULL
);
441 if (!state
->channel_state_ht
) {
445 state
->notification_trigger_clients_ht
= cds_lfht_new(DEFAULT_HT_SIZE
,
446 1, 0, CDS_LFHT_AUTO_RESIZE
| CDS_LFHT_ACCOUNTING
, NULL
);
447 if (!state
->notification_trigger_clients_ht
) {
451 state
->channels_ht
= cds_lfht_new(DEFAULT_HT_SIZE
,
452 1, 0, CDS_LFHT_AUTO_RESIZE
| CDS_LFHT_ACCOUNTING
, NULL
);
453 if (!state
->channels_ht
) {
456 state
->sessions_ht
= cds_lfht_new(DEFAULT_HT_SIZE
,
457 1, 0, CDS_LFHT_AUTO_RESIZE
| CDS_LFHT_ACCOUNTING
, NULL
);
458 if (!state
->sessions_ht
) {
461 state
->triggers_ht
= cds_lfht_new(DEFAULT_HT_SIZE
,
462 1, 0, CDS_LFHT_AUTO_RESIZE
| CDS_LFHT_ACCOUNTING
, NULL
);
463 if (!state
->triggers_ht
) {
466 mark_thread_as_ready(handle
);
470 fini_thread_state(state
);
475 int handle_channel_monitoring_pipe(int fd
, uint32_t revents
,
476 struct notification_thread_handle
*handle
,
477 struct notification_thread_state
*state
)
480 enum lttng_domain_type domain
;
482 if (fd
== handle
->channel_monitoring_pipes
.ust32_consumer
||
483 fd
== handle
->channel_monitoring_pipes
.ust64_consumer
) {
484 domain
= LTTNG_DOMAIN_UST
;
485 } else if (fd
== handle
->channel_monitoring_pipes
.kernel_consumer
) {
486 domain
= LTTNG_DOMAIN_KERNEL
;
491 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
492 ret
= lttng_poll_del(&state
->events
, fd
);
494 ERR("[notification-thread] Failed to remove consumer monitoring pipe from poll set");
499 ret
= handle_notification_thread_channel_sample(
502 ERR("[notification-thread] Consumer sample handling error occurred");
511 * This thread services notification channel clients and commands received
512 * from various lttng-sessiond components over a command queue.
515 void *thread_notification(void *data
)
518 struct notification_thread_handle
*handle
= data
;
519 struct notification_thread_state state
;
521 DBG("[notification-thread] Started notification thread");
523 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_NOTIFICATION
);
524 rcu_register_thread();
528 ERR("[notification-thread] Invalid thread context provided");
532 health_code_update();
534 ret
= init_thread_state(handle
, &state
);
543 DBG("[notification-thread] Entering poll wait");
544 ret
= lttng_poll_wait(&state
.events
, -1);
545 DBG("[notification-thread] Poll wait returned (%i)", ret
);
549 * Restart interrupted system call.
551 if (errno
== EINTR
) {
554 ERR("[notification-thread] Error encountered during lttng_poll_wait (%i)", ret
);
559 for (i
= 0; i
< fd_count
; i
++) {
560 int fd
= LTTNG_POLL_GETFD(&state
.events
, i
);
561 uint32_t revents
= LTTNG_POLL_GETEV(&state
.events
, i
);
563 DBG("[notification-thread] Handling fd (%i) activity (%u)", fd
, revents
);
565 if (fd
== state
.notification_channel_socket
) {
566 if (revents
& LPOLLIN
) {
567 ret
= handle_notification_thread_client_connect(
573 (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
574 ERR("[notification-thread] Notification socket poll error");
577 ERR("[notification-thread] Unexpected poll events %u for notification socket %i", revents
, fd
);
580 } else if (fd
== lttng_pipe_get_readfd(handle
->cmd_queue
.event_pipe
)) {
581 ret
= handle_notification_thread_command(handle
,
584 DBG("[notification-thread] Error encountered while servicing command queue");
586 } else if (ret
> 0) {
589 } else if (fd
== handle
->channel_monitoring_pipes
.ust32_consumer
||
590 fd
== handle
->channel_monitoring_pipes
.ust64_consumer
||
591 fd
== handle
->channel_monitoring_pipes
.kernel_consumer
) {
592 ret
= handle_channel_monitoring_pipe(fd
,
593 revents
, handle
, &state
);
598 /* Activity on a client's socket. */
599 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
601 * It doesn't matter if a command was
602 * pending on the client socket at this
603 * point since it now has no way to
604 * receive the notifications to which
605 * it was subscribing or unsubscribing.
607 ret
= handle_notification_thread_client_disconnect(
613 if (revents
& LPOLLIN
) {
614 ret
= handle_notification_thread_client_in(
621 if (revents
& LPOLLOUT
) {
622 ret
= handle_notification_thread_client_out(
634 fini_thread_state(&state
);
636 rcu_thread_offline();
637 rcu_unregister_thread();
638 health_unregister(health_sessiond
);
643 bool shutdown_notification_thread(void *thread_data
)
645 struct notification_thread_handle
*handle
= thread_data
;
647 notification_thread_command_quit(handle
);
651 struct lttng_thread
*launch_notification_thread(
652 struct notification_thread_handle
*handle
)
654 struct lttng_thread
*thread
;
656 thread
= lttng_thread_create("Notification",
658 shutdown_notification_thread
,
666 * Wait for the thread to be marked as "ready" before returning
667 * as other subsystems depend on the notification subsystem
668 * (e.g. rotation thread).
670 wait_until_thread_is_ready(handle
);