2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
32 #include <sys/mount.h>
33 #include <sys/resource.h>
34 #include <sys/socket.h>
36 #include <sys/types.h>
38 #include <urcu/uatomic.h>
42 #include <common/common.h>
43 #include <common/compat/socket.h>
44 #include <common/compat/getenv.h>
45 #include <common/defaults.h>
46 #include <common/kernel-consumer/kernel-consumer.h>
47 #include <common/futex.h>
48 #include <common/relayd/relayd.h>
49 #include <common/utils.h>
50 #include <common/daemonize.h>
51 #include <common/config/session-config.h>
53 #include "lttng-sessiond.h"
54 #include "buffer-registry.h"
61 #include "kernel-consumer.h"
65 #include "ust-consumer.h"
68 #include "health-sessiond.h"
69 #include "testpoint.h"
70 #include "ust-thread.h"
71 #include "agent-thread.h"
73 #include "load-session-thread.h"
76 #include "ht-cleanup.h"
78 #define CONSUMERD_FILE "lttng-consumerd"
81 static const char *tracing_group_name
= DEFAULT_TRACING_GROUP
;
82 static int tracing_group_name_override
;
83 static char *opt_pidfile
;
84 static int opt_sig_parent
;
85 static int opt_verbose_consumer
;
86 static int opt_daemon
, opt_background
;
87 static int opt_no_kernel
;
88 static char *opt_load_session_path
;
89 static pid_t ppid
; /* Parent PID for --sig-parent option */
90 static pid_t child_ppid
; /* Internal parent PID use with daemonize. */
92 static int lockfile_fd
= -1;
94 /* Set to 1 when a SIGUSR1 signal is received. */
95 static int recv_child_signal
;
98 * Consumer daemon specific control data. Every value not initialized here is
99 * set to 0 by the static definition.
101 static struct consumer_data kconsumer_data
= {
102 .type
= LTTNG_CONSUMER_KERNEL
,
103 .err_unix_sock_path
= DEFAULT_KCONSUMERD_ERR_SOCK_PATH
,
104 .cmd_unix_sock_path
= DEFAULT_KCONSUMERD_CMD_SOCK_PATH
,
107 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
108 .lock
= PTHREAD_MUTEX_INITIALIZER
,
109 .cond
= PTHREAD_COND_INITIALIZER
,
110 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
112 static struct consumer_data ustconsumer64_data
= {
113 .type
= LTTNG_CONSUMER64_UST
,
114 .err_unix_sock_path
= DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
,
115 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
,
118 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
119 .lock
= PTHREAD_MUTEX_INITIALIZER
,
120 .cond
= PTHREAD_COND_INITIALIZER
,
121 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
123 static struct consumer_data ustconsumer32_data
= {
124 .type
= LTTNG_CONSUMER32_UST
,
125 .err_unix_sock_path
= DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
,
126 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
,
129 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
130 .lock
= PTHREAD_MUTEX_INITIALIZER
,
131 .cond
= PTHREAD_COND_INITIALIZER
,
132 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
135 /* Command line options */
136 static const struct option long_options
[] = {
137 { "client-sock", required_argument
, 0, 'c' },
138 { "apps-sock", required_argument
, 0, 'a' },
139 { "kconsumerd-cmd-sock", required_argument
, 0, '\0' },
140 { "kconsumerd-err-sock", required_argument
, 0, '\0' },
141 { "ustconsumerd32-cmd-sock", required_argument
, 0, '\0' },
142 { "ustconsumerd32-err-sock", required_argument
, 0, '\0' },
143 { "ustconsumerd64-cmd-sock", required_argument
, 0, '\0' },
144 { "ustconsumerd64-err-sock", required_argument
, 0, '\0' },
145 { "consumerd32-path", required_argument
, 0, '\0' },
146 { "consumerd32-libdir", required_argument
, 0, '\0' },
147 { "consumerd64-path", required_argument
, 0, '\0' },
148 { "consumerd64-libdir", required_argument
, 0, '\0' },
149 { "daemonize", no_argument
, 0, 'd' },
150 { "background", no_argument
, 0, 'b' },
151 { "sig-parent", no_argument
, 0, 'S' },
152 { "help", no_argument
, 0, 'h' },
153 { "group", required_argument
, 0, 'g' },
154 { "version", no_argument
, 0, 'V' },
155 { "quiet", no_argument
, 0, 'q' },
156 { "verbose", no_argument
, 0, 'v' },
157 { "verbose-consumer", no_argument
, 0, '\0' },
158 { "no-kernel", no_argument
, 0, '\0' },
159 { "pidfile", required_argument
, 0, 'p' },
160 { "agent-tcp-port", required_argument
, 0, '\0' },
161 { "config", required_argument
, 0, 'f' },
162 { "load", required_argument
, 0, 'l' },
163 { "kmod-probes", required_argument
, 0, '\0' },
164 { "extra-kmod-probes", required_argument
, 0, '\0' },
168 /* Command line options to ignore from configuration file */
169 static const char *config_ignore_options
[] = { "help", "version", "config" };
171 /* Shared between threads */
172 static int dispatch_thread_exit
;
174 /* Global application Unix socket path */
175 static char apps_unix_sock_path
[PATH_MAX
];
176 /* Global client Unix socket path */
177 static char client_unix_sock_path
[PATH_MAX
];
178 /* global wait shm path for UST */
179 static char wait_shm_path
[PATH_MAX
];
180 /* Global health check unix path */
181 static char health_unix_sock_path
[PATH_MAX
];
183 /* Sockets and FDs */
184 static int client_sock
= -1;
185 static int apps_sock
= -1;
186 int kernel_tracer_fd
= -1;
187 static int kernel_poll_pipe
[2] = { -1, -1 };
190 * Quit pipe for all threads. This permits a single cancellation point
191 * for all threads when receiving an event on the pipe.
193 static int thread_quit_pipe
[2] = { -1, -1 };
196 * This pipe is used to inform the thread managing application communication
197 * that a command is queued and ready to be processed.
199 static int apps_cmd_pipe
[2] = { -1, -1 };
201 int apps_cmd_notify_pipe
[2] = { -1, -1 };
203 /* Pthread, Mutexes and Semaphores */
204 static pthread_t apps_thread
;
205 static pthread_t apps_notify_thread
;
206 static pthread_t reg_apps_thread
;
207 static pthread_t client_thread
;
208 static pthread_t kernel_thread
;
209 static pthread_t dispatch_thread
;
210 static pthread_t health_thread
;
211 static pthread_t ht_cleanup_thread
;
212 static pthread_t agent_reg_thread
;
213 static pthread_t load_session_thread
;
216 * UST registration command queue. This queue is tied with a futex and uses a N
217 * wakers / 1 waiter implemented and detailed in futex.c/.h
219 * The thread_registration_apps and thread_dispatch_ust_registration uses this
220 * queue along with the wait/wake scheme. The thread_manage_apps receives down
221 * the line new application socket and monitors it for any I/O error or clean
222 * close that triggers an unregistration of the application.
224 static struct ust_cmd_queue ust_cmd_queue
;
227 * Pointer initialized before thread creation.
229 * This points to the tracing session list containing the session count and a
230 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
231 * MUST NOT be taken if you call a public function in session.c.
233 * The lock is nested inside the structure: session_list_ptr->lock. Please use
234 * session_lock_list and session_unlock_list for lock acquisition.
236 static struct ltt_session_list
*session_list_ptr
;
238 int ust_consumerd64_fd
= -1;
239 int ust_consumerd32_fd
= -1;
241 static const char *consumerd32_bin
= CONFIG_CONSUMERD32_BIN
;
242 static const char *consumerd64_bin
= CONFIG_CONSUMERD64_BIN
;
243 static const char *consumerd32_libdir
= CONFIG_CONSUMERD32_LIBDIR
;
244 static const char *consumerd64_libdir
= CONFIG_CONSUMERD64_LIBDIR
;
245 static int consumerd32_bin_override
;
246 static int consumerd64_bin_override
;
247 static int consumerd32_libdir_override
;
248 static int consumerd64_libdir_override
;
250 static const char *module_proc_lttng
= "/proc/lttng";
253 * Consumer daemon state which is changed when spawning it, killing it or in
254 * case of a fatal error.
256 enum consumerd_state
{
257 CONSUMER_STARTED
= 1,
258 CONSUMER_STOPPED
= 2,
263 * This consumer daemon state is used to validate if a client command will be
264 * able to reach the consumer. If not, the client is informed. For instance,
265 * doing a "lttng start" when the consumer state is set to ERROR will return an
266 * error to the client.
268 * The following example shows a possible race condition of this scheme:
270 * consumer thread error happens
272 * client cmd checks state -> still OK
273 * consumer thread exit, sets error
274 * client cmd try to talk to consumer
277 * However, since the consumer is a different daemon, we have no way of making
278 * sure the command will reach it safely even with this state flag. This is why
279 * we consider that up to the state validation during command processing, the
280 * command is safe. After that, we can not guarantee the correctness of the
281 * client request vis-a-vis the consumer.
283 static enum consumerd_state ust_consumerd_state
;
284 static enum consumerd_state kernel_consumerd_state
;
287 * Socket timeout for receiving and sending in seconds.
289 static int app_socket_timeout
;
291 /* Set in main() with the current page size. */
294 /* Application health monitoring */
295 struct health_app
*health_sessiond
;
297 /* Agent TCP port for registration. Used by the agent thread. */
298 unsigned int agent_tcp_port
= DEFAULT_AGENT_TCP_PORT
;
300 /* Am I root or not. */
301 int is_root
; /* Set to 1 if the daemon is running as root */
303 const char * const config_section_name
= "sessiond";
305 /* Load session thread information to operate. */
306 struct load_session_thread_data
*load_info
;
308 /* Global hash tables */
309 struct lttng_ht
*agent_apps_ht_by_sock
= NULL
;
312 * Whether sessiond is ready for commands/health check requests.
313 * NR_LTTNG_SESSIOND_READY must match the number of calls to
314 * sessiond_notify_ready().
316 #define NR_LTTNG_SESSIOND_READY 3
317 int lttng_sessiond_ready
= NR_LTTNG_SESSIOND_READY
;
319 int sessiond_check_thread_quit_pipe(int fd
, uint32_t events
)
321 return (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) ? 1 : 0;
324 /* Notify parents that we are ready for cmd and health check */
326 void sessiond_notify_ready(void)
328 if (uatomic_sub_return(<tng_sessiond_ready
, 1) == 0) {
330 * Notify parent pid that we are ready to accept command
331 * for client side. This ppid is the one from the
332 * external process that spawned us.
334 if (opt_sig_parent
) {
339 * Notify the parent of the fork() process that we are
342 if (opt_daemon
|| opt_background
) {
343 kill(child_ppid
, SIGUSR1
);
349 void setup_consumerd_path(void)
351 const char *bin
, *libdir
;
354 * Allow INSTALL_BIN_PATH to be used as a target path for the
355 * native architecture size consumer if CONFIG_CONSUMER*_PATH
356 * has not been defined.
358 #if (CAA_BITS_PER_LONG == 32)
359 if (!consumerd32_bin
[0]) {
360 consumerd32_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
362 if (!consumerd32_libdir
[0]) {
363 consumerd32_libdir
= INSTALL_LIB_PATH
;
365 #elif (CAA_BITS_PER_LONG == 64)
366 if (!consumerd64_bin
[0]) {
367 consumerd64_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
369 if (!consumerd64_libdir
[0]) {
370 consumerd64_libdir
= INSTALL_LIB_PATH
;
373 #error "Unknown bitness"
377 * runtime env. var. overrides the build default.
379 bin
= lttng_secure_getenv("LTTNG_CONSUMERD32_BIN");
381 consumerd32_bin
= bin
;
383 bin
= lttng_secure_getenv("LTTNG_CONSUMERD64_BIN");
385 consumerd64_bin
= bin
;
387 libdir
= lttng_secure_getenv("LTTNG_CONSUMERD32_LIBDIR");
389 consumerd32_libdir
= libdir
;
391 libdir
= lttng_secure_getenv("LTTNG_CONSUMERD64_LIBDIR");
393 consumerd64_libdir
= libdir
;
398 int __sessiond_set_thread_pollset(struct lttng_poll_event
*events
, size_t size
,
405 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
411 ret
= lttng_poll_add(events
, a_pipe
[0], LPOLLIN
| LPOLLERR
);
423 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
425 int sessiond_set_thread_pollset(struct lttng_poll_event
*events
, size_t size
)
427 return __sessiond_set_thread_pollset(events
, size
, thread_quit_pipe
);
431 * Init thread quit pipe.
433 * Return -1 on error or 0 if all pipes are created.
435 static int __init_thread_quit_pipe(int *a_pipe
)
441 PERROR("thread quit pipe");
445 for (i
= 0; i
< 2; i
++) {
446 ret
= fcntl(a_pipe
[i
], F_SETFD
, FD_CLOEXEC
);
457 static int init_thread_quit_pipe(void)
459 return __init_thread_quit_pipe(thread_quit_pipe
);
463 * Stop all threads by closing the thread quit pipe.
465 static void stop_threads(void)
469 /* Stopping all threads */
470 DBG("Terminating all threads");
471 ret
= notify_thread_pipe(thread_quit_pipe
[1]);
473 ERR("write error on thread quit pipe");
476 /* Dispatch thread */
477 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
478 futex_nto1_wake(&ust_cmd_queue
.futex
);
482 * Close every consumer sockets.
484 static void close_consumer_sockets(void)
488 if (kconsumer_data
.err_sock
>= 0) {
489 ret
= close(kconsumer_data
.err_sock
);
491 PERROR("kernel consumer err_sock close");
494 if (ustconsumer32_data
.err_sock
>= 0) {
495 ret
= close(ustconsumer32_data
.err_sock
);
497 PERROR("UST consumerd32 err_sock close");
500 if (ustconsumer64_data
.err_sock
>= 0) {
501 ret
= close(ustconsumer64_data
.err_sock
);
503 PERROR("UST consumerd64 err_sock close");
506 if (kconsumer_data
.cmd_sock
>= 0) {
507 ret
= close(kconsumer_data
.cmd_sock
);
509 PERROR("kernel consumer cmd_sock close");
512 if (ustconsumer32_data
.cmd_sock
>= 0) {
513 ret
= close(ustconsumer32_data
.cmd_sock
);
515 PERROR("UST consumerd32 cmd_sock close");
518 if (ustconsumer64_data
.cmd_sock
>= 0) {
519 ret
= close(ustconsumer64_data
.cmd_sock
);
521 PERROR("UST consumerd64 cmd_sock close");
527 * Generate the full lock file path using the rundir.
529 * Return the snprintf() return value thus a negative value is an error.
531 static int generate_lock_file_path(char *path
, size_t len
)
538 /* Build lockfile path from rundir. */
539 ret
= snprintf(path
, len
, "%s/" DEFAULT_LTTNG_SESSIOND_LOCKFILE
, rundir
);
541 PERROR("snprintf lockfile path");
548 * Wait on consumer process termination.
550 * Need to be called with the consumer data lock held or from a context
551 * ensuring no concurrent access to data (e.g: cleanup).
553 static void wait_consumer(struct consumer_data
*consumer_data
)
558 if (consumer_data
->pid
<= 0) {
562 DBG("Waiting for complete teardown of consumerd (PID: %d)",
564 ret
= waitpid(consumer_data
->pid
, &status
, 0);
566 PERROR("consumerd waitpid pid: %d", consumer_data
->pid
)
568 if (!WIFEXITED(status
)) {
569 ERR("consumerd termination with error: %d",
572 consumer_data
->pid
= 0;
576 * Cleanup the session daemon's data structures.
578 static void sessiond_cleanup(void)
581 struct ltt_session
*sess
, *stmp
;
584 DBG("Cleanup sessiond");
587 * Close the thread quit pipe. It has already done its job,
588 * since we are now called.
590 utils_close_pipe(thread_quit_pipe
);
593 * If opt_pidfile is undefined, the default file will be wiped when
594 * removing the rundir.
597 ret
= remove(opt_pidfile
);
599 PERROR("remove pidfile %s", opt_pidfile
);
603 DBG("Removing sessiond and consumerd content of directory %s", rundir
);
606 snprintf(path
, PATH_MAX
,
608 rundir
, DEFAULT_LTTNG_SESSIOND_PIDFILE
);
609 DBG("Removing %s", path
);
612 snprintf(path
, PATH_MAX
, "%s/%s", rundir
,
613 DEFAULT_LTTNG_SESSIOND_AGENTPORT_FILE
);
614 DBG("Removing %s", path
);
618 snprintf(path
, PATH_MAX
,
619 DEFAULT_KCONSUMERD_ERR_SOCK_PATH
,
621 DBG("Removing %s", path
);
624 snprintf(path
, PATH_MAX
,
625 DEFAULT_KCONSUMERD_PATH
,
627 DBG("Removing directory %s", path
);
630 /* ust consumerd 32 */
631 snprintf(path
, PATH_MAX
,
632 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
,
634 DBG("Removing %s", path
);
637 snprintf(path
, PATH_MAX
,
638 DEFAULT_USTCONSUMERD32_PATH
,
640 DBG("Removing directory %s", path
);
643 /* ust consumerd 64 */
644 snprintf(path
, PATH_MAX
,
645 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
,
647 DBG("Removing %s", path
);
650 snprintf(path
, PATH_MAX
,
651 DEFAULT_USTCONSUMERD64_PATH
,
653 DBG("Removing directory %s", path
);
656 DBG("Cleaning up all sessions");
658 /* Destroy session list mutex */
659 if (session_list_ptr
!= NULL
) {
660 pthread_mutex_destroy(&session_list_ptr
->lock
);
662 /* Cleanup ALL session */
663 cds_list_for_each_entry_safe(sess
, stmp
,
664 &session_list_ptr
->head
, list
) {
665 cmd_destroy_session(sess
, kernel_poll_pipe
[1]);
669 wait_consumer(&kconsumer_data
);
670 wait_consumer(&ustconsumer64_data
);
671 wait_consumer(&ustconsumer32_data
);
673 DBG("Cleaning up all agent apps");
674 agent_app_ht_clean();
676 DBG("Closing all UST sockets");
677 ust_app_clean_list();
678 buffer_reg_destroy_registries();
680 if (is_root
&& !opt_no_kernel
) {
681 DBG2("Closing kernel fd");
682 if (kernel_tracer_fd
>= 0) {
683 ret
= close(kernel_tracer_fd
);
688 DBG("Unloading kernel modules");
689 modprobe_remove_lttng_all();
693 close_consumer_sockets();
696 load_session_destroy_data(load_info
);
701 * Cleanup lock file by deleting it and finaly closing it which will
702 * release the file system lock.
704 if (lockfile_fd
>= 0) {
705 char lockfile_path
[PATH_MAX
];
707 ret
= generate_lock_file_path(lockfile_path
,
708 sizeof(lockfile_path
));
710 ret
= remove(lockfile_path
);
712 PERROR("remove lock file");
714 ret
= close(lockfile_fd
);
716 PERROR("close lock file");
722 * We do NOT rmdir rundir because there are other processes
723 * using it, for instance lttng-relayd, which can start in
724 * parallel with this teardown.
731 * Cleanup the daemon's option data structures.
733 static void sessiond_cleanup_options(void)
735 DBG("Cleaning up options");
738 * If the override option is set, the pointer points to a *non* const
739 * thus freeing it even though the variable type is set to const.
741 if (tracing_group_name_override
) {
742 free((void *) tracing_group_name
);
744 if (consumerd32_bin_override
) {
745 free((void *) consumerd32_bin
);
747 if (consumerd64_bin_override
) {
748 free((void *) consumerd64_bin
);
750 if (consumerd32_libdir_override
) {
751 free((void *) consumerd32_libdir
);
753 if (consumerd64_libdir_override
) {
754 free((void *) consumerd64_libdir
);
758 free(opt_load_session_path
);
759 free(kmod_probes_list
);
760 free(kmod_extra_probes_list
);
762 run_as_destroy_worker();
766 * Send data on a unix socket using the liblttsessiondcomm API.
768 * Return lttcomm error code.
770 static int send_unix_sock(int sock
, void *buf
, size_t len
)
772 /* Check valid length */
777 return lttcomm_send_unix_sock(sock
, buf
, len
);
781 * Free memory of a command context structure.
783 static void clean_command_ctx(struct command_ctx
**cmd_ctx
)
785 DBG("Clean command context structure");
787 if ((*cmd_ctx
)->llm
) {
788 free((*cmd_ctx
)->llm
);
790 if ((*cmd_ctx
)->lsm
) {
791 free((*cmd_ctx
)->lsm
);
799 * Notify UST applications using the shm mmap futex.
801 static int notify_ust_apps(int active
)
805 DBG("Notifying applications of session daemon state: %d", active
);
807 /* See shm.c for this call implying mmap, shm and futex calls */
808 wait_shm_mmap
= shm_ust_get_mmap(wait_shm_path
, is_root
);
809 if (wait_shm_mmap
== NULL
) {
813 /* Wake waiting process */
814 futex_wait_update((int32_t *) wait_shm_mmap
, active
);
816 /* Apps notified successfully */
824 * Setup the outgoing data buffer for the response (llm) by allocating the
825 * right amount of memory and copying the original information from the lsm
828 * Return 0 on success, negative value on error.
830 static int setup_lttng_msg(struct command_ctx
*cmd_ctx
,
831 const void *payload_buf
, size_t payload_len
,
832 const void *cmd_header_buf
, size_t cmd_header_len
)
835 const size_t header_len
= sizeof(struct lttcomm_lttng_msg
);
836 const size_t cmd_header_offset
= header_len
;
837 const size_t payload_offset
= cmd_header_offset
+ cmd_header_len
;
838 const size_t total_msg_size
= header_len
+ cmd_header_len
+ payload_len
;
840 cmd_ctx
->llm
= zmalloc(total_msg_size
);
842 if (cmd_ctx
->llm
== NULL
) {
848 /* Copy common data */
849 cmd_ctx
->llm
->cmd_type
= cmd_ctx
->lsm
->cmd_type
;
850 cmd_ctx
->llm
->pid
= cmd_ctx
->lsm
->domain
.attr
.pid
;
851 cmd_ctx
->llm
->cmd_header_size
= cmd_header_len
;
852 cmd_ctx
->llm
->data_size
= payload_len
;
853 cmd_ctx
->lttng_msg_size
= total_msg_size
;
855 /* Copy command header */
856 if (cmd_header_len
) {
857 memcpy(((uint8_t *) cmd_ctx
->llm
) + cmd_header_offset
, cmd_header_buf
,
863 memcpy(((uint8_t *) cmd_ctx
->llm
) + payload_offset
, payload_buf
,
872 * Version of setup_lttng_msg() without command header.
874 static int setup_lttng_msg_no_cmd_header(struct command_ctx
*cmd_ctx
,
875 void *payload_buf
, size_t payload_len
)
877 return setup_lttng_msg(cmd_ctx
, payload_buf
, payload_len
, NULL
, 0);
880 * Update the kernel poll set of all channel fd available over all tracing
881 * session. Add the wakeup pipe at the end of the set.
883 static int update_kernel_poll(struct lttng_poll_event
*events
)
886 struct ltt_session
*session
;
887 struct ltt_kernel_channel
*channel
;
889 DBG("Updating kernel poll set");
892 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
893 session_lock(session
);
894 if (session
->kernel_session
== NULL
) {
895 session_unlock(session
);
899 cds_list_for_each_entry(channel
,
900 &session
->kernel_session
->channel_list
.head
, list
) {
901 /* Add channel fd to the kernel poll set */
902 ret
= lttng_poll_add(events
, channel
->fd
, LPOLLIN
| LPOLLRDNORM
);
904 session_unlock(session
);
907 DBG("Channel fd %d added to kernel set", channel
->fd
);
909 session_unlock(session
);
911 session_unlock_list();
916 session_unlock_list();
921 * Find the channel fd from 'fd' over all tracing session. When found, check
922 * for new channel stream and send those stream fds to the kernel consumer.
924 * Useful for CPU hotplug feature.
926 static int update_kernel_stream(struct consumer_data
*consumer_data
, int fd
)
929 struct ltt_session
*session
;
930 struct ltt_kernel_session
*ksess
;
931 struct ltt_kernel_channel
*channel
;
933 DBG("Updating kernel streams for channel fd %d", fd
);
936 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
937 session_lock(session
);
938 if (session
->kernel_session
== NULL
) {
939 session_unlock(session
);
942 ksess
= session
->kernel_session
;
944 cds_list_for_each_entry(channel
,
945 &ksess
->channel_list
.head
, list
) {
946 struct lttng_ht_iter iter
;
947 struct consumer_socket
*socket
;
949 if (channel
->fd
!= fd
) {
952 DBG("Channel found, updating kernel streams");
953 ret
= kernel_open_channel_stream(channel
);
957 /* Update the stream global counter */
958 ksess
->stream_count_global
+= ret
;
961 * Have we already sent fds to the consumer? If yes, it
962 * means that tracing is started so it is safe to send
963 * our updated stream fds.
965 if (ksess
->consumer_fds_sent
!= 1
966 || ksess
->consumer
== NULL
) {
972 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
,
973 &iter
.iter
, socket
, node
.node
) {
974 pthread_mutex_lock(socket
->lock
);
975 ret
= kernel_consumer_send_channel_stream(socket
,
977 session
->output_traces
? 1 : 0);
978 pthread_mutex_unlock(socket
->lock
);
986 session_unlock(session
);
988 session_unlock_list();
992 session_unlock(session
);
993 session_unlock_list();
998 * For each tracing session, update newly registered apps. The session list
999 * lock MUST be acquired before calling this.
1001 static void update_ust_app(int app_sock
)
1003 struct ltt_session
*sess
, *stmp
;
1005 /* Consumer is in an ERROR state. Stop any application update. */
1006 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
1007 /* Stop the update process since the consumer is dead. */
1011 /* For all tracing session(s) */
1012 cds_list_for_each_entry_safe(sess
, stmp
, &session_list_ptr
->head
, list
) {
1013 struct ust_app
*app
;
1016 if (!sess
->ust_session
) {
1017 goto unlock_session
;
1021 assert(app_sock
>= 0);
1022 app
= ust_app_find_by_sock(app_sock
);
1025 * Application can be unregistered before so
1026 * this is possible hence simply stopping the
1029 DBG3("UST app update failed to find app sock %d",
1033 ust_app_global_update(sess
->ust_session
, app
);
1037 session_unlock(sess
);
1042 * This thread manage event coming from the kernel.
1044 * Features supported in this thread:
1047 static void *thread_manage_kernel(void *data
)
1049 int ret
, i
, pollfd
, update_poll_flag
= 1, err
= -1;
1050 uint32_t revents
, nb_fd
;
1052 struct lttng_poll_event events
;
1054 DBG("[thread] Thread manage kernel started");
1056 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_KERNEL
);
1059 * This first step of the while is to clean this structure which could free
1060 * non NULL pointers so initialize it before the loop.
1062 lttng_poll_init(&events
);
1064 if (testpoint(sessiond_thread_manage_kernel
)) {
1065 goto error_testpoint
;
1068 health_code_update();
1070 if (testpoint(sessiond_thread_manage_kernel_before_loop
)) {
1071 goto error_testpoint
;
1075 health_code_update();
1077 if (update_poll_flag
== 1) {
1078 /* Clean events object. We are about to populate it again. */
1079 lttng_poll_clean(&events
);
1081 ret
= sessiond_set_thread_pollset(&events
, 2);
1083 goto error_poll_create
;
1086 ret
= lttng_poll_add(&events
, kernel_poll_pipe
[0], LPOLLIN
);
1091 /* This will add the available kernel channel if any. */
1092 ret
= update_kernel_poll(&events
);
1096 update_poll_flag
= 0;
1099 DBG("Thread kernel polling");
1101 /* Poll infinite value of time */
1103 health_poll_entry();
1104 ret
= lttng_poll_wait(&events
, -1);
1105 DBG("Thread kernel return from poll on %d fds",
1106 LTTNG_POLL_GETNB(&events
));
1110 * Restart interrupted system call.
1112 if (errno
== EINTR
) {
1116 } else if (ret
== 0) {
1117 /* Should not happen since timeout is infinite */
1118 ERR("Return value of poll is 0 with an infinite timeout.\n"
1119 "This should not have happened! Continuing...");
1125 for (i
= 0; i
< nb_fd
; i
++) {
1126 /* Fetch once the poll data */
1127 revents
= LTTNG_POLL_GETEV(&events
, i
);
1128 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1130 health_code_update();
1133 /* No activity for this FD (poll implementation). */
1137 /* Thread quit pipe has been closed. Killing thread. */
1138 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1144 /* Check for data on kernel pipe */
1145 if (revents
& LPOLLIN
) {
1146 if (pollfd
== kernel_poll_pipe
[0]) {
1147 (void) lttng_read(kernel_poll_pipe
[0],
1150 * Ret value is useless here, if this pipe gets any actions an
1151 * update is required anyway.
1153 update_poll_flag
= 1;
1157 * New CPU detected by the kernel. Adding kernel stream to
1158 * kernel session and updating the kernel consumer
1160 ret
= update_kernel_stream(&kconsumer_data
, pollfd
);
1166 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1167 update_poll_flag
= 1;
1170 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
1178 lttng_poll_clean(&events
);
1181 utils_close_pipe(kernel_poll_pipe
);
1182 kernel_poll_pipe
[0] = kernel_poll_pipe
[1] = -1;
1185 ERR("Health error occurred in %s", __func__
);
1186 WARN("Kernel thread died unexpectedly. "
1187 "Kernel tracing can continue but CPU hotplug is disabled.");
1189 health_unregister(health_sessiond
);
1190 DBG("Kernel thread dying");
1195 * Signal pthread condition of the consumer data that the thread.
1197 static void signal_consumer_condition(struct consumer_data
*data
, int state
)
1199 pthread_mutex_lock(&data
->cond_mutex
);
1202 * The state is set before signaling. It can be any value, it's the waiter
1203 * job to correctly interpret this condition variable associated to the
1204 * consumer pthread_cond.
1206 * A value of 0 means that the corresponding thread of the consumer data
1207 * was not started. 1 indicates that the thread has started and is ready
1208 * for action. A negative value means that there was an error during the
1211 data
->consumer_thread_is_ready
= state
;
1212 (void) pthread_cond_signal(&data
->cond
);
1214 pthread_mutex_unlock(&data
->cond_mutex
);
1218 * This thread manage the consumer error sent back to the session daemon.
1220 static void *thread_manage_consumer(void *data
)
1222 int sock
= -1, i
, ret
, pollfd
, err
= -1, should_quit
= 0;
1223 uint32_t revents
, nb_fd
;
1224 enum lttcomm_return_code code
;
1225 struct lttng_poll_event events
;
1226 struct consumer_data
*consumer_data
= data
;
1228 DBG("[thread] Manage consumer started");
1230 rcu_register_thread();
1231 rcu_thread_online();
1233 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_CONSUMER
);
1235 health_code_update();
1238 * Pass 3 as size here for the thread quit pipe, consumerd_err_sock and the
1239 * metadata_sock. Nothing more will be added to this poll set.
1241 ret
= sessiond_set_thread_pollset(&events
, 3);
1247 * The error socket here is already in a listening state which was done
1248 * just before spawning this thread to avoid a race between the consumer
1249 * daemon exec trying to connect and the listen() call.
1251 ret
= lttng_poll_add(&events
, consumer_data
->err_sock
, LPOLLIN
| LPOLLRDHUP
);
1256 health_code_update();
1258 /* Infinite blocking call, waiting for transmission */
1260 health_poll_entry();
1262 if (testpoint(sessiond_thread_manage_consumer
)) {
1266 ret
= lttng_poll_wait(&events
, -1);
1270 * Restart interrupted system call.
1272 if (errno
== EINTR
) {
1280 for (i
= 0; i
< nb_fd
; i
++) {
1281 /* Fetch once the poll data */
1282 revents
= LTTNG_POLL_GETEV(&events
, i
);
1283 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1285 health_code_update();
1288 /* No activity for this FD (poll implementation). */
1292 /* Thread quit pipe has been closed. Killing thread. */
1293 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1299 /* Event on the registration socket */
1300 if (pollfd
== consumer_data
->err_sock
) {
1301 if (revents
& LPOLLIN
) {
1303 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1304 ERR("consumer err socket poll error");
1307 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
1313 sock
= lttcomm_accept_unix_sock(consumer_data
->err_sock
);
1319 * Set the CLOEXEC flag. Return code is useless because either way, the
1322 (void) utils_set_fd_cloexec(sock
);
1324 health_code_update();
1326 DBG2("Receiving code from consumer err_sock");
1328 /* Getting status code from kconsumerd */
1329 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1330 sizeof(enum lttcomm_return_code
));
1335 health_code_update();
1336 if (code
== LTTCOMM_CONSUMERD_COMMAND_SOCK_READY
) {
1337 /* Connect both socket, command and metadata. */
1338 consumer_data
->cmd_sock
=
1339 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
1340 consumer_data
->metadata_fd
=
1341 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
1342 if (consumer_data
->cmd_sock
< 0
1343 || consumer_data
->metadata_fd
< 0) {
1344 PERROR("consumer connect cmd socket");
1345 /* On error, signal condition and quit. */
1346 signal_consumer_condition(consumer_data
, -1);
1349 consumer_data
->metadata_sock
.fd_ptr
= &consumer_data
->metadata_fd
;
1350 /* Create metadata socket lock. */
1351 consumer_data
->metadata_sock
.lock
= zmalloc(sizeof(pthread_mutex_t
));
1352 if (consumer_data
->metadata_sock
.lock
== NULL
) {
1353 PERROR("zmalloc pthread mutex");
1356 pthread_mutex_init(consumer_data
->metadata_sock
.lock
, NULL
);
1358 signal_consumer_condition(consumer_data
, 1);
1359 DBG("Consumer command socket ready (fd: %d", consumer_data
->cmd_sock
);
1360 DBG("Consumer metadata socket ready (fd: %d)",
1361 consumer_data
->metadata_fd
);
1363 ERR("consumer error when waiting for SOCK_READY : %s",
1364 lttcomm_get_readable_code(-code
));
1368 /* Remove the consumerd error sock since we've established a connexion */
1369 ret
= lttng_poll_del(&events
, consumer_data
->err_sock
);
1374 /* Add new accepted error socket. */
1375 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLRDHUP
);
1380 /* Add metadata socket that is successfully connected. */
1381 ret
= lttng_poll_add(&events
, consumer_data
->metadata_fd
,
1382 LPOLLIN
| LPOLLRDHUP
);
1387 health_code_update();
1389 /* Infinite blocking call, waiting for transmission */
1392 health_code_update();
1394 /* Exit the thread because the thread quit pipe has been triggered. */
1396 /* Not a health error. */
1401 health_poll_entry();
1402 ret
= lttng_poll_wait(&events
, -1);
1406 * Restart interrupted system call.
1408 if (errno
== EINTR
) {
1416 for (i
= 0; i
< nb_fd
; i
++) {
1417 /* Fetch once the poll data */
1418 revents
= LTTNG_POLL_GETEV(&events
, i
);
1419 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1421 health_code_update();
1424 /* No activity for this FD (poll implementation). */
1429 * Thread quit pipe has been triggered, flag that we should stop
1430 * but continue the current loop to handle potential data from
1433 should_quit
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1435 if (pollfd
== sock
) {
1436 /* Event on the consumerd socket */
1437 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)
1438 && !(revents
& LPOLLIN
)) {
1439 ERR("consumer err socket second poll error");
1442 health_code_update();
1443 /* Wait for any kconsumerd error */
1444 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1445 sizeof(enum lttcomm_return_code
));
1447 ERR("consumer closed the command socket");
1451 ERR("consumer return code : %s",
1452 lttcomm_get_readable_code(-code
));
1455 } else if (pollfd
== consumer_data
->metadata_fd
) {
1456 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)
1457 && !(revents
& LPOLLIN
)) {
1458 ERR("consumer err metadata socket second poll error");
1461 /* UST metadata requests */
1462 ret
= ust_consumer_metadata_request(
1463 &consumer_data
->metadata_sock
);
1465 ERR("Handling metadata request");
1469 /* No need for an else branch all FDs are tested prior. */
1471 health_code_update();
1477 * We lock here because we are about to close the sockets and some other
1478 * thread might be using them so get exclusive access which will abort all
1479 * other consumer command by other threads.
1481 pthread_mutex_lock(&consumer_data
->lock
);
1483 /* Immediately set the consumerd state to stopped */
1484 if (consumer_data
->type
== LTTNG_CONSUMER_KERNEL
) {
1485 uatomic_set(&kernel_consumerd_state
, CONSUMER_ERROR
);
1486 } else if (consumer_data
->type
== LTTNG_CONSUMER64_UST
||
1487 consumer_data
->type
== LTTNG_CONSUMER32_UST
) {
1488 uatomic_set(&ust_consumerd_state
, CONSUMER_ERROR
);
1490 /* Code flow error... */
1494 if (consumer_data
->err_sock
>= 0) {
1495 ret
= close(consumer_data
->err_sock
);
1499 consumer_data
->err_sock
= -1;
1501 if (consumer_data
->cmd_sock
>= 0) {
1502 ret
= close(consumer_data
->cmd_sock
);
1506 consumer_data
->cmd_sock
= -1;
1508 if (consumer_data
->metadata_sock
.fd_ptr
&&
1509 *consumer_data
->metadata_sock
.fd_ptr
>= 0) {
1510 ret
= close(*consumer_data
->metadata_sock
.fd_ptr
);
1522 unlink(consumer_data
->err_unix_sock_path
);
1523 unlink(consumer_data
->cmd_unix_sock_path
);
1524 pthread_mutex_unlock(&consumer_data
->lock
);
1526 /* Cleanup metadata socket mutex. */
1527 if (consumer_data
->metadata_sock
.lock
) {
1528 pthread_mutex_destroy(consumer_data
->metadata_sock
.lock
);
1529 free(consumer_data
->metadata_sock
.lock
);
1531 lttng_poll_clean(&events
);
1535 ERR("Health error occurred in %s", __func__
);
1537 health_unregister(health_sessiond
);
1538 DBG("consumer thread cleanup completed");
1540 rcu_thread_offline();
1541 rcu_unregister_thread();
1547 * This thread manage application communication.
1549 static void *thread_manage_apps(void *data
)
1551 int i
, ret
, pollfd
, err
= -1;
1553 uint32_t revents
, nb_fd
;
1554 struct lttng_poll_event events
;
1556 DBG("[thread] Manage application started");
1558 rcu_register_thread();
1559 rcu_thread_online();
1561 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_APP_MANAGE
);
1563 if (testpoint(sessiond_thread_manage_apps
)) {
1564 goto error_testpoint
;
1567 health_code_update();
1569 ret
= sessiond_set_thread_pollset(&events
, 2);
1571 goto error_poll_create
;
1574 ret
= lttng_poll_add(&events
, apps_cmd_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
1579 if (testpoint(sessiond_thread_manage_apps_before_loop
)) {
1583 health_code_update();
1586 DBG("Apps thread polling");
1588 /* Inifinite blocking call, waiting for transmission */
1590 health_poll_entry();
1591 ret
= lttng_poll_wait(&events
, -1);
1592 DBG("Apps thread return from poll on %d fds",
1593 LTTNG_POLL_GETNB(&events
));
1597 * Restart interrupted system call.
1599 if (errno
== EINTR
) {
1607 for (i
= 0; i
< nb_fd
; i
++) {
1608 /* Fetch once the poll data */
1609 revents
= LTTNG_POLL_GETEV(&events
, i
);
1610 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1612 health_code_update();
1615 /* No activity for this FD (poll implementation). */
1619 /* Thread quit pipe has been closed. Killing thread. */
1620 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1626 /* Inspect the apps cmd pipe */
1627 if (pollfd
== apps_cmd_pipe
[0]) {
1628 if (revents
& LPOLLIN
) {
1632 size_ret
= lttng_read(apps_cmd_pipe
[0], &sock
, sizeof(sock
));
1633 if (size_ret
< sizeof(sock
)) {
1634 PERROR("read apps cmd pipe");
1638 health_code_update();
1641 * Since this is a command socket (write then read),
1642 * we only monitor the error events of the socket.
1644 ret
= lttng_poll_add(&events
, sock
,
1645 LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
);
1650 DBG("Apps with sock %d added to poll set", sock
);
1651 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1652 ERR("Apps command pipe error");
1655 ERR("Unknown poll events %u for sock %d", revents
, pollfd
);
1660 * At this point, we know that a registered application made
1661 * the event at poll_wait.
1663 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1664 /* Removing from the poll set */
1665 ret
= lttng_poll_del(&events
, pollfd
);
1670 /* Socket closed on remote end. */
1671 ust_app_unregister(pollfd
);
1673 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
1678 health_code_update();
1684 lttng_poll_clean(&events
);
1687 utils_close_pipe(apps_cmd_pipe
);
1688 apps_cmd_pipe
[0] = apps_cmd_pipe
[1] = -1;
1691 * We don't clean the UST app hash table here since already registered
1692 * applications can still be controlled so let them be until the session
1693 * daemon dies or the applications stop.
1698 ERR("Health error occurred in %s", __func__
);
1700 health_unregister(health_sessiond
);
1701 DBG("Application communication apps thread cleanup complete");
1702 rcu_thread_offline();
1703 rcu_unregister_thread();
1708 * Send a socket to a thread This is called from the dispatch UST registration
1709 * thread once all sockets are set for the application.
1711 * The sock value can be invalid, we don't really care, the thread will handle
1712 * it and make the necessary cleanup if so.
1714 * On success, return 0 else a negative value being the errno message of the
1717 static int send_socket_to_thread(int fd
, int sock
)
1722 * It's possible that the FD is set as invalid with -1 concurrently just
1723 * before calling this function being a shutdown state of the thread.
1730 ret
= lttng_write(fd
, &sock
, sizeof(sock
));
1731 if (ret
< sizeof(sock
)) {
1732 PERROR("write apps pipe %d", fd
);
1739 /* All good. Don't send back the write positive ret value. */
1746 * Sanitize the wait queue of the dispatch registration thread meaning removing
1747 * invalid nodes from it. This is to avoid memory leaks for the case the UST
1748 * notify socket is never received.
1750 static void sanitize_wait_queue(struct ust_reg_wait_queue
*wait_queue
)
1752 int ret
, nb_fd
= 0, i
;
1753 unsigned int fd_added
= 0;
1754 struct lttng_poll_event events
;
1755 struct ust_reg_wait_node
*wait_node
= NULL
, *tmp_wait_node
;
1759 lttng_poll_init(&events
);
1761 /* Just skip everything for an empty queue. */
1762 if (!wait_queue
->count
) {
1766 ret
= lttng_poll_create(&events
, wait_queue
->count
, LTTNG_CLOEXEC
);
1771 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1772 &wait_queue
->head
, head
) {
1773 assert(wait_node
->app
);
1774 ret
= lttng_poll_add(&events
, wait_node
->app
->sock
,
1775 LPOLLHUP
| LPOLLERR
);
1788 * Poll but don't block so we can quickly identify the faulty events and
1789 * clean them afterwards from the wait queue.
1791 ret
= lttng_poll_wait(&events
, 0);
1797 for (i
= 0; i
< nb_fd
; i
++) {
1798 /* Get faulty FD. */
1799 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
1800 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1803 /* No activity for this FD (poll implementation). */
1807 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1808 &wait_queue
->head
, head
) {
1809 if (pollfd
== wait_node
->app
->sock
&&
1810 (revents
& (LPOLLHUP
| LPOLLERR
))) {
1811 cds_list_del(&wait_node
->head
);
1812 wait_queue
->count
--;
1813 ust_app_destroy(wait_node
->app
);
1816 * Silence warning of use-after-free in
1817 * cds_list_for_each_entry_safe which uses
1818 * __typeof__(*wait_node).
1823 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
1830 DBG("Wait queue sanitized, %d node were cleaned up", nb_fd
);
1834 lttng_poll_clean(&events
);
1838 lttng_poll_clean(&events
);
1840 ERR("Unable to sanitize wait queue");
1845 * Dispatch request from the registration threads to the application
1846 * communication thread.
1848 static void *thread_dispatch_ust_registration(void *data
)
1851 struct cds_wfcq_node
*node
;
1852 struct ust_command
*ust_cmd
= NULL
;
1853 struct ust_reg_wait_node
*wait_node
= NULL
, *tmp_wait_node
;
1854 struct ust_reg_wait_queue wait_queue
= {
1858 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_APP_REG_DISPATCH
);
1860 if (testpoint(sessiond_thread_app_reg_dispatch
)) {
1861 goto error_testpoint
;
1864 health_code_update();
1866 CDS_INIT_LIST_HEAD(&wait_queue
.head
);
1868 DBG("[thread] Dispatch UST command started");
1870 while (!CMM_LOAD_SHARED(dispatch_thread_exit
)) {
1871 health_code_update();
1873 /* Atomically prepare the queue futex */
1874 futex_nto1_prepare(&ust_cmd_queue
.futex
);
1877 struct ust_app
*app
= NULL
;
1881 * Make sure we don't have node(s) that have hung up before receiving
1882 * the notify socket. This is to clean the list in order to avoid
1883 * memory leaks from notify socket that are never seen.
1885 sanitize_wait_queue(&wait_queue
);
1887 health_code_update();
1888 /* Dequeue command for registration */
1889 node
= cds_wfcq_dequeue_blocking(&ust_cmd_queue
.head
, &ust_cmd_queue
.tail
);
1891 DBG("Woken up but nothing in the UST command queue");
1892 /* Continue thread execution */
1896 ust_cmd
= caa_container_of(node
, struct ust_command
, node
);
1898 DBG("Dispatching UST registration pid:%d ppid:%d uid:%d"
1899 " gid:%d sock:%d name:%s (version %d.%d)",
1900 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1901 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1902 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1903 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1905 if (ust_cmd
->reg_msg
.type
== USTCTL_SOCKET_CMD
) {
1906 wait_node
= zmalloc(sizeof(*wait_node
));
1908 PERROR("zmalloc wait_node dispatch");
1909 ret
= close(ust_cmd
->sock
);
1911 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1913 lttng_fd_put(LTTNG_FD_APPS
, 1);
1917 CDS_INIT_LIST_HEAD(&wait_node
->head
);
1919 /* Create application object if socket is CMD. */
1920 wait_node
->app
= ust_app_create(&ust_cmd
->reg_msg
,
1922 if (!wait_node
->app
) {
1923 ret
= close(ust_cmd
->sock
);
1925 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1927 lttng_fd_put(LTTNG_FD_APPS
, 1);
1933 * Add application to the wait queue so we can set the notify
1934 * socket before putting this object in the global ht.
1936 cds_list_add(&wait_node
->head
, &wait_queue
.head
);
1941 * We have to continue here since we don't have the notify
1942 * socket and the application MUST be added to the hash table
1943 * only at that moment.
1948 * Look for the application in the local wait queue and set the
1949 * notify socket if found.
1951 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1952 &wait_queue
.head
, head
) {
1953 health_code_update();
1954 if (wait_node
->app
->pid
== ust_cmd
->reg_msg
.pid
) {
1955 wait_node
->app
->notify_sock
= ust_cmd
->sock
;
1956 cds_list_del(&wait_node
->head
);
1958 app
= wait_node
->app
;
1960 DBG3("UST app notify socket %d is set", ust_cmd
->sock
);
1966 * With no application at this stage the received socket is
1967 * basically useless so close it before we free the cmd data
1968 * structure for good.
1971 ret
= close(ust_cmd
->sock
);
1973 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1975 lttng_fd_put(LTTNG_FD_APPS
, 1);
1982 * @session_lock_list
1984 * Lock the global session list so from the register up to the
1985 * registration done message, no thread can see the application
1986 * and change its state.
1988 session_lock_list();
1992 * Add application to the global hash table. This needs to be
1993 * done before the update to the UST registry can locate the
1998 /* Set app version. This call will print an error if needed. */
1999 (void) ust_app_version(app
);
2001 /* Send notify socket through the notify pipe. */
2002 ret
= send_socket_to_thread(apps_cmd_notify_pipe
[1],
2006 session_unlock_list();
2008 * No notify thread, stop the UST tracing. However, this is
2009 * not an internal error of the this thread thus setting
2010 * the health error code to a normal exit.
2017 * Update newly registered application with the tracing
2018 * registry info already enabled information.
2020 update_ust_app(app
->sock
);
2023 * Don't care about return value. Let the manage apps threads
2024 * handle app unregistration upon socket close.
2026 (void) ust_app_register_done(app
);
2029 * Even if the application socket has been closed, send the app
2030 * to the thread and unregistration will take place at that
2033 ret
= send_socket_to_thread(apps_cmd_pipe
[1], app
->sock
);
2036 session_unlock_list();
2038 * No apps. thread, stop the UST tracing. However, this is
2039 * not an internal error of the this thread thus setting
2040 * the health error code to a normal exit.
2047 session_unlock_list();
2049 } while (node
!= NULL
);
2051 health_poll_entry();
2052 /* Futex wait on queue. Blocking call on futex() */
2053 futex_nto1_wait(&ust_cmd_queue
.futex
);
2056 /* Normal exit, no error */
2060 /* Clean up wait queue. */
2061 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
2062 &wait_queue
.head
, head
) {
2063 cds_list_del(&wait_node
->head
);
2068 /* Empty command queue. */
2070 /* Dequeue command for registration */
2071 node
= cds_wfcq_dequeue_blocking(&ust_cmd_queue
.head
, &ust_cmd_queue
.tail
);
2075 ust_cmd
= caa_container_of(node
, struct ust_command
, node
);
2076 ret
= close(ust_cmd
->sock
);
2078 PERROR("close ust sock exit dispatch %d", ust_cmd
->sock
);
2080 lttng_fd_put(LTTNG_FD_APPS
, 1);
2085 DBG("Dispatch thread dying");
2088 ERR("Health error occurred in %s", __func__
);
2090 health_unregister(health_sessiond
);
2095 * This thread manage application registration.
2097 static void *thread_registration_apps(void *data
)
2099 int sock
= -1, i
, ret
, pollfd
, err
= -1;
2100 uint32_t revents
, nb_fd
;
2101 struct lttng_poll_event events
;
2103 * Get allocated in this thread, enqueued to a global queue, dequeued and
2104 * freed in the manage apps thread.
2106 struct ust_command
*ust_cmd
= NULL
;
2108 DBG("[thread] Manage application registration started");
2110 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_APP_REG
);
2112 if (testpoint(sessiond_thread_registration_apps
)) {
2113 goto error_testpoint
;
2116 ret
= lttcomm_listen_unix_sock(apps_sock
);
2122 * Pass 2 as size here for the thread quit pipe and apps socket. Nothing
2123 * more will be added to this poll set.
2125 ret
= sessiond_set_thread_pollset(&events
, 2);
2127 goto error_create_poll
;
2130 /* Add the application registration socket */
2131 ret
= lttng_poll_add(&events
, apps_sock
, LPOLLIN
| LPOLLRDHUP
);
2133 goto error_poll_add
;
2136 /* Notify all applications to register */
2137 ret
= notify_ust_apps(1);
2139 ERR("Failed to notify applications or create the wait shared memory.\n"
2140 "Execution continues but there might be problem for already\n"
2141 "running applications that wishes to register.");
2145 DBG("Accepting application registration");
2147 /* Inifinite blocking call, waiting for transmission */
2149 health_poll_entry();
2150 ret
= lttng_poll_wait(&events
, -1);
2154 * Restart interrupted system call.
2156 if (errno
== EINTR
) {
2164 for (i
= 0; i
< nb_fd
; i
++) {
2165 health_code_update();
2167 /* Fetch once the poll data */
2168 revents
= LTTNG_POLL_GETEV(&events
, i
);
2169 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2172 /* No activity for this FD (poll implementation). */
2176 /* Thread quit pipe has been closed. Killing thread. */
2177 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
2183 /* Event on the registration socket */
2184 if (pollfd
== apps_sock
) {
2185 if (revents
& LPOLLIN
) {
2186 sock
= lttcomm_accept_unix_sock(apps_sock
);
2192 * Set socket timeout for both receiving and ending.
2193 * app_socket_timeout is in seconds, whereas
2194 * lttcomm_setsockopt_rcv_timeout and
2195 * lttcomm_setsockopt_snd_timeout expect msec as
2198 if (app_socket_timeout
>= 0) {
2199 (void) lttcomm_setsockopt_rcv_timeout(sock
,
2200 app_socket_timeout
* 1000);
2201 (void) lttcomm_setsockopt_snd_timeout(sock
,
2202 app_socket_timeout
* 1000);
2206 * Set the CLOEXEC flag. Return code is useless because
2207 * either way, the show must go on.
2209 (void) utils_set_fd_cloexec(sock
);
2211 /* Create UST registration command for enqueuing */
2212 ust_cmd
= zmalloc(sizeof(struct ust_command
));
2213 if (ust_cmd
== NULL
) {
2214 PERROR("ust command zmalloc");
2223 * Using message-based transmissions to ensure we don't
2224 * have to deal with partially received messages.
2226 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2228 ERR("Exhausted file descriptors allowed for applications.");
2238 health_code_update();
2239 ret
= ust_app_recv_registration(sock
, &ust_cmd
->reg_msg
);
2242 /* Close socket of the application. */
2247 lttng_fd_put(LTTNG_FD_APPS
, 1);
2251 health_code_update();
2253 ust_cmd
->sock
= sock
;
2256 DBG("UST registration received with pid:%d ppid:%d uid:%d"
2257 " gid:%d sock:%d name:%s (version %d.%d)",
2258 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
2259 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
2260 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
2261 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
2264 * Lock free enqueue the registration request. The red pill
2265 * has been taken! This apps will be part of the *system*.
2267 cds_wfcq_enqueue(&ust_cmd_queue
.head
, &ust_cmd_queue
.tail
, &ust_cmd
->node
);
2270 * Wake the registration queue futex. Implicit memory
2271 * barrier with the exchange in cds_wfcq_enqueue.
2273 futex_nto1_wake(&ust_cmd_queue
.futex
);
2274 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2275 ERR("Register apps socket poll error");
2278 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
2287 /* Notify that the registration thread is gone */
2290 if (apps_sock
>= 0) {
2291 ret
= close(apps_sock
);
2301 lttng_fd_put(LTTNG_FD_APPS
, 1);
2303 unlink(apps_unix_sock_path
);
2306 lttng_poll_clean(&events
);
2310 DBG("UST Registration thread cleanup complete");
2313 ERR("Health error occurred in %s", __func__
);
2315 health_unregister(health_sessiond
);
2321 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
2322 * exec or it will fails.
2324 static int spawn_consumer_thread(struct consumer_data
*consumer_data
)
2327 struct timespec timeout
;
2330 * Make sure we set the readiness flag to 0 because we are NOT ready.
2331 * This access to consumer_thread_is_ready does not need to be
2332 * protected by consumer_data.cond_mutex (yet) since the consumer
2333 * management thread has not been started at this point.
2335 consumer_data
->consumer_thread_is_ready
= 0;
2337 /* Setup pthread condition */
2338 ret
= pthread_condattr_init(&consumer_data
->condattr
);
2341 PERROR("pthread_condattr_init consumer data");
2346 * Set the monotonic clock in order to make sure we DO NOT jump in time
2347 * between the clock_gettime() call and the timedwait call. See bug #324
2348 * for a more details and how we noticed it.
2350 ret
= pthread_condattr_setclock(&consumer_data
->condattr
, CLOCK_MONOTONIC
);
2353 PERROR("pthread_condattr_setclock consumer data");
2357 ret
= pthread_cond_init(&consumer_data
->cond
, &consumer_data
->condattr
);
2360 PERROR("pthread_cond_init consumer data");
2364 ret
= pthread_create(&consumer_data
->thread
, default_pthread_attr(),
2365 thread_manage_consumer
, consumer_data
);
2368 PERROR("pthread_create consumer");
2373 /* We are about to wait on a pthread condition */
2374 pthread_mutex_lock(&consumer_data
->cond_mutex
);
2376 /* Get time for sem_timedwait absolute timeout */
2377 clock_ret
= lttng_clock_gettime(CLOCK_MONOTONIC
, &timeout
);
2379 * Set the timeout for the condition timed wait even if the clock gettime
2380 * call fails since we might loop on that call and we want to avoid to
2381 * increment the timeout too many times.
2383 timeout
.tv_sec
+= DEFAULT_SEM_WAIT_TIMEOUT
;
2386 * The following loop COULD be skipped in some conditions so this is why we
2387 * set ret to 0 in order to make sure at least one round of the loop is
2393 * Loop until the condition is reached or when a timeout is reached. Note
2394 * that the pthread_cond_timedwait(P) man page specifies that EINTR can NOT
2395 * be returned but the pthread_cond(3), from the glibc-doc, says that it is
2396 * possible. This loop does not take any chances and works with both of
2399 while (!consumer_data
->consumer_thread_is_ready
&& ret
!= ETIMEDOUT
) {
2400 if (clock_ret
< 0) {
2401 PERROR("clock_gettime spawn consumer");
2402 /* Infinite wait for the consumerd thread to be ready */
2403 ret
= pthread_cond_wait(&consumer_data
->cond
,
2404 &consumer_data
->cond_mutex
);
2406 ret
= pthread_cond_timedwait(&consumer_data
->cond
,
2407 &consumer_data
->cond_mutex
, &timeout
);
2411 /* Release the pthread condition */
2412 pthread_mutex_unlock(&consumer_data
->cond_mutex
);
2416 if (ret
== ETIMEDOUT
) {
2420 * Call has timed out so we kill the kconsumerd_thread and return
2423 ERR("Condition timed out. The consumer thread was never ready."
2425 pth_ret
= pthread_cancel(consumer_data
->thread
);
2427 PERROR("pthread_cancel consumer thread");
2430 PERROR("pthread_cond_wait failed consumer thread");
2432 /* Caller is expecting a negative value on failure. */
2437 pthread_mutex_lock(&consumer_data
->pid_mutex
);
2438 if (consumer_data
->pid
== 0) {
2439 ERR("Consumerd did not start");
2440 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2443 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2452 * Join consumer thread
2454 static int join_consumer_thread(struct consumer_data
*consumer_data
)
2458 /* Consumer pid must be a real one. */
2459 if (consumer_data
->pid
> 0) {
2461 ret
= kill(consumer_data
->pid
, SIGTERM
);
2463 PERROR("Error killing consumer daemon");
2466 return pthread_join(consumer_data
->thread
, &status
);
2473 * Fork and exec a consumer daemon (consumerd).
2475 * Return pid if successful else -1.
2477 static pid_t
spawn_consumerd(struct consumer_data
*consumer_data
)
2481 const char *consumer_to_use
;
2482 const char *verbosity
;
2485 DBG("Spawning consumerd");
2492 if (opt_verbose_consumer
) {
2493 verbosity
= "--verbose";
2494 } else if (lttng_opt_quiet
) {
2495 verbosity
= "--quiet";
2500 switch (consumer_data
->type
) {
2501 case LTTNG_CONSUMER_KERNEL
:
2503 * Find out which consumerd to execute. We will first try the
2504 * 64-bit path, then the sessiond's installation directory, and
2505 * fallback on the 32-bit one,
2507 DBG3("Looking for a kernel consumer at these locations:");
2508 DBG3(" 1) %s", consumerd64_bin
);
2509 DBG3(" 2) %s/%s", INSTALL_BIN_PATH
, CONSUMERD_FILE
);
2510 DBG3(" 3) %s", consumerd32_bin
);
2511 if (stat(consumerd64_bin
, &st
) == 0) {
2512 DBG3("Found location #1");
2513 consumer_to_use
= consumerd64_bin
;
2514 } else if (stat(INSTALL_BIN_PATH
"/" CONSUMERD_FILE
, &st
) == 0) {
2515 DBG3("Found location #2");
2516 consumer_to_use
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
2517 } else if (stat(consumerd32_bin
, &st
) == 0) {
2518 DBG3("Found location #3");
2519 consumer_to_use
= consumerd32_bin
;
2521 DBG("Could not find any valid consumerd executable");
2525 DBG("Using kernel consumer at: %s", consumer_to_use
);
2526 ret
= execl(consumer_to_use
,
2527 "lttng-consumerd", verbosity
, "-k",
2528 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2529 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2530 "--group", tracing_group_name
,
2533 case LTTNG_CONSUMER64_UST
:
2535 char *tmpnew
= NULL
;
2537 if (consumerd64_libdir
[0] != '\0') {
2541 tmp
= lttng_secure_getenv("LD_LIBRARY_PATH");
2545 tmplen
= strlen("LD_LIBRARY_PATH=")
2546 + strlen(consumerd64_libdir
) + 1 /* : */ + strlen(tmp
);
2547 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
2552 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
2553 strcat(tmpnew
, consumerd64_libdir
);
2554 if (tmp
[0] != '\0') {
2555 strcat(tmpnew
, ":");
2556 strcat(tmpnew
, tmp
);
2558 ret
= putenv(tmpnew
);
2565 DBG("Using 64-bit UST consumer at: %s", consumerd64_bin
);
2566 ret
= execl(consumerd64_bin
, "lttng-consumerd", verbosity
, "-u",
2567 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2568 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2569 "--group", tracing_group_name
,
2571 if (consumerd64_libdir
[0] != '\0') {
2576 case LTTNG_CONSUMER32_UST
:
2578 char *tmpnew
= NULL
;
2580 if (consumerd32_libdir
[0] != '\0') {
2584 tmp
= lttng_secure_getenv("LD_LIBRARY_PATH");
2588 tmplen
= strlen("LD_LIBRARY_PATH=")
2589 + strlen(consumerd32_libdir
) + 1 /* : */ + strlen(tmp
);
2590 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
2595 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
2596 strcat(tmpnew
, consumerd32_libdir
);
2597 if (tmp
[0] != '\0') {
2598 strcat(tmpnew
, ":");
2599 strcat(tmpnew
, tmp
);
2601 ret
= putenv(tmpnew
);
2608 DBG("Using 32-bit UST consumer at: %s", consumerd32_bin
);
2609 ret
= execl(consumerd32_bin
, "lttng-consumerd", verbosity
, "-u",
2610 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2611 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2612 "--group", tracing_group_name
,
2614 if (consumerd32_libdir
[0] != '\0') {
2620 PERROR("unknown consumer type");
2624 PERROR("Consumer execl()");
2626 /* Reaching this point, we got a failure on our execl(). */
2628 } else if (pid
> 0) {
2631 PERROR("start consumer fork");
2639 * Spawn the consumerd daemon and session daemon thread.
2641 static int start_consumerd(struct consumer_data
*consumer_data
)
2646 * Set the listen() state on the socket since there is a possible race
2647 * between the exec() of the consumer daemon and this call if place in the
2648 * consumer thread. See bug #366 for more details.
2650 ret
= lttcomm_listen_unix_sock(consumer_data
->err_sock
);
2655 pthread_mutex_lock(&consumer_data
->pid_mutex
);
2656 if (consumer_data
->pid
!= 0) {
2657 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2661 ret
= spawn_consumerd(consumer_data
);
2663 ERR("Spawning consumerd failed");
2664 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2668 /* Setting up the consumer_data pid */
2669 consumer_data
->pid
= ret
;
2670 DBG2("Consumer pid %d", consumer_data
->pid
);
2671 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2673 DBG2("Spawning consumer control thread");
2674 ret
= spawn_consumer_thread(consumer_data
);
2676 ERR("Fatal error spawning consumer control thread");
2684 /* Cleanup already created sockets on error. */
2685 if (consumer_data
->err_sock
>= 0) {
2688 err
= close(consumer_data
->err_sock
);
2690 PERROR("close consumer data error socket");
2697 * Setup necessary data for kernel tracer action.
2699 static int init_kernel_tracer(void)
2703 /* Modprobe lttng kernel modules */
2704 ret
= modprobe_lttng_control();
2709 /* Open debugfs lttng */
2710 kernel_tracer_fd
= open(module_proc_lttng
, O_RDWR
);
2711 if (kernel_tracer_fd
< 0) {
2712 DBG("Failed to open %s", module_proc_lttng
);
2717 /* Validate kernel version */
2718 ret
= kernel_validate_version(kernel_tracer_fd
);
2723 ret
= modprobe_lttng_data();
2728 DBG("Kernel tracer fd %d", kernel_tracer_fd
);
2732 modprobe_remove_lttng_control();
2733 ret
= close(kernel_tracer_fd
);
2737 kernel_tracer_fd
= -1;
2738 return LTTNG_ERR_KERN_VERSION
;
2741 ret
= close(kernel_tracer_fd
);
2747 modprobe_remove_lttng_control();
2750 WARN("No kernel tracer available");
2751 kernel_tracer_fd
= -1;
2753 return LTTNG_ERR_NEED_ROOT_SESSIOND
;
2755 return LTTNG_ERR_KERN_NA
;
2761 * Copy consumer output from the tracing session to the domain session. The
2762 * function also applies the right modification on a per domain basis for the
2763 * trace files destination directory.
2765 * Should *NOT* be called with RCU read-side lock held.
2767 static int copy_session_consumer(int domain
, struct ltt_session
*session
)
2770 const char *dir_name
;
2771 struct consumer_output
*consumer
;
2774 assert(session
->consumer
);
2777 case LTTNG_DOMAIN_KERNEL
:
2778 DBG3("Copying tracing session consumer output in kernel session");
2780 * XXX: We should audit the session creation and what this function
2781 * does "extra" in order to avoid a destroy since this function is used
2782 * in the domain session creation (kernel and ust) only. Same for UST
2785 if (session
->kernel_session
->consumer
) {
2786 consumer_output_put(session
->kernel_session
->consumer
);
2788 session
->kernel_session
->consumer
=
2789 consumer_copy_output(session
->consumer
);
2790 /* Ease our life a bit for the next part */
2791 consumer
= session
->kernel_session
->consumer
;
2792 dir_name
= DEFAULT_KERNEL_TRACE_DIR
;
2794 case LTTNG_DOMAIN_JUL
:
2795 case LTTNG_DOMAIN_LOG4J
:
2796 case LTTNG_DOMAIN_PYTHON
:
2797 case LTTNG_DOMAIN_UST
:
2798 DBG3("Copying tracing session consumer output in UST session");
2799 if (session
->ust_session
->consumer
) {
2800 consumer_output_put(session
->ust_session
->consumer
);
2802 session
->ust_session
->consumer
=
2803 consumer_copy_output(session
->consumer
);
2804 /* Ease our life a bit for the next part */
2805 consumer
= session
->ust_session
->consumer
;
2806 dir_name
= DEFAULT_UST_TRACE_DIR
;
2809 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2813 /* Append correct directory to subdir */
2814 strncat(consumer
->subdir
, dir_name
,
2815 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
2816 DBG3("Copy session consumer subdir %s", consumer
->subdir
);
2825 * Create an UST session and add it to the session ust list.
2827 * Should *NOT* be called with RCU read-side lock held.
2829 static int create_ust_session(struct ltt_session
*session
,
2830 struct lttng_domain
*domain
)
2833 struct ltt_ust_session
*lus
= NULL
;
2837 assert(session
->consumer
);
2839 switch (domain
->type
) {
2840 case LTTNG_DOMAIN_JUL
:
2841 case LTTNG_DOMAIN_LOG4J
:
2842 case LTTNG_DOMAIN_PYTHON
:
2843 case LTTNG_DOMAIN_UST
:
2846 ERR("Unknown UST domain on create session %d", domain
->type
);
2847 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2851 DBG("Creating UST session");
2853 lus
= trace_ust_create_session(session
->id
);
2855 ret
= LTTNG_ERR_UST_SESS_FAIL
;
2859 lus
->uid
= session
->uid
;
2860 lus
->gid
= session
->gid
;
2861 lus
->output_traces
= session
->output_traces
;
2862 lus
->snapshot_mode
= session
->snapshot_mode
;
2863 lus
->live_timer_interval
= session
->live_timer
;
2864 session
->ust_session
= lus
;
2865 if (session
->shm_path
[0]) {
2866 strncpy(lus
->root_shm_path
, session
->shm_path
,
2867 sizeof(lus
->root_shm_path
));
2868 lus
->root_shm_path
[sizeof(lus
->root_shm_path
) - 1] = '\0';
2869 strncpy(lus
->shm_path
, session
->shm_path
,
2870 sizeof(lus
->shm_path
));
2871 lus
->shm_path
[sizeof(lus
->shm_path
) - 1] = '\0';
2872 strncat(lus
->shm_path
, "/ust",
2873 sizeof(lus
->shm_path
) - strlen(lus
->shm_path
) - 1);
2875 /* Copy session output to the newly created UST session */
2876 ret
= copy_session_consumer(domain
->type
, session
);
2877 if (ret
!= LTTNG_OK
) {
2885 session
->ust_session
= NULL
;
2890 * Create a kernel tracer session then create the default channel.
2892 static int create_kernel_session(struct ltt_session
*session
)
2896 DBG("Creating kernel session");
2898 ret
= kernel_create_session(session
, kernel_tracer_fd
);
2900 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
2904 /* Code flow safety */
2905 assert(session
->kernel_session
);
2907 /* Copy session output to the newly created Kernel session */
2908 ret
= copy_session_consumer(LTTNG_DOMAIN_KERNEL
, session
);
2909 if (ret
!= LTTNG_OK
) {
2913 /* Create directory(ies) on local filesystem. */
2914 if (session
->kernel_session
->consumer
->type
== CONSUMER_DST_LOCAL
&&
2915 strlen(session
->kernel_session
->consumer
->dst
.trace_path
) > 0) {
2916 ret
= run_as_mkdir_recursive(
2917 session
->kernel_session
->consumer
->dst
.trace_path
,
2918 S_IRWXU
| S_IRWXG
, session
->uid
, session
->gid
);
2920 if (errno
!= EEXIST
) {
2921 ERR("Trace directory creation error");
2927 session
->kernel_session
->uid
= session
->uid
;
2928 session
->kernel_session
->gid
= session
->gid
;
2929 session
->kernel_session
->output_traces
= session
->output_traces
;
2930 session
->kernel_session
->snapshot_mode
= session
->snapshot_mode
;
2935 trace_kernel_destroy_session(session
->kernel_session
);
2936 session
->kernel_session
= NULL
;
2941 * Count number of session permitted by uid/gid.
2943 static unsigned int lttng_sessions_count(uid_t uid
, gid_t gid
)
2946 struct ltt_session
*session
;
2948 DBG("Counting number of available session for UID %d GID %d",
2950 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
2952 * Only list the sessions the user can control.
2954 if (!session_access_ok(session
, uid
, gid
)) {
2963 * Process the command requested by the lttng client within the command
2964 * context structure. This function make sure that the return structure (llm)
2965 * is set and ready for transmission before returning.
2967 * Return any error encountered or 0 for success.
2969 * "sock" is only used for special-case var. len data.
2971 * Should *NOT* be called with RCU read-side lock held.
2973 static int process_client_msg(struct command_ctx
*cmd_ctx
, int sock
,
2977 int need_tracing_session
= 1;
2980 DBG("Processing client command %d", cmd_ctx
->lsm
->cmd_type
);
2982 assert(!rcu_read_ongoing());
2986 switch (cmd_ctx
->lsm
->cmd_type
) {
2987 case LTTNG_CREATE_SESSION
:
2988 case LTTNG_CREATE_SESSION_SNAPSHOT
:
2989 case LTTNG_CREATE_SESSION_LIVE
:
2990 case LTTNG_DESTROY_SESSION
:
2991 case LTTNG_LIST_SESSIONS
:
2992 case LTTNG_LIST_DOMAINS
:
2993 case LTTNG_START_TRACE
:
2994 case LTTNG_STOP_TRACE
:
2995 case LTTNG_DATA_PENDING
:
2996 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
2997 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
2998 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
2999 case LTTNG_SNAPSHOT_RECORD
:
3000 case LTTNG_SAVE_SESSION
:
3001 case LTTNG_SET_SESSION_SHM_PATH
:
3002 case LTTNG_REGENERATE_METADATA
:
3003 case LTTNG_REGENERATE_STATEDUMP
:
3010 if (opt_no_kernel
&& need_domain
3011 && cmd_ctx
->lsm
->domain
.type
== LTTNG_DOMAIN_KERNEL
) {
3013 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
3015 ret
= LTTNG_ERR_KERN_NA
;
3020 /* Deny register consumer if we already have a spawned consumer. */
3021 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_REGISTER_CONSUMER
) {
3022 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
3023 if (kconsumer_data
.pid
> 0) {
3024 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
3025 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
3028 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
3032 * Check for command that don't needs to allocate a returned payload. We do
3033 * this here so we don't have to make the call for no payload at each
3036 switch(cmd_ctx
->lsm
->cmd_type
) {
3037 case LTTNG_LIST_SESSIONS
:
3038 case LTTNG_LIST_TRACEPOINTS
:
3039 case LTTNG_LIST_TRACEPOINT_FIELDS
:
3040 case LTTNG_LIST_DOMAINS
:
3041 case LTTNG_LIST_CHANNELS
:
3042 case LTTNG_LIST_EVENTS
:
3043 case LTTNG_LIST_SYSCALLS
:
3044 case LTTNG_LIST_TRACKER_PIDS
:
3045 case LTTNG_DATA_PENDING
:
3048 /* Setup lttng message with no payload */
3049 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, NULL
, 0);
3051 /* This label does not try to unlock the session */
3052 goto init_setup_error
;
3056 /* Commands that DO NOT need a session. */
3057 switch (cmd_ctx
->lsm
->cmd_type
) {
3058 case LTTNG_CREATE_SESSION
:
3059 case LTTNG_CREATE_SESSION_SNAPSHOT
:
3060 case LTTNG_CREATE_SESSION_LIVE
:
3061 case LTTNG_CALIBRATE
:
3062 case LTTNG_LIST_SESSIONS
:
3063 case LTTNG_LIST_TRACEPOINTS
:
3064 case LTTNG_LIST_SYSCALLS
:
3065 case LTTNG_LIST_TRACEPOINT_FIELDS
:
3066 case LTTNG_SAVE_SESSION
:
3067 need_tracing_session
= 0;
3070 DBG("Getting session %s by name", cmd_ctx
->lsm
->session
.name
);
3072 * We keep the session list lock across _all_ commands
3073 * for now, because the per-session lock does not
3074 * handle teardown properly.
3076 session_lock_list();
3077 cmd_ctx
->session
= session_find_by_name(cmd_ctx
->lsm
->session
.name
);
3078 if (cmd_ctx
->session
== NULL
) {
3079 ret
= LTTNG_ERR_SESS_NOT_FOUND
;
3082 /* Acquire lock for the session */
3083 session_lock(cmd_ctx
->session
);
3089 * Commands that need a valid session but should NOT create one if none
3090 * exists. Instead of creating one and destroying it when the command is
3091 * handled, process that right before so we save some round trip in useless
3094 switch (cmd_ctx
->lsm
->cmd_type
) {
3095 case LTTNG_DISABLE_CHANNEL
:
3096 case LTTNG_DISABLE_EVENT
:
3097 switch (cmd_ctx
->lsm
->domain
.type
) {
3098 case LTTNG_DOMAIN_KERNEL
:
3099 if (!cmd_ctx
->session
->kernel_session
) {
3100 ret
= LTTNG_ERR_NO_CHANNEL
;
3104 case LTTNG_DOMAIN_JUL
:
3105 case LTTNG_DOMAIN_LOG4J
:
3106 case LTTNG_DOMAIN_PYTHON
:
3107 case LTTNG_DOMAIN_UST
:
3108 if (!cmd_ctx
->session
->ust_session
) {
3109 ret
= LTTNG_ERR_NO_CHANNEL
;
3114 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
3126 * Check domain type for specific "pre-action".
3128 switch (cmd_ctx
->lsm
->domain
.type
) {
3129 case LTTNG_DOMAIN_KERNEL
:
3131 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
3135 /* Kernel tracer check */
3136 if (kernel_tracer_fd
== -1) {
3137 /* Basically, load kernel tracer modules */
3138 ret
= init_kernel_tracer();
3144 /* Consumer is in an ERROR state. Report back to client */
3145 if (uatomic_read(&kernel_consumerd_state
) == CONSUMER_ERROR
) {
3146 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
3150 /* Need a session for kernel command */
3151 if (need_tracing_session
) {
3152 if (cmd_ctx
->session
->kernel_session
== NULL
) {
3153 ret
= create_kernel_session(cmd_ctx
->session
);
3155 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
3160 /* Start the kernel consumer daemon */
3161 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
3162 if (kconsumer_data
.pid
== 0 &&
3163 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
3164 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
3165 ret
= start_consumerd(&kconsumer_data
);
3167 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
3170 uatomic_set(&kernel_consumerd_state
, CONSUMER_STARTED
);
3172 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
3176 * The consumer was just spawned so we need to add the socket to
3177 * the consumer output of the session if exist.
3179 ret
= consumer_create_socket(&kconsumer_data
,
3180 cmd_ctx
->session
->kernel_session
->consumer
);
3187 case LTTNG_DOMAIN_JUL
:
3188 case LTTNG_DOMAIN_LOG4J
:
3189 case LTTNG_DOMAIN_PYTHON
:
3190 case LTTNG_DOMAIN_UST
:
3192 if (!ust_app_supported()) {
3193 ret
= LTTNG_ERR_NO_UST
;
3196 /* Consumer is in an ERROR state. Report back to client */
3197 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
3198 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
3202 if (need_tracing_session
) {
3203 /* Create UST session if none exist. */
3204 if (cmd_ctx
->session
->ust_session
== NULL
) {
3205 ret
= create_ust_session(cmd_ctx
->session
,
3206 &cmd_ctx
->lsm
->domain
);
3207 if (ret
!= LTTNG_OK
) {
3212 /* Start the UST consumer daemons */
3214 pthread_mutex_lock(&ustconsumer64_data
.pid_mutex
);
3215 if (consumerd64_bin
[0] != '\0' &&
3216 ustconsumer64_data
.pid
== 0 &&
3217 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
3218 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
3219 ret
= start_consumerd(&ustconsumer64_data
);
3221 ret
= LTTNG_ERR_UST_CONSUMER64_FAIL
;
3222 uatomic_set(&ust_consumerd64_fd
, -EINVAL
);
3226 uatomic_set(&ust_consumerd64_fd
, ustconsumer64_data
.cmd_sock
);
3227 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
3229 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
3233 * Setup socket for consumer 64 bit. No need for atomic access
3234 * since it was set above and can ONLY be set in this thread.
3236 ret
= consumer_create_socket(&ustconsumer64_data
,
3237 cmd_ctx
->session
->ust_session
->consumer
);
3243 pthread_mutex_lock(&ustconsumer32_data
.pid_mutex
);
3244 if (consumerd32_bin
[0] != '\0' &&
3245 ustconsumer32_data
.pid
== 0 &&
3246 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
3247 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
3248 ret
= start_consumerd(&ustconsumer32_data
);
3250 ret
= LTTNG_ERR_UST_CONSUMER32_FAIL
;
3251 uatomic_set(&ust_consumerd32_fd
, -EINVAL
);
3255 uatomic_set(&ust_consumerd32_fd
, ustconsumer32_data
.cmd_sock
);
3256 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
3258 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
3262 * Setup socket for consumer 64 bit. No need for atomic access
3263 * since it was set above and can ONLY be set in this thread.
3265 ret
= consumer_create_socket(&ustconsumer32_data
,
3266 cmd_ctx
->session
->ust_session
->consumer
);
3278 /* Validate consumer daemon state when start/stop trace command */
3279 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_START_TRACE
||
3280 cmd_ctx
->lsm
->cmd_type
== LTTNG_STOP_TRACE
) {
3281 switch (cmd_ctx
->lsm
->domain
.type
) {
3282 case LTTNG_DOMAIN_NONE
:
3284 case LTTNG_DOMAIN_JUL
:
3285 case LTTNG_DOMAIN_LOG4J
:
3286 case LTTNG_DOMAIN_PYTHON
:
3287 case LTTNG_DOMAIN_UST
:
3288 if (uatomic_read(&ust_consumerd_state
) != CONSUMER_STARTED
) {
3289 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
3293 case LTTNG_DOMAIN_KERNEL
:
3294 if (uatomic_read(&kernel_consumerd_state
) != CONSUMER_STARTED
) {
3295 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
3300 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
3306 * Check that the UID or GID match that of the tracing session.
3307 * The root user can interact with all sessions.
3309 if (need_tracing_session
) {
3310 if (!session_access_ok(cmd_ctx
->session
,
3311 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
3312 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
))) {
3313 ret
= LTTNG_ERR_EPERM
;
3319 * Send relayd information to consumer as soon as we have a domain and a
3322 if (cmd_ctx
->session
&& need_domain
) {
3324 * Setup relayd if not done yet. If the relayd information was already
3325 * sent to the consumer, this call will gracefully return.
3327 ret
= cmd_setup_relayd(cmd_ctx
->session
);
3328 if (ret
!= LTTNG_OK
) {
3333 /* Process by command type */
3334 switch (cmd_ctx
->lsm
->cmd_type
) {
3335 case LTTNG_ADD_CONTEXT
:
3338 * An LTTNG_ADD_CONTEXT command might have a supplementary
3339 * payload if the context being added is an application context.
3341 if (cmd_ctx
->lsm
->u
.context
.ctx
.ctx
==
3342 LTTNG_EVENT_CONTEXT_APP_CONTEXT
) {
3343 char *provider_name
= NULL
, *context_name
= NULL
;
3344 size_t provider_name_len
=
3345 cmd_ctx
->lsm
->u
.context
.provider_name_len
;
3346 size_t context_name_len
=
3347 cmd_ctx
->lsm
->u
.context
.context_name_len
;
3349 if (provider_name_len
== 0 || context_name_len
== 0) {
3351 * Application provider and context names MUST
3354 ret
= -LTTNG_ERR_INVALID
;
3358 provider_name
= zmalloc(provider_name_len
+ 1);
3359 if (!provider_name
) {
3360 ret
= -LTTNG_ERR_NOMEM
;
3363 cmd_ctx
->lsm
->u
.context
.ctx
.u
.app_ctx
.provider_name
=
3366 context_name
= zmalloc(context_name_len
+ 1);
3367 if (!context_name
) {
3368 ret
= -LTTNG_ERR_NOMEM
;
3369 goto error_add_context
;
3371 cmd_ctx
->lsm
->u
.context
.ctx
.u
.app_ctx
.ctx_name
=
3374 ret
= lttcomm_recv_unix_sock(sock
, provider_name
,
3377 goto error_add_context
;
3380 ret
= lttcomm_recv_unix_sock(sock
, context_name
,
3383 goto error_add_context
;
3388 * cmd_add_context assumes ownership of the provider and context
3391 ret
= cmd_add_context(cmd_ctx
->session
,
3392 cmd_ctx
->lsm
->domain
.type
,
3393 cmd_ctx
->lsm
->u
.context
.channel_name
,
3394 &cmd_ctx
->lsm
->u
.context
.ctx
,
3395 kernel_poll_pipe
[1]);
3397 cmd_ctx
->lsm
->u
.context
.ctx
.u
.app_ctx
.provider_name
= NULL
;
3398 cmd_ctx
->lsm
->u
.context
.ctx
.u
.app_ctx
.ctx_name
= NULL
;
3400 free(cmd_ctx
->lsm
->u
.context
.ctx
.u
.app_ctx
.provider_name
);
3401 free(cmd_ctx
->lsm
->u
.context
.ctx
.u
.app_ctx
.ctx_name
);
3407 case LTTNG_DISABLE_CHANNEL
:
3409 ret
= cmd_disable_channel(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
3410 cmd_ctx
->lsm
->u
.disable
.channel_name
);
3413 case LTTNG_DISABLE_EVENT
:
3417 * FIXME: handle filter; for now we just receive the filter's
3418 * bytecode along with the filter expression which are sent by
3419 * liblttng-ctl and discard them.
3421 * This fixes an issue where the client may block while sending
3422 * the filter payload and encounter an error because the session
3423 * daemon closes the socket without ever handling this data.
3425 size_t count
= cmd_ctx
->lsm
->u
.disable
.expression_len
+
3426 cmd_ctx
->lsm
->u
.disable
.bytecode_len
;
3429 char data
[LTTNG_FILTER_MAX_LEN
];
3431 DBG("Discarding disable event command payload of size %zu", count
);
3433 ret
= lttcomm_recv_unix_sock(sock
, data
,
3434 count
> sizeof(data
) ? sizeof(data
) : count
);
3439 count
-= (size_t) ret
;
3442 /* FIXME: passing packed structure to non-packed pointer */
3443 ret
= cmd_disable_event(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
3444 cmd_ctx
->lsm
->u
.disable
.channel_name
,
3445 &cmd_ctx
->lsm
->u
.disable
.event
);
3448 case LTTNG_ENABLE_CHANNEL
:
3450 ret
= cmd_enable_channel(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
3451 &cmd_ctx
->lsm
->u
.channel
.chan
, kernel_poll_pipe
[1]);
3454 case LTTNG_TRACK_PID
:
3456 ret
= cmd_track_pid(cmd_ctx
->session
,
3457 cmd_ctx
->lsm
->domain
.type
,
3458 cmd_ctx
->lsm
->u
.pid_tracker
.pid
);
3461 case LTTNG_UNTRACK_PID
:
3463 ret
= cmd_untrack_pid(cmd_ctx
->session
,
3464 cmd_ctx
->lsm
->domain
.type
,
3465 cmd_ctx
->lsm
->u
.pid_tracker
.pid
);
3468 case LTTNG_ENABLE_EVENT
:
3470 struct lttng_event_exclusion
*exclusion
= NULL
;
3471 struct lttng_filter_bytecode
*bytecode
= NULL
;
3472 char *filter_expression
= NULL
;
3474 /* Handle exclusion events and receive it from the client. */
3475 if (cmd_ctx
->lsm
->u
.enable
.exclusion_count
> 0) {
3476 size_t count
= cmd_ctx
->lsm
->u
.enable
.exclusion_count
;
3478 exclusion
= zmalloc(sizeof(struct lttng_event_exclusion
) +
3479 (count
* LTTNG_SYMBOL_NAME_LEN
));
3481 ret
= LTTNG_ERR_EXCLUSION_NOMEM
;
3485 DBG("Receiving var len exclusion event list from client ...");
3486 exclusion
->count
= count
;
3487 ret
= lttcomm_recv_unix_sock(sock
, exclusion
->names
,
3488 count
* LTTNG_SYMBOL_NAME_LEN
);
3490 DBG("Nothing recv() from client var len data... continuing");
3493 ret
= LTTNG_ERR_EXCLUSION_INVAL
;
3498 /* Get filter expression from client. */
3499 if (cmd_ctx
->lsm
->u
.enable
.expression_len
> 0) {
3500 size_t expression_len
=
3501 cmd_ctx
->lsm
->u
.enable
.expression_len
;
3503 if (expression_len
> LTTNG_FILTER_MAX_LEN
) {
3504 ret
= LTTNG_ERR_FILTER_INVAL
;
3509 filter_expression
= zmalloc(expression_len
);
3510 if (!filter_expression
) {
3512 ret
= LTTNG_ERR_FILTER_NOMEM
;
3516 /* Receive var. len. data */
3517 DBG("Receiving var len filter's expression from client ...");
3518 ret
= lttcomm_recv_unix_sock(sock
, filter_expression
,
3521 DBG("Nothing recv() from client car len data... continuing");
3523 free(filter_expression
);
3525 ret
= LTTNG_ERR_FILTER_INVAL
;
3530 /* Handle filter and get bytecode from client. */
3531 if (cmd_ctx
->lsm
->u
.enable
.bytecode_len
> 0) {
3532 size_t bytecode_len
= cmd_ctx
->lsm
->u
.enable
.bytecode_len
;
3534 if (bytecode_len
> LTTNG_FILTER_MAX_LEN
) {
3535 ret
= LTTNG_ERR_FILTER_INVAL
;
3536 free(filter_expression
);
3541 bytecode
= zmalloc(bytecode_len
);
3543 free(filter_expression
);
3545 ret
= LTTNG_ERR_FILTER_NOMEM
;
3549 /* Receive var. len. data */
3550 DBG("Receiving var len filter's bytecode from client ...");
3551 ret
= lttcomm_recv_unix_sock(sock
, bytecode
, bytecode_len
);
3553 DBG("Nothing recv() from client car len data... continuing");
3555 free(filter_expression
);
3558 ret
= LTTNG_ERR_FILTER_INVAL
;
3562 if ((bytecode
->len
+ sizeof(*bytecode
)) != bytecode_len
) {
3563 free(filter_expression
);
3566 ret
= LTTNG_ERR_FILTER_INVAL
;
3571 ret
= cmd_enable_event(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
3572 cmd_ctx
->lsm
->u
.enable
.channel_name
,
3573 &cmd_ctx
->lsm
->u
.enable
.event
,
3574 filter_expression
, bytecode
, exclusion
,
3575 kernel_poll_pipe
[1]);
3578 case LTTNG_LIST_TRACEPOINTS
:
3580 struct lttng_event
*events
;
3583 session_lock_list();
3584 nb_events
= cmd_list_tracepoints(cmd_ctx
->lsm
->domain
.type
, &events
);
3585 session_unlock_list();
3586 if (nb_events
< 0) {
3587 /* Return value is a negative lttng_error_code. */
3593 * Setup lttng message with payload size set to the event list size in
3594 * bytes and then copy list into the llm payload.
3596 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, events
,
3597 sizeof(struct lttng_event
) * nb_events
);
3607 case LTTNG_LIST_TRACEPOINT_FIELDS
:
3609 struct lttng_event_field
*fields
;
3612 session_lock_list();
3613 nb_fields
= cmd_list_tracepoint_fields(cmd_ctx
->lsm
->domain
.type
,
3615 session_unlock_list();
3616 if (nb_fields
< 0) {
3617 /* Return value is a negative lttng_error_code. */
3623 * Setup lttng message with payload size set to the event list size in
3624 * bytes and then copy list into the llm payload.
3626 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, fields
,
3627 sizeof(struct lttng_event_field
) * nb_fields
);
3637 case LTTNG_LIST_SYSCALLS
:
3639 struct lttng_event
*events
;
3642 nb_events
= cmd_list_syscalls(&events
);
3643 if (nb_events
< 0) {
3644 /* Return value is a negative lttng_error_code. */
3650 * Setup lttng message with payload size set to the event list size in
3651 * bytes and then copy list into the llm payload.
3653 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, events
,
3654 sizeof(struct lttng_event
) * nb_events
);
3664 case LTTNG_LIST_TRACKER_PIDS
:
3666 int32_t *pids
= NULL
;
3669 nr_pids
= cmd_list_tracker_pids(cmd_ctx
->session
,
3670 cmd_ctx
->lsm
->domain
.type
, &pids
);
3672 /* Return value is a negative lttng_error_code. */
3678 * Setup lttng message with payload size set to the event list size in
3679 * bytes and then copy list into the llm payload.
3681 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, pids
,
3682 sizeof(int32_t) * nr_pids
);
3692 case LTTNG_SET_CONSUMER_URI
:
3695 struct lttng_uri
*uris
;
3697 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3698 len
= nb_uri
* sizeof(struct lttng_uri
);
3701 ret
= LTTNG_ERR_INVALID
;
3705 uris
= zmalloc(len
);
3707 ret
= LTTNG_ERR_FATAL
;
3711 /* Receive variable len data */
3712 DBG("Receiving %zu URI(s) from client ...", nb_uri
);
3713 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3715 DBG("No URIs received from client... continuing");
3717 ret
= LTTNG_ERR_SESSION_FAIL
;
3722 ret
= cmd_set_consumer_uri(cmd_ctx
->session
, nb_uri
, uris
);
3724 if (ret
!= LTTNG_OK
) {
3731 case LTTNG_START_TRACE
:
3733 ret
= cmd_start_trace(cmd_ctx
->session
);
3736 case LTTNG_STOP_TRACE
:
3738 ret
= cmd_stop_trace(cmd_ctx
->session
);
3741 case LTTNG_CREATE_SESSION
:
3744 struct lttng_uri
*uris
= NULL
;
3746 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3747 len
= nb_uri
* sizeof(struct lttng_uri
);
3750 uris
= zmalloc(len
);
3752 ret
= LTTNG_ERR_FATAL
;
3756 /* Receive variable len data */
3757 DBG("Waiting for %zu URIs from client ...", nb_uri
);
3758 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3760 DBG("No URIs received from client... continuing");
3762 ret
= LTTNG_ERR_SESSION_FAIL
;
3767 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
3768 DBG("Creating session with ONE network URI is a bad call");
3769 ret
= LTTNG_ERR_SESSION_FAIL
;
3775 ret
= cmd_create_session_uri(cmd_ctx
->lsm
->session
.name
, uris
, nb_uri
,
3776 &cmd_ctx
->creds
, 0);
3782 case LTTNG_DESTROY_SESSION
:
3784 ret
= cmd_destroy_session(cmd_ctx
->session
, kernel_poll_pipe
[1]);
3786 /* Set session to NULL so we do not unlock it after free. */
3787 cmd_ctx
->session
= NULL
;
3790 case LTTNG_LIST_DOMAINS
:
3793 struct lttng_domain
*domains
= NULL
;
3795 nb_dom
= cmd_list_domains(cmd_ctx
->session
, &domains
);
3797 /* Return value is a negative lttng_error_code. */
3802 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, domains
,
3803 nb_dom
* sizeof(struct lttng_domain
));
3813 case LTTNG_LIST_CHANNELS
:
3815 ssize_t payload_size
;
3816 struct lttng_channel
*channels
= NULL
;
3818 payload_size
= cmd_list_channels(cmd_ctx
->lsm
->domain
.type
,
3819 cmd_ctx
->session
, &channels
);
3820 if (payload_size
< 0) {
3821 /* Return value is a negative lttng_error_code. */
3822 ret
= -payload_size
;
3826 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, channels
,
3837 case LTTNG_LIST_EVENTS
:
3840 struct lttng_event
*events
= NULL
;
3841 struct lttcomm_event_command_header cmd_header
;
3844 memset(&cmd_header
, 0, sizeof(cmd_header
));
3845 /* Extended infos are included at the end of events */
3846 nb_event
= cmd_list_events(cmd_ctx
->lsm
->domain
.type
,
3847 cmd_ctx
->session
, cmd_ctx
->lsm
->u
.list
.channel_name
,
3848 &events
, &total_size
);
3851 /* Return value is a negative lttng_error_code. */
3856 cmd_header
.nb_events
= nb_event
;
3857 ret
= setup_lttng_msg(cmd_ctx
, events
, total_size
,
3858 &cmd_header
, sizeof(cmd_header
));
3868 case LTTNG_LIST_SESSIONS
:
3870 unsigned int nr_sessions
;
3871 void *sessions_payload
;
3874 session_lock_list();
3875 nr_sessions
= lttng_sessions_count(
3876 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
3877 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
3878 payload_len
= sizeof(struct lttng_session
) * nr_sessions
;
3879 sessions_payload
= zmalloc(payload_len
);
3881 if (!sessions_payload
) {
3882 session_unlock_list();
3887 cmd_list_lttng_sessions(sessions_payload
,
3888 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
3889 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
3890 session_unlock_list();
3892 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, sessions_payload
,
3894 free(sessions_payload
);
3903 case LTTNG_CALIBRATE
:
3905 ret
= cmd_calibrate(cmd_ctx
->lsm
->domain
.type
,
3906 &cmd_ctx
->lsm
->u
.calibrate
);
3909 case LTTNG_REGISTER_CONSUMER
:
3911 struct consumer_data
*cdata
;
3913 switch (cmd_ctx
->lsm
->domain
.type
) {
3914 case LTTNG_DOMAIN_KERNEL
:
3915 cdata
= &kconsumer_data
;
3918 ret
= LTTNG_ERR_UND
;
3922 ret
= cmd_register_consumer(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
3923 cmd_ctx
->lsm
->u
.reg
.path
, cdata
);
3926 case LTTNG_DATA_PENDING
:
3929 uint8_t pending_ret_byte
;
3931 pending_ret
= cmd_data_pending(cmd_ctx
->session
);
3936 * This function may returns 0 or 1 to indicate whether or not
3937 * there is data pending. In case of error, it should return an
3938 * LTTNG_ERR code. However, some code paths may still return
3939 * a nondescript error code, which we handle by returning an
3942 if (pending_ret
== 0 || pending_ret
== 1) {
3944 * ret will be set to LTTNG_OK at the end of
3947 } else if (pending_ret
< 0) {
3948 ret
= LTTNG_ERR_UNK
;
3955 pending_ret_byte
= (uint8_t) pending_ret
;
3957 /* 1 byte to return whether or not data is pending */
3958 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
,
3959 &pending_ret_byte
, 1);
3968 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
3970 struct lttcomm_lttng_output_id reply
;
3972 ret
= cmd_snapshot_add_output(cmd_ctx
->session
,
3973 &cmd_ctx
->lsm
->u
.snapshot_output
.output
, &reply
.id
);
3974 if (ret
!= LTTNG_OK
) {
3978 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, &reply
,
3984 /* Copy output list into message payload */
3988 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
3990 ret
= cmd_snapshot_del_output(cmd_ctx
->session
,
3991 &cmd_ctx
->lsm
->u
.snapshot_output
.output
);
3994 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
3997 struct lttng_snapshot_output
*outputs
= NULL
;
3999 nb_output
= cmd_snapshot_list_outputs(cmd_ctx
->session
, &outputs
);
4000 if (nb_output
< 0) {
4005 assert((nb_output
> 0 && outputs
) || nb_output
== 0);
4006 ret
= setup_lttng_msg_no_cmd_header(cmd_ctx
, outputs
,
4007 nb_output
* sizeof(struct lttng_snapshot_output
));
4017 case LTTNG_SNAPSHOT_RECORD
:
4019 ret
= cmd_snapshot_record(cmd_ctx
->session
,
4020 &cmd_ctx
->lsm
->u
.snapshot_record
.output
,
4021 cmd_ctx
->lsm
->u
.snapshot_record
.wait
);
4024 case LTTNG_CREATE_SESSION_SNAPSHOT
:
4027 struct lttng_uri
*uris
= NULL
;
4029 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
4030 len
= nb_uri
* sizeof(struct lttng_uri
);
4033 uris
= zmalloc(len
);
4035 ret
= LTTNG_ERR_FATAL
;
4039 /* Receive variable len data */
4040 DBG("Waiting for %zu URIs from client ...", nb_uri
);
4041 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
4043 DBG("No URIs received from client... continuing");
4045 ret
= LTTNG_ERR_SESSION_FAIL
;
4050 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
4051 DBG("Creating session with ONE network URI is a bad call");
4052 ret
= LTTNG_ERR_SESSION_FAIL
;
4058 ret
= cmd_create_session_snapshot(cmd_ctx
->lsm
->session
.name
, uris
,
4059 nb_uri
, &cmd_ctx
->creds
);
4063 case LTTNG_CREATE_SESSION_LIVE
:
4066 struct lttng_uri
*uris
= NULL
;
4068 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
4069 len
= nb_uri
* sizeof(struct lttng_uri
);
4072 uris
= zmalloc(len
);
4074 ret
= LTTNG_ERR_FATAL
;
4078 /* Receive variable len data */
4079 DBG("Waiting for %zu URIs from client ...", nb_uri
);
4080 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
4082 DBG("No URIs received from client... continuing");
4084 ret
= LTTNG_ERR_SESSION_FAIL
;
4089 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
4090 DBG("Creating session with ONE network URI is a bad call");
4091 ret
= LTTNG_ERR_SESSION_FAIL
;
4097 ret
= cmd_create_session_uri(cmd_ctx
->lsm
->session
.name
, uris
,
4098 nb_uri
, &cmd_ctx
->creds
, cmd_ctx
->lsm
->u
.session_live
.timer_interval
);
4102 case LTTNG_SAVE_SESSION
:
4104 ret
= cmd_save_sessions(&cmd_ctx
->lsm
->u
.save_session
.attr
,
4108 case LTTNG_SET_SESSION_SHM_PATH
:
4110 ret
= cmd_set_session_shm_path(cmd_ctx
->session
,
4111 cmd_ctx
->lsm
->u
.set_shm_path
.shm_path
);
4114 case LTTNG_REGENERATE_METADATA
:
4116 ret
= cmd_regenerate_metadata(cmd_ctx
->session
);
4119 case LTTNG_REGENERATE_STATEDUMP
:
4121 ret
= cmd_regenerate_statedump(cmd_ctx
->session
);
4125 ret
= LTTNG_ERR_UND
;
4130 if (cmd_ctx
->llm
== NULL
) {
4131 DBG("Missing llm structure. Allocating one.");
4132 if (setup_lttng_msg_no_cmd_header(cmd_ctx
, NULL
, 0) < 0) {
4136 /* Set return code */
4137 cmd_ctx
->llm
->ret_code
= ret
;
4139 if (cmd_ctx
->session
) {
4140 session_unlock(cmd_ctx
->session
);
4142 if (need_tracing_session
) {
4143 session_unlock_list();
4146 assert(!rcu_read_ongoing());
4151 * Thread managing health check socket.
4153 static void *thread_manage_health(void *data
)
4155 int sock
= -1, new_sock
= -1, ret
, i
, pollfd
, err
= -1;
4156 uint32_t revents
, nb_fd
;
4157 struct lttng_poll_event events
;
4158 struct health_comm_msg msg
;
4159 struct health_comm_reply reply
;
4161 DBG("[thread] Manage health check started");
4163 rcu_register_thread();
4165 /* We might hit an error path before this is created. */
4166 lttng_poll_init(&events
);
4168 /* Create unix socket */
4169 sock
= lttcomm_create_unix_sock(health_unix_sock_path
);
4171 ERR("Unable to create health check Unix socket");
4176 /* lttng health client socket path permissions */
4177 ret
= chown(health_unix_sock_path
, 0,
4178 utils_get_group_id(tracing_group_name
));
4180 ERR("Unable to set group on %s", health_unix_sock_path
);
4185 ret
= chmod(health_unix_sock_path
,
4186 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
4188 ERR("Unable to set permissions on %s", health_unix_sock_path
);
4195 * Set the CLOEXEC flag. Return code is useless because either way, the
4198 (void) utils_set_fd_cloexec(sock
);
4200 ret
= lttcomm_listen_unix_sock(sock
);
4206 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
4207 * more will be added to this poll set.
4209 ret
= sessiond_set_thread_pollset(&events
, 2);
4214 /* Add the application registration socket */
4215 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLPRI
);
4220 sessiond_notify_ready();
4223 DBG("Health check ready");
4225 /* Inifinite blocking call, waiting for transmission */
4227 ret
= lttng_poll_wait(&events
, -1);
4230 * Restart interrupted system call.
4232 if (errno
== EINTR
) {
4240 for (i
= 0; i
< nb_fd
; i
++) {
4241 /* Fetch once the poll data */
4242 revents
= LTTNG_POLL_GETEV(&events
, i
);
4243 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
4246 /* No activity for this FD (poll implementation). */
4250 /* Thread quit pipe has been closed. Killing thread. */
4251 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
4257 /* Event on the registration socket */
4258 if (pollfd
== sock
) {
4259 if (revents
& LPOLLIN
) {
4261 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
4262 ERR("Health socket poll error");
4265 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
4271 new_sock
= lttcomm_accept_unix_sock(sock
);
4277 * Set the CLOEXEC flag. Return code is useless because either way, the
4280 (void) utils_set_fd_cloexec(new_sock
);
4282 DBG("Receiving data from client for health...");
4283 ret
= lttcomm_recv_unix_sock(new_sock
, (void *)&msg
, sizeof(msg
));
4285 DBG("Nothing recv() from client... continuing");
4286 ret
= close(new_sock
);
4293 rcu_thread_online();
4295 memset(&reply
, 0, sizeof(reply
));
4296 for (i
= 0; i
< NR_HEALTH_SESSIOND_TYPES
; i
++) {
4298 * health_check_state returns 0 if health is
4301 if (!health_check_state(health_sessiond
, i
)) {
4302 reply
.ret_code
|= 1ULL << i
;
4306 DBG2("Health check return value %" PRIx64
, reply
.ret_code
);
4308 ret
= send_unix_sock(new_sock
, (void *) &reply
, sizeof(reply
));
4310 ERR("Failed to send health data back to client");
4313 /* End of transmission */
4314 ret
= close(new_sock
);
4323 ERR("Health error occurred in %s", __func__
);
4325 DBG("Health check thread dying");
4326 unlink(health_unix_sock_path
);
4334 lttng_poll_clean(&events
);
4336 rcu_unregister_thread();
4341 * This thread manage all clients request using the unix client socket for
4344 static void *thread_manage_clients(void *data
)
4346 int sock
= -1, ret
, i
, pollfd
, err
= -1;
4348 uint32_t revents
, nb_fd
;
4349 struct command_ctx
*cmd_ctx
= NULL
;
4350 struct lttng_poll_event events
;
4352 DBG("[thread] Manage client started");
4354 rcu_register_thread();
4356 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_CMD
);
4358 health_code_update();
4360 ret
= lttcomm_listen_unix_sock(client_sock
);
4366 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
4367 * more will be added to this poll set.
4369 ret
= sessiond_set_thread_pollset(&events
, 2);
4371 goto error_create_poll
;
4374 /* Add the application registration socket */
4375 ret
= lttng_poll_add(&events
, client_sock
, LPOLLIN
| LPOLLPRI
);
4380 sessiond_notify_ready();
4381 ret
= sem_post(&load_info
->message_thread_ready
);
4383 PERROR("sem_post message_thread_ready");
4387 /* This testpoint is after we signal readiness to the parent. */
4388 if (testpoint(sessiond_thread_manage_clients
)) {
4392 if (testpoint(sessiond_thread_manage_clients_before_loop
)) {
4396 health_code_update();
4399 DBG("Accepting client command ...");
4401 /* Inifinite blocking call, waiting for transmission */
4403 health_poll_entry();
4404 ret
= lttng_poll_wait(&events
, -1);
4408 * Restart interrupted system call.
4410 if (errno
== EINTR
) {
4418 for (i
= 0; i
< nb_fd
; i
++) {
4419 /* Fetch once the poll data */
4420 revents
= LTTNG_POLL_GETEV(&events
, i
);
4421 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
4423 health_code_update();
4426 /* No activity for this FD (poll implementation). */
4430 /* Thread quit pipe has been closed. Killing thread. */
4431 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
4437 /* Event on the registration socket */
4438 if (pollfd
== client_sock
) {
4439 if (revents
& LPOLLIN
) {
4441 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
4442 ERR("Client socket poll error");
4445 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
4451 DBG("Wait for client response");
4453 health_code_update();
4455 sock
= lttcomm_accept_unix_sock(client_sock
);
4461 * Set the CLOEXEC flag. Return code is useless because either way, the
4464 (void) utils_set_fd_cloexec(sock
);
4466 /* Set socket option for credentials retrieval */
4467 ret
= lttcomm_setsockopt_creds_unix_sock(sock
);
4472 /* Allocate context command to process the client request */
4473 cmd_ctx
= zmalloc(sizeof(struct command_ctx
));
4474 if (cmd_ctx
== NULL
) {
4475 PERROR("zmalloc cmd_ctx");
4479 /* Allocate data buffer for reception */
4480 cmd_ctx
->lsm
= zmalloc(sizeof(struct lttcomm_session_msg
));
4481 if (cmd_ctx
->lsm
== NULL
) {
4482 PERROR("zmalloc cmd_ctx->lsm");
4486 cmd_ctx
->llm
= NULL
;
4487 cmd_ctx
->session
= NULL
;
4489 health_code_update();
4492 * Data is received from the lttng client. The struct
4493 * lttcomm_session_msg (lsm) contains the command and data request of
4496 DBG("Receiving data from client ...");
4497 ret
= lttcomm_recv_creds_unix_sock(sock
, cmd_ctx
->lsm
,
4498 sizeof(struct lttcomm_session_msg
), &cmd_ctx
->creds
);
4500 DBG("Nothing recv() from client... continuing");
4506 clean_command_ctx(&cmd_ctx
);
4510 health_code_update();
4512 // TODO: Validate cmd_ctx including sanity check for
4513 // security purpose.
4515 rcu_thread_online();
4517 * This function dispatch the work to the kernel or userspace tracer
4518 * libs and fill the lttcomm_lttng_msg data structure of all the needed
4519 * informations for the client. The command context struct contains
4520 * everything this function may needs.
4522 ret
= process_client_msg(cmd_ctx
, sock
, &sock_error
);
4523 rcu_thread_offline();
4531 * TODO: Inform client somehow of the fatal error. At
4532 * this point, ret < 0 means that a zmalloc failed
4533 * (ENOMEM). Error detected but still accept
4534 * command, unless a socket error has been
4537 clean_command_ctx(&cmd_ctx
);
4541 health_code_update();
4543 DBG("Sending response (size: %d, retcode: %s (%d))",
4544 cmd_ctx
->lttng_msg_size
,
4545 lttng_strerror(-cmd_ctx
->llm
->ret_code
),
4546 cmd_ctx
->llm
->ret_code
);
4547 ret
= send_unix_sock(sock
, cmd_ctx
->llm
, cmd_ctx
->lttng_msg_size
);
4549 ERR("Failed to send data back to client");
4552 /* End of transmission */
4559 clean_command_ctx(&cmd_ctx
);
4561 health_code_update();
4573 lttng_poll_clean(&events
);
4574 clean_command_ctx(&cmd_ctx
);
4578 unlink(client_unix_sock_path
);
4579 if (client_sock
>= 0) {
4580 ret
= close(client_sock
);
4588 ERR("Health error occurred in %s", __func__
);
4591 health_unregister(health_sessiond
);
4593 DBG("Client thread dying");
4595 rcu_unregister_thread();
4598 * Since we are creating the consumer threads, we own them, so we need
4599 * to join them before our thread exits.
4601 ret
= join_consumer_thread(&kconsumer_data
);
4604 PERROR("join_consumer");
4607 ret
= join_consumer_thread(&ustconsumer32_data
);
4610 PERROR("join_consumer ust32");
4613 ret
= join_consumer_thread(&ustconsumer64_data
);
4616 PERROR("join_consumer ust64");
4621 static int string_match(const char *str1
, const char *str2
)
4623 return (str1
&& str2
) && !strcmp(str1
, str2
);
4627 * Take an option from the getopt output and set it in the right variable to be
4630 * Return 0 on success else a negative value.
4632 static int set_option(int opt
, const char *arg
, const char *optname
)
4636 if (string_match(optname
, "client-sock") || opt
== 'c') {
4637 if (!arg
|| *arg
== '\0') {
4641 if (lttng_is_setuid_setgid()) {
4642 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4643 "-c, --client-sock");
4645 snprintf(client_unix_sock_path
, PATH_MAX
, "%s", arg
);
4647 } else if (string_match(optname
, "apps-sock") || opt
== 'a') {
4648 if (!arg
|| *arg
== '\0') {
4652 if (lttng_is_setuid_setgid()) {
4653 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4656 snprintf(apps_unix_sock_path
, PATH_MAX
, "%s", arg
);
4658 } else if (string_match(optname
, "daemonize") || opt
== 'd') {
4660 } else if (string_match(optname
, "background") || opt
== 'b') {
4662 } else if (string_match(optname
, "group") || opt
== 'g') {
4663 if (!arg
|| *arg
== '\0') {
4667 if (lttng_is_setuid_setgid()) {
4668 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4672 * If the override option is set, the pointer points to a
4673 * *non* const thus freeing it even though the variable type is
4676 if (tracing_group_name_override
) {
4677 free((void *) tracing_group_name
);
4679 tracing_group_name
= strdup(arg
);
4680 if (!tracing_group_name
) {
4684 tracing_group_name_override
= 1;
4686 } else if (string_match(optname
, "help") || opt
== 'h') {
4687 ret
= utils_show_man_page(8, "lttng-sessiond");
4689 ERR("Cannot view man page lttng-sessiond(8)");
4692 exit(ret
? EXIT_FAILURE
: EXIT_SUCCESS
);
4693 } else if (string_match(optname
, "version") || opt
== 'V') {
4694 fprintf(stdout
, "%s\n", VERSION
);
4696 } else if (string_match(optname
, "sig-parent") || opt
== 'S') {
4698 } else if (string_match(optname
, "kconsumerd-err-sock")) {
4699 if (!arg
|| *arg
== '\0') {
4703 if (lttng_is_setuid_setgid()) {
4704 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4705 "--kconsumerd-err-sock");
4707 snprintf(kconsumer_data
.err_unix_sock_path
, PATH_MAX
, "%s", arg
);
4709 } else if (string_match(optname
, "kconsumerd-cmd-sock")) {
4710 if (!arg
|| *arg
== '\0') {
4714 if (lttng_is_setuid_setgid()) {
4715 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4716 "--kconsumerd-cmd-sock");
4718 snprintf(kconsumer_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", arg
);
4720 } else if (string_match(optname
, "ustconsumerd64-err-sock")) {
4721 if (!arg
|| *arg
== '\0') {
4725 if (lttng_is_setuid_setgid()) {
4726 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4727 "--ustconsumerd64-err-sock");
4729 snprintf(ustconsumer64_data
.err_unix_sock_path
, PATH_MAX
, "%s", arg
);
4731 } else if (string_match(optname
, "ustconsumerd64-cmd-sock")) {
4732 if (!arg
|| *arg
== '\0') {
4736 if (lttng_is_setuid_setgid()) {
4737 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4738 "--ustconsumerd64-cmd-sock");
4740 snprintf(ustconsumer64_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", arg
);
4742 } else if (string_match(optname
, "ustconsumerd32-err-sock")) {
4743 if (!arg
|| *arg
== '\0') {
4747 if (lttng_is_setuid_setgid()) {
4748 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4749 "--ustconsumerd32-err-sock");
4751 snprintf(ustconsumer32_data
.err_unix_sock_path
, PATH_MAX
, "%s", arg
);
4753 } else if (string_match(optname
, "ustconsumerd32-cmd-sock")) {
4754 if (!arg
|| *arg
== '\0') {
4758 if (lttng_is_setuid_setgid()) {
4759 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4760 "--ustconsumerd32-cmd-sock");
4762 snprintf(ustconsumer32_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", arg
);
4764 } else if (string_match(optname
, "no-kernel")) {
4766 } else if (string_match(optname
, "quiet") || opt
== 'q') {
4767 lttng_opt_quiet
= 1;
4768 } else if (string_match(optname
, "verbose") || opt
== 'v') {
4769 /* Verbose level can increase using multiple -v */
4771 /* Value obtained from config file */
4772 lttng_opt_verbose
= config_parse_value(arg
);
4774 /* -v used on command line */
4775 lttng_opt_verbose
++;
4777 /* Clamp value to [0, 3] */
4778 lttng_opt_verbose
= lttng_opt_verbose
< 0 ? 0 :
4779 (lttng_opt_verbose
<= 3 ? lttng_opt_verbose
: 3);
4780 } else if (string_match(optname
, "verbose-consumer")) {
4782 opt_verbose_consumer
= config_parse_value(arg
);
4784 opt_verbose_consumer
++;
4786 } else if (string_match(optname
, "consumerd32-path")) {
4787 if (!arg
|| *arg
== '\0') {
4791 if (lttng_is_setuid_setgid()) {
4792 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4793 "--consumerd32-path");
4795 if (consumerd32_bin_override
) {
4796 free((void *) consumerd32_bin
);
4798 consumerd32_bin
= strdup(arg
);
4799 if (!consumerd32_bin
) {
4803 consumerd32_bin_override
= 1;
4805 } else if (string_match(optname
, "consumerd32-libdir")) {
4806 if (!arg
|| *arg
== '\0') {
4810 if (lttng_is_setuid_setgid()) {
4811 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4812 "--consumerd32-libdir");
4814 if (consumerd32_libdir_override
) {
4815 free((void *) consumerd32_libdir
);
4817 consumerd32_libdir
= strdup(arg
);
4818 if (!consumerd32_libdir
) {
4822 consumerd32_libdir_override
= 1;
4824 } else if (string_match(optname
, "consumerd64-path")) {
4825 if (!arg
|| *arg
== '\0') {
4829 if (lttng_is_setuid_setgid()) {
4830 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4831 "--consumerd64-path");
4833 if (consumerd64_bin_override
) {
4834 free((void *) consumerd64_bin
);
4836 consumerd64_bin
= strdup(arg
);
4837 if (!consumerd64_bin
) {
4841 consumerd64_bin_override
= 1;
4843 } else if (string_match(optname
, "consumerd64-libdir")) {
4844 if (!arg
|| *arg
== '\0') {
4848 if (lttng_is_setuid_setgid()) {
4849 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4850 "--consumerd64-libdir");
4852 if (consumerd64_libdir_override
) {
4853 free((void *) consumerd64_libdir
);
4855 consumerd64_libdir
= strdup(arg
);
4856 if (!consumerd64_libdir
) {
4860 consumerd64_libdir_override
= 1;
4862 } else if (string_match(optname
, "pidfile") || opt
== 'p') {
4863 if (!arg
|| *arg
== '\0') {
4867 if (lttng_is_setuid_setgid()) {
4868 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4872 opt_pidfile
= strdup(arg
);
4878 } else if (string_match(optname
, "agent-tcp-port")) {
4879 if (!arg
|| *arg
== '\0') {
4883 if (lttng_is_setuid_setgid()) {
4884 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4885 "--agent-tcp-port");
4890 v
= strtoul(arg
, NULL
, 0);
4891 if (errno
!= 0 || !isdigit(arg
[0])) {
4892 ERR("Wrong value in --agent-tcp-port parameter: %s", arg
);
4895 if (v
== 0 || v
>= 65535) {
4896 ERR("Port overflow in --agent-tcp-port parameter: %s", arg
);
4899 agent_tcp_port
= (uint32_t) v
;
4900 DBG3("Agent TCP port set to non default: %u", agent_tcp_port
);
4902 } else if (string_match(optname
, "load") || opt
== 'l') {
4903 if (!arg
|| *arg
== '\0') {
4907 if (lttng_is_setuid_setgid()) {
4908 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4911 free(opt_load_session_path
);
4912 opt_load_session_path
= strdup(arg
);
4913 if (!opt_load_session_path
) {
4918 } else if (string_match(optname
, "kmod-probes")) {
4919 if (!arg
|| *arg
== '\0') {
4923 if (lttng_is_setuid_setgid()) {
4924 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4927 free(kmod_probes_list
);
4928 kmod_probes_list
= strdup(arg
);
4929 if (!kmod_probes_list
) {
4934 } else if (string_match(optname
, "extra-kmod-probes")) {
4935 if (!arg
|| *arg
== '\0') {
4939 if (lttng_is_setuid_setgid()) {
4940 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
4941 "--extra-kmod-probes");
4943 free(kmod_extra_probes_list
);
4944 kmod_extra_probes_list
= strdup(arg
);
4945 if (!kmod_extra_probes_list
) {
4950 } else if (string_match(optname
, "config") || opt
== 'f') {
4951 /* This is handled in set_options() thus silent skip. */
4954 /* Unknown option or other error.
4955 * Error is printed by getopt, just return */
4960 if (ret
== -EINVAL
) {
4961 const char *opt_name
= "unknown";
4964 for (i
= 0; i
< sizeof(long_options
) / sizeof(struct option
);
4966 if (opt
== long_options
[i
].val
) {
4967 opt_name
= long_options
[i
].name
;
4972 WARN("Invalid argument provided for option \"%s\", using default value.",
4980 * config_entry_handler_cb used to handle options read from a config file.
4981 * See config_entry_handler_cb comment in common/config/session-config.h for the
4982 * return value conventions.
4984 static int config_entry_handler(const struct config_entry
*entry
, void *unused
)
4988 if (!entry
|| !entry
->name
|| !entry
->value
) {
4993 /* Check if the option is to be ignored */
4994 for (i
= 0; i
< sizeof(config_ignore_options
) / sizeof(char *); i
++) {
4995 if (!strcmp(entry
->name
, config_ignore_options
[i
])) {
5000 for (i
= 0; i
< (sizeof(long_options
) / sizeof(struct option
)) - 1;
5003 /* Ignore if not fully matched. */
5004 if (strcmp(entry
->name
, long_options
[i
].name
)) {
5009 * If the option takes no argument on the command line, we have to
5010 * check if the value is "true". We support non-zero numeric values,
5013 if (!long_options
[i
].has_arg
) {
5014 ret
= config_parse_value(entry
->value
);
5017 WARN("Invalid configuration value \"%s\" for option %s",
5018 entry
->value
, entry
->name
);
5020 /* False, skip boolean config option. */
5025 ret
= set_option(long_options
[i
].val
, entry
->value
, entry
->name
);
5029 WARN("Unrecognized option \"%s\" in daemon configuration file.", entry
->name
);
5036 * daemon configuration loading and argument parsing
5038 static int set_options(int argc
, char **argv
)
5040 int ret
= 0, c
= 0, option_index
= 0;
5041 int orig_optopt
= optopt
, orig_optind
= optind
;
5043 const char *config_path
= NULL
;
5045 optstring
= utils_generate_optstring(long_options
,
5046 sizeof(long_options
) / sizeof(struct option
));
5052 /* Check for the --config option */
5053 while ((c
= getopt_long(argc
, argv
, optstring
, long_options
,
5054 &option_index
)) != -1) {
5058 } else if (c
!= 'f') {
5059 /* if not equal to --config option. */
5063 if (lttng_is_setuid_setgid()) {
5064 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
5067 config_path
= utils_expand_path(optarg
);
5069 ERR("Failed to resolve path: %s", optarg
);
5074 ret
= config_get_section_entries(config_path
, config_section_name
,
5075 config_entry_handler
, NULL
);
5078 ERR("Invalid configuration option at line %i", ret
);
5084 /* Reset getopt's global state */
5085 optopt
= orig_optopt
;
5086 optind
= orig_optind
;
5090 * getopt_long() will not set option_index if it encounters a
5093 c
= getopt_long(argc
, argv
, optstring
, long_options
,
5100 * Pass NULL as the long option name if popt left the index
5103 ret
= set_option(c
, optarg
,
5104 option_index
< 0 ? NULL
:
5105 long_options
[option_index
].name
);
5117 * Creates the two needed socket by the daemon.
5118 * apps_sock - The communication socket for all UST apps.
5119 * client_sock - The communication of the cli tool (lttng).
5121 static int init_daemon_socket(void)
5126 old_umask
= umask(0);
5128 /* Create client tool unix socket */
5129 client_sock
= lttcomm_create_unix_sock(client_unix_sock_path
);
5130 if (client_sock
< 0) {
5131 ERR("Create unix sock failed: %s", client_unix_sock_path
);
5136 /* Set the cloexec flag */
5137 ret
= utils_set_fd_cloexec(client_sock
);
5139 ERR("Unable to set CLOEXEC flag to the client Unix socket (fd: %d). "
5140 "Continuing but note that the consumer daemon will have a "
5141 "reference to this socket on exec()", client_sock
);
5144 /* File permission MUST be 660 */
5145 ret
= chmod(client_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
5147 ERR("Set file permissions failed: %s", client_unix_sock_path
);
5152 /* Create the application unix socket */
5153 apps_sock
= lttcomm_create_unix_sock(apps_unix_sock_path
);
5154 if (apps_sock
< 0) {
5155 ERR("Create unix sock failed: %s", apps_unix_sock_path
);
5160 /* Set the cloexec flag */
5161 ret
= utils_set_fd_cloexec(apps_sock
);
5163 ERR("Unable to set CLOEXEC flag to the app Unix socket (fd: %d). "
5164 "Continuing but note that the consumer daemon will have a "
5165 "reference to this socket on exec()", apps_sock
);
5168 /* File permission MUST be 666 */
5169 ret
= chmod(apps_unix_sock_path
,
5170 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IROTH
| S_IWOTH
);
5172 ERR("Set file permissions failed: %s", apps_unix_sock_path
);
5177 DBG3("Session daemon client socket %d and application socket %d created",
5178 client_sock
, apps_sock
);
5186 * Check if the global socket is available, and if a daemon is answering at the
5187 * other side. If yes, error is returned.
5189 static int check_existing_daemon(void)
5191 /* Is there anybody out there ? */
5192 if (lttng_session_daemon_alive()) {
5200 * Set the tracing group gid onto the client socket.
5202 * Race window between mkdir and chown is OK because we are going from more
5203 * permissive (root.root) to less permissive (root.tracing).
5205 static int set_permissions(char *rundir
)
5210 gid
= utils_get_group_id(tracing_group_name
);
5212 /* Set lttng run dir */
5213 ret
= chown(rundir
, 0, gid
);
5215 ERR("Unable to set group on %s", rundir
);
5220 * Ensure all applications and tracing group can search the run
5221 * dir. Allow everyone to read the directory, since it does not
5222 * buy us anything to hide its content.
5224 ret
= chmod(rundir
, S_IRWXU
| S_IRGRP
| S_IXGRP
| S_IROTH
| S_IXOTH
);
5226 ERR("Unable to set permissions on %s", rundir
);
5230 /* lttng client socket path */
5231 ret
= chown(client_unix_sock_path
, 0, gid
);
5233 ERR("Unable to set group on %s", client_unix_sock_path
);
5237 /* kconsumer error socket path */
5238 ret
= chown(kconsumer_data
.err_unix_sock_path
, 0, 0);
5240 ERR("Unable to set group on %s", kconsumer_data
.err_unix_sock_path
);
5244 /* 64-bit ustconsumer error socket path */
5245 ret
= chown(ustconsumer64_data
.err_unix_sock_path
, 0, 0);
5247 ERR("Unable to set group on %s", ustconsumer64_data
.err_unix_sock_path
);
5251 /* 32-bit ustconsumer compat32 error socket path */
5252 ret
= chown(ustconsumer32_data
.err_unix_sock_path
, 0, 0);
5254 ERR("Unable to set group on %s", ustconsumer32_data
.err_unix_sock_path
);
5258 DBG("All permissions are set");
5264 * Create the lttng run directory needed for all global sockets and pipe.
5266 static int create_lttng_rundir(const char *rundir
)
5270 DBG3("Creating LTTng run directory: %s", rundir
);
5272 ret
= mkdir(rundir
, S_IRWXU
);
5274 if (errno
!= EEXIST
) {
5275 ERR("Unable to create %s", rundir
);
5287 * Setup sockets and directory needed by the kconsumerd communication with the
5290 static int set_consumer_sockets(struct consumer_data
*consumer_data
,
5294 char path
[PATH_MAX
];
5296 switch (consumer_data
->type
) {
5297 case LTTNG_CONSUMER_KERNEL
:
5298 snprintf(path
, PATH_MAX
, DEFAULT_KCONSUMERD_PATH
, rundir
);
5300 case LTTNG_CONSUMER64_UST
:
5301 snprintf(path
, PATH_MAX
, DEFAULT_USTCONSUMERD64_PATH
, rundir
);
5303 case LTTNG_CONSUMER32_UST
:
5304 snprintf(path
, PATH_MAX
, DEFAULT_USTCONSUMERD32_PATH
, rundir
);
5307 ERR("Consumer type unknown");
5312 DBG2("Creating consumer directory: %s", path
);
5314 ret
= mkdir(path
, S_IRWXU
| S_IRGRP
| S_IXGRP
);
5316 if (errno
!= EEXIST
) {
5318 ERR("Failed to create %s", path
);
5324 ret
= chown(path
, 0, utils_get_group_id(tracing_group_name
));
5326 ERR("Unable to set group on %s", path
);
5332 /* Create the kconsumerd error unix socket */
5333 consumer_data
->err_sock
=
5334 lttcomm_create_unix_sock(consumer_data
->err_unix_sock_path
);
5335 if (consumer_data
->err_sock
< 0) {
5336 ERR("Create unix sock failed: %s", consumer_data
->err_unix_sock_path
);
5342 * Set the CLOEXEC flag. Return code is useless because either way, the
5345 ret
= utils_set_fd_cloexec(consumer_data
->err_sock
);
5347 PERROR("utils_set_fd_cloexec");
5348 /* continue anyway */
5351 /* File permission MUST be 660 */
5352 ret
= chmod(consumer_data
->err_unix_sock_path
,
5353 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
5355 ERR("Set file permissions failed: %s", consumer_data
->err_unix_sock_path
);
5365 * Signal handler for the daemon
5367 * Simply stop all worker threads, leaving main() return gracefully after
5368 * joining all threads and calling cleanup().
5370 static void sighandler(int sig
)
5374 DBG("SIGPIPE caught");
5377 DBG("SIGINT caught");
5381 DBG("SIGTERM caught");
5385 CMM_STORE_SHARED(recv_child_signal
, 1);
5393 * Setup signal handler for :
5394 * SIGINT, SIGTERM, SIGPIPE
5396 static int set_signal_handler(void)
5399 struct sigaction sa
;
5402 if ((ret
= sigemptyset(&sigset
)) < 0) {
5403 PERROR("sigemptyset");
5407 sa
.sa_handler
= sighandler
;
5408 sa
.sa_mask
= sigset
;
5410 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
5411 PERROR("sigaction");
5415 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
5416 PERROR("sigaction");
5420 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
5421 PERROR("sigaction");
5425 if ((ret
= sigaction(SIGUSR1
, &sa
, NULL
)) < 0) {
5426 PERROR("sigaction");
5430 DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT");
5436 * Set open files limit to unlimited. This daemon can open a large number of
5437 * file descriptors in order to consume multiple kernel traces.
5439 static void set_ulimit(void)
5444 /* The kernel does not allow an infinite limit for open files */
5445 lim
.rlim_cur
= 65535;
5446 lim
.rlim_max
= 65535;
5448 ret
= setrlimit(RLIMIT_NOFILE
, &lim
);
5450 PERROR("failed to set open files limit");
5455 * Write pidfile using the rundir and opt_pidfile.
5457 static int write_pidfile(void)
5460 char pidfile_path
[PATH_MAX
];
5465 if (lttng_strncpy(pidfile_path
, opt_pidfile
, sizeof(pidfile_path
))) {
5470 /* Build pidfile path from rundir and opt_pidfile. */
5471 ret
= snprintf(pidfile_path
, sizeof(pidfile_path
), "%s/"
5472 DEFAULT_LTTNG_SESSIOND_PIDFILE
, rundir
);
5474 PERROR("snprintf pidfile path");
5480 * Create pid file in rundir.
5482 ret
= utils_create_pid_file(getpid(), pidfile_path
);
5488 * Create lockfile using the rundir and return its fd.
5490 static int create_lockfile(void)
5493 char lockfile_path
[PATH_MAX
];
5495 ret
= generate_lock_file_path(lockfile_path
, sizeof(lockfile_path
));
5500 ret
= utils_create_lock_file(lockfile_path
);
5506 * Write agent TCP port using the rundir.
5508 static int write_agent_port(void)
5511 char path
[PATH_MAX
];
5515 ret
= snprintf(path
, sizeof(path
), "%s/"
5516 DEFAULT_LTTNG_SESSIOND_AGENTPORT_FILE
, rundir
);
5518 PERROR("snprintf agent port path");
5523 * Create TCP agent port file in rundir.
5525 ret
= utils_create_pid_file(agent_tcp_port
, path
);
5534 int main(int argc
, char **argv
)
5536 int ret
= 0, retval
= 0;
5538 const char *home_path
, *env_app_timeout
;
5540 init_kernel_workarounds();
5542 rcu_register_thread();
5544 if (set_signal_handler()) {
5546 goto exit_set_signal_handler
;
5549 setup_consumerd_path();
5551 page_size
= sysconf(_SC_PAGESIZE
);
5552 if (page_size
< 0) {
5553 PERROR("sysconf _SC_PAGESIZE");
5554 page_size
= LONG_MAX
;
5555 WARN("Fallback page size to %ld", page_size
);
5559 * Parse arguments and load the daemon configuration file.
5561 * We have an exit_options exit path to free memory reserved by
5562 * set_options. This is needed because the rest of sessiond_cleanup()
5563 * depends on ht_cleanup_thread, which depends on lttng_daemonize, which
5564 * depends on set_options.
5567 if (set_options(argc
, argv
)) {
5573 if (opt_daemon
|| opt_background
) {
5576 ret
= lttng_daemonize(&child_ppid
, &recv_child_signal
,
5584 * We are in the child. Make sure all other file descriptors are
5585 * closed, in case we are called with more opened file
5586 * descriptors than the standard ones.
5588 for (i
= 3; i
< sysconf(_SC_OPEN_MAX
); i
++) {
5593 if (run_as_create_worker(argv
[0]) < 0) {
5594 goto exit_create_run_as_worker_cleanup
;
5598 * Starting from here, we can create threads. This needs to be after
5599 * lttng_daemonize due to RCU.
5603 * Initialize the health check subsystem. This call should set the
5604 * appropriate time values.
5606 health_sessiond
= health_app_create(NR_HEALTH_SESSIOND_TYPES
);
5607 if (!health_sessiond
) {
5608 PERROR("health_app_create error");
5610 goto exit_health_sessiond_cleanup
;
5613 /* Create thread to clean up RCU hash tables */
5614 if (init_ht_cleanup_thread(&ht_cleanup_thread
)) {
5616 goto exit_ht_cleanup
;
5619 /* Create thread quit pipe */
5620 if (init_thread_quit_pipe()) {
5622 goto exit_init_data
;
5625 /* Check if daemon is UID = 0 */
5626 is_root
= !getuid();
5629 rundir
= strdup(DEFAULT_LTTNG_RUNDIR
);
5632 goto exit_init_data
;
5635 /* Create global run dir with root access */
5636 if (create_lttng_rundir(rundir
)) {
5638 goto exit_init_data
;
5641 if (strlen(apps_unix_sock_path
) == 0) {
5642 ret
= snprintf(apps_unix_sock_path
, PATH_MAX
,
5643 DEFAULT_GLOBAL_APPS_UNIX_SOCK
);
5646 goto exit_init_data
;
5650 if (strlen(client_unix_sock_path
) == 0) {
5651 ret
= snprintf(client_unix_sock_path
, PATH_MAX
,
5652 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK
);
5655 goto exit_init_data
;
5659 /* Set global SHM for ust */
5660 if (strlen(wait_shm_path
) == 0) {
5661 ret
= snprintf(wait_shm_path
, PATH_MAX
,
5662 DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH
);
5665 goto exit_init_data
;
5669 if (strlen(health_unix_sock_path
) == 0) {
5670 ret
= snprintf(health_unix_sock_path
,
5671 sizeof(health_unix_sock_path
),
5672 DEFAULT_GLOBAL_HEALTH_UNIX_SOCK
);
5675 goto exit_init_data
;
5679 /* Setup kernel consumerd path */
5680 ret
= snprintf(kconsumer_data
.err_unix_sock_path
, PATH_MAX
,
5681 DEFAULT_KCONSUMERD_ERR_SOCK_PATH
, rundir
);
5684 goto exit_init_data
;
5686 ret
= snprintf(kconsumer_data
.cmd_unix_sock_path
, PATH_MAX
,
5687 DEFAULT_KCONSUMERD_CMD_SOCK_PATH
, rundir
);
5690 goto exit_init_data
;
5693 DBG2("Kernel consumer err path: %s",
5694 kconsumer_data
.err_unix_sock_path
);
5695 DBG2("Kernel consumer cmd path: %s",
5696 kconsumer_data
.cmd_unix_sock_path
);
5698 home_path
= utils_get_home_dir();
5699 if (home_path
== NULL
) {
5700 /* TODO: Add --socket PATH option */
5701 ERR("Can't get HOME directory for sockets creation.");
5703 goto exit_init_data
;
5707 * Create rundir from home path. This will create something like
5710 ret
= asprintf(&rundir
, DEFAULT_LTTNG_HOME_RUNDIR
, home_path
);
5713 goto exit_init_data
;
5716 if (create_lttng_rundir(rundir
)) {
5718 goto exit_init_data
;
5721 if (strlen(apps_unix_sock_path
) == 0) {
5722 ret
= snprintf(apps_unix_sock_path
, PATH_MAX
,
5723 DEFAULT_HOME_APPS_UNIX_SOCK
,
5727 goto exit_init_data
;
5731 /* Set the cli tool unix socket path */
5732 if (strlen(client_unix_sock_path
) == 0) {
5733 ret
= snprintf(client_unix_sock_path
, PATH_MAX
,
5734 DEFAULT_HOME_CLIENT_UNIX_SOCK
,
5738 goto exit_init_data
;
5742 /* Set global SHM for ust */
5743 if (strlen(wait_shm_path
) == 0) {
5744 ret
= snprintf(wait_shm_path
, PATH_MAX
,
5745 DEFAULT_HOME_APPS_WAIT_SHM_PATH
,
5749 goto exit_init_data
;
5753 /* Set health check Unix path */
5754 if (strlen(health_unix_sock_path
) == 0) {
5755 ret
= snprintf(health_unix_sock_path
,
5756 sizeof(health_unix_sock_path
),
5757 DEFAULT_HOME_HEALTH_UNIX_SOCK
,
5761 goto exit_init_data
;
5766 lockfile_fd
= create_lockfile();
5767 if (lockfile_fd
< 0) {
5769 goto exit_init_data
;
5772 /* Set consumer initial state */
5773 kernel_consumerd_state
= CONSUMER_STOPPED
;
5774 ust_consumerd_state
= CONSUMER_STOPPED
;
5776 DBG("Client socket path %s", client_unix_sock_path
);
5777 DBG("Application socket path %s", apps_unix_sock_path
);
5778 DBG("Application wait path %s", wait_shm_path
);
5779 DBG("LTTng run directory path: %s", rundir
);
5781 /* 32 bits consumerd path setup */
5782 ret
= snprintf(ustconsumer32_data
.err_unix_sock_path
, PATH_MAX
,
5783 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
, rundir
);
5785 PERROR("snprintf 32-bit consumer error socket path");
5787 goto exit_init_data
;
5789 ret
= snprintf(ustconsumer32_data
.cmd_unix_sock_path
, PATH_MAX
,
5790 DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
, rundir
);
5792 PERROR("snprintf 32-bit consumer command socket path");
5794 goto exit_init_data
;
5797 DBG2("UST consumer 32 bits err path: %s",
5798 ustconsumer32_data
.err_unix_sock_path
);
5799 DBG2("UST consumer 32 bits cmd path: %s",
5800 ustconsumer32_data
.cmd_unix_sock_path
);
5802 /* 64 bits consumerd path setup */
5803 ret
= snprintf(ustconsumer64_data
.err_unix_sock_path
, PATH_MAX
,
5804 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
, rundir
);
5806 PERROR("snprintf 64-bit consumer error socket path");
5808 goto exit_init_data
;
5810 ret
= snprintf(ustconsumer64_data
.cmd_unix_sock_path
, PATH_MAX
,
5811 DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
, rundir
);
5813 PERROR("snprintf 64-bit consumer command socket path");
5815 goto exit_init_data
;
5818 DBG2("UST consumer 64 bits err path: %s",
5819 ustconsumer64_data
.err_unix_sock_path
);
5820 DBG2("UST consumer 64 bits cmd path: %s",
5821 ustconsumer64_data
.cmd_unix_sock_path
);
5824 * See if daemon already exist.
5826 if (check_existing_daemon()) {
5827 ERR("Already running daemon.\n");
5829 * We do not goto exit because we must not cleanup()
5830 * because a daemon is already running.
5833 goto exit_init_data
;
5837 * Init UST app hash table. Alloc hash table before this point since
5838 * cleanup() can get called after that point.
5840 if (ust_app_ht_alloc()) {
5841 ERR("Failed to allocate UST app hash table");
5843 goto exit_init_data
;
5847 * Initialize agent app hash table. We allocate the hash table here
5848 * since cleanup() can get called after this point.
5850 if (agent_app_ht_alloc()) {
5851 ERR("Failed to allocate Agent app hash table");
5853 goto exit_init_data
;
5857 * These actions must be executed as root. We do that *after* setting up
5858 * the sockets path because we MUST make the check for another daemon using
5859 * those paths *before* trying to set the kernel consumer sockets and init
5863 if (set_consumer_sockets(&kconsumer_data
, rundir
)) {
5865 goto exit_init_data
;
5868 /* Setup kernel tracer */
5869 if (!opt_no_kernel
) {
5870 init_kernel_tracer();
5871 if (kernel_tracer_fd
>= 0) {
5872 ret
= syscall_init_table();
5874 ERR("Unable to populate syscall table. "
5875 "Syscall tracing won't work "
5876 "for this session daemon.");
5881 /* Set ulimit for open files */
5884 /* init lttng_fd tracking must be done after set_ulimit. */
5887 if (set_consumer_sockets(&ustconsumer64_data
, rundir
)) {
5889 goto exit_init_data
;
5892 if (set_consumer_sockets(&ustconsumer32_data
, rundir
)) {
5894 goto exit_init_data
;
5897 /* Setup the needed unix socket */
5898 if (init_daemon_socket()) {
5900 goto exit_init_data
;
5903 /* Set credentials to socket */
5904 if (is_root
&& set_permissions(rundir
)) {
5906 goto exit_init_data
;
5909 /* Get parent pid if -S, --sig-parent is specified. */
5910 if (opt_sig_parent
) {
5914 /* Setup the kernel pipe for waking up the kernel thread */
5915 if (is_root
&& !opt_no_kernel
) {
5916 if (utils_create_pipe_cloexec(kernel_poll_pipe
)) {
5918 goto exit_init_data
;
5922 /* Setup the thread apps communication pipe. */
5923 if (utils_create_pipe_cloexec(apps_cmd_pipe
)) {
5925 goto exit_init_data
;
5928 /* Setup the thread apps notify communication pipe. */
5929 if (utils_create_pipe_cloexec(apps_cmd_notify_pipe
)) {
5931 goto exit_init_data
;
5934 /* Initialize global buffer per UID and PID registry. */
5935 buffer_reg_init_uid_registry();
5936 buffer_reg_init_pid_registry();
5938 /* Init UST command queue. */
5939 cds_wfcq_init(&ust_cmd_queue
.head
, &ust_cmd_queue
.tail
);
5942 * Get session list pointer. This pointer MUST NOT be free'd. This list
5943 * is statically declared in session.c
5945 session_list_ptr
= session_get_list();
5949 /* Check for the application socket timeout env variable. */
5950 env_app_timeout
= getenv(DEFAULT_APP_SOCKET_TIMEOUT_ENV
);
5951 if (env_app_timeout
) {
5952 app_socket_timeout
= atoi(env_app_timeout
);
5954 app_socket_timeout
= DEFAULT_APP_SOCKET_RW_TIMEOUT
;
5957 ret
= write_pidfile();
5959 ERR("Error in write_pidfile");
5961 goto exit_init_data
;
5963 ret
= write_agent_port();
5965 ERR("Error in write_agent_port");
5967 goto exit_init_data
;
5970 /* Initialize communication library */
5972 /* Initialize TCP timeout values */
5973 lttcomm_inet_init();
5975 if (load_session_init_data(&load_info
) < 0) {
5977 goto exit_init_data
;
5979 load_info
->path
= opt_load_session_path
;
5981 /* Create health-check thread */
5982 ret
= pthread_create(&health_thread
, default_pthread_attr(),
5983 thread_manage_health
, (void *) NULL
);
5986 PERROR("pthread_create health");
5991 /* Create thread to manage the client socket */
5992 ret
= pthread_create(&client_thread
, default_pthread_attr(),
5993 thread_manage_clients
, (void *) NULL
);
5996 PERROR("pthread_create clients");
6001 /* Create thread to dispatch registration */
6002 ret
= pthread_create(&dispatch_thread
, default_pthread_attr(),
6003 thread_dispatch_ust_registration
, (void *) NULL
);
6006 PERROR("pthread_create dispatch");
6011 /* Create thread to manage application registration. */
6012 ret
= pthread_create(®_apps_thread
, default_pthread_attr(),
6013 thread_registration_apps
, (void *) NULL
);
6016 PERROR("pthread_create registration");
6021 /* Create thread to manage application socket */
6022 ret
= pthread_create(&apps_thread
, default_pthread_attr(),
6023 thread_manage_apps
, (void *) NULL
);
6026 PERROR("pthread_create apps");
6031 /* Create thread to manage application notify socket */
6032 ret
= pthread_create(&apps_notify_thread
, default_pthread_attr(),
6033 ust_thread_manage_notify
, (void *) NULL
);
6036 PERROR("pthread_create notify");
6038 goto exit_apps_notify
;
6041 /* Create agent registration thread. */
6042 ret
= pthread_create(&agent_reg_thread
, default_pthread_attr(),
6043 agent_thread_manage_registration
, (void *) NULL
);
6046 PERROR("pthread_create agent");
6048 goto exit_agent_reg
;
6051 /* Don't start this thread if kernel tracing is not requested nor root */
6052 if (is_root
&& !opt_no_kernel
) {
6053 /* Create kernel thread to manage kernel event */
6054 ret
= pthread_create(&kernel_thread
, default_pthread_attr(),
6055 thread_manage_kernel
, (void *) NULL
);
6058 PERROR("pthread_create kernel");
6064 /* Create session loading thread. */
6065 ret
= pthread_create(&load_session_thread
, default_pthread_attr(),
6066 thread_load_session
, load_info
);
6069 PERROR("pthread_create load_session_thread");
6071 goto exit_load_session
;
6075 * This is where we start awaiting program completion (e.g. through
6076 * signal that asks threads to teardown).
6079 ret
= pthread_join(load_session_thread
, &status
);
6082 PERROR("pthread_join load_session_thread");
6087 if (is_root
&& !opt_no_kernel
) {
6088 ret
= pthread_join(kernel_thread
, &status
);
6091 PERROR("pthread_join");
6097 ret
= pthread_join(agent_reg_thread
, &status
);
6100 PERROR("pthread_join agent");
6105 ret
= pthread_join(apps_notify_thread
, &status
);
6108 PERROR("pthread_join apps notify");
6113 ret
= pthread_join(apps_thread
, &status
);
6116 PERROR("pthread_join apps");
6121 ret
= pthread_join(reg_apps_thread
, &status
);
6124 PERROR("pthread_join");
6130 * Join dispatch thread after joining reg_apps_thread to ensure
6131 * we don't leak applications in the queue.
6133 ret
= pthread_join(dispatch_thread
, &status
);
6136 PERROR("pthread_join");
6141 ret
= pthread_join(client_thread
, &status
);
6144 PERROR("pthread_join");
6149 ret
= pthread_join(health_thread
, &status
);
6152 PERROR("pthread_join health thread");
6159 * sessiond_cleanup() is called when no other thread is running, except
6160 * the ht_cleanup thread, which is needed to destroy the hash tables.
6162 rcu_thread_online();
6164 rcu_thread_offline();
6165 rcu_unregister_thread();
6168 * Ensure all prior call_rcu are done. call_rcu callbacks may push
6169 * hash tables to the ht_cleanup thread. Therefore, we ensure that
6170 * the queue is empty before shutting down the clean-up thread.
6174 ret
= fini_ht_cleanup_thread(&ht_cleanup_thread
);
6180 health_app_destroy(health_sessiond
);
6181 exit_health_sessiond_cleanup
:
6182 exit_create_run_as_worker_cleanup
:
6185 sessiond_cleanup_options();
6187 exit_set_signal_handler
: