2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * SPDX-License-Identifier: GPL-2.0-only
22 #include <sys/mount.h>
23 #include <sys/resource.h>
24 #include <sys/socket.h>
26 #include <sys/types.h>
28 #include <urcu/uatomic.h>
32 #include <common/common.h>
33 #include <common/compat/socket.h>
34 #include <common/compat/getenv.h>
35 #include <common/defaults.h>
36 #include <common/kernel-consumer/kernel-consumer.h>
37 #include <common/futex.h>
38 #include <common/relayd/relayd.h>
39 #include <common/utils.h>
40 #include <common/daemonize.h>
41 #include <common/config/session-config.h>
42 #include <common/dynamic-buffer.h>
43 #include <lttng/event-internal.h>
45 #include "lttng-sessiond.h"
46 #include "buffer-registry.h"
53 #include "kernel-consumer.h"
55 #include "lttng-ust-ctl.h"
56 #include "ust-consumer.h"
59 #include "health-sessiond.h"
60 #include "testpoint.h"
61 #include "notify-apps.h"
62 #include "agent-thread.h"
64 #include "notification-thread.h"
65 #include "notification-thread-commands.h"
66 #include "rotation-thread.h"
68 #include "ht-cleanup.h"
69 #include "sessiond-config.h"
75 #include "manage-apps.h"
76 #include "manage-kernel.h"
78 static const char *help_msg
=
79 #ifdef LTTNG_EMBED_HELP
80 #include <lttng-sessiond.8.h>
87 static int lockfile_fd
= -1;
88 static int opt_print_version
;
90 /* Set to 1 when a SIGUSR1 signal is received. */
91 static int recv_child_signal
;
93 /* Command line options */
94 static const struct option long_options
[] = {
95 { "client-sock", required_argument
, 0, 'c' },
96 { "apps-sock", required_argument
, 0, 'a' },
97 { "kconsumerd-cmd-sock", required_argument
, 0, '\0' },
98 { "kconsumerd-err-sock", required_argument
, 0, '\0' },
99 { "ustconsumerd32-cmd-sock", required_argument
, 0, '\0' },
100 { "ustconsumerd32-err-sock", required_argument
, 0, '\0' },
101 { "ustconsumerd64-cmd-sock", required_argument
, 0, '\0' },
102 { "ustconsumerd64-err-sock", required_argument
, 0, '\0' },
103 { "consumerd32-path", required_argument
, 0, '\0' },
104 { "consumerd32-libdir", required_argument
, 0, '\0' },
105 { "consumerd64-path", required_argument
, 0, '\0' },
106 { "consumerd64-libdir", required_argument
, 0, '\0' },
107 { "daemonize", no_argument
, 0, 'd' },
108 { "background", no_argument
, 0, 'b' },
109 { "sig-parent", no_argument
, 0, 'S' },
110 { "help", no_argument
, 0, 'h' },
111 { "group", required_argument
, 0, 'g' },
112 { "version", no_argument
, 0, 'V' },
113 { "quiet", no_argument
, 0, 'q' },
114 { "verbose", no_argument
, 0, 'v' },
115 { "verbose-consumer", no_argument
, 0, '\0' },
116 { "no-kernel", no_argument
, 0, '\0' },
117 { "pidfile", required_argument
, 0, 'p' },
118 { "agent-tcp-port", required_argument
, 0, '\0' },
119 { "config", required_argument
, 0, 'f' },
120 { "load", required_argument
, 0, 'l' },
121 { "kmod-probes", required_argument
, 0, '\0' },
122 { "extra-kmod-probes", required_argument
, 0, '\0' },
126 /* Command line options to ignore from configuration file */
127 static const char *config_ignore_options
[] = { "help", "version", "config" };
130 * This pipe is used to inform the thread managing application communication
131 * that a command is queued and ready to be processed.
133 static int apps_cmd_pipe
[2] = { -1, -1 };
134 static int apps_cmd_notify_pipe
[2] = { -1, -1 };
137 * UST registration command queue. This queue is tied with a futex and uses a N
138 * wakers / 1 waiter implemented and detailed in futex.c/.h
140 * The thread_registration_apps and thread_dispatch_ust_registration uses this
141 * queue along with the wait/wake scheme. The thread_manage_apps receives down
142 * the line new application socket and monitors it for any I/O error or clean
143 * close that triggers an unregistration of the application.
145 static struct ust_cmd_queue ust_cmd_queue
;
148 * Section name to look for in the daemon configuration file.
150 static const char * const config_section_name
= "sessiond";
152 /* Am I root or not. Set to 1 if the daemon is running as root */
156 * Stop all threads by closing the thread quit pipe.
158 static void stop_threads(void)
162 /* Stopping all threads */
163 DBG("Terminating all threads");
164 ret
= sessiond_notify_quit_pipe();
166 ERR("write error on thread quit pipe");
171 * Close every consumer sockets.
173 static void close_consumer_sockets(void)
177 if (kconsumer_data
.err_sock
>= 0) {
178 ret
= close(kconsumer_data
.err_sock
);
180 PERROR("kernel consumer err_sock close");
183 if (ustconsumer32_data
.err_sock
>= 0) {
184 ret
= close(ustconsumer32_data
.err_sock
);
186 PERROR("UST consumerd32 err_sock close");
189 if (ustconsumer64_data
.err_sock
>= 0) {
190 ret
= close(ustconsumer64_data
.err_sock
);
192 PERROR("UST consumerd64 err_sock close");
195 if (kconsumer_data
.cmd_sock
>= 0) {
196 ret
= close(kconsumer_data
.cmd_sock
);
198 PERROR("kernel consumer cmd_sock close");
201 if (ustconsumer32_data
.cmd_sock
>= 0) {
202 ret
= close(ustconsumer32_data
.cmd_sock
);
204 PERROR("UST consumerd32 cmd_sock close");
207 if (ustconsumer64_data
.cmd_sock
>= 0) {
208 ret
= close(ustconsumer64_data
.cmd_sock
);
210 PERROR("UST consumerd64 cmd_sock close");
213 if (kconsumer_data
.channel_monitor_pipe
>= 0) {
214 ret
= close(kconsumer_data
.channel_monitor_pipe
);
216 PERROR("kernel consumer channel monitor pipe close");
219 if (ustconsumer32_data
.channel_monitor_pipe
>= 0) {
220 ret
= close(ustconsumer32_data
.channel_monitor_pipe
);
222 PERROR("UST consumerd32 channel monitor pipe close");
225 if (ustconsumer64_data
.channel_monitor_pipe
>= 0) {
226 ret
= close(ustconsumer64_data
.channel_monitor_pipe
);
228 PERROR("UST consumerd64 channel monitor pipe close");
234 * Wait on consumer process termination.
236 * Need to be called with the consumer data lock held or from a context
237 * ensuring no concurrent access to data (e.g: cleanup).
239 static void wait_consumer(struct consumer_data
*consumer_data
)
244 if (consumer_data
->pid
<= 0) {
248 DBG("Waiting for complete teardown of consumerd (PID: %d)",
250 ret
= waitpid(consumer_data
->pid
, &status
, 0);
252 PERROR("consumerd waitpid pid: %d", consumer_data
->pid
)
253 } else if (!WIFEXITED(status
)) {
254 ERR("consumerd termination with error: %d",
257 consumer_data
->pid
= 0;
261 * Cleanup the session daemon's data structures.
263 static void sessiond_cleanup(void)
266 struct ltt_session_list
*session_list
= session_get_list();
268 DBG("Cleanup sessiond");
271 * Close the thread quit pipe. It has already done its job,
272 * since we are now called.
274 sessiond_close_quit_pipe();
275 utils_close_pipe(apps_cmd_pipe
);
276 utils_close_pipe(apps_cmd_notify_pipe
);
277 utils_close_pipe(kernel_poll_pipe
);
279 ret
= remove(config
.pid_file_path
.value
);
281 PERROR("remove pidfile %s", config
.pid_file_path
.value
);
284 DBG("Removing sessiond and consumerd content of directory %s",
285 config
.rundir
.value
);
288 DBG("Removing %s", config
.pid_file_path
.value
);
289 (void) unlink(config
.pid_file_path
.value
);
291 DBG("Removing %s", config
.agent_port_file_path
.value
);
292 (void) unlink(config
.agent_port_file_path
.value
);
295 DBG("Removing %s", kconsumer_data
.err_unix_sock_path
);
296 (void) unlink(kconsumer_data
.err_unix_sock_path
);
298 DBG("Removing directory %s", config
.kconsumerd_path
.value
);
299 (void) rmdir(config
.kconsumerd_path
.value
);
301 /* ust consumerd 32 */
302 DBG("Removing %s", config
.consumerd32_err_unix_sock_path
.value
);
303 (void) unlink(config
.consumerd32_err_unix_sock_path
.value
);
305 DBG("Removing directory %s", config
.consumerd32_path
.value
);
306 (void) rmdir(config
.consumerd32_path
.value
);
308 /* ust consumerd 64 */
309 DBG("Removing %s", config
.consumerd64_err_unix_sock_path
.value
);
310 (void) unlink(config
.consumerd64_err_unix_sock_path
.value
);
312 DBG("Removing directory %s", config
.consumerd64_path
.value
);
313 (void) rmdir(config
.consumerd64_path
.value
);
315 pthread_mutex_destroy(&session_list
->lock
);
317 DBG("Cleaning up all per-event notifier domain agents");
318 agent_by_event_notifier_domain_ht_destroy();
320 DBG("Cleaning up all agent apps");
321 agent_app_ht_clean();
322 DBG("Closing all UST sockets");
323 ust_app_clean_list();
324 buffer_reg_destroy_registries();
326 close_consumer_sockets();
328 wait_consumer(&kconsumer_data
);
329 wait_consumer(&ustconsumer64_data
);
330 wait_consumer(&ustconsumer32_data
);
332 if (is_root
&& !config
.no_kernel
) {
333 cleanup_kernel_tracer();
337 * We do NOT rmdir rundir because there are other processes
338 * using it, for instance lttng-relayd, which can start in
339 * parallel with this teardown.
344 * Cleanup the daemon's option data structures.
346 static void sessiond_cleanup_options(void)
348 DBG("Cleaning up options");
350 sessiond_config_fini(&config
);
352 run_as_destroy_worker();
355 static int string_match(const char *str1
, const char *str2
)
357 return (str1
&& str2
) && !strcmp(str1
, str2
);
361 * Take an option from the getopt output and set it in the right variable to be
364 * Return 0 on success else a negative value.
366 static int set_option(int opt
, const char *arg
, const char *optname
)
370 if (string_match(optname
, "client-sock") || opt
== 'c') {
371 if (!arg
|| *arg
== '\0') {
375 if (lttng_is_setuid_setgid()) {
376 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
377 "-c, --client-sock");
379 config_string_set(&config
.client_unix_sock_path
,
381 if (!config
.client_unix_sock_path
.value
) {
386 } else if (string_match(optname
, "apps-sock") || opt
== 'a') {
387 if (!arg
|| *arg
== '\0') {
391 if (lttng_is_setuid_setgid()) {
392 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
395 config_string_set(&config
.apps_unix_sock_path
,
397 if (!config
.apps_unix_sock_path
.value
) {
402 } else if (string_match(optname
, "daemonize") || opt
== 'd') {
403 config
.daemonize
= true;
404 } else if (string_match(optname
, "background") || opt
== 'b') {
405 config
.background
= true;
406 } else if (string_match(optname
, "group") || opt
== 'g') {
407 if (!arg
|| *arg
== '\0') {
411 if (lttng_is_setuid_setgid()) {
412 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
415 config_string_set(&config
.tracing_group_name
,
417 if (!config
.tracing_group_name
.value
) {
422 } else if (string_match(optname
, "help") || opt
== 'h') {
423 ret
= utils_show_help(8, "lttng-sessiond", help_msg
);
425 ERR("Cannot show --help for `lttng-sessiond`");
428 exit(ret
? EXIT_FAILURE
: EXIT_SUCCESS
);
429 } else if (string_match(optname
, "version") || opt
== 'V') {
430 opt_print_version
= 1;
431 } else if (string_match(optname
, "sig-parent") || opt
== 'S') {
432 config
.sig_parent
= true;
433 } else if (string_match(optname
, "kconsumerd-err-sock")) {
434 if (!arg
|| *arg
== '\0') {
438 if (lttng_is_setuid_setgid()) {
439 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
440 "--kconsumerd-err-sock");
442 config_string_set(&config
.kconsumerd_err_unix_sock_path
,
444 if (!config
.kconsumerd_err_unix_sock_path
.value
) {
449 } else if (string_match(optname
, "kconsumerd-cmd-sock")) {
450 if (!arg
|| *arg
== '\0') {
454 if (lttng_is_setuid_setgid()) {
455 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
456 "--kconsumerd-cmd-sock");
458 config_string_set(&config
.kconsumerd_cmd_unix_sock_path
,
460 if (!config
.kconsumerd_cmd_unix_sock_path
.value
) {
465 } else if (string_match(optname
, "ustconsumerd64-err-sock")) {
466 if (!arg
|| *arg
== '\0') {
470 if (lttng_is_setuid_setgid()) {
471 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
472 "--ustconsumerd64-err-sock");
474 config_string_set(&config
.consumerd64_err_unix_sock_path
,
476 if (!config
.consumerd64_err_unix_sock_path
.value
) {
481 } else if (string_match(optname
, "ustconsumerd64-cmd-sock")) {
482 if (!arg
|| *arg
== '\0') {
486 if (lttng_is_setuid_setgid()) {
487 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
488 "--ustconsumerd64-cmd-sock");
490 config_string_set(&config
.consumerd64_cmd_unix_sock_path
,
492 if (!config
.consumerd64_cmd_unix_sock_path
.value
) {
497 } else if (string_match(optname
, "ustconsumerd32-err-sock")) {
498 if (!arg
|| *arg
== '\0') {
502 if (lttng_is_setuid_setgid()) {
503 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
504 "--ustconsumerd32-err-sock");
506 config_string_set(&config
.consumerd32_err_unix_sock_path
,
508 if (!config
.consumerd32_err_unix_sock_path
.value
) {
513 } else if (string_match(optname
, "ustconsumerd32-cmd-sock")) {
514 if (!arg
|| *arg
== '\0') {
518 if (lttng_is_setuid_setgid()) {
519 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
520 "--ustconsumerd32-cmd-sock");
522 config_string_set(&config
.consumerd32_cmd_unix_sock_path
,
524 if (!config
.consumerd32_cmd_unix_sock_path
.value
) {
529 } else if (string_match(optname
, "no-kernel")) {
530 config
.no_kernel
= true;
531 } else if (string_match(optname
, "quiet") || opt
== 'q') {
533 } else if (string_match(optname
, "verbose") || opt
== 'v') {
534 /* Verbose level can increase using multiple -v */
536 /* Value obtained from config file */
537 config
.verbose
= config_parse_value(arg
);
539 /* -v used on command line */
542 /* Clamp value to [0, 3] */
543 config
.verbose
= config
.verbose
< 0 ? 0 :
544 (config
.verbose
<= 3 ? config
.verbose
: 3);
545 } else if (string_match(optname
, "verbose-consumer")) {
547 config
.verbose_consumer
= config_parse_value(arg
);
549 config
.verbose_consumer
++;
551 } else if (string_match(optname
, "consumerd32-path")) {
552 if (!arg
|| *arg
== '\0') {
556 if (lttng_is_setuid_setgid()) {
557 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
558 "--consumerd32-path");
560 config_string_set(&config
.consumerd32_bin_path
,
562 if (!config
.consumerd32_bin_path
.value
) {
567 } else if (string_match(optname
, "consumerd32-libdir")) {
568 if (!arg
|| *arg
== '\0') {
572 if (lttng_is_setuid_setgid()) {
573 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
574 "--consumerd32-libdir");
576 config_string_set(&config
.consumerd32_lib_dir
,
578 if (!config
.consumerd32_lib_dir
.value
) {
583 } else if (string_match(optname
, "consumerd64-path")) {
584 if (!arg
|| *arg
== '\0') {
588 if (lttng_is_setuid_setgid()) {
589 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
590 "--consumerd64-path");
592 config_string_set(&config
.consumerd64_bin_path
,
594 if (!config
.consumerd64_bin_path
.value
) {
599 } else if (string_match(optname
, "consumerd64-libdir")) {
600 if (!arg
|| *arg
== '\0') {
604 if (lttng_is_setuid_setgid()) {
605 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
606 "--consumerd64-libdir");
608 config_string_set(&config
.consumerd64_lib_dir
,
610 if (!config
.consumerd64_lib_dir
.value
) {
615 } else if (string_match(optname
, "pidfile") || opt
== 'p') {
616 if (!arg
|| *arg
== '\0') {
620 if (lttng_is_setuid_setgid()) {
621 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
624 config_string_set(&config
.pid_file_path
, strdup(arg
));
625 if (!config
.pid_file_path
.value
) {
630 } else if (string_match(optname
, "agent-tcp-port")) {
631 if (!arg
|| *arg
== '\0') {
635 if (lttng_is_setuid_setgid()) {
636 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
642 v
= strtoul(arg
, NULL
, 0);
643 if (errno
!= 0 || !isdigit(arg
[0])) {
644 ERR("Wrong value in --agent-tcp-port parameter: %s", arg
);
647 if (v
== 0 || v
>= 65535) {
648 ERR("Port overflow in --agent-tcp-port parameter: %s", arg
);
651 config
.agent_tcp_port
.begin
= config
.agent_tcp_port
.end
= (int) v
;
652 DBG3("Agent TCP port set to non default: %i", (int) v
);
654 } else if (string_match(optname
, "load") || opt
== 'l') {
655 if (!arg
|| *arg
== '\0') {
659 if (lttng_is_setuid_setgid()) {
660 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
663 config_string_set(&config
.load_session_path
, strdup(arg
));
664 if (!config
.load_session_path
.value
) {
669 } else if (string_match(optname
, "kmod-probes")) {
670 if (!arg
|| *arg
== '\0') {
674 if (lttng_is_setuid_setgid()) {
675 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
678 config_string_set(&config
.kmod_probes_list
, strdup(arg
));
679 if (!config
.kmod_probes_list
.value
) {
684 } else if (string_match(optname
, "extra-kmod-probes")) {
685 if (!arg
|| *arg
== '\0') {
689 if (lttng_is_setuid_setgid()) {
690 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
691 "--extra-kmod-probes");
693 config_string_set(&config
.kmod_extra_probes_list
,
695 if (!config
.kmod_extra_probes_list
.value
) {
700 } else if (string_match(optname
, "config") || opt
== 'f') {
701 /* This is handled in set_options() thus silent skip. */
704 /* Unknown option or other error.
705 * Error is printed by getopt, just return */
710 if (ret
== -EINVAL
) {
711 const char *opt_name
= "unknown";
714 for (i
= 0; i
< sizeof(long_options
) / sizeof(struct option
);
716 if (opt
== long_options
[i
].val
) {
717 opt_name
= long_options
[i
].name
;
722 WARN("Invalid argument provided for option \"%s\", using default value.",
730 * config_entry_handler_cb used to handle options read from a config file.
731 * See config_entry_handler_cb comment in common/config/session-config.h for the
732 * return value conventions.
734 static int config_entry_handler(const struct config_entry
*entry
, void *unused
)
738 if (!entry
|| !entry
->name
|| !entry
->value
) {
743 /* Check if the option is to be ignored */
744 for (i
= 0; i
< sizeof(config_ignore_options
) / sizeof(char *); i
++) {
745 if (!strcmp(entry
->name
, config_ignore_options
[i
])) {
750 for (i
= 0; i
< (sizeof(long_options
) / sizeof(struct option
)) - 1;
753 /* Ignore if not fully matched. */
754 if (strcmp(entry
->name
, long_options
[i
].name
)) {
759 * If the option takes no argument on the command line, we have to
760 * check if the value is "true". We support non-zero numeric values,
763 if (!long_options
[i
].has_arg
) {
764 ret
= config_parse_value(entry
->value
);
767 WARN("Invalid configuration value \"%s\" for option %s",
768 entry
->value
, entry
->name
);
770 /* False, skip boolean config option. */
775 ret
= set_option(long_options
[i
].val
, entry
->value
, entry
->name
);
779 WARN("Unrecognized option \"%s\" in daemon configuration file.", entry
->name
);
785 static void print_version(void) {
786 fprintf(stdout
, "%s\n", VERSION
);
790 * daemon configuration loading and argument parsing
792 static int set_options(int argc
, char **argv
)
794 int ret
= 0, c
= 0, option_index
= 0;
795 int orig_optopt
= optopt
, orig_optind
= optind
;
797 const char *config_path
= NULL
;
799 optstring
= utils_generate_optstring(long_options
,
800 sizeof(long_options
) / sizeof(struct option
));
806 /* Check for the --config option */
807 while ((c
= getopt_long(argc
, argv
, optstring
, long_options
,
808 &option_index
)) != -1) {
812 } else if (c
!= 'f') {
813 /* if not equal to --config option. */
817 if (lttng_is_setuid_setgid()) {
818 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
821 config_path
= utils_expand_path(optarg
);
823 ERR("Failed to resolve path: %s", optarg
);
828 ret
= config_get_section_entries(config_path
, config_section_name
,
829 config_entry_handler
, NULL
);
832 ERR("Invalid configuration option at line %i", ret
);
838 /* Reset getopt's global state */
839 optopt
= orig_optopt
;
840 optind
= orig_optind
;
844 * getopt_long() will not set option_index if it encounters a
847 c
= getopt_long(argc
, argv
, optstring
, long_options
,
854 * Pass NULL as the long option name if popt left the index
857 ret
= set_option(c
, optarg
,
858 option_index
< 0 ? NULL
:
859 long_options
[option_index
].name
);
871 * Create lockfile using the rundir and return its fd.
873 static int create_lockfile(void)
875 return utils_create_lock_file(config
.lock_file_path
.value
);
879 * Check if the global socket is available, and if a daemon is answering at the
880 * other side. If yes, error is returned.
882 * Also attempts to create and hold the lock file.
884 static int check_existing_daemon(void)
888 /* Is there anybody out there ? */
889 if (lttng_session_daemon_alive()) {
894 lockfile_fd
= create_lockfile();
895 if (lockfile_fd
< 0) {
903 static void sessiond_cleanup_lock_file(void)
908 * Cleanup lock file by deleting it and finaly closing it which will
909 * release the file system lock.
911 if (lockfile_fd
>= 0) {
912 ret
= remove(config
.lock_file_path
.value
);
914 PERROR("remove lock file");
916 ret
= close(lockfile_fd
);
918 PERROR("close lock file");
924 * Set the tracing group gid onto the client socket.
926 * Race window between mkdir and chown is OK because we are going from more
927 * permissive (root.root) to less permissive (root.tracing).
929 static int set_permissions(char *rundir
)
934 ret
= utils_get_group_id(config
.tracing_group_name
.value
, true, &gid
);
936 /* Default to root group. */
940 /* Set lttng run dir */
941 ret
= chown(rundir
, 0, gid
);
943 ERR("Unable to set group on %s", rundir
);
948 * Ensure all applications and tracing group can search the run
949 * dir. Allow everyone to read the directory, since it does not
950 * buy us anything to hide its content.
952 ret
= chmod(rundir
, S_IRWXU
| S_IRGRP
| S_IXGRP
| S_IROTH
| S_IXOTH
);
954 ERR("Unable to set permissions on %s", rundir
);
958 /* lttng client socket path */
959 ret
= chown(config
.client_unix_sock_path
.value
, 0, gid
);
961 ERR("Unable to set group on %s", config
.client_unix_sock_path
.value
);
965 /* kconsumer error socket path */
966 ret
= chown(kconsumer_data
.err_unix_sock_path
, 0, 0);
968 ERR("Unable to set group on %s", kconsumer_data
.err_unix_sock_path
);
972 /* 64-bit ustconsumer error socket path */
973 ret
= chown(ustconsumer64_data
.err_unix_sock_path
, 0, 0);
975 ERR("Unable to set group on %s", ustconsumer64_data
.err_unix_sock_path
);
979 /* 32-bit ustconsumer compat32 error socket path */
980 ret
= chown(ustconsumer32_data
.err_unix_sock_path
, 0, 0);
982 ERR("Unable to set group on %s", ustconsumer32_data
.err_unix_sock_path
);
986 DBG("All permissions are set");
992 * Create the lttng run directory needed for all global sockets and pipe.
994 static int create_lttng_rundir(void)
998 DBG3("Creating LTTng run directory: %s", config
.rundir
.value
);
1000 ret
= mkdir(config
.rundir
.value
, S_IRWXU
);
1002 if (errno
!= EEXIST
) {
1003 ERR("Unable to create %s", config
.rundir
.value
);
1015 * Setup sockets and directory needed by the consumerds' communication with the
1018 static int set_consumer_sockets(struct consumer_data
*consumer_data
)
1023 switch (consumer_data
->type
) {
1024 case LTTNG_CONSUMER_KERNEL
:
1025 path
= config
.kconsumerd_path
.value
;
1027 case LTTNG_CONSUMER64_UST
:
1028 path
= config
.consumerd64_path
.value
;
1030 case LTTNG_CONSUMER32_UST
:
1031 path
= config
.consumerd32_path
.value
;
1034 ERR("Consumer type unknown");
1040 DBG2("Creating consumer directory: %s", path
);
1042 ret
= mkdir(path
, S_IRWXU
| S_IRGRP
| S_IXGRP
);
1043 if (ret
< 0 && errno
!= EEXIST
) {
1045 ERR("Failed to create %s", path
);
1051 ret
= utils_get_group_id(config
.tracing_group_name
.value
, true,
1054 /* Default to root group. */
1058 ret
= chown(path
, 0, gid
);
1060 ERR("Unable to set group on %s", path
);
1066 /* Create the consumerd error unix socket */
1067 consumer_data
->err_sock
=
1068 lttcomm_create_unix_sock(consumer_data
->err_unix_sock_path
);
1069 if (consumer_data
->err_sock
< 0) {
1070 ERR("Create unix sock failed: %s", consumer_data
->err_unix_sock_path
);
1076 * Set the CLOEXEC flag. Return code is useless because either way, the
1079 ret
= utils_set_fd_cloexec(consumer_data
->err_sock
);
1081 PERROR("utils_set_fd_cloexec");
1082 /* continue anyway */
1085 /* File permission MUST be 660 */
1086 ret
= chmod(consumer_data
->err_unix_sock_path
,
1087 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
1089 ERR("Set file permissions failed: %s", consumer_data
->err_unix_sock_path
);
1099 * Signal handler for the daemon
1101 * Simply stop all worker threads, leaving main() return gracefully after
1102 * joining all threads and calling cleanup().
1104 static void sighandler(int sig
)
1108 DBG("SIGINT caught");
1112 DBG("SIGTERM caught");
1116 CMM_STORE_SHARED(recv_child_signal
, 1);
1124 * Setup signal handler for :
1125 * SIGINT, SIGTERM, SIGPIPE
1127 static int set_signal_handler(void)
1130 struct sigaction sa
;
1133 if ((ret
= sigemptyset(&sigset
)) < 0) {
1134 PERROR("sigemptyset");
1138 sa
.sa_mask
= sigset
;
1141 sa
.sa_handler
= sighandler
;
1142 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
1143 PERROR("sigaction");
1147 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
1148 PERROR("sigaction");
1152 if ((ret
= sigaction(SIGUSR1
, &sa
, NULL
)) < 0) {
1153 PERROR("sigaction");
1157 sa
.sa_handler
= SIG_IGN
;
1158 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
1159 PERROR("sigaction");
1163 DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT");
1169 * Set open files limit to unlimited. This daemon can open a large number of
1170 * file descriptors in order to consume multiple kernel traces.
1172 static void set_ulimit(void)
1177 /* The kernel does not allow an infinite limit for open files */
1178 lim
.rlim_cur
= 65535;
1179 lim
.rlim_max
= 65535;
1181 ret
= setrlimit(RLIMIT_NOFILE
, &lim
);
1183 PERROR("failed to set open files limit");
1187 static int write_pidfile(void)
1189 return utils_create_pid_file(getpid(), config
.pid_file_path
.value
);
1192 static int set_clock_plugin_env(void)
1195 char *env_value
= NULL
;
1197 if (!config
.lttng_ust_clock_plugin
.value
) {
1201 ret
= asprintf(&env_value
, "LTTNG_UST_CLOCK_PLUGIN=%s",
1202 config
.lttng_ust_clock_plugin
.value
);
1208 ret
= putenv(env_value
);
1211 PERROR("putenv of LTTNG_UST_CLOCK_PLUGIN");
1215 DBG("Updated LTTNG_UST_CLOCK_PLUGIN environment variable to \"%s\"",
1216 config
.lttng_ust_clock_plugin
.value
);
1221 static void destroy_all_sessions_and_wait(void)
1223 struct ltt_session
*session
, *tmp
;
1224 struct ltt_session_list
*session_list
;
1226 session_list
= session_get_list();
1227 DBG("Initiating destruction of all sessions");
1229 if (!session_list
) {
1233 session_lock_list();
1234 /* Initiate the destruction of all sessions. */
1235 cds_list_for_each_entry_safe(session
, tmp
,
1236 &session_list
->head
, list
) {
1237 if (!session_get(session
)) {
1241 session_lock(session
);
1242 if (session
->destroyed
) {
1243 goto unlock_session
;
1245 (void) cmd_stop_trace(session
);
1246 (void) cmd_destroy_session(session
, notification_thread_handle
,
1249 session_unlock(session
);
1250 session_put(session
);
1252 session_unlock_list();
1254 /* Wait for the destruction of all sessions to complete. */
1255 DBG("Waiting for the destruction of all sessions to complete");
1256 session_list_wait_empty();
1257 DBG("Destruction of all sessions completed");
1260 static void unregister_all_triggers(void)
1262 enum lttng_error_code ret_code
;
1263 enum lttng_trigger_status trigger_status
;
1264 struct lttng_triggers
*triggers
= NULL
;
1265 unsigned int trigger_count
, i
;
1266 const struct lttng_credentials creds
= {
1267 .uid
= LTTNG_OPTIONAL_INIT_VALUE(0),
1270 DBG("Unregistering all triggers");
1273 * List all triggers as "root" since we wish to unregister all triggers.
1275 ret_code
= notification_thread_command_list_triggers(
1276 notification_thread_handle
, creds
.uid
.value
, &triggers
);
1277 if (ret_code
!= LTTNG_OK
) {
1278 ERR("Failed to list triggers while unregistering all triggers");
1282 trigger_status
= lttng_triggers_get_count(triggers
, &trigger_count
);
1283 assert(trigger_status
== LTTNG_TRIGGER_STATUS_OK
);
1285 for (i
= 0; i
< trigger_count
; i
++) {
1286 enum lttng_error_code ret_code
;
1287 uid_t trigger_owner
;
1288 const char *trigger_name
;
1289 const struct lttng_trigger
*trigger
=
1290 lttng_triggers_get_at_index(triggers
, i
);
1294 trigger_status
= lttng_trigger_get_owner_uid(
1295 trigger
, &trigger_owner
);
1296 assert(trigger_status
== LTTNG_TRIGGER_STATUS_OK
);
1298 trigger_status
= lttng_trigger_get_name(trigger
, &trigger_name
);
1299 assert(trigger_status
== LTTNG_TRIGGER_STATUS_OK
);
1301 DBG("Unregistering trigger: trigger owner uid = %d, trigger name = '%s'",
1302 (int) trigger_owner
, trigger_name
);
1304 ret_code
= cmd_unregister_trigger(
1305 &creds
, trigger
, notification_thread_handle
);
1306 if (ret_code
!= LTTNG_OK
) {
1307 ERR("Failed to unregister trigger: trigger owner uid = %d, trigger name = '%s', error: '%s'",
1308 (int) trigger_owner
, trigger_name
,
1309 lttng_strerror(-ret_code
));
1310 /* Continue to unregister the remaining triggers. */
1314 lttng_triggers_destroy(triggers
);
1317 static int run_as_worker_post_fork_cleanup(void *data
)
1319 struct sessiond_config
*sessiond_config
= data
;
1321 sessiond_config_fini(sessiond_config
);
1325 static int launch_run_as_worker(const char *procname
)
1328 * Clean-up before forking the run-as worker. Any dynamically
1329 * allocated memory of which the worker is not aware will
1330 * be leaked as the process forks a run-as worker (and performs
1331 * no exec*()). The same would apply to any opened fd.
1333 return run_as_create_worker(procname
, run_as_worker_post_fork_cleanup
,
1337 static void sessiond_uuid_log(void)
1339 char uuid_str
[LTTNG_UUID_STR_LEN
];
1341 lttng_uuid_to_str(sessiond_uuid
, uuid_str
);
1342 DBG("Starting lttng-sessiond {%s}", uuid_str
);
1348 int main(int argc
, char **argv
)
1350 int ret
= 0, retval
= 0;
1351 const char *env_app_timeout
;
1352 struct lttng_pipe
*ust32_channel_monitor_pipe
= NULL
,
1353 *ust64_channel_monitor_pipe
= NULL
,
1354 *kernel_channel_monitor_pipe
= NULL
;
1355 struct lttng_thread
*ht_cleanup_thread
= NULL
;
1356 struct timer_thread_parameters timer_thread_parameters
;
1357 /* Rotation thread handle. */
1358 struct rotation_thread_handle
*rotation_thread_handle
= NULL
;
1359 /* Queue of rotation jobs populated by the sessiond-timer. */
1360 struct rotation_thread_timer_queue
*rotation_timer_queue
= NULL
;
1361 struct lttng_thread
*client_thread
= NULL
;
1362 struct lttng_thread
*notification_thread
= NULL
;
1363 struct lttng_thread
*register_apps_thread
= NULL
;
1365 logger_set_thread_name("Main", false);
1366 init_kernel_workarounds();
1368 rcu_register_thread();
1370 if (set_signal_handler()) {
1372 goto exit_set_signal_handler
;
1375 if (timer_signal_init()) {
1377 goto exit_set_signal_handler
;
1380 page_size
= sysconf(_SC_PAGESIZE
);
1381 if (page_size
< 0) {
1382 PERROR("sysconf _SC_PAGESIZE");
1383 page_size
= LONG_MAX
;
1384 WARN("Fallback page size to %ld", page_size
);
1387 ret
= sessiond_config_init(&config
);
1390 goto exit_set_signal_handler
;
1394 * Init config from environment variables.
1395 * Command line option override env configuration per-doc. Do env first.
1397 sessiond_config_apply_env_config(&config
);
1400 * Parse arguments and load the daemon configuration file.
1402 * We have an exit_options exit path to free memory reserved by
1403 * set_options. This is needed because the rest of sessiond_cleanup()
1404 * depends on ht_cleanup_thread, which depends on lttng_daemonize, which
1405 * depends on set_options.
1408 if (set_options(argc
, argv
)) {
1414 * Resolve all paths received as arguments, configuration option, or
1415 * through environment variable as absolute paths. This is necessary
1416 * since daemonizing causes the sessiond's current working directory
1419 ret
= sessiond_config_resolve_paths(&config
);
1425 lttng_opt_verbose
= config
.verbose
;
1426 lttng_opt_quiet
= config
.quiet
;
1427 kconsumer_data
.err_unix_sock_path
=
1428 config
.kconsumerd_err_unix_sock_path
.value
;
1429 kconsumer_data
.cmd_unix_sock_path
=
1430 config
.kconsumerd_cmd_unix_sock_path
.value
;
1431 ustconsumer32_data
.err_unix_sock_path
=
1432 config
.consumerd32_err_unix_sock_path
.value
;
1433 ustconsumer32_data
.cmd_unix_sock_path
=
1434 config
.consumerd32_cmd_unix_sock_path
.value
;
1435 ustconsumer64_data
.err_unix_sock_path
=
1436 config
.consumerd64_err_unix_sock_path
.value
;
1437 ustconsumer64_data
.cmd_unix_sock_path
=
1438 config
.consumerd64_cmd_unix_sock_path
.value
;
1439 set_clock_plugin_env();
1441 sessiond_config_log(&config
);
1442 sessiond_uuid_log();
1444 if (opt_print_version
) {
1450 if (create_lttng_rundir()) {
1455 /* Abort launch if a session daemon is already running. */
1456 if (check_existing_daemon()) {
1457 ERR("A session daemon is already running.");
1463 if (config
.daemonize
|| config
.background
) {
1466 ret
= lttng_daemonize(&child_ppid
, &recv_child_signal
,
1467 !config
.background
);
1474 * We are in the child. Make sure all other file descriptors are
1475 * closed, in case we are called with more opened file
1476 * descriptors than the standard ones and the lock file.
1478 for (i
= 3; i
< sysconf(_SC_OPEN_MAX
); i
++) {
1479 if (i
== lockfile_fd
) {
1486 if (launch_run_as_worker(argv
[0]) < 0) {
1487 goto exit_create_run_as_worker_cleanup
;
1491 * Starting from here, we can create threads. This needs to be after
1492 * lttng_daemonize due to RCU.
1496 * Initialize the health check subsystem. This call should set the
1497 * appropriate time values.
1499 health_sessiond
= health_app_create(NR_HEALTH_SESSIOND_TYPES
);
1500 if (!health_sessiond
) {
1501 PERROR("health_app_create error");
1506 /* Create thread to clean up RCU hash tables */
1507 ht_cleanup_thread
= launch_ht_cleanup_thread();
1508 if (!ht_cleanup_thread
) {
1513 /* Create thread quit pipe */
1514 if (sessiond_init_thread_quit_pipe()) {
1519 /* Check if daemon is UID = 0 */
1520 is_root
= !getuid();
1522 /* Create global run dir with root access */
1524 kernel_channel_monitor_pipe
= lttng_pipe_open(0);
1525 if (!kernel_channel_monitor_pipe
) {
1526 ERR("Failed to create kernel consumer channel monitor pipe");
1530 kconsumer_data
.channel_monitor_pipe
=
1531 lttng_pipe_release_writefd(
1532 kernel_channel_monitor_pipe
);
1533 if (kconsumer_data
.channel_monitor_pipe
< 0) {
1539 /* Set consumer initial state */
1540 kernel_consumerd_state
= CONSUMER_STOPPED
;
1541 ust_consumerd_state
= CONSUMER_STOPPED
;
1543 ust32_channel_monitor_pipe
= lttng_pipe_open(0);
1544 if (!ust32_channel_monitor_pipe
) {
1545 ERR("Failed to create 32-bit user space consumer channel monitor pipe");
1549 ustconsumer32_data
.channel_monitor_pipe
= lttng_pipe_release_writefd(
1550 ust32_channel_monitor_pipe
);
1551 if (ustconsumer32_data
.channel_monitor_pipe
< 0) {
1557 * The rotation_thread_timer_queue structure is shared between the
1558 * sessiond timer thread and the rotation thread. The main thread keeps
1559 * its ownership and destroys it when both threads have been joined.
1561 rotation_timer_queue
= rotation_thread_timer_queue_create();
1562 if (!rotation_timer_queue
) {
1566 timer_thread_parameters
.rotation_thread_job_queue
=
1567 rotation_timer_queue
;
1569 ust64_channel_monitor_pipe
= lttng_pipe_open(0);
1570 if (!ust64_channel_monitor_pipe
) {
1571 ERR("Failed to create 64-bit user space consumer channel monitor pipe");
1575 ustconsumer64_data
.channel_monitor_pipe
= lttng_pipe_release_writefd(
1576 ust64_channel_monitor_pipe
);
1577 if (ustconsumer64_data
.channel_monitor_pipe
< 0) {
1583 * Init UST app hash table. Alloc hash table before this point since
1584 * cleanup() can get called after that point.
1586 if (ust_app_ht_alloc()) {
1587 ERR("Failed to allocate UST app hash table");
1593 * Initialize agent app hash table. We allocate the hash table here
1594 * since cleanup() can get called after this point.
1596 if (agent_app_ht_alloc()) {
1597 ERR("Failed to allocate Agent app hash table");
1602 if (agent_by_event_notifier_domain_ht_create()) {
1603 ERR("Failed to allocate per-event notifier domain agent hash table");
1608 * These actions must be executed as root. We do that *after* setting up
1609 * the sockets path because we MUST make the check for another daemon using
1610 * those paths *before* trying to set the kernel consumer sockets and init
1614 if (set_consumer_sockets(&kconsumer_data
)) {
1619 /* Setup kernel tracer */
1620 if (!config
.no_kernel
) {
1621 init_kernel_tracer();
1624 /* Set ulimit for open files */
1627 /* init lttng_fd tracking must be done after set_ulimit. */
1630 if (set_consumer_sockets(&ustconsumer64_data
)) {
1635 if (set_consumer_sockets(&ustconsumer32_data
)) {
1640 /* Get parent pid if -S, --sig-parent is specified. */
1641 if (config
.sig_parent
) {
1645 /* Setup the kernel pipe for waking up the kernel thread */
1646 if (is_root
&& !config
.no_kernel
) {
1647 if (utils_create_pipe_cloexec(kernel_poll_pipe
)) {
1653 /* Setup the thread apps communication pipe. */
1654 if (utils_create_pipe_cloexec(apps_cmd_pipe
)) {
1659 /* Setup the thread apps notify communication pipe. */
1660 if (utils_create_pipe_cloexec(apps_cmd_notify_pipe
)) {
1665 /* Initialize global buffer per UID and PID registry. */
1666 buffer_reg_init_uid_registry();
1667 buffer_reg_init_pid_registry();
1669 /* Init UST command queue. */
1670 cds_wfcq_init(&ust_cmd_queue
.head
, &ust_cmd_queue
.tail
);
1674 /* Check for the application socket timeout env variable. */
1675 env_app_timeout
= getenv(DEFAULT_APP_SOCKET_TIMEOUT_ENV
);
1676 if (env_app_timeout
) {
1677 config
.app_socket_timeout
= atoi(env_app_timeout
);
1679 config
.app_socket_timeout
= DEFAULT_APP_SOCKET_RW_TIMEOUT
;
1682 ret
= write_pidfile();
1684 ERR("Error in write_pidfile");
1689 /* Initialize communication library */
1691 /* Initialize TCP timeout values */
1692 lttcomm_inet_init();
1694 /* Create health-check thread. */
1695 if (!launch_health_management_thread()) {
1700 /* notification_thread_data acquires the pipes' read side. */
1701 notification_thread_handle
= notification_thread_handle_create(
1702 ust32_channel_monitor_pipe
,
1703 ust64_channel_monitor_pipe
,
1704 kernel_channel_monitor_pipe
);
1705 if (!notification_thread_handle
) {
1707 ERR("Failed to create notification thread shared data");
1711 /* Create notification thread. */
1712 notification_thread
= launch_notification_thread(
1713 notification_thread_handle
);
1714 if (!notification_thread
) {
1719 /* Create timer thread. */
1720 if (!launch_timer_thread(&timer_thread_parameters
)) {
1725 /* rotation_thread_data acquires the pipes' read side. */
1726 rotation_thread_handle
= rotation_thread_handle_create(
1727 rotation_timer_queue
,
1728 notification_thread_handle
);
1729 if (!rotation_thread_handle
) {
1731 ERR("Failed to create rotation thread shared data");
1736 /* Create rotation thread. */
1737 if (!launch_rotation_thread(rotation_thread_handle
)) {
1742 /* Create thread to manage the client socket */
1743 client_thread
= launch_client_thread();
1744 if (!client_thread
) {
1749 /* Set credentials of the client socket and rundir */
1750 if (is_root
&& set_permissions(config
.rundir
.value
)) {
1755 if (!launch_ust_dispatch_thread(&ust_cmd_queue
, apps_cmd_pipe
[1],
1756 apps_cmd_notify_pipe
[1])) {
1761 /* Create thread to manage application registration. */
1762 register_apps_thread
= launch_application_registration_thread(
1764 if (!register_apps_thread
) {
1769 /* Create thread to manage application socket */
1770 if (!launch_application_management_thread(apps_cmd_pipe
[0])) {
1775 /* Create thread to manage application notify socket */
1776 if (!launch_application_notification_thread(apps_cmd_notify_pipe
[0])) {
1781 /* Create agent management thread. */
1782 if (!launch_agent_management_thread()) {
1787 /* Don't start this thread if kernel tracing is not requested nor root */
1788 if (is_root
&& !config
.no_kernel
) {
1789 /* Create kernel thread to manage kernel event */
1790 if (!launch_kernel_management_thread(kernel_poll_pipe
[0])) {
1795 if (kernel_get_notification_fd() >= 0) {
1796 ret
= notification_thread_command_add_tracer_event_source(
1797 notification_thread_handle
,
1798 kernel_get_notification_fd(),
1799 LTTNG_DOMAIN_KERNEL
);
1800 if (ret
!= LTTNG_OK
) {
1801 ERR("Failed to add kernel trigger event source to notification thread");
1808 /* Load sessions. */
1809 ret
= config_load_session(config
.load_session_path
.value
,
1812 ERR("Session load failed: %s", error_get_str(ret
));
1817 /* Initialization completed. */
1818 sessiond_signal_parents();
1821 * This is where we start awaiting program completion (e.g. through
1822 * signal that asks threads to teardown).
1825 /* Initiate teardown once activity occurs on the quit pipe. */
1826 sessiond_wait_for_quit_pipe(-1);
1830 * Ensure that the client thread is no longer accepting new commands,
1831 * which could cause new sessions to be created.
1833 if (client_thread
) {
1834 lttng_thread_shutdown(client_thread
);
1835 lttng_thread_put(client_thread
);
1838 destroy_all_sessions_and_wait();
1841 * At this point no new trigger can be registered (no sessions are
1842 * running/rotating) and clients can't connect to the session daemon
1843 * anymore. Unregister all triggers.
1845 unregister_all_triggers();
1847 if (register_apps_thread
) {
1848 lttng_thread_shutdown(register_apps_thread
);
1849 lttng_thread_put(register_apps_thread
);
1851 lttng_thread_list_shutdown_orphans();
1854 * Wait for all pending call_rcu work to complete before tearing
1855 * down data structures. call_rcu worker may be trying to
1856 * perform lookups in those structures.
1860 * sessiond_cleanup() is called when no other thread is running, except
1861 * the ht_cleanup thread, which is needed to destroy the hash tables.
1863 rcu_thread_online();
1867 * Wait for all pending call_rcu work to complete tearing shutting down
1868 * the notification thread. This call_rcu work includes shutting down
1869 * UST apps and event notifier pipes.
1873 if (notification_thread
) {
1874 lttng_thread_shutdown(notification_thread
);
1875 lttng_thread_put(notification_thread
);
1879 * Ensure all prior call_rcu are done. call_rcu callbacks may push
1880 * hash tables to the ht_cleanup thread. Therefore, we ensure that
1881 * the queue is empty before shutting down the clean-up thread.
1885 if (ht_cleanup_thread
) {
1886 lttng_thread_shutdown(ht_cleanup_thread
);
1887 lttng_thread_put(ht_cleanup_thread
);
1890 rcu_thread_offline();
1891 rcu_unregister_thread();
1893 if (rotation_thread_handle
) {
1894 rotation_thread_handle_destroy(rotation_thread_handle
);
1898 * After the rotation and timer thread have quit, we can safely destroy
1899 * the rotation_timer_queue.
1901 rotation_thread_timer_queue_destroy(rotation_timer_queue
);
1903 * The teardown of the notification system is performed after the
1904 * session daemon's teardown in order to allow it to be notified
1905 * of the active session and channels at the moment of the teardown.
1907 if (notification_thread_handle
) {
1908 notification_thread_handle_destroy(notification_thread_handle
);
1910 lttng_pipe_destroy(ust32_channel_monitor_pipe
);
1911 lttng_pipe_destroy(ust64_channel_monitor_pipe
);
1912 lttng_pipe_destroy(kernel_channel_monitor_pipe
);
1914 if (health_sessiond
) {
1915 health_app_destroy(health_sessiond
);
1917 exit_create_run_as_worker_cleanup
:
1919 sessiond_cleanup_lock_file();
1920 sessiond_cleanup_options();
1922 exit_set_signal_handler
: