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.
33 #include <sys/mount.h>
34 #include <sys/resource.h>
35 #include <sys/socket.h>
37 #include <sys/types.h>
39 #include <urcu/uatomic.h>
43 #include <common/common.h>
44 #include <common/compat/socket.h>
45 #include <common/compat/getenv.h>
46 #include <common/defaults.h>
47 #include <common/kernel-consumer/kernel-consumer.h>
48 #include <common/futex.h>
49 #include <common/relayd/relayd.h>
50 #include <common/utils.h>
51 #include <common/daemonize.h>
52 #include <common/config/config.h>
54 #include "lttng-sessiond.h"
55 #include "buffer-registry.h"
62 #include "kernel-consumer.h"
66 #include "ust-consumer.h"
69 #include "health-sessiond.h"
70 #include "testpoint.h"
71 #include "ust-thread.h"
72 #include "agent-thread.h"
74 #include "load-session-thread.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 };
194 static int ht_cleanup_quit_pipe
[2] = { -1, -1 };
197 * This pipe is used to inform the thread managing application communication
198 * that a command is queued and ready to be processed.
200 static int apps_cmd_pipe
[2] = { -1, -1 };
202 int apps_cmd_notify_pipe
[2] = { -1, -1 };
204 /* Pthread, Mutexes and Semaphores */
205 static pthread_t apps_thread
;
206 static pthread_t apps_notify_thread
;
207 static pthread_t reg_apps_thread
;
208 static pthread_t client_thread
;
209 static pthread_t kernel_thread
;
210 static pthread_t dispatch_thread
;
211 static pthread_t health_thread
;
212 static pthread_t ht_cleanup_thread
;
213 static pthread_t agent_reg_thread
;
214 static pthread_t load_session_thread
;
217 * UST registration command queue. This queue is tied with a futex and uses a N
218 * wakers / 1 waiter implemented and detailed in futex.c/.h
220 * The thread_registration_apps and thread_dispatch_ust_registration uses this
221 * queue along with the wait/wake scheme. The thread_manage_apps receives down
222 * the line new application socket and monitors it for any I/O error or clean
223 * close that triggers an unregistration of the application.
225 static struct ust_cmd_queue ust_cmd_queue
;
228 * Pointer initialized before thread creation.
230 * This points to the tracing session list containing the session count and a
231 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
232 * MUST NOT be taken if you call a public function in session.c.
234 * The lock is nested inside the structure: session_list_ptr->lock. Please use
235 * session_lock_list and session_unlock_list for lock acquisition.
237 static struct ltt_session_list
*session_list_ptr
;
239 int ust_consumerd64_fd
= -1;
240 int ust_consumerd32_fd
= -1;
242 static const char *consumerd32_bin
= CONFIG_CONSUMERD32_BIN
;
243 static const char *consumerd64_bin
= CONFIG_CONSUMERD64_BIN
;
244 static const char *consumerd32_libdir
= CONFIG_CONSUMERD32_LIBDIR
;
245 static const char *consumerd64_libdir
= CONFIG_CONSUMERD64_LIBDIR
;
246 static int consumerd32_bin_override
;
247 static int consumerd64_bin_override
;
248 static int consumerd32_libdir_override
;
249 static int consumerd64_libdir_override
;
251 static const char *module_proc_lttng
= "/proc/lttng";
254 * Consumer daemon state which is changed when spawning it, killing it or in
255 * case of a fatal error.
257 enum consumerd_state
{
258 CONSUMER_STARTED
= 1,
259 CONSUMER_STOPPED
= 2,
264 * This consumer daemon state is used to validate if a client command will be
265 * able to reach the consumer. If not, the client is informed. For instance,
266 * doing a "lttng start" when the consumer state is set to ERROR will return an
267 * error to the client.
269 * The following example shows a possible race condition of this scheme:
271 * consumer thread error happens
273 * client cmd checks state -> still OK
274 * consumer thread exit, sets error
275 * client cmd try to talk to consumer
278 * However, since the consumer is a different daemon, we have no way of making
279 * sure the command will reach it safely even with this state flag. This is why
280 * we consider that up to the state validation during command processing, the
281 * command is safe. After that, we can not guarantee the correctness of the
282 * client request vis-a-vis the consumer.
284 static enum consumerd_state ust_consumerd_state
;
285 static enum consumerd_state kernel_consumerd_state
;
288 * Socket timeout for receiving and sending in seconds.
290 static int app_socket_timeout
;
292 /* Set in main() with the current page size. */
295 /* Application health monitoring */
296 struct health_app
*health_sessiond
;
298 /* Agent TCP port for registration. Used by the agent thread. */
299 unsigned int agent_tcp_port
= DEFAULT_AGENT_TCP_PORT
;
301 /* Am I root or not. */
302 int is_root
; /* Set to 1 if the daemon is running as root */
304 const char * const config_section_name
= "sessiond";
306 /* Load session thread information to operate. */
307 struct load_session_thread_data
*load_info
;
309 /* Global hash tables */
310 struct lttng_ht
*agent_apps_ht_by_sock
= NULL
;
313 * Whether sessiond is ready for commands/health check requests.
314 * NR_LTTNG_SESSIOND_READY must match the number of calls to
315 * sessiond_notify_ready().
317 #define NR_LTTNG_SESSIOND_READY 3
318 int lttng_sessiond_ready
= NR_LTTNG_SESSIOND_READY
;
320 /* Notify parents that we are ready for cmd and health check */
322 void sessiond_notify_ready(void)
324 if (uatomic_sub_return(<tng_sessiond_ready
, 1) == 0) {
326 * Notify parent pid that we are ready to accept command
327 * for client side. This ppid is the one from the
328 * external process that spawned us.
330 if (opt_sig_parent
) {
335 * Notify the parent of the fork() process that we are
338 if (opt_daemon
|| opt_background
) {
339 kill(child_ppid
, SIGUSR1
);
345 void setup_consumerd_path(void)
347 const char *bin
, *libdir
;
350 * Allow INSTALL_BIN_PATH to be used as a target path for the
351 * native architecture size consumer if CONFIG_CONSUMER*_PATH
352 * has not been defined.
354 #if (CAA_BITS_PER_LONG == 32)
355 if (!consumerd32_bin
[0]) {
356 consumerd32_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
358 if (!consumerd32_libdir
[0]) {
359 consumerd32_libdir
= INSTALL_LIB_PATH
;
361 #elif (CAA_BITS_PER_LONG == 64)
362 if (!consumerd64_bin
[0]) {
363 consumerd64_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
365 if (!consumerd64_libdir
[0]) {
366 consumerd64_libdir
= INSTALL_LIB_PATH
;
369 #error "Unknown bitness"
373 * runtime env. var. overrides the build default.
375 bin
= lttng_secure_getenv("LTTNG_CONSUMERD32_BIN");
377 consumerd32_bin
= bin
;
379 bin
= lttng_secure_getenv("LTTNG_CONSUMERD64_BIN");
381 consumerd64_bin
= bin
;
383 libdir
= lttng_secure_getenv("LTTNG_CONSUMERD32_LIBDIR");
385 consumerd32_libdir
= libdir
;
387 libdir
= lttng_secure_getenv("LTTNG_CONSUMERD64_LIBDIR");
389 consumerd64_libdir
= libdir
;
394 int __sessiond_set_thread_pollset(struct lttng_poll_event
*events
, size_t size
,
401 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
407 ret
= lttng_poll_add(events
, a_pipe
[0], LPOLLIN
| LPOLLERR
);
419 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
421 int sessiond_set_thread_pollset(struct lttng_poll_event
*events
, size_t size
)
423 return __sessiond_set_thread_pollset(events
, size
, thread_quit_pipe
);
427 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
429 int sessiond_set_ht_cleanup_thread_pollset(struct lttng_poll_event
*events
,
432 return __sessiond_set_thread_pollset(events
, size
,
433 ht_cleanup_quit_pipe
);
437 int __sessiond_check_thread_quit_pipe(int fd
, uint32_t events
, int a_pipe
)
439 if (fd
== a_pipe
&& (events
& LPOLLIN
)) {
446 * Check if the thread quit pipe was triggered.
448 * Return 1 if it was triggered else 0;
450 int sessiond_check_thread_quit_pipe(int fd
, uint32_t events
)
452 return __sessiond_check_thread_quit_pipe(fd
, events
,
453 thread_quit_pipe
[0]);
457 * Check if the ht_cleanup thread quit pipe was triggered.
459 * Return 1 if it was triggered else 0;
461 int sessiond_check_ht_cleanup_quit(int fd
, uint32_t events
)
463 return __sessiond_check_thread_quit_pipe(fd
, events
,
464 ht_cleanup_quit_pipe
[0]);
468 * Init thread quit pipe.
470 * Return -1 on error or 0 if all pipes are created.
472 static int __init_thread_quit_pipe(int *a_pipe
)
478 PERROR("thread quit pipe");
482 for (i
= 0; i
< 2; i
++) {
483 ret
= fcntl(a_pipe
[i
], F_SETFD
, FD_CLOEXEC
);
494 static int init_thread_quit_pipe(void)
496 return __init_thread_quit_pipe(thread_quit_pipe
);
499 static int init_ht_cleanup_quit_pipe(void)
501 return __init_thread_quit_pipe(ht_cleanup_quit_pipe
);
505 * Stop all threads by closing the thread quit pipe.
507 static void stop_threads(void)
511 /* Stopping all threads */
512 DBG("Terminating all threads");
513 ret
= notify_thread_pipe(thread_quit_pipe
[1]);
515 ERR("write error on thread quit pipe");
518 /* Dispatch thread */
519 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
520 futex_nto1_wake(&ust_cmd_queue
.futex
);
524 * Close every consumer sockets.
526 static void close_consumer_sockets(void)
530 if (kconsumer_data
.err_sock
>= 0) {
531 ret
= close(kconsumer_data
.err_sock
);
533 PERROR("kernel consumer err_sock close");
536 if (ustconsumer32_data
.err_sock
>= 0) {
537 ret
= close(ustconsumer32_data
.err_sock
);
539 PERROR("UST consumerd32 err_sock close");
542 if (ustconsumer64_data
.err_sock
>= 0) {
543 ret
= close(ustconsumer64_data
.err_sock
);
545 PERROR("UST consumerd64 err_sock close");
548 if (kconsumer_data
.cmd_sock
>= 0) {
549 ret
= close(kconsumer_data
.cmd_sock
);
551 PERROR("kernel consumer cmd_sock close");
554 if (ustconsumer32_data
.cmd_sock
>= 0) {
555 ret
= close(ustconsumer32_data
.cmd_sock
);
557 PERROR("UST consumerd32 cmd_sock close");
560 if (ustconsumer64_data
.cmd_sock
>= 0) {
561 ret
= close(ustconsumer64_data
.cmd_sock
);
563 PERROR("UST consumerd64 cmd_sock close");
569 * Generate the full lock file path using the rundir.
571 * Return the snprintf() return value thus a negative value is an error.
573 static int generate_lock_file_path(char *path
, size_t len
)
580 /* Build lockfile path from rundir. */
581 ret
= snprintf(path
, len
, "%s/" DEFAULT_LTTNG_SESSIOND_LOCKFILE
, rundir
);
583 PERROR("snprintf lockfile path");
590 * Cleanup the session daemon's data structures.
592 static void sessiond_cleanup(void)
595 struct ltt_session
*sess
, *stmp
;
598 DBG("Cleanup sessiond");
601 * Close the thread quit pipe. It has already done its job,
602 * since we are now called.
604 utils_close_pipe(thread_quit_pipe
);
607 * If opt_pidfile is undefined, the default file will be wiped when
608 * removing the rundir.
611 ret
= remove(opt_pidfile
);
613 PERROR("remove pidfile %s", opt_pidfile
);
617 DBG("Removing sessiond and consumerd content of directory %s", rundir
);
620 snprintf(path
, PATH_MAX
,
622 rundir
, DEFAULT_LTTNG_SESSIOND_PIDFILE
);
623 DBG("Removing %s", path
);
626 snprintf(path
, PATH_MAX
, "%s/%s", rundir
,
627 DEFAULT_LTTNG_SESSIOND_AGENTPORT_FILE
);
628 DBG("Removing %s", path
);
632 snprintf(path
, PATH_MAX
,
633 DEFAULT_KCONSUMERD_ERR_SOCK_PATH
,
635 DBG("Removing %s", path
);
638 snprintf(path
, PATH_MAX
,
639 DEFAULT_KCONSUMERD_PATH
,
641 DBG("Removing directory %s", path
);
644 /* ust consumerd 32 */
645 snprintf(path
, PATH_MAX
,
646 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
,
648 DBG("Removing %s", path
);
651 snprintf(path
, PATH_MAX
,
652 DEFAULT_USTCONSUMERD32_PATH
,
654 DBG("Removing directory %s", path
);
657 /* ust consumerd 64 */
658 snprintf(path
, PATH_MAX
,
659 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
,
661 DBG("Removing %s", path
);
664 snprintf(path
, PATH_MAX
,
665 DEFAULT_USTCONSUMERD64_PATH
,
667 DBG("Removing directory %s", path
);
670 DBG("Cleaning up all sessions");
672 /* Destroy session list mutex */
673 if (session_list_ptr
!= NULL
) {
674 pthread_mutex_destroy(&session_list_ptr
->lock
);
676 /* Cleanup ALL session */
677 cds_list_for_each_entry_safe(sess
, stmp
,
678 &session_list_ptr
->head
, list
) {
679 cmd_destroy_session(sess
, kernel_poll_pipe
[1]);
683 DBG("Cleaning up all agent apps");
684 agent_app_ht_clean();
686 DBG("Closing all UST sockets");
687 ust_app_clean_list();
688 buffer_reg_destroy_registries();
690 if (is_root
&& !opt_no_kernel
) {
691 DBG2("Closing kernel fd");
692 if (kernel_tracer_fd
>= 0) {
693 ret
= close(kernel_tracer_fd
);
698 DBG("Unloading kernel modules");
699 modprobe_remove_lttng_all();
703 close_consumer_sockets();
706 load_session_destroy_data(load_info
);
711 * Cleanup lock file by deleting it and finaly closing it which will
712 * release the file system lock.
714 if (lockfile_fd
>= 0) {
715 char lockfile_path
[PATH_MAX
];
717 ret
= generate_lock_file_path(lockfile_path
,
718 sizeof(lockfile_path
));
720 ret
= remove(lockfile_path
);
722 PERROR("remove lock file");
724 ret
= close(lockfile_fd
);
726 PERROR("close lock file");
732 * We do NOT rmdir rundir because there are other processes
733 * using it, for instance lttng-relayd, which can start in
734 * parallel with this teardown.
741 * Cleanup the daemon's option data structures.
743 static void sessiond_cleanup_options(void)
745 DBG("Cleaning up options");
748 * If the override option is set, the pointer points to a *non* const
749 * thus freeing it even though the variable type is set to const.
751 if (tracing_group_name_override
) {
752 free((void *) tracing_group_name
);
754 if (consumerd32_bin_override
) {
755 free((void *) consumerd32_bin
);
757 if (consumerd64_bin_override
) {
758 free((void *) consumerd64_bin
);
760 if (consumerd32_libdir_override
) {
761 free((void *) consumerd32_libdir
);
763 if (consumerd64_libdir_override
) {
764 free((void *) consumerd64_libdir
);
768 free(opt_load_session_path
);
769 free(kmod_probes_list
);
770 free(kmod_extra_probes_list
);
773 DBG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm"
774 "Matthew, BEET driven development works!%c[%dm",
775 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
780 * Send data on a unix socket using the liblttsessiondcomm API.
782 * Return lttcomm error code.
784 static int send_unix_sock(int sock
, void *buf
, size_t len
)
786 /* Check valid length */
791 return lttcomm_send_unix_sock(sock
, buf
, len
);
795 * Free memory of a command context structure.
797 static void clean_command_ctx(struct command_ctx
**cmd_ctx
)
799 DBG("Clean command context structure");
801 if ((*cmd_ctx
)->llm
) {
802 free((*cmd_ctx
)->llm
);
804 if ((*cmd_ctx
)->lsm
) {
805 free((*cmd_ctx
)->lsm
);
813 * Notify UST applications using the shm mmap futex.
815 static int notify_ust_apps(int active
)
819 DBG("Notifying applications of session daemon state: %d", active
);
821 /* See shm.c for this call implying mmap, shm and futex calls */
822 wait_shm_mmap
= shm_ust_get_mmap(wait_shm_path
, is_root
);
823 if (wait_shm_mmap
== NULL
) {
827 /* Wake waiting process */
828 futex_wait_update((int32_t *) wait_shm_mmap
, active
);
830 /* Apps notified successfully */
838 * Setup the outgoing data buffer for the response (llm) by allocating the
839 * right amount of memory and copying the original information from the lsm
842 * Return total size of the buffer pointed by buf.
844 static int setup_lttng_msg(struct command_ctx
*cmd_ctx
, size_t size
)
850 cmd_ctx
->llm
= zmalloc(sizeof(struct lttcomm_lttng_msg
) + buf_size
);
851 if (cmd_ctx
->llm
== NULL
) {
857 /* Copy common data */
858 cmd_ctx
->llm
->cmd_type
= cmd_ctx
->lsm
->cmd_type
;
859 cmd_ctx
->llm
->pid
= cmd_ctx
->lsm
->domain
.attr
.pid
;
861 cmd_ctx
->llm
->data_size
= size
;
862 cmd_ctx
->lttng_msg_size
= sizeof(struct lttcomm_lttng_msg
) + buf_size
;
871 * Update the kernel poll set of all channel fd available over all tracing
872 * session. Add the wakeup pipe at the end of the set.
874 static int update_kernel_poll(struct lttng_poll_event
*events
)
877 struct ltt_session
*session
;
878 struct ltt_kernel_channel
*channel
;
880 DBG("Updating kernel poll set");
883 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
884 session_lock(session
);
885 if (session
->kernel_session
== NULL
) {
886 session_unlock(session
);
890 cds_list_for_each_entry(channel
,
891 &session
->kernel_session
->channel_list
.head
, list
) {
892 /* Add channel fd to the kernel poll set */
893 ret
= lttng_poll_add(events
, channel
->fd
, LPOLLIN
| LPOLLRDNORM
);
895 session_unlock(session
);
898 DBG("Channel fd %d added to kernel set", channel
->fd
);
900 session_unlock(session
);
902 session_unlock_list();
907 session_unlock_list();
912 * Find the channel fd from 'fd' over all tracing session. When found, check
913 * for new channel stream and send those stream fds to the kernel consumer.
915 * Useful for CPU hotplug feature.
917 static int update_kernel_stream(struct consumer_data
*consumer_data
, int fd
)
920 struct ltt_session
*session
;
921 struct ltt_kernel_session
*ksess
;
922 struct ltt_kernel_channel
*channel
;
924 DBG("Updating kernel streams for channel fd %d", fd
);
927 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
928 session_lock(session
);
929 if (session
->kernel_session
== NULL
) {
930 session_unlock(session
);
933 ksess
= session
->kernel_session
;
935 cds_list_for_each_entry(channel
,
936 &ksess
->channel_list
.head
, list
) {
937 struct lttng_ht_iter iter
;
938 struct consumer_socket
*socket
;
940 if (channel
->fd
!= fd
) {
943 DBG("Channel found, updating kernel streams");
944 ret
= kernel_open_channel_stream(channel
);
948 /* Update the stream global counter */
949 ksess
->stream_count_global
+= ret
;
952 * Have we already sent fds to the consumer? If yes, it
953 * means that tracing is started so it is safe to send
954 * our updated stream fds.
956 if (ksess
->consumer_fds_sent
!= 1
957 || ksess
->consumer
== NULL
) {
963 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
,
964 &iter
.iter
, socket
, node
.node
) {
965 pthread_mutex_lock(socket
->lock
);
966 ret
= kernel_consumer_send_channel_stream(socket
,
968 session
->output_traces
? 1 : 0);
969 pthread_mutex_unlock(socket
->lock
);
977 session_unlock(session
);
979 session_unlock_list();
983 session_unlock(session
);
984 session_unlock_list();
989 * For each tracing session, update newly registered apps. The session list
990 * lock MUST be acquired before calling this.
992 static void update_ust_app(int app_sock
)
994 struct ltt_session
*sess
, *stmp
;
996 /* Consumer is in an ERROR state. Stop any application update. */
997 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
998 /* Stop the update process since the consumer is dead. */
1002 /* For all tracing session(s) */
1003 cds_list_for_each_entry_safe(sess
, stmp
, &session_list_ptr
->head
, list
) {
1004 struct ust_app
*app
;
1007 if (!sess
->ust_session
) {
1008 goto unlock_session
;
1012 assert(app_sock
>= 0);
1013 app
= ust_app_find_by_sock(app_sock
);
1016 * Application can be unregistered before so
1017 * this is possible hence simply stopping the
1020 DBG3("UST app update failed to find app sock %d",
1024 ust_app_global_update(sess
->ust_session
, app
);
1028 session_unlock(sess
);
1033 * This thread manage event coming from the kernel.
1035 * Features supported in this thread:
1038 static void *thread_manage_kernel(void *data
)
1040 int ret
, i
, pollfd
, update_poll_flag
= 1, err
= -1;
1041 uint32_t revents
, nb_fd
;
1043 struct lttng_poll_event events
;
1045 DBG("[thread] Thread manage kernel started");
1047 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_KERNEL
);
1050 * This first step of the while is to clean this structure which could free
1051 * non NULL pointers so initialize it before the loop.
1053 lttng_poll_init(&events
);
1055 if (testpoint(sessiond_thread_manage_kernel
)) {
1056 goto error_testpoint
;
1059 health_code_update();
1061 if (testpoint(sessiond_thread_manage_kernel_before_loop
)) {
1062 goto error_testpoint
;
1066 health_code_update();
1068 if (update_poll_flag
== 1) {
1069 /* Clean events object. We are about to populate it again. */
1070 lttng_poll_clean(&events
);
1072 ret
= sessiond_set_thread_pollset(&events
, 2);
1074 goto error_poll_create
;
1077 ret
= lttng_poll_add(&events
, kernel_poll_pipe
[0], LPOLLIN
);
1082 /* This will add the available kernel channel if any. */
1083 ret
= update_kernel_poll(&events
);
1087 update_poll_flag
= 0;
1090 DBG("Thread kernel polling");
1092 /* Poll infinite value of time */
1094 health_poll_entry();
1095 ret
= lttng_poll_wait(&events
, -1);
1096 DBG("Thread kernel return from poll on %d fds",
1097 LTTNG_POLL_GETNB(&events
));
1101 * Restart interrupted system call.
1103 if (errno
== EINTR
) {
1107 } else if (ret
== 0) {
1108 /* Should not happen since timeout is infinite */
1109 ERR("Return value of poll is 0 with an infinite timeout.\n"
1110 "This should not have happened! Continuing...");
1116 for (i
= 0; i
< nb_fd
; i
++) {
1117 /* Fetch once the poll data */
1118 revents
= LTTNG_POLL_GETEV(&events
, i
);
1119 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1121 health_code_update();
1124 /* No activity for this FD (poll implementation). */
1128 /* Thread quit pipe has been closed. Killing thread. */
1129 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1135 /* Check for data on kernel pipe */
1136 if (pollfd
== kernel_poll_pipe
[0] && (revents
& LPOLLIN
)) {
1137 (void) lttng_read(kernel_poll_pipe
[0],
1140 * Ret value is useless here, if this pipe gets any actions an
1141 * update is required anyway.
1143 update_poll_flag
= 1;
1147 * New CPU detected by the kernel. Adding kernel stream to
1148 * kernel session and updating the kernel consumer
1150 if (revents
& LPOLLIN
) {
1151 ret
= update_kernel_stream(&kconsumer_data
, pollfd
);
1157 * TODO: We might want to handle the LPOLLERR | LPOLLHUP
1158 * and unregister kernel stream at this point.
1167 lttng_poll_clean(&events
);
1170 utils_close_pipe(kernel_poll_pipe
);
1171 kernel_poll_pipe
[0] = kernel_poll_pipe
[1] = -1;
1174 ERR("Health error occurred in %s", __func__
);
1175 WARN("Kernel thread died unexpectedly. "
1176 "Kernel tracing can continue but CPU hotplug is disabled.");
1178 health_unregister(health_sessiond
);
1179 DBG("Kernel thread dying");
1184 * Signal pthread condition of the consumer data that the thread.
1186 static void signal_consumer_condition(struct consumer_data
*data
, int state
)
1188 pthread_mutex_lock(&data
->cond_mutex
);
1191 * The state is set before signaling. It can be any value, it's the waiter
1192 * job to correctly interpret this condition variable associated to the
1193 * consumer pthread_cond.
1195 * A value of 0 means that the corresponding thread of the consumer data
1196 * was not started. 1 indicates that the thread has started and is ready
1197 * for action. A negative value means that there was an error during the
1200 data
->consumer_thread_is_ready
= state
;
1201 (void) pthread_cond_signal(&data
->cond
);
1203 pthread_mutex_unlock(&data
->cond_mutex
);
1207 * This thread manage the consumer error sent back to the session daemon.
1209 static void *thread_manage_consumer(void *data
)
1211 int sock
= -1, i
, ret
, pollfd
, err
= -1, should_quit
= 0;
1212 uint32_t revents
, nb_fd
;
1213 enum lttcomm_return_code code
;
1214 struct lttng_poll_event events
;
1215 struct consumer_data
*consumer_data
= data
;
1217 DBG("[thread] Manage consumer started");
1219 rcu_register_thread();
1220 rcu_thread_online();
1222 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_CONSUMER
);
1224 health_code_update();
1227 * Pass 3 as size here for the thread quit pipe, consumerd_err_sock and the
1228 * metadata_sock. Nothing more will be added to this poll set.
1230 ret
= sessiond_set_thread_pollset(&events
, 3);
1236 * The error socket here is already in a listening state which was done
1237 * just before spawning this thread to avoid a race between the consumer
1238 * daemon exec trying to connect and the listen() call.
1240 ret
= lttng_poll_add(&events
, consumer_data
->err_sock
, LPOLLIN
| LPOLLRDHUP
);
1245 health_code_update();
1247 /* Infinite blocking call, waiting for transmission */
1249 health_poll_entry();
1251 if (testpoint(sessiond_thread_manage_consumer
)) {
1255 ret
= lttng_poll_wait(&events
, -1);
1259 * Restart interrupted system call.
1261 if (errno
== EINTR
) {
1269 for (i
= 0; i
< nb_fd
; i
++) {
1270 /* Fetch once the poll data */
1271 revents
= LTTNG_POLL_GETEV(&events
, i
);
1272 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1274 health_code_update();
1277 /* No activity for this FD (poll implementation). */
1281 /* Thread quit pipe has been closed. Killing thread. */
1282 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1288 /* Event on the registration socket */
1289 if (pollfd
== consumer_data
->err_sock
) {
1290 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1291 ERR("consumer err socket poll error");
1297 sock
= lttcomm_accept_unix_sock(consumer_data
->err_sock
);
1303 * Set the CLOEXEC flag. Return code is useless because either way, the
1306 (void) utils_set_fd_cloexec(sock
);
1308 health_code_update();
1310 DBG2("Receiving code from consumer err_sock");
1312 /* Getting status code from kconsumerd */
1313 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1314 sizeof(enum lttcomm_return_code
));
1319 health_code_update();
1320 if (code
== LTTCOMM_CONSUMERD_COMMAND_SOCK_READY
) {
1321 /* Connect both socket, command and metadata. */
1322 consumer_data
->cmd_sock
=
1323 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
1324 consumer_data
->metadata_fd
=
1325 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
1326 if (consumer_data
->cmd_sock
< 0
1327 || consumer_data
->metadata_fd
< 0) {
1328 PERROR("consumer connect cmd socket");
1329 /* On error, signal condition and quit. */
1330 signal_consumer_condition(consumer_data
, -1);
1333 consumer_data
->metadata_sock
.fd_ptr
= &consumer_data
->metadata_fd
;
1334 /* Create metadata socket lock. */
1335 consumer_data
->metadata_sock
.lock
= zmalloc(sizeof(pthread_mutex_t
));
1336 if (consumer_data
->metadata_sock
.lock
== NULL
) {
1337 PERROR("zmalloc pthread mutex");
1341 pthread_mutex_init(consumer_data
->metadata_sock
.lock
, NULL
);
1343 signal_consumer_condition(consumer_data
, 1);
1344 DBG("Consumer command socket ready (fd: %d", consumer_data
->cmd_sock
);
1345 DBG("Consumer metadata socket ready (fd: %d)",
1346 consumer_data
->metadata_fd
);
1348 ERR("consumer error when waiting for SOCK_READY : %s",
1349 lttcomm_get_readable_code(-code
));
1353 /* Remove the consumerd error sock since we've established a connexion */
1354 ret
= lttng_poll_del(&events
, consumer_data
->err_sock
);
1359 /* Add new accepted error socket. */
1360 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLRDHUP
);
1365 /* Add metadata socket that is successfully connected. */
1366 ret
= lttng_poll_add(&events
, consumer_data
->metadata_fd
,
1367 LPOLLIN
| LPOLLRDHUP
);
1372 health_code_update();
1374 /* Infinite blocking call, waiting for transmission */
1377 health_code_update();
1379 /* Exit the thread because the thread quit pipe has been triggered. */
1381 /* Not a health error. */
1386 health_poll_entry();
1387 ret
= lttng_poll_wait(&events
, -1);
1391 * Restart interrupted system call.
1393 if (errno
== EINTR
) {
1401 for (i
= 0; i
< nb_fd
; i
++) {
1402 /* Fetch once the poll data */
1403 revents
= LTTNG_POLL_GETEV(&events
, i
);
1404 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1406 health_code_update();
1409 /* No activity for this FD (poll implementation). */
1414 * Thread quit pipe has been triggered, flag that we should stop
1415 * but continue the current loop to handle potential data from
1418 should_quit
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1420 if (pollfd
== sock
) {
1421 /* Event on the consumerd socket */
1422 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1423 ERR("consumer err socket second poll error");
1426 health_code_update();
1427 /* Wait for any kconsumerd error */
1428 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1429 sizeof(enum lttcomm_return_code
));
1431 ERR("consumer closed the command socket");
1435 ERR("consumer return code : %s",
1436 lttcomm_get_readable_code(-code
));
1439 } else if (pollfd
== consumer_data
->metadata_fd
) {
1440 /* UST metadata requests */
1441 ret
= ust_consumer_metadata_request(
1442 &consumer_data
->metadata_sock
);
1444 ERR("Handling metadata request");
1448 /* No need for an else branch all FDs are tested prior. */
1450 health_code_update();
1456 * We lock here because we are about to close the sockets and some other
1457 * thread might be using them so get exclusive access which will abort all
1458 * other consumer command by other threads.
1460 pthread_mutex_lock(&consumer_data
->lock
);
1462 /* Immediately set the consumerd state to stopped */
1463 if (consumer_data
->type
== LTTNG_CONSUMER_KERNEL
) {
1464 uatomic_set(&kernel_consumerd_state
, CONSUMER_ERROR
);
1465 } else if (consumer_data
->type
== LTTNG_CONSUMER64_UST
||
1466 consumer_data
->type
== LTTNG_CONSUMER32_UST
) {
1467 uatomic_set(&ust_consumerd_state
, CONSUMER_ERROR
);
1469 /* Code flow error... */
1473 if (consumer_data
->err_sock
>= 0) {
1474 ret
= close(consumer_data
->err_sock
);
1478 consumer_data
->err_sock
= -1;
1480 if (consumer_data
->cmd_sock
>= 0) {
1481 ret
= close(consumer_data
->cmd_sock
);
1485 consumer_data
->cmd_sock
= -1;
1487 if (consumer_data
->metadata_sock
.fd_ptr
&&
1488 *consumer_data
->metadata_sock
.fd_ptr
>= 0) {
1489 ret
= close(*consumer_data
->metadata_sock
.fd_ptr
);
1501 unlink(consumer_data
->err_unix_sock_path
);
1502 unlink(consumer_data
->cmd_unix_sock_path
);
1503 consumer_data
->pid
= 0;
1504 pthread_mutex_unlock(&consumer_data
->lock
);
1506 /* Cleanup metadata socket mutex. */
1507 if (consumer_data
->metadata_sock
.lock
) {
1508 pthread_mutex_destroy(consumer_data
->metadata_sock
.lock
);
1509 free(consumer_data
->metadata_sock
.lock
);
1511 lttng_poll_clean(&events
);
1515 ERR("Health error occurred in %s", __func__
);
1517 health_unregister(health_sessiond
);
1518 DBG("consumer thread cleanup completed");
1520 rcu_thread_offline();
1521 rcu_unregister_thread();
1527 * This thread manage application communication.
1529 static void *thread_manage_apps(void *data
)
1531 int i
, ret
, pollfd
, err
= -1;
1533 uint32_t revents
, nb_fd
;
1534 struct lttng_poll_event events
;
1536 DBG("[thread] Manage application started");
1538 rcu_register_thread();
1539 rcu_thread_online();
1541 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_APP_MANAGE
);
1543 if (testpoint(sessiond_thread_manage_apps
)) {
1544 goto error_testpoint
;
1547 health_code_update();
1549 ret
= sessiond_set_thread_pollset(&events
, 2);
1551 goto error_poll_create
;
1554 ret
= lttng_poll_add(&events
, apps_cmd_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
1559 if (testpoint(sessiond_thread_manage_apps_before_loop
)) {
1563 health_code_update();
1566 DBG("Apps thread polling");
1568 /* Inifinite blocking call, waiting for transmission */
1570 health_poll_entry();
1571 ret
= lttng_poll_wait(&events
, -1);
1572 DBG("Apps thread return from poll on %d fds",
1573 LTTNG_POLL_GETNB(&events
));
1577 * Restart interrupted system call.
1579 if (errno
== EINTR
) {
1587 for (i
= 0; i
< nb_fd
; i
++) {
1588 /* Fetch once the poll data */
1589 revents
= LTTNG_POLL_GETEV(&events
, i
);
1590 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1592 health_code_update();
1595 /* No activity for this FD (poll implementation). */
1599 /* Thread quit pipe has been closed. Killing thread. */
1600 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1606 /* Inspect the apps cmd pipe */
1607 if (pollfd
== apps_cmd_pipe
[0]) {
1608 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1609 ERR("Apps command pipe error");
1611 } else if (revents
& LPOLLIN
) {
1615 size_ret
= lttng_read(apps_cmd_pipe
[0], &sock
, sizeof(sock
));
1616 if (size_ret
< sizeof(sock
)) {
1617 PERROR("read apps cmd pipe");
1621 health_code_update();
1624 * We only monitor the error events of the socket. This
1625 * thread does not handle any incoming data from UST
1628 ret
= lttng_poll_add(&events
, sock
,
1629 LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
);
1634 DBG("Apps with sock %d added to poll set", sock
);
1638 * At this point, we know that a registered application made
1639 * the event at poll_wait.
1641 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1642 /* Removing from the poll set */
1643 ret
= lttng_poll_del(&events
, pollfd
);
1648 /* Socket closed on remote end. */
1649 ust_app_unregister(pollfd
);
1653 health_code_update();
1659 lttng_poll_clean(&events
);
1662 utils_close_pipe(apps_cmd_pipe
);
1663 apps_cmd_pipe
[0] = apps_cmd_pipe
[1] = -1;
1666 * We don't clean the UST app hash table here since already registered
1667 * applications can still be controlled so let them be until the session
1668 * daemon dies or the applications stop.
1673 ERR("Health error occurred in %s", __func__
);
1675 health_unregister(health_sessiond
);
1676 DBG("Application communication apps thread cleanup complete");
1677 rcu_thread_offline();
1678 rcu_unregister_thread();
1683 * Send a socket to a thread This is called from the dispatch UST registration
1684 * thread once all sockets are set for the application.
1686 * The sock value can be invalid, we don't really care, the thread will handle
1687 * it and make the necessary cleanup if so.
1689 * On success, return 0 else a negative value being the errno message of the
1692 static int send_socket_to_thread(int fd
, int sock
)
1697 * It's possible that the FD is set as invalid with -1 concurrently just
1698 * before calling this function being a shutdown state of the thread.
1705 ret
= lttng_write(fd
, &sock
, sizeof(sock
));
1706 if (ret
< sizeof(sock
)) {
1707 PERROR("write apps pipe %d", fd
);
1714 /* All good. Don't send back the write positive ret value. */
1721 * Sanitize the wait queue of the dispatch registration thread meaning removing
1722 * invalid nodes from it. This is to avoid memory leaks for the case the UST
1723 * notify socket is never received.
1725 static void sanitize_wait_queue(struct ust_reg_wait_queue
*wait_queue
)
1727 int ret
, nb_fd
= 0, i
;
1728 unsigned int fd_added
= 0;
1729 struct lttng_poll_event events
;
1730 struct ust_reg_wait_node
*wait_node
= NULL
, *tmp_wait_node
;
1734 lttng_poll_init(&events
);
1736 /* Just skip everything for an empty queue. */
1737 if (!wait_queue
->count
) {
1741 ret
= lttng_poll_create(&events
, wait_queue
->count
, LTTNG_CLOEXEC
);
1746 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1747 &wait_queue
->head
, head
) {
1748 assert(wait_node
->app
);
1749 ret
= lttng_poll_add(&events
, wait_node
->app
->sock
,
1750 LPOLLHUP
| LPOLLERR
);
1763 * Poll but don't block so we can quickly identify the faulty events and
1764 * clean them afterwards from the wait queue.
1766 ret
= lttng_poll_wait(&events
, 0);
1772 for (i
= 0; i
< nb_fd
; i
++) {
1773 /* Get faulty FD. */
1774 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
1775 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1778 /* No activity for this FD (poll implementation). */
1782 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1783 &wait_queue
->head
, head
) {
1784 if (pollfd
== wait_node
->app
->sock
&&
1785 (revents
& (LPOLLHUP
| LPOLLERR
))) {
1786 cds_list_del(&wait_node
->head
);
1787 wait_queue
->count
--;
1788 ust_app_destroy(wait_node
->app
);
1796 DBG("Wait queue sanitized, %d node were cleaned up", nb_fd
);
1800 lttng_poll_clean(&events
);
1804 lttng_poll_clean(&events
);
1806 ERR("Unable to sanitize wait queue");
1811 * Dispatch request from the registration threads to the application
1812 * communication thread.
1814 static void *thread_dispatch_ust_registration(void *data
)
1817 struct cds_wfcq_node
*node
;
1818 struct ust_command
*ust_cmd
= NULL
;
1819 struct ust_reg_wait_node
*wait_node
= NULL
, *tmp_wait_node
;
1820 struct ust_reg_wait_queue wait_queue
= {
1824 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_APP_REG_DISPATCH
);
1826 if (testpoint(sessiond_thread_app_reg_dispatch
)) {
1827 goto error_testpoint
;
1830 health_code_update();
1832 CDS_INIT_LIST_HEAD(&wait_queue
.head
);
1834 DBG("[thread] Dispatch UST command started");
1836 while (!CMM_LOAD_SHARED(dispatch_thread_exit
)) {
1837 health_code_update();
1839 /* Atomically prepare the queue futex */
1840 futex_nto1_prepare(&ust_cmd_queue
.futex
);
1843 struct ust_app
*app
= NULL
;
1847 * Make sure we don't have node(s) that have hung up before receiving
1848 * the notify socket. This is to clean the list in order to avoid
1849 * memory leaks from notify socket that are never seen.
1851 sanitize_wait_queue(&wait_queue
);
1853 health_code_update();
1854 /* Dequeue command for registration */
1855 node
= cds_wfcq_dequeue_blocking(&ust_cmd_queue
.head
, &ust_cmd_queue
.tail
);
1857 DBG("Woken up but nothing in the UST command queue");
1858 /* Continue thread execution */
1862 ust_cmd
= caa_container_of(node
, struct ust_command
, node
);
1864 DBG("Dispatching UST registration pid:%d ppid:%d uid:%d"
1865 " gid:%d sock:%d name:%s (version %d.%d)",
1866 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1867 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1868 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1869 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1871 if (ust_cmd
->reg_msg
.type
== USTCTL_SOCKET_CMD
) {
1872 wait_node
= zmalloc(sizeof(*wait_node
));
1874 PERROR("zmalloc wait_node dispatch");
1875 ret
= close(ust_cmd
->sock
);
1877 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1879 lttng_fd_put(LTTNG_FD_APPS
, 1);
1883 CDS_INIT_LIST_HEAD(&wait_node
->head
);
1885 /* Create application object if socket is CMD. */
1886 wait_node
->app
= ust_app_create(&ust_cmd
->reg_msg
,
1888 if (!wait_node
->app
) {
1889 ret
= close(ust_cmd
->sock
);
1891 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1893 lttng_fd_put(LTTNG_FD_APPS
, 1);
1899 * Add application to the wait queue so we can set the notify
1900 * socket before putting this object in the global ht.
1902 cds_list_add(&wait_node
->head
, &wait_queue
.head
);
1907 * We have to continue here since we don't have the notify
1908 * socket and the application MUST be added to the hash table
1909 * only at that moment.
1914 * Look for the application in the local wait queue and set the
1915 * notify socket if found.
1917 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1918 &wait_queue
.head
, head
) {
1919 health_code_update();
1920 if (wait_node
->app
->pid
== ust_cmd
->reg_msg
.pid
) {
1921 wait_node
->app
->notify_sock
= ust_cmd
->sock
;
1922 cds_list_del(&wait_node
->head
);
1924 app
= wait_node
->app
;
1926 DBG3("UST app notify socket %d is set", ust_cmd
->sock
);
1932 * With no application at this stage the received socket is
1933 * basically useless so close it before we free the cmd data
1934 * structure for good.
1937 ret
= close(ust_cmd
->sock
);
1939 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1941 lttng_fd_put(LTTNG_FD_APPS
, 1);
1948 * @session_lock_list
1950 * Lock the global session list so from the register up to the
1951 * registration done message, no thread can see the application
1952 * and change its state.
1954 session_lock_list();
1958 * Add application to the global hash table. This needs to be
1959 * done before the update to the UST registry can locate the
1964 /* Set app version. This call will print an error if needed. */
1965 (void) ust_app_version(app
);
1967 /* Send notify socket through the notify pipe. */
1968 ret
= send_socket_to_thread(apps_cmd_notify_pipe
[1],
1972 session_unlock_list();
1974 * No notify thread, stop the UST tracing. However, this is
1975 * not an internal error of the this thread thus setting
1976 * the health error code to a normal exit.
1983 * Update newly registered application with the tracing
1984 * registry info already enabled information.
1986 update_ust_app(app
->sock
);
1989 * Don't care about return value. Let the manage apps threads
1990 * handle app unregistration upon socket close.
1992 (void) ust_app_register_done(app
->sock
);
1995 * Even if the application socket has been closed, send the app
1996 * to the thread and unregistration will take place at that
1999 ret
= send_socket_to_thread(apps_cmd_pipe
[1], app
->sock
);
2002 session_unlock_list();
2004 * No apps. thread, stop the UST tracing. However, this is
2005 * not an internal error of the this thread thus setting
2006 * the health error code to a normal exit.
2013 session_unlock_list();
2015 } while (node
!= NULL
);
2017 health_poll_entry();
2018 /* Futex wait on queue. Blocking call on futex() */
2019 futex_nto1_wait(&ust_cmd_queue
.futex
);
2022 /* Normal exit, no error */
2026 /* Clean up wait queue. */
2027 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
2028 &wait_queue
.head
, head
) {
2029 cds_list_del(&wait_node
->head
);
2034 /* Empty command queue. */
2036 /* Dequeue command for registration */
2037 node
= cds_wfcq_dequeue_blocking(&ust_cmd_queue
.head
, &ust_cmd_queue
.tail
);
2041 ust_cmd
= caa_container_of(node
, struct ust_command
, node
);
2042 ret
= close(ust_cmd
->sock
);
2044 PERROR("close ust sock exit dispatch %d", ust_cmd
->sock
);
2046 lttng_fd_put(LTTNG_FD_APPS
, 1);
2051 DBG("Dispatch thread dying");
2054 ERR("Health error occurred in %s", __func__
);
2056 health_unregister(health_sessiond
);
2061 * This thread manage application registration.
2063 static void *thread_registration_apps(void *data
)
2065 int sock
= -1, i
, ret
, pollfd
, err
= -1;
2066 uint32_t revents
, nb_fd
;
2067 struct lttng_poll_event events
;
2069 * Get allocated in this thread, enqueued to a global queue, dequeued and
2070 * freed in the manage apps thread.
2072 struct ust_command
*ust_cmd
= NULL
;
2074 DBG("[thread] Manage application registration started");
2076 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_APP_REG
);
2078 if (testpoint(sessiond_thread_registration_apps
)) {
2079 goto error_testpoint
;
2082 ret
= lttcomm_listen_unix_sock(apps_sock
);
2088 * Pass 2 as size here for the thread quit pipe and apps socket. Nothing
2089 * more will be added to this poll set.
2091 ret
= sessiond_set_thread_pollset(&events
, 2);
2093 goto error_create_poll
;
2096 /* Add the application registration socket */
2097 ret
= lttng_poll_add(&events
, apps_sock
, LPOLLIN
| LPOLLRDHUP
);
2099 goto error_poll_add
;
2102 /* Notify all applications to register */
2103 ret
= notify_ust_apps(1);
2105 ERR("Failed to notify applications or create the wait shared memory.\n"
2106 "Execution continues but there might be problem for already\n"
2107 "running applications that wishes to register.");
2111 DBG("Accepting application registration");
2113 /* Inifinite blocking call, waiting for transmission */
2115 health_poll_entry();
2116 ret
= lttng_poll_wait(&events
, -1);
2120 * Restart interrupted system call.
2122 if (errno
== EINTR
) {
2130 for (i
= 0; i
< nb_fd
; i
++) {
2131 health_code_update();
2133 /* Fetch once the poll data */
2134 revents
= LTTNG_POLL_GETEV(&events
, i
);
2135 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2138 /* No activity for this FD (poll implementation). */
2142 /* Thread quit pipe has been closed. Killing thread. */
2143 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
2149 /* Event on the registration socket */
2150 if (pollfd
== apps_sock
) {
2151 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2152 ERR("Register apps socket poll error");
2154 } else if (revents
& LPOLLIN
) {
2155 sock
= lttcomm_accept_unix_sock(apps_sock
);
2161 * Set socket timeout for both receiving and ending.
2162 * app_socket_timeout is in seconds, whereas
2163 * lttcomm_setsockopt_rcv_timeout and
2164 * lttcomm_setsockopt_snd_timeout expect msec as
2167 (void) lttcomm_setsockopt_rcv_timeout(sock
,
2168 app_socket_timeout
* 1000);
2169 (void) lttcomm_setsockopt_snd_timeout(sock
,
2170 app_socket_timeout
* 1000);
2173 * Set the CLOEXEC flag. Return code is useless because
2174 * either way, the show must go on.
2176 (void) utils_set_fd_cloexec(sock
);
2178 /* Create UST registration command for enqueuing */
2179 ust_cmd
= zmalloc(sizeof(struct ust_command
));
2180 if (ust_cmd
== NULL
) {
2181 PERROR("ust command zmalloc");
2190 * Using message-based transmissions to ensure we don't
2191 * have to deal with partially received messages.
2193 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2195 ERR("Exhausted file descriptors allowed for applications.");
2205 health_code_update();
2206 ret
= ust_app_recv_registration(sock
, &ust_cmd
->reg_msg
);
2209 /* Close socket of the application. */
2214 lttng_fd_put(LTTNG_FD_APPS
, 1);
2218 health_code_update();
2220 ust_cmd
->sock
= sock
;
2223 DBG("UST registration received with pid:%d ppid:%d uid:%d"
2224 " gid:%d sock:%d name:%s (version %d.%d)",
2225 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
2226 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
2227 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
2228 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
2231 * Lock free enqueue the registration request. The red pill
2232 * has been taken! This apps will be part of the *system*.
2234 cds_wfcq_enqueue(&ust_cmd_queue
.head
, &ust_cmd_queue
.tail
, &ust_cmd
->node
);
2237 * Wake the registration queue futex. Implicit memory
2238 * barrier with the exchange in cds_wfcq_enqueue.
2240 futex_nto1_wake(&ust_cmd_queue
.futex
);
2248 /* Notify that the registration thread is gone */
2251 if (apps_sock
>= 0) {
2252 ret
= close(apps_sock
);
2262 lttng_fd_put(LTTNG_FD_APPS
, 1);
2264 unlink(apps_unix_sock_path
);
2267 lttng_poll_clean(&events
);
2271 DBG("UST Registration thread cleanup complete");
2274 ERR("Health error occurred in %s", __func__
);
2276 health_unregister(health_sessiond
);
2282 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
2283 * exec or it will fails.
2285 static int spawn_consumer_thread(struct consumer_data
*consumer_data
)
2288 struct timespec timeout
;
2290 /* Make sure we set the readiness flag to 0 because we are NOT ready */
2291 consumer_data
->consumer_thread_is_ready
= 0;
2293 /* Setup pthread condition */
2294 ret
= pthread_condattr_init(&consumer_data
->condattr
);
2297 PERROR("pthread_condattr_init consumer data");
2302 * Set the monotonic clock in order to make sure we DO NOT jump in time
2303 * between the clock_gettime() call and the timedwait call. See bug #324
2304 * for a more details and how we noticed it.
2306 ret
= pthread_condattr_setclock(&consumer_data
->condattr
, CLOCK_MONOTONIC
);
2309 PERROR("pthread_condattr_setclock consumer data");
2313 ret
= pthread_cond_init(&consumer_data
->cond
, &consumer_data
->condattr
);
2316 PERROR("pthread_cond_init consumer data");
2320 ret
= pthread_create(&consumer_data
->thread
, NULL
, thread_manage_consumer
,
2324 PERROR("pthread_create consumer");
2329 /* We are about to wait on a pthread condition */
2330 pthread_mutex_lock(&consumer_data
->cond_mutex
);
2332 /* Get time for sem_timedwait absolute timeout */
2333 clock_ret
= clock_gettime(CLOCK_MONOTONIC
, &timeout
);
2335 * Set the timeout for the condition timed wait even if the clock gettime
2336 * call fails since we might loop on that call and we want to avoid to
2337 * increment the timeout too many times.
2339 timeout
.tv_sec
+= DEFAULT_SEM_WAIT_TIMEOUT
;
2342 * The following loop COULD be skipped in some conditions so this is why we
2343 * set ret to 0 in order to make sure at least one round of the loop is
2349 * Loop until the condition is reached or when a timeout is reached. Note
2350 * that the pthread_cond_timedwait(P) man page specifies that EINTR can NOT
2351 * be returned but the pthread_cond(3), from the glibc-doc, says that it is
2352 * possible. This loop does not take any chances and works with both of
2355 while (!consumer_data
->consumer_thread_is_ready
&& ret
!= ETIMEDOUT
) {
2356 if (clock_ret
< 0) {
2357 PERROR("clock_gettime spawn consumer");
2358 /* Infinite wait for the consumerd thread to be ready */
2359 ret
= pthread_cond_wait(&consumer_data
->cond
,
2360 &consumer_data
->cond_mutex
);
2362 ret
= pthread_cond_timedwait(&consumer_data
->cond
,
2363 &consumer_data
->cond_mutex
, &timeout
);
2367 /* Release the pthread condition */
2368 pthread_mutex_unlock(&consumer_data
->cond_mutex
);
2372 if (ret
== ETIMEDOUT
) {
2376 * Call has timed out so we kill the kconsumerd_thread and return
2379 ERR("Condition timed out. The consumer thread was never ready."
2381 pth_ret
= pthread_cancel(consumer_data
->thread
);
2383 PERROR("pthread_cancel consumer thread");
2386 PERROR("pthread_cond_wait failed consumer thread");
2388 /* Caller is expecting a negative value on failure. */
2393 pthread_mutex_lock(&consumer_data
->pid_mutex
);
2394 if (consumer_data
->pid
== 0) {
2395 ERR("Consumerd did not start");
2396 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2399 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2408 * Join consumer thread
2410 static int join_consumer_thread(struct consumer_data
*consumer_data
)
2414 /* Consumer pid must be a real one. */
2415 if (consumer_data
->pid
> 0) {
2417 ret
= kill(consumer_data
->pid
, SIGTERM
);
2419 PERROR("Error killing consumer daemon");
2422 return pthread_join(consumer_data
->thread
, &status
);
2429 * Fork and exec a consumer daemon (consumerd).
2431 * Return pid if successful else -1.
2433 static pid_t
spawn_consumerd(struct consumer_data
*consumer_data
)
2437 const char *consumer_to_use
;
2438 const char *verbosity
;
2441 DBG("Spawning consumerd");
2448 if (opt_verbose_consumer
) {
2449 verbosity
= "--verbose";
2450 } else if (lttng_opt_quiet
) {
2451 verbosity
= "--quiet";
2456 switch (consumer_data
->type
) {
2457 case LTTNG_CONSUMER_KERNEL
:
2459 * Find out which consumerd to execute. We will first try the
2460 * 64-bit path, then the sessiond's installation directory, and
2461 * fallback on the 32-bit one,
2463 DBG3("Looking for a kernel consumer at these locations:");
2464 DBG3(" 1) %s", consumerd64_bin
);
2465 DBG3(" 2) %s/%s", INSTALL_BIN_PATH
, CONSUMERD_FILE
);
2466 DBG3(" 3) %s", consumerd32_bin
);
2467 if (stat(consumerd64_bin
, &st
) == 0) {
2468 DBG3("Found location #1");
2469 consumer_to_use
= consumerd64_bin
;
2470 } else if (stat(INSTALL_BIN_PATH
"/" CONSUMERD_FILE
, &st
) == 0) {
2471 DBG3("Found location #2");
2472 consumer_to_use
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
2473 } else if (stat(consumerd32_bin
, &st
) == 0) {
2474 DBG3("Found location #3");
2475 consumer_to_use
= consumerd32_bin
;
2477 DBG("Could not find any valid consumerd executable");
2481 DBG("Using kernel consumer at: %s", consumer_to_use
);
2482 ret
= execl(consumer_to_use
,
2483 "lttng-consumerd", verbosity
, "-k",
2484 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2485 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2486 "--group", tracing_group_name
,
2489 case LTTNG_CONSUMER64_UST
:
2491 char *tmpnew
= NULL
;
2493 if (consumerd64_libdir
[0] != '\0') {
2497 tmp
= lttng_secure_getenv("LD_LIBRARY_PATH");
2501 tmplen
= strlen("LD_LIBRARY_PATH=")
2502 + strlen(consumerd64_libdir
) + 1 /* : */ + strlen(tmp
);
2503 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
2508 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
2509 strcat(tmpnew
, consumerd64_libdir
);
2510 if (tmp
[0] != '\0') {
2511 strcat(tmpnew
, ":");
2512 strcat(tmpnew
, tmp
);
2514 ret
= putenv(tmpnew
);
2521 DBG("Using 64-bit UST consumer at: %s", consumerd64_bin
);
2522 ret
= execl(consumerd64_bin
, "lttng-consumerd", verbosity
, "-u",
2523 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2524 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2525 "--group", tracing_group_name
,
2527 if (consumerd64_libdir
[0] != '\0') {
2532 case LTTNG_CONSUMER32_UST
:
2534 char *tmpnew
= NULL
;
2536 if (consumerd32_libdir
[0] != '\0') {
2540 tmp
= lttng_secure_getenv("LD_LIBRARY_PATH");
2544 tmplen
= strlen("LD_LIBRARY_PATH=")
2545 + strlen(consumerd32_libdir
) + 1 /* : */ + strlen(tmp
);
2546 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
2551 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
2552 strcat(tmpnew
, consumerd32_libdir
);
2553 if (tmp
[0] != '\0') {
2554 strcat(tmpnew
, ":");
2555 strcat(tmpnew
, tmp
);
2557 ret
= putenv(tmpnew
);
2564 DBG("Using 32-bit UST consumer at: %s", consumerd32_bin
);
2565 ret
= execl(consumerd32_bin
, "lttng-consumerd", verbosity
, "-u",
2566 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2567 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2568 "--group", tracing_group_name
,
2570 if (consumerd32_libdir
[0] != '\0') {
2576 PERROR("unknown consumer type");
2580 PERROR("Consumer execl()");
2582 /* Reaching this point, we got a failure on our execl(). */
2584 } else if (pid
> 0) {
2587 PERROR("start consumer fork");
2595 * Spawn the consumerd daemon and session daemon thread.
2597 static int start_consumerd(struct consumer_data
*consumer_data
)
2602 * Set the listen() state on the socket since there is a possible race
2603 * between the exec() of the consumer daemon and this call if place in the
2604 * consumer thread. See bug #366 for more details.
2606 ret
= lttcomm_listen_unix_sock(consumer_data
->err_sock
);
2611 pthread_mutex_lock(&consumer_data
->pid_mutex
);
2612 if (consumer_data
->pid
!= 0) {
2613 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2617 ret
= spawn_consumerd(consumer_data
);
2619 ERR("Spawning consumerd failed");
2620 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2624 /* Setting up the consumer_data pid */
2625 consumer_data
->pid
= ret
;
2626 DBG2("Consumer pid %d", consumer_data
->pid
);
2627 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2629 DBG2("Spawning consumer control thread");
2630 ret
= spawn_consumer_thread(consumer_data
);
2632 ERR("Fatal error spawning consumer control thread");
2640 /* Cleanup already created sockets on error. */
2641 if (consumer_data
->err_sock
>= 0) {
2644 err
= close(consumer_data
->err_sock
);
2646 PERROR("close consumer data error socket");
2653 * Setup necessary data for kernel tracer action.
2655 static int init_kernel_tracer(void)
2659 /* Modprobe lttng kernel modules */
2660 ret
= modprobe_lttng_control();
2665 /* Open debugfs lttng */
2666 kernel_tracer_fd
= open(module_proc_lttng
, O_RDWR
);
2667 if (kernel_tracer_fd
< 0) {
2668 DBG("Failed to open %s", module_proc_lttng
);
2673 /* Validate kernel version */
2674 ret
= kernel_validate_version(kernel_tracer_fd
);
2679 ret
= modprobe_lttng_data();
2684 DBG("Kernel tracer fd %d", kernel_tracer_fd
);
2688 modprobe_remove_lttng_control();
2689 ret
= close(kernel_tracer_fd
);
2693 kernel_tracer_fd
= -1;
2694 return LTTNG_ERR_KERN_VERSION
;
2697 ret
= close(kernel_tracer_fd
);
2703 modprobe_remove_lttng_control();
2706 WARN("No kernel tracer available");
2707 kernel_tracer_fd
= -1;
2709 return LTTNG_ERR_NEED_ROOT_SESSIOND
;
2711 return LTTNG_ERR_KERN_NA
;
2717 * Copy consumer output from the tracing session to the domain session. The
2718 * function also applies the right modification on a per domain basis for the
2719 * trace files destination directory.
2721 * Should *NOT* be called with RCU read-side lock held.
2723 static int copy_session_consumer(int domain
, struct ltt_session
*session
)
2726 const char *dir_name
;
2727 struct consumer_output
*consumer
;
2730 assert(session
->consumer
);
2733 case LTTNG_DOMAIN_KERNEL
:
2734 DBG3("Copying tracing session consumer output in kernel session");
2736 * XXX: We should audit the session creation and what this function
2737 * does "extra" in order to avoid a destroy since this function is used
2738 * in the domain session creation (kernel and ust) only. Same for UST
2741 if (session
->kernel_session
->consumer
) {
2742 consumer_output_put(session
->kernel_session
->consumer
);
2744 session
->kernel_session
->consumer
=
2745 consumer_copy_output(session
->consumer
);
2746 /* Ease our life a bit for the next part */
2747 consumer
= session
->kernel_session
->consumer
;
2748 dir_name
= DEFAULT_KERNEL_TRACE_DIR
;
2750 case LTTNG_DOMAIN_JUL
:
2751 case LTTNG_DOMAIN_LOG4J
:
2752 case LTTNG_DOMAIN_PYTHON
:
2753 case LTTNG_DOMAIN_UST
:
2754 DBG3("Copying tracing session consumer output in UST session");
2755 if (session
->ust_session
->consumer
) {
2756 consumer_output_put(session
->ust_session
->consumer
);
2758 session
->ust_session
->consumer
=
2759 consumer_copy_output(session
->consumer
);
2760 /* Ease our life a bit for the next part */
2761 consumer
= session
->ust_session
->consumer
;
2762 dir_name
= DEFAULT_UST_TRACE_DIR
;
2765 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2769 /* Append correct directory to subdir */
2770 strncat(consumer
->subdir
, dir_name
,
2771 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
2772 DBG3("Copy session consumer subdir %s", consumer
->subdir
);
2781 * Create an UST session and add it to the session ust list.
2783 * Should *NOT* be called with RCU read-side lock held.
2785 static int create_ust_session(struct ltt_session
*session
,
2786 struct lttng_domain
*domain
)
2789 struct ltt_ust_session
*lus
= NULL
;
2793 assert(session
->consumer
);
2795 switch (domain
->type
) {
2796 case LTTNG_DOMAIN_JUL
:
2797 case LTTNG_DOMAIN_LOG4J
:
2798 case LTTNG_DOMAIN_PYTHON
:
2799 case LTTNG_DOMAIN_UST
:
2802 ERR("Unknown UST domain on create session %d", domain
->type
);
2803 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2807 DBG("Creating UST session");
2809 lus
= trace_ust_create_session(session
->id
);
2811 ret
= LTTNG_ERR_UST_SESS_FAIL
;
2815 lus
->uid
= session
->uid
;
2816 lus
->gid
= session
->gid
;
2817 lus
->output_traces
= session
->output_traces
;
2818 lus
->snapshot_mode
= session
->snapshot_mode
;
2819 lus
->live_timer_interval
= session
->live_timer
;
2820 session
->ust_session
= lus
;
2821 if (session
->shm_path
[0]) {
2822 strncpy(lus
->root_shm_path
, session
->shm_path
,
2823 sizeof(lus
->root_shm_path
));
2824 lus
->root_shm_path
[sizeof(lus
->root_shm_path
) - 1] = '\0';
2825 strncpy(lus
->shm_path
, session
->shm_path
,
2826 sizeof(lus
->shm_path
));
2827 lus
->shm_path
[sizeof(lus
->shm_path
) - 1] = '\0';
2828 strncat(lus
->shm_path
, "/ust",
2829 sizeof(lus
->shm_path
) - strlen(lus
->shm_path
) - 1);
2831 /* Copy session output to the newly created UST session */
2832 ret
= copy_session_consumer(domain
->type
, session
);
2833 if (ret
!= LTTNG_OK
) {
2841 session
->ust_session
= NULL
;
2846 * Create a kernel tracer session then create the default channel.
2848 static int create_kernel_session(struct ltt_session
*session
)
2852 DBG("Creating kernel session");
2854 ret
= kernel_create_session(session
, kernel_tracer_fd
);
2856 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
2860 /* Code flow safety */
2861 assert(session
->kernel_session
);
2863 /* Copy session output to the newly created Kernel session */
2864 ret
= copy_session_consumer(LTTNG_DOMAIN_KERNEL
, session
);
2865 if (ret
!= LTTNG_OK
) {
2869 /* Create directory(ies) on local filesystem. */
2870 if (session
->kernel_session
->consumer
->type
== CONSUMER_DST_LOCAL
&&
2871 strlen(session
->kernel_session
->consumer
->dst
.trace_path
) > 0) {
2872 ret
= run_as_mkdir_recursive(
2873 session
->kernel_session
->consumer
->dst
.trace_path
,
2874 S_IRWXU
| S_IRWXG
, session
->uid
, session
->gid
);
2876 if (errno
!= EEXIST
) {
2877 ERR("Trace directory creation error");
2883 session
->kernel_session
->uid
= session
->uid
;
2884 session
->kernel_session
->gid
= session
->gid
;
2885 session
->kernel_session
->output_traces
= session
->output_traces
;
2886 session
->kernel_session
->snapshot_mode
= session
->snapshot_mode
;
2891 trace_kernel_destroy_session(session
->kernel_session
);
2892 session
->kernel_session
= NULL
;
2897 * Count number of session permitted by uid/gid.
2899 static unsigned int lttng_sessions_count(uid_t uid
, gid_t gid
)
2902 struct ltt_session
*session
;
2904 DBG("Counting number of available session for UID %d GID %d",
2906 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
2908 * Only list the sessions the user can control.
2910 if (!session_access_ok(session
, uid
, gid
)) {
2919 * Process the command requested by the lttng client within the command
2920 * context structure. This function make sure that the return structure (llm)
2921 * is set and ready for transmission before returning.
2923 * Return any error encountered or 0 for success.
2925 * "sock" is only used for special-case var. len data.
2927 * Should *NOT* be called with RCU read-side lock held.
2929 static int process_client_msg(struct command_ctx
*cmd_ctx
, int sock
,
2933 int need_tracing_session
= 1;
2936 DBG("Processing client command %d", cmd_ctx
->lsm
->cmd_type
);
2940 switch (cmd_ctx
->lsm
->cmd_type
) {
2941 case LTTNG_CREATE_SESSION
:
2942 case LTTNG_CREATE_SESSION_SNAPSHOT
:
2943 case LTTNG_CREATE_SESSION_LIVE
:
2944 case LTTNG_DESTROY_SESSION
:
2945 case LTTNG_LIST_SESSIONS
:
2946 case LTTNG_LIST_DOMAINS
:
2947 case LTTNG_START_TRACE
:
2948 case LTTNG_STOP_TRACE
:
2949 case LTTNG_DATA_PENDING
:
2950 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
2951 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
2952 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
2953 case LTTNG_SNAPSHOT_RECORD
:
2954 case LTTNG_SAVE_SESSION
:
2955 case LTTNG_SET_SESSION_SHM_PATH
:
2962 if (opt_no_kernel
&& need_domain
2963 && cmd_ctx
->lsm
->domain
.type
== LTTNG_DOMAIN_KERNEL
) {
2965 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
2967 ret
= LTTNG_ERR_KERN_NA
;
2972 /* Deny register consumer if we already have a spawned consumer. */
2973 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_REGISTER_CONSUMER
) {
2974 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
2975 if (kconsumer_data
.pid
> 0) {
2976 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2977 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2980 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2984 * Check for command that don't needs to allocate a returned payload. We do
2985 * this here so we don't have to make the call for no payload at each
2988 switch(cmd_ctx
->lsm
->cmd_type
) {
2989 case LTTNG_LIST_SESSIONS
:
2990 case LTTNG_LIST_TRACEPOINTS
:
2991 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2992 case LTTNG_LIST_DOMAINS
:
2993 case LTTNG_LIST_CHANNELS
:
2994 case LTTNG_LIST_EVENTS
:
2995 case LTTNG_LIST_SYSCALLS
:
2996 case LTTNG_LIST_TRACKER_PIDS
:
2999 /* Setup lttng message with no payload */
3000 ret
= setup_lttng_msg(cmd_ctx
, 0);
3002 /* This label does not try to unlock the session */
3003 goto init_setup_error
;
3007 /* Commands that DO NOT need a session. */
3008 switch (cmd_ctx
->lsm
->cmd_type
) {
3009 case LTTNG_CREATE_SESSION
:
3010 case LTTNG_CREATE_SESSION_SNAPSHOT
:
3011 case LTTNG_CREATE_SESSION_LIVE
:
3012 case LTTNG_CALIBRATE
:
3013 case LTTNG_LIST_SESSIONS
:
3014 case LTTNG_LIST_TRACEPOINTS
:
3015 case LTTNG_LIST_SYSCALLS
:
3016 case LTTNG_LIST_TRACEPOINT_FIELDS
:
3017 case LTTNG_SAVE_SESSION
:
3018 need_tracing_session
= 0;
3021 DBG("Getting session %s by name", cmd_ctx
->lsm
->session
.name
);
3023 * We keep the session list lock across _all_ commands
3024 * for now, because the per-session lock does not
3025 * handle teardown properly.
3027 session_lock_list();
3028 cmd_ctx
->session
= session_find_by_name(cmd_ctx
->lsm
->session
.name
);
3029 if (cmd_ctx
->session
== NULL
) {
3030 ret
= LTTNG_ERR_SESS_NOT_FOUND
;
3033 /* Acquire lock for the session */
3034 session_lock(cmd_ctx
->session
);
3040 * Commands that need a valid session but should NOT create one if none
3041 * exists. Instead of creating one and destroying it when the command is
3042 * handled, process that right before so we save some round trip in useless
3045 switch (cmd_ctx
->lsm
->cmd_type
) {
3046 case LTTNG_DISABLE_CHANNEL
:
3047 case LTTNG_DISABLE_EVENT
:
3048 switch (cmd_ctx
->lsm
->domain
.type
) {
3049 case LTTNG_DOMAIN_KERNEL
:
3050 if (!cmd_ctx
->session
->kernel_session
) {
3051 ret
= LTTNG_ERR_NO_CHANNEL
;
3055 case LTTNG_DOMAIN_JUL
:
3056 case LTTNG_DOMAIN_LOG4J
:
3057 case LTTNG_DOMAIN_PYTHON
:
3058 case LTTNG_DOMAIN_UST
:
3059 if (!cmd_ctx
->session
->ust_session
) {
3060 ret
= LTTNG_ERR_NO_CHANNEL
;
3065 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
3077 * Check domain type for specific "pre-action".
3079 switch (cmd_ctx
->lsm
->domain
.type
) {
3080 case LTTNG_DOMAIN_KERNEL
:
3082 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
3086 /* Kernel tracer check */
3087 if (kernel_tracer_fd
== -1) {
3088 /* Basically, load kernel tracer modules */
3089 ret
= init_kernel_tracer();
3095 /* Consumer is in an ERROR state. Report back to client */
3096 if (uatomic_read(&kernel_consumerd_state
) == CONSUMER_ERROR
) {
3097 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
3101 /* Need a session for kernel command */
3102 if (need_tracing_session
) {
3103 if (cmd_ctx
->session
->kernel_session
== NULL
) {
3104 ret
= create_kernel_session(cmd_ctx
->session
);
3106 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
3111 /* Start the kernel consumer daemon */
3112 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
3113 if (kconsumer_data
.pid
== 0 &&
3114 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
3115 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
3116 ret
= start_consumerd(&kconsumer_data
);
3118 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
3121 uatomic_set(&kernel_consumerd_state
, CONSUMER_STARTED
);
3123 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
3127 * The consumer was just spawned so we need to add the socket to
3128 * the consumer output of the session if exist.
3130 ret
= consumer_create_socket(&kconsumer_data
,
3131 cmd_ctx
->session
->kernel_session
->consumer
);
3138 case LTTNG_DOMAIN_JUL
:
3139 case LTTNG_DOMAIN_LOG4J
:
3140 case LTTNG_DOMAIN_PYTHON
:
3141 case LTTNG_DOMAIN_UST
:
3143 if (!ust_app_supported()) {
3144 ret
= LTTNG_ERR_NO_UST
;
3147 /* Consumer is in an ERROR state. Report back to client */
3148 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
3149 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
3153 if (need_tracing_session
) {
3154 /* Create UST session if none exist. */
3155 if (cmd_ctx
->session
->ust_session
== NULL
) {
3156 ret
= create_ust_session(cmd_ctx
->session
,
3157 &cmd_ctx
->lsm
->domain
);
3158 if (ret
!= LTTNG_OK
) {
3163 /* Start the UST consumer daemons */
3165 pthread_mutex_lock(&ustconsumer64_data
.pid_mutex
);
3166 if (consumerd64_bin
[0] != '\0' &&
3167 ustconsumer64_data
.pid
== 0 &&
3168 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
3169 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
3170 ret
= start_consumerd(&ustconsumer64_data
);
3172 ret
= LTTNG_ERR_UST_CONSUMER64_FAIL
;
3173 uatomic_set(&ust_consumerd64_fd
, -EINVAL
);
3177 uatomic_set(&ust_consumerd64_fd
, ustconsumer64_data
.cmd_sock
);
3178 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
3180 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
3184 * Setup socket for consumer 64 bit. No need for atomic access
3185 * since it was set above and can ONLY be set in this thread.
3187 ret
= consumer_create_socket(&ustconsumer64_data
,
3188 cmd_ctx
->session
->ust_session
->consumer
);
3194 pthread_mutex_lock(&ustconsumer32_data
.pid_mutex
);
3195 if (consumerd32_bin
[0] != '\0' &&
3196 ustconsumer32_data
.pid
== 0 &&
3197 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
3198 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
3199 ret
= start_consumerd(&ustconsumer32_data
);
3201 ret
= LTTNG_ERR_UST_CONSUMER32_FAIL
;
3202 uatomic_set(&ust_consumerd32_fd
, -EINVAL
);
3206 uatomic_set(&ust_consumerd32_fd
, ustconsumer32_data
.cmd_sock
);
3207 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
3209 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
3213 * Setup socket for consumer 64 bit. No need for atomic access
3214 * since it was set above and can ONLY be set in this thread.
3216 ret
= consumer_create_socket(&ustconsumer32_data
,
3217 cmd_ctx
->session
->ust_session
->consumer
);
3229 /* Validate consumer daemon state when start/stop trace command */
3230 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_START_TRACE
||
3231 cmd_ctx
->lsm
->cmd_type
== LTTNG_STOP_TRACE
) {
3232 switch (cmd_ctx
->lsm
->domain
.type
) {
3233 case LTTNG_DOMAIN_JUL
:
3234 case LTTNG_DOMAIN_LOG4J
:
3235 case LTTNG_DOMAIN_PYTHON
: