2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
31 #include <sys/mount.h>
32 #include <sys/resource.h>
33 #include <sys/socket.h>
35 #include <sys/types.h>
37 #include <urcu/uatomic.h>
41 #include <common/common.h>
42 #include <common/compat/socket.h>
43 #include <common/defaults.h>
44 #include <common/kernel-consumer/kernel-consumer.h>
45 #include <common/futex.h>
46 #include <common/relayd/relayd.h>
47 #include <common/utils.h>
48 #include <common/daemonize.h>
50 #include "lttng-sessiond.h"
51 #include "buffer-registry.h"
58 #include "kernel-consumer.h"
62 #include "ust-consumer.h"
65 #include "health-sessiond.h"
66 #include "testpoint.h"
67 #include "ust-thread.h"
68 #include "jul-thread.h"
70 #define CONSUMERD_FILE "lttng-consumerd"
73 static const char *tracing_group_name
= DEFAULT_TRACING_GROUP
;
74 static const char *opt_pidfile
;
75 static int opt_sig_parent
;
76 static int opt_verbose_consumer
;
77 static int opt_daemon
, opt_background
;
78 static int opt_no_kernel
;
79 static pid_t ppid
; /* Parent PID for --sig-parent option */
80 static pid_t child_ppid
; /* Internal parent PID use with daemonize. */
82 static int lockfile_fd
= -1;
84 /* Set to 1 when a SIGUSR1 signal is received. */
85 static int recv_child_signal
;
88 * Consumer daemon specific control data. Every value not initialized here is
89 * set to 0 by the static definition.
91 static struct consumer_data kconsumer_data
= {
92 .type
= LTTNG_CONSUMER_KERNEL
,
93 .err_unix_sock_path
= DEFAULT_KCONSUMERD_ERR_SOCK_PATH
,
94 .cmd_unix_sock_path
= DEFAULT_KCONSUMERD_CMD_SOCK_PATH
,
97 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
98 .lock
= PTHREAD_MUTEX_INITIALIZER
,
99 .cond
= PTHREAD_COND_INITIALIZER
,
100 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
102 static struct consumer_data ustconsumer64_data
= {
103 .type
= LTTNG_CONSUMER64_UST
,
104 .err_unix_sock_path
= DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
,
105 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
,
108 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
109 .lock
= PTHREAD_MUTEX_INITIALIZER
,
110 .cond
= PTHREAD_COND_INITIALIZER
,
111 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
113 static struct consumer_data ustconsumer32_data
= {
114 .type
= LTTNG_CONSUMER32_UST
,
115 .err_unix_sock_path
= DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
,
116 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
,
119 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
120 .lock
= PTHREAD_MUTEX_INITIALIZER
,
121 .cond
= PTHREAD_COND_INITIALIZER
,
122 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
125 /* Shared between threads */
126 static int dispatch_thread_exit
;
128 /* Global application Unix socket path */
129 static char apps_unix_sock_path
[PATH_MAX
];
130 /* Global client Unix socket path */
131 static char client_unix_sock_path
[PATH_MAX
];
132 /* global wait shm path for UST */
133 static char wait_shm_path
[PATH_MAX
];
134 /* Global health check unix path */
135 static char health_unix_sock_path
[PATH_MAX
];
137 /* Sockets and FDs */
138 static int client_sock
= -1;
139 static int apps_sock
= -1;
140 int kernel_tracer_fd
= -1;
141 static int kernel_poll_pipe
[2] = { -1, -1 };
144 * Quit pipe for all threads. This permits a single cancellation point
145 * for all threads when receiving an event on the pipe.
147 static int thread_quit_pipe
[2] = { -1, -1 };
150 * This pipe is used to inform the thread managing application communication
151 * that a command is queued and ready to be processed.
153 static int apps_cmd_pipe
[2] = { -1, -1 };
155 int apps_cmd_notify_pipe
[2] = { -1, -1 };
157 /* Pthread, Mutexes and Semaphores */
158 static pthread_t apps_thread
;
159 static pthread_t apps_notify_thread
;
160 static pthread_t reg_apps_thread
;
161 static pthread_t client_thread
;
162 static pthread_t kernel_thread
;
163 static pthread_t dispatch_thread
;
164 static pthread_t health_thread
;
165 static pthread_t ht_cleanup_thread
;
166 static pthread_t jul_reg_thread
;
169 * UST registration command queue. This queue is tied with a futex and uses a N
170 * wakers / 1 waiter implemented and detailed in futex.c/.h
172 * The thread_manage_apps and thread_dispatch_ust_registration interact with
173 * this queue and the wait/wake scheme.
175 static struct ust_cmd_queue ust_cmd_queue
;
178 * Pointer initialized before thread creation.
180 * This points to the tracing session list containing the session count and a
181 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
182 * MUST NOT be taken if you call a public function in session.c.
184 * The lock is nested inside the structure: session_list_ptr->lock. Please use
185 * session_lock_list and session_unlock_list for lock acquisition.
187 static struct ltt_session_list
*session_list_ptr
;
189 int ust_consumerd64_fd
= -1;
190 int ust_consumerd32_fd
= -1;
192 static const char *consumerd32_bin
= CONFIG_CONSUMERD32_BIN
;
193 static const char *consumerd64_bin
= CONFIG_CONSUMERD64_BIN
;
194 static const char *consumerd32_libdir
= CONFIG_CONSUMERD32_LIBDIR
;
195 static const char *consumerd64_libdir
= CONFIG_CONSUMERD64_LIBDIR
;
197 static const char *module_proc_lttng
= "/proc/lttng";
200 * Consumer daemon state which is changed when spawning it, killing it or in
201 * case of a fatal error.
203 enum consumerd_state
{
204 CONSUMER_STARTED
= 1,
205 CONSUMER_STOPPED
= 2,
210 * This consumer daemon state is used to validate if a client command will be
211 * able to reach the consumer. If not, the client is informed. For instance,
212 * doing a "lttng start" when the consumer state is set to ERROR will return an
213 * error to the client.
215 * The following example shows a possible race condition of this scheme:
217 * consumer thread error happens
219 * client cmd checks state -> still OK
220 * consumer thread exit, sets error
221 * client cmd try to talk to consumer
224 * However, since the consumer is a different daemon, we have no way of making
225 * sure the command will reach it safely even with this state flag. This is why
226 * we consider that up to the state validation during command processing, the
227 * command is safe. After that, we can not guarantee the correctness of the
228 * client request vis-a-vis the consumer.
230 static enum consumerd_state ust_consumerd_state
;
231 static enum consumerd_state kernel_consumerd_state
;
234 * Socket timeout for receiving and sending in seconds.
236 static int app_socket_timeout
;
238 /* Set in main() with the current page size. */
241 /* Application health monitoring */
242 struct health_app
*health_sessiond
;
244 /* JUL TCP port for registration. Used by the JUL thread. */
245 unsigned int jul_tcp_port
= DEFAULT_JUL_TCP_PORT
;
247 /* Am I root or not. */
248 int is_root
; /* Set to 1 if the daemon is running as root */
251 * Whether sessiond is ready for commands/health check requests.
252 * NR_LTTNG_SESSIOND_READY must match the number of calls to
253 * lttng_sessiond_notify_ready().
255 #define NR_LTTNG_SESSIOND_READY 2
256 int lttng_sessiond_ready
= NR_LTTNG_SESSIOND_READY
;
258 /* Notify parents that we are ready for cmd and health check */
260 void lttng_sessiond_notify_ready(void)
262 if (uatomic_sub_return(<tng_sessiond_ready
, 1) == 0) {
264 * Notify parent pid that we are ready to accept command
265 * for client side. This ppid is the one from the
266 * external process that spawned us.
268 if (opt_sig_parent
) {
273 * Notify the parent of the fork() process that we are
276 if (opt_daemon
|| opt_background
) {
277 kill(child_ppid
, SIGUSR1
);
283 void setup_consumerd_path(void)
285 const char *bin
, *libdir
;
288 * Allow INSTALL_BIN_PATH to be used as a target path for the
289 * native architecture size consumer if CONFIG_CONSUMER*_PATH
290 * has not been defined.
292 #if (CAA_BITS_PER_LONG == 32)
293 if (!consumerd32_bin
[0]) {
294 consumerd32_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
296 if (!consumerd32_libdir
[0]) {
297 consumerd32_libdir
= INSTALL_LIB_PATH
;
299 #elif (CAA_BITS_PER_LONG == 64)
300 if (!consumerd64_bin
[0]) {
301 consumerd64_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
303 if (!consumerd64_libdir
[0]) {
304 consumerd64_libdir
= INSTALL_LIB_PATH
;
307 #error "Unknown bitness"
311 * runtime env. var. overrides the build default.
313 bin
= getenv("LTTNG_CONSUMERD32_BIN");
315 consumerd32_bin
= bin
;
317 bin
= getenv("LTTNG_CONSUMERD64_BIN");
319 consumerd64_bin
= bin
;
321 libdir
= getenv("LTTNG_CONSUMERD32_LIBDIR");
323 consumerd32_libdir
= libdir
;
325 libdir
= getenv("LTTNG_CONSUMERD64_LIBDIR");
327 consumerd64_libdir
= libdir
;
332 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
334 int sessiond_set_thread_pollset(struct lttng_poll_event
*events
, size_t size
)
340 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
346 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
| LPOLLERR
);
358 * Check if the thread quit pipe was triggered.
360 * Return 1 if it was triggered else 0;
362 int sessiond_check_thread_quit_pipe(int fd
, uint32_t events
)
364 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
372 * Init thread quit pipe.
374 * Return -1 on error or 0 if all pipes are created.
376 static int init_thread_quit_pipe(void)
380 ret
= pipe(thread_quit_pipe
);
382 PERROR("thread quit pipe");
386 for (i
= 0; i
< 2; i
++) {
387 ret
= fcntl(thread_quit_pipe
[i
], F_SETFD
, FD_CLOEXEC
);
399 * Stop all threads by closing the thread quit pipe.
401 static void stop_threads(void)
405 /* Stopping all threads */
406 DBG("Terminating all threads");
407 ret
= notify_thread_pipe(thread_quit_pipe
[1]);
409 ERR("write error on thread quit pipe");
412 /* Dispatch thread */
413 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
414 futex_nto1_wake(&ust_cmd_queue
.futex
);
418 * Close every consumer sockets.
420 static void close_consumer_sockets(void)
424 if (kconsumer_data
.err_sock
>= 0) {
425 ret
= close(kconsumer_data
.err_sock
);
427 PERROR("kernel consumer err_sock close");
430 if (ustconsumer32_data
.err_sock
>= 0) {
431 ret
= close(ustconsumer32_data
.err_sock
);
433 PERROR("UST consumerd32 err_sock close");
436 if (ustconsumer64_data
.err_sock
>= 0) {
437 ret
= close(ustconsumer64_data
.err_sock
);
439 PERROR("UST consumerd64 err_sock close");
442 if (kconsumer_data
.cmd_sock
>= 0) {
443 ret
= close(kconsumer_data
.cmd_sock
);
445 PERROR("kernel consumer cmd_sock close");
448 if (ustconsumer32_data
.cmd_sock
>= 0) {
449 ret
= close(ustconsumer32_data
.cmd_sock
);
451 PERROR("UST consumerd32 cmd_sock close");
454 if (ustconsumer64_data
.cmd_sock
>= 0) {
455 ret
= close(ustconsumer64_data
.cmd_sock
);
457 PERROR("UST consumerd64 cmd_sock close");
463 * Generate the full lock file path using the rundir.
465 * Return the snprintf() return value thus a negative value is an error.
467 static int generate_lock_file_path(char *path
, size_t len
)
474 /* Build lockfile path from rundir. */
475 ret
= snprintf(path
, len
, "%s/" DEFAULT_LTTNG_SESSIOND_LOCKFILE
, rundir
);
477 PERROR("snprintf lockfile path");
486 static void cleanup(void)
489 struct ltt_session
*sess
, *stmp
;
495 * Close the thread quit pipe. It has already done its job,
496 * since we are now called.
498 utils_close_pipe(thread_quit_pipe
);
501 * If opt_pidfile is undefined, the default file will be wiped when
502 * removing the rundir.
505 ret
= remove(opt_pidfile
);
507 PERROR("remove pidfile %s", opt_pidfile
);
511 DBG("Removing sessiond and consumerd content of directory %s", rundir
);
514 snprintf(path
, PATH_MAX
,
516 rundir
, DEFAULT_LTTNG_SESSIOND_PIDFILE
);
517 DBG("Removing %s", path
);
520 snprintf(path
, PATH_MAX
, "%s/%s", rundir
,
521 DEFAULT_LTTNG_SESSIOND_JULPORT_FILE
);
522 DBG("Removing %s", path
);
526 snprintf(path
, PATH_MAX
,
527 DEFAULT_KCONSUMERD_ERR_SOCK_PATH
,
529 DBG("Removing %s", path
);
532 snprintf(path
, PATH_MAX
,
533 DEFAULT_KCONSUMERD_PATH
,
535 DBG("Removing directory %s", path
);
538 /* ust consumerd 32 */
539 snprintf(path
, PATH_MAX
,
540 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
,
542 DBG("Removing %s", path
);
545 snprintf(path
, PATH_MAX
,
546 DEFAULT_USTCONSUMERD32_PATH
,
548 DBG("Removing directory %s", path
);
551 /* ust consumerd 64 */
552 snprintf(path
, PATH_MAX
,
553 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
,
555 DBG("Removing %s", path
);
558 snprintf(path
, PATH_MAX
,
559 DEFAULT_USTCONSUMERD64_PATH
,
561 DBG("Removing directory %s", path
);
564 DBG("Cleaning up all sessions");
566 /* Destroy session list mutex */
567 if (session_list_ptr
!= NULL
) {
568 pthread_mutex_destroy(&session_list_ptr
->lock
);
570 /* Cleanup ALL session */
571 cds_list_for_each_entry_safe(sess
, stmp
,
572 &session_list_ptr
->head
, list
) {
573 cmd_destroy_session(sess
, kernel_poll_pipe
[1]);
577 DBG("Closing all UST sockets");
578 ust_app_clean_list();
579 buffer_reg_destroy_registries();
581 if (is_root
&& !opt_no_kernel
) {
582 DBG2("Closing kernel fd");
583 if (kernel_tracer_fd
>= 0) {
584 ret
= close(kernel_tracer_fd
);
589 DBG("Unloading kernel modules");
590 modprobe_remove_lttng_all();
593 close_consumer_sockets();
597 * Cleanup lock file by deleting it and finaly closing it which will
598 * release the file system lock.
600 if (lockfile_fd
>= 0) {
601 char lockfile_path
[PATH_MAX
];
603 ret
= generate_lock_file_path(lockfile_path
, sizeof(lockfile_path
));
605 ret
= remove(lockfile_path
);
607 PERROR("remove lock file");
609 ret
= close(lockfile_fd
);
611 PERROR("close lock file");
617 * We do NOT rmdir rundir because there are other processes
618 * using it, for instance lttng-relayd, which can start in
619 * parallel with this teardown.
625 DBG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm"
626 "Matthew, BEET driven development works!%c[%dm",
627 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
632 * Send data on a unix socket using the liblttsessiondcomm API.
634 * Return lttcomm error code.
636 static int send_unix_sock(int sock
, void *buf
, size_t len
)
638 /* Check valid length */
643 return lttcomm_send_unix_sock(sock
, buf
, len
);
647 * Free memory of a command context structure.
649 static void clean_command_ctx(struct command_ctx
**cmd_ctx
)
651 DBG("Clean command context structure");
653 if ((*cmd_ctx
)->llm
) {
654 free((*cmd_ctx
)->llm
);
656 if ((*cmd_ctx
)->lsm
) {
657 free((*cmd_ctx
)->lsm
);
665 * Notify UST applications using the shm mmap futex.
667 static int notify_ust_apps(int active
)
671 DBG("Notifying applications of session daemon state: %d", active
);
673 /* See shm.c for this call implying mmap, shm and futex calls */
674 wait_shm_mmap
= shm_ust_get_mmap(wait_shm_path
, is_root
);
675 if (wait_shm_mmap
== NULL
) {
679 /* Wake waiting process */
680 futex_wait_update((int32_t *) wait_shm_mmap
, active
);
682 /* Apps notified successfully */
690 * Setup the outgoing data buffer for the response (llm) by allocating the
691 * right amount of memory and copying the original information from the lsm
694 * Return total size of the buffer pointed by buf.
696 static int setup_lttng_msg(struct command_ctx
*cmd_ctx
, size_t size
)
702 cmd_ctx
->llm
= zmalloc(sizeof(struct lttcomm_lttng_msg
) + buf_size
);
703 if (cmd_ctx
->llm
== NULL
) {
709 /* Copy common data */
710 cmd_ctx
->llm
->cmd_type
= cmd_ctx
->lsm
->cmd_type
;
711 cmd_ctx
->llm
->pid
= cmd_ctx
->lsm
->domain
.attr
.pid
;
713 cmd_ctx
->llm
->data_size
= size
;
714 cmd_ctx
->lttng_msg_size
= sizeof(struct lttcomm_lttng_msg
) + buf_size
;
723 * Update the kernel poll set of all channel fd available over all tracing
724 * session. Add the wakeup pipe at the end of the set.
726 static int update_kernel_poll(struct lttng_poll_event
*events
)
729 struct ltt_session
*session
;
730 struct ltt_kernel_channel
*channel
;
732 DBG("Updating kernel poll set");
735 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
736 session_lock(session
);
737 if (session
->kernel_session
== NULL
) {
738 session_unlock(session
);
742 cds_list_for_each_entry(channel
,
743 &session
->kernel_session
->channel_list
.head
, list
) {
744 /* Add channel fd to the kernel poll set */
745 ret
= lttng_poll_add(events
, channel
->fd
, LPOLLIN
| LPOLLRDNORM
);
747 session_unlock(session
);
750 DBG("Channel fd %d added to kernel set", channel
->fd
);
752 session_unlock(session
);
754 session_unlock_list();
759 session_unlock_list();
764 * Find the channel fd from 'fd' over all tracing session. When found, check
765 * for new channel stream and send those stream fds to the kernel consumer.
767 * Useful for CPU hotplug feature.
769 static int update_kernel_stream(struct consumer_data
*consumer_data
, int fd
)
772 struct ltt_session
*session
;
773 struct ltt_kernel_session
*ksess
;
774 struct ltt_kernel_channel
*channel
;
776 DBG("Updating kernel streams for channel fd %d", fd
);
779 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
780 session_lock(session
);
781 if (session
->kernel_session
== NULL
) {
782 session_unlock(session
);
785 ksess
= session
->kernel_session
;
787 cds_list_for_each_entry(channel
, &ksess
->channel_list
.head
, list
) {
788 if (channel
->fd
== fd
) {
789 DBG("Channel found, updating kernel streams");
790 ret
= kernel_open_channel_stream(channel
);
794 /* Update the stream global counter */
795 ksess
->stream_count_global
+= ret
;
798 * Have we already sent fds to the consumer? If yes, it means
799 * that tracing is started so it is safe to send our updated
802 if (ksess
->consumer_fds_sent
== 1 && ksess
->consumer
!= NULL
) {
803 struct lttng_ht_iter iter
;
804 struct consumer_socket
*socket
;
807 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
,
808 &iter
.iter
, socket
, node
.node
) {
809 pthread_mutex_lock(socket
->lock
);
810 ret
= kernel_consumer_send_channel_stream(socket
,
812 session
->output_traces
? 1 : 0);
813 pthread_mutex_unlock(socket
->lock
);
824 session_unlock(session
);
826 session_unlock_list();
830 session_unlock(session
);
831 session_unlock_list();
836 * For each tracing session, update newly registered apps. The session list
837 * lock MUST be acquired before calling this.
839 static void update_ust_app(int app_sock
)
841 struct ltt_session
*sess
, *stmp
;
843 /* Consumer is in an ERROR state. Stop any application update. */
844 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
845 /* Stop the update process since the consumer is dead. */
849 /* For all tracing session(s) */
850 cds_list_for_each_entry_safe(sess
, stmp
, &session_list_ptr
->head
, list
) {
852 if (sess
->ust_session
) {
853 ust_app_global_update(sess
->ust_session
, app_sock
);
855 session_unlock(sess
);
860 * This thread manage event coming from the kernel.
862 * Features supported in this thread:
865 static void *thread_manage_kernel(void *data
)
867 int ret
, i
, pollfd
, update_poll_flag
= 1, err
= -1;
868 uint32_t revents
, nb_fd
;
870 struct lttng_poll_event events
;
872 DBG("[thread] Thread manage kernel started");
874 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_KERNEL
);
877 * This first step of the while is to clean this structure which could free
878 * non NULL pointers so initialize it before the loop.
880 lttng_poll_init(&events
);
882 if (testpoint(sessiond_thread_manage_kernel
)) {
883 goto error_testpoint
;
886 health_code_update();
888 if (testpoint(sessiond_thread_manage_kernel_before_loop
)) {
889 goto error_testpoint
;
893 health_code_update();
895 if (update_poll_flag
== 1) {
896 /* Clean events object. We are about to populate it again. */
897 lttng_poll_clean(&events
);
899 ret
= sessiond_set_thread_pollset(&events
, 2);
901 goto error_poll_create
;
904 ret
= lttng_poll_add(&events
, kernel_poll_pipe
[0], LPOLLIN
);
909 /* This will add the available kernel channel if any. */
910 ret
= update_kernel_poll(&events
);
914 update_poll_flag
= 0;
917 DBG("Thread kernel polling on %d fds", LTTNG_POLL_GETNB(&events
));
919 /* Poll infinite value of time */
922 ret
= lttng_poll_wait(&events
, -1);
926 * Restart interrupted system call.
928 if (errno
== EINTR
) {
932 } else if (ret
== 0) {
933 /* Should not happen since timeout is infinite */
934 ERR("Return value of poll is 0 with an infinite timeout.\n"
935 "This should not have happened! Continuing...");
941 for (i
= 0; i
< nb_fd
; i
++) {
942 /* Fetch once the poll data */
943 revents
= LTTNG_POLL_GETEV(&events
, i
);
944 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
946 health_code_update();
948 /* Thread quit pipe has been closed. Killing thread. */
949 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
955 /* Check for data on kernel pipe */
956 if (pollfd
== kernel_poll_pipe
[0] && (revents
& LPOLLIN
)) {
957 (void) lttng_read(kernel_poll_pipe
[0],
960 * Ret value is useless here, if this pipe gets any actions an
961 * update is required anyway.
963 update_poll_flag
= 1;
967 * New CPU detected by the kernel. Adding kernel stream to
968 * kernel session and updating the kernel consumer
970 if (revents
& LPOLLIN
) {
971 ret
= update_kernel_stream(&kconsumer_data
, pollfd
);
977 * TODO: We might want to handle the LPOLLERR | LPOLLHUP
978 * and unregister kernel stream at this point.
987 lttng_poll_clean(&events
);
990 utils_close_pipe(kernel_poll_pipe
);
991 kernel_poll_pipe
[0] = kernel_poll_pipe
[1] = -1;
994 ERR("Health error occurred in %s", __func__
);
995 WARN("Kernel thread died unexpectedly. "
996 "Kernel tracing can continue but CPU hotplug is disabled.");
998 health_unregister(health_sessiond
);
999 DBG("Kernel thread dying");
1004 * Signal pthread condition of the consumer data that the thread.
1006 static void signal_consumer_condition(struct consumer_data
*data
, int state
)
1008 pthread_mutex_lock(&data
->cond_mutex
);
1011 * The state is set before signaling. It can be any value, it's the waiter
1012 * job to correctly interpret this condition variable associated to the
1013 * consumer pthread_cond.
1015 * A value of 0 means that the corresponding thread of the consumer data
1016 * was not started. 1 indicates that the thread has started and is ready
1017 * for action. A negative value means that there was an error during the
1020 data
->consumer_thread_is_ready
= state
;
1021 (void) pthread_cond_signal(&data
->cond
);
1023 pthread_mutex_unlock(&data
->cond_mutex
);
1027 * This thread manage the consumer error sent back to the session daemon.
1029 static void *thread_manage_consumer(void *data
)
1031 int sock
= -1, i
, ret
, pollfd
, err
= -1, should_quit
= 0;
1032 uint32_t revents
, nb_fd
;
1033 enum lttcomm_return_code code
;
1034 struct lttng_poll_event events
;
1035 struct consumer_data
*consumer_data
= data
;
1037 DBG("[thread] Manage consumer started");
1039 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_CONSUMER
);
1041 health_code_update();
1044 * Pass 3 as size here for the thread quit pipe, consumerd_err_sock and the
1045 * metadata_sock. Nothing more will be added to this poll set.
1047 ret
= sessiond_set_thread_pollset(&events
, 3);
1053 * The error socket here is already in a listening state which was done
1054 * just before spawning this thread to avoid a race between the consumer
1055 * daemon exec trying to connect and the listen() call.
1057 ret
= lttng_poll_add(&events
, consumer_data
->err_sock
, LPOLLIN
| LPOLLRDHUP
);
1062 health_code_update();
1064 /* Infinite blocking call, waiting for transmission */
1066 health_poll_entry();
1068 if (testpoint(sessiond_thread_manage_consumer
)) {
1072 ret
= lttng_poll_wait(&events
, -1);
1076 * Restart interrupted system call.
1078 if (errno
== EINTR
) {
1086 for (i
= 0; i
< nb_fd
; i
++) {
1087 /* Fetch once the poll data */
1088 revents
= LTTNG_POLL_GETEV(&events
, i
);
1089 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1091 health_code_update();
1093 /* Thread quit pipe has been closed. Killing thread. */
1094 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1100 /* Event on the registration socket */
1101 if (pollfd
== consumer_data
->err_sock
) {
1102 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1103 ERR("consumer err socket poll error");
1109 sock
= lttcomm_accept_unix_sock(consumer_data
->err_sock
);
1115 * Set the CLOEXEC flag. Return code is useless because either way, the
1118 (void) utils_set_fd_cloexec(sock
);
1120 health_code_update();
1122 DBG2("Receiving code from consumer err_sock");
1124 /* Getting status code from kconsumerd */
1125 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1126 sizeof(enum lttcomm_return_code
));
1131 health_code_update();
1132 if (code
== LTTCOMM_CONSUMERD_COMMAND_SOCK_READY
) {
1133 /* Connect both socket, command and metadata. */
1134 consumer_data
->cmd_sock
=
1135 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
1136 consumer_data
->metadata_fd
=
1137 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
1138 if (consumer_data
->cmd_sock
< 0
1139 || consumer_data
->metadata_fd
< 0) {
1140 PERROR("consumer connect cmd socket");
1141 /* On error, signal condition and quit. */
1142 signal_consumer_condition(consumer_data
, -1);
1145 consumer_data
->metadata_sock
.fd_ptr
= &consumer_data
->metadata_fd
;
1146 /* Create metadata socket lock. */
1147 consumer_data
->metadata_sock
.lock
= zmalloc(sizeof(pthread_mutex_t
));
1148 if (consumer_data
->metadata_sock
.lock
== NULL
) {
1149 PERROR("zmalloc pthread mutex");
1153 pthread_mutex_init(consumer_data
->metadata_sock
.lock
, NULL
);
1155 signal_consumer_condition(consumer_data
, 1);
1156 DBG("Consumer command socket ready (fd: %d", consumer_data
->cmd_sock
);
1157 DBG("Consumer metadata socket ready (fd: %d)",
1158 consumer_data
->metadata_fd
);
1160 ERR("consumer error when waiting for SOCK_READY : %s",
1161 lttcomm_get_readable_code(-code
));
1165 /* Remove the consumerd error sock since we've established a connexion */
1166 ret
= lttng_poll_del(&events
, consumer_data
->err_sock
);
1171 /* Add new accepted error socket. */
1172 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLRDHUP
);
1177 /* Add metadata socket that is successfully connected. */
1178 ret
= lttng_poll_add(&events
, consumer_data
->metadata_fd
,
1179 LPOLLIN
| LPOLLRDHUP
);
1184 health_code_update();
1186 /* Infinite blocking call, waiting for transmission */
1189 health_code_update();
1191 /* Exit the thread because the thread quit pipe has been triggered. */
1193 /* Not a health error. */
1198 health_poll_entry();
1199 ret
= lttng_poll_wait(&events
, -1);
1203 * Restart interrupted system call.
1205 if (errno
== EINTR
) {
1213 for (i
= 0; i
< nb_fd
; i
++) {
1214 /* Fetch once the poll data */
1215 revents
= LTTNG_POLL_GETEV(&events
, i
);
1216 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1218 health_code_update();
1221 * Thread quit pipe has been triggered, flag that we should stop
1222 * but continue the current loop to handle potential data from
1225 should_quit
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1227 if (pollfd
== sock
) {
1228 /* Event on the consumerd socket */
1229 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1230 ERR("consumer err socket second poll error");
1233 health_code_update();
1234 /* Wait for any kconsumerd error */
1235 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1236 sizeof(enum lttcomm_return_code
));
1238 ERR("consumer closed the command socket");
1242 ERR("consumer return code : %s",
1243 lttcomm_get_readable_code(-code
));
1246 } else if (pollfd
== consumer_data
->metadata_fd
) {
1247 /* UST metadata requests */
1248 ret
= ust_consumer_metadata_request(
1249 &consumer_data
->metadata_sock
);
1251 ERR("Handling metadata request");
1255 /* No need for an else branch all FDs are tested prior. */
1257 health_code_update();
1263 * We lock here because we are about to close the sockets and some other
1264 * thread might be using them so get exclusive access which will abort all
1265 * other consumer command by other threads.
1267 pthread_mutex_lock(&consumer_data
->lock
);
1269 /* Immediately set the consumerd state to stopped */
1270 if (consumer_data
->type
== LTTNG_CONSUMER_KERNEL
) {
1271 uatomic_set(&kernel_consumerd_state
, CONSUMER_ERROR
);
1272 } else if (consumer_data
->type
== LTTNG_CONSUMER64_UST
||
1273 consumer_data
->type
== LTTNG_CONSUMER32_UST
) {
1274 uatomic_set(&ust_consumerd_state
, CONSUMER_ERROR
);
1276 /* Code flow error... */
1280 if (consumer_data
->err_sock
>= 0) {
1281 ret
= close(consumer_data
->err_sock
);
1285 consumer_data
->err_sock
= -1;
1287 if (consumer_data
->cmd_sock
>= 0) {
1288 ret
= close(consumer_data
->cmd_sock
);
1292 consumer_data
->cmd_sock
= -1;
1294 if (consumer_data
->metadata_sock
.fd_ptr
&&
1295 *consumer_data
->metadata_sock
.fd_ptr
>= 0) {
1296 ret
= close(*consumer_data
->metadata_sock
.fd_ptr
);
1308 unlink(consumer_data
->err_unix_sock_path
);
1309 unlink(consumer_data
->cmd_unix_sock_path
);
1310 consumer_data
->pid
= 0;
1311 pthread_mutex_unlock(&consumer_data
->lock
);
1313 /* Cleanup metadata socket mutex. */
1314 if (consumer_data
->metadata_sock
.lock
) {
1315 pthread_mutex_destroy(consumer_data
->metadata_sock
.lock
);
1316 free(consumer_data
->metadata_sock
.lock
);
1318 lttng_poll_clean(&events
);
1322 ERR("Health error occurred in %s", __func__
);
1324 health_unregister(health_sessiond
);
1325 DBG("consumer thread cleanup completed");
1331 * This thread manage application communication.
1333 static void *thread_manage_apps(void *data
)
1335 int i
, ret
, pollfd
, err
= -1;
1337 uint32_t revents
, nb_fd
;
1338 struct lttng_poll_event events
;
1340 DBG("[thread] Manage application started");
1342 rcu_register_thread();
1343 rcu_thread_online();
1345 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_APP_MANAGE
);
1347 if (testpoint(sessiond_thread_manage_apps
)) {
1348 goto error_testpoint
;
1351 health_code_update();
1353 ret
= sessiond_set_thread_pollset(&events
, 2);
1355 goto error_poll_create
;
1358 ret
= lttng_poll_add(&events
, apps_cmd_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
1363 if (testpoint(sessiond_thread_manage_apps_before_loop
)) {
1367 health_code_update();
1370 DBG("Apps thread polling on %d fds", LTTNG_POLL_GETNB(&events
));
1372 /* Inifinite blocking call, waiting for transmission */
1374 health_poll_entry();
1375 ret
= lttng_poll_wait(&events
, -1);
1379 * Restart interrupted system call.
1381 if (errno
== EINTR
) {
1389 for (i
= 0; i
< nb_fd
; i
++) {
1390 /* Fetch once the poll data */
1391 revents
= LTTNG_POLL_GETEV(&events
, i
);
1392 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1394 health_code_update();
1396 /* Thread quit pipe has been closed. Killing thread. */
1397 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1403 /* Inspect the apps cmd pipe */
1404 if (pollfd
== apps_cmd_pipe
[0]) {
1405 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1406 ERR("Apps command pipe error");
1408 } else if (revents
& LPOLLIN
) {
1412 size_ret
= lttng_read(apps_cmd_pipe
[0], &sock
, sizeof(sock
));
1413 if (size_ret
< sizeof(sock
)) {
1414 PERROR("read apps cmd pipe");
1418 health_code_update();
1421 * We only monitor the error events of the socket. This
1422 * thread does not handle any incoming data from UST
1425 ret
= lttng_poll_add(&events
, sock
,
1426 LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
);
1431 DBG("Apps with sock %d added to poll set", sock
);
1435 * At this point, we know that a registered application made
1436 * the event at poll_wait.
1438 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1439 /* Removing from the poll set */
1440 ret
= lttng_poll_del(&events
, pollfd
);
1445 /* Socket closed on remote end. */
1446 ust_app_unregister(pollfd
);
1450 health_code_update();
1456 lttng_poll_clean(&events
);
1459 utils_close_pipe(apps_cmd_pipe
);
1460 apps_cmd_pipe
[0] = apps_cmd_pipe
[1] = -1;
1463 * We don't clean the UST app hash table here since already registered
1464 * applications can still be controlled so let them be until the session
1465 * daemon dies or the applications stop.
1470 ERR("Health error occurred in %s", __func__
);
1472 health_unregister(health_sessiond
);
1473 DBG("Application communication apps thread cleanup complete");
1474 rcu_thread_offline();
1475 rcu_unregister_thread();
1480 * Send a socket to a thread This is called from the dispatch UST registration
1481 * thread once all sockets are set for the application.
1483 * The sock value can be invalid, we don't really care, the thread will handle
1484 * it and make the necessary cleanup if so.
1486 * On success, return 0 else a negative value being the errno message of the
1489 static int send_socket_to_thread(int fd
, int sock
)
1494 * It's possible that the FD is set as invalid with -1 concurrently just
1495 * before calling this function being a shutdown state of the thread.
1502 ret
= lttng_write(fd
, &sock
, sizeof(sock
));
1503 if (ret
< sizeof(sock
)) {
1504 PERROR("write apps pipe %d", fd
);
1511 /* All good. Don't send back the write positive ret value. */
1518 * Sanitize the wait queue of the dispatch registration thread meaning removing
1519 * invalid nodes from it. This is to avoid memory leaks for the case the UST
1520 * notify socket is never received.
1522 static void sanitize_wait_queue(struct ust_reg_wait_queue
*wait_queue
)
1524 int ret
, nb_fd
= 0, i
;
1525 unsigned int fd_added
= 0;
1526 struct lttng_poll_event events
;
1527 struct ust_reg_wait_node
*wait_node
= NULL
, *tmp_wait_node
;
1531 lttng_poll_init(&events
);
1533 /* Just skip everything for an empty queue. */
1534 if (!wait_queue
->count
) {
1538 ret
= lttng_poll_create(&events
, wait_queue
->count
, LTTNG_CLOEXEC
);
1543 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1544 &wait_queue
->head
, head
) {
1545 assert(wait_node
->app
);
1546 ret
= lttng_poll_add(&events
, wait_node
->app
->sock
,
1547 LPOLLHUP
| LPOLLERR
);
1560 * Poll but don't block so we can quickly identify the faulty events and
1561 * clean them afterwards from the wait queue.
1563 ret
= lttng_poll_wait(&events
, 0);
1569 for (i
= 0; i
< nb_fd
; i
++) {
1570 /* Get faulty FD. */
1571 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
1572 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1574 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1575 &wait_queue
->head
, head
) {
1576 if (pollfd
== wait_node
->app
->sock
&&
1577 (revents
& (LPOLLHUP
| LPOLLERR
))) {
1578 cds_list_del(&wait_node
->head
);
1579 wait_queue
->count
--;
1580 ust_app_destroy(wait_node
->app
);
1588 DBG("Wait queue sanitized, %d node were cleaned up", nb_fd
);
1592 lttng_poll_clean(&events
);
1596 lttng_poll_clean(&events
);
1598 ERR("Unable to sanitize wait queue");
1603 * Dispatch request from the registration threads to the application
1604 * communication thread.
1606 static void *thread_dispatch_ust_registration(void *data
)
1609 struct cds_wfq_node
*node
;
1610 struct ust_command
*ust_cmd
= NULL
;
1611 struct ust_reg_wait_node
*wait_node
= NULL
, *tmp_wait_node
;
1612 struct ust_reg_wait_queue wait_queue
= {
1616 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_APP_REG_DISPATCH
);
1618 if (testpoint(sessiond_thread_app_reg_dispatch
)) {
1619 goto error_testpoint
;
1622 health_code_update();
1624 CDS_INIT_LIST_HEAD(&wait_queue
.head
);
1626 DBG("[thread] Dispatch UST command started");
1628 while (!CMM_LOAD_SHARED(dispatch_thread_exit
)) {
1629 health_code_update();
1631 /* Atomically prepare the queue futex */
1632 futex_nto1_prepare(&ust_cmd_queue
.futex
);
1635 struct ust_app
*app
= NULL
;
1639 * Make sure we don't have node(s) that have hung up before receiving
1640 * the notify socket. This is to clean the list in order to avoid
1641 * memory leaks from notify socket that are never seen.
1643 sanitize_wait_queue(&wait_queue
);
1645 health_code_update();
1646 /* Dequeue command for registration */
1647 node
= cds_wfq_dequeue_blocking(&ust_cmd_queue
.queue
);
1649 DBG("Woken up but nothing in the UST command queue");
1650 /* Continue thread execution */
1654 ust_cmd
= caa_container_of(node
, struct ust_command
, node
);
1656 DBG("Dispatching UST registration pid:%d ppid:%d uid:%d"
1657 " gid:%d sock:%d name:%s (version %d.%d)",
1658 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1659 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1660 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1661 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1663 if (ust_cmd
->reg_msg
.type
== USTCTL_SOCKET_CMD
) {
1664 wait_node
= zmalloc(sizeof(*wait_node
));
1666 PERROR("zmalloc wait_node dispatch");
1667 ret
= close(ust_cmd
->sock
);
1669 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1671 lttng_fd_put(LTTNG_FD_APPS
, 1);
1675 CDS_INIT_LIST_HEAD(&wait_node
->head
);
1677 /* Create application object if socket is CMD. */
1678 wait_node
->app
= ust_app_create(&ust_cmd
->reg_msg
,
1680 if (!wait_node
->app
) {
1681 ret
= close(ust_cmd
->sock
);
1683 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1685 lttng_fd_put(LTTNG_FD_APPS
, 1);
1691 * Add application to the wait queue so we can set the notify
1692 * socket before putting this object in the global ht.
1694 cds_list_add(&wait_node
->head
, &wait_queue
.head
);
1699 * We have to continue here since we don't have the notify
1700 * socket and the application MUST be added to the hash table
1701 * only at that moment.
1706 * Look for the application in the local wait queue and set the
1707 * notify socket if found.
1709 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1710 &wait_queue
.head
, head
) {
1711 health_code_update();
1712 if (wait_node
->app
->pid
== ust_cmd
->reg_msg
.pid
) {
1713 wait_node
->app
->notify_sock
= ust_cmd
->sock
;
1714 cds_list_del(&wait_node
->head
);
1716 app
= wait_node
->app
;
1718 DBG3("UST app notify socket %d is set", ust_cmd
->sock
);
1724 * With no application at this stage the received socket is
1725 * basically useless so close it before we free the cmd data
1726 * structure for good.
1729 ret
= close(ust_cmd
->sock
);
1731 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1733 lttng_fd_put(LTTNG_FD_APPS
, 1);
1740 * @session_lock_list
1742 * Lock the global session list so from the register up to the
1743 * registration done message, no thread can see the application
1744 * and change its state.
1746 session_lock_list();
1750 * Add application to the global hash table. This needs to be
1751 * done before the update to the UST registry can locate the
1756 /* Set app version. This call will print an error if needed. */
1757 (void) ust_app_version(app
);
1759 /* Send notify socket through the notify pipe. */
1760 ret
= send_socket_to_thread(apps_cmd_notify_pipe
[1],
1764 session_unlock_list();
1766 * No notify thread, stop the UST tracing. However, this is
1767 * not an internal error of the this thread thus setting
1768 * the health error code to a normal exit.
1775 * Update newly registered application with the tracing
1776 * registry info already enabled information.
1778 update_ust_app(app
->sock
);
1781 * Don't care about return value. Let the manage apps threads
1782 * handle app unregistration upon socket close.
1784 (void) ust_app_register_done(app
->sock
);
1787 * Even if the application socket has been closed, send the app
1788 * to the thread and unregistration will take place at that
1791 ret
= send_socket_to_thread(apps_cmd_pipe
[1], app
->sock
);
1794 session_unlock_list();
1796 * No apps. thread, stop the UST tracing. However, this is
1797 * not an internal error of the this thread thus setting
1798 * the health error code to a normal exit.
1805 session_unlock_list();
1807 } while (node
!= NULL
);
1809 health_poll_entry();
1810 /* Futex wait on queue. Blocking call on futex() */
1811 futex_nto1_wait(&ust_cmd_queue
.futex
);
1814 /* Normal exit, no error */
1818 /* Clean up wait queue. */
1819 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1820 &wait_queue
.head
, head
) {
1821 cds_list_del(&wait_node
->head
);
1827 DBG("Dispatch thread dying");
1830 ERR("Health error occurred in %s", __func__
);
1832 health_unregister(health_sessiond
);
1837 * This thread manage application registration.
1839 static void *thread_registration_apps(void *data
)
1841 int sock
= -1, i
, ret
, pollfd
, err
= -1;
1842 uint32_t revents
, nb_fd
;
1843 struct lttng_poll_event events
;
1845 * Get allocated in this thread, enqueued to a global queue, dequeued and
1846 * freed in the manage apps thread.
1848 struct ust_command
*ust_cmd
= NULL
;
1850 DBG("[thread] Manage application registration started");
1852 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_APP_REG
);
1854 if (testpoint(sessiond_thread_registration_apps
)) {
1855 goto error_testpoint
;
1858 ret
= lttcomm_listen_unix_sock(apps_sock
);
1864 * Pass 2 as size here for the thread quit pipe and apps socket. Nothing
1865 * more will be added to this poll set.
1867 ret
= sessiond_set_thread_pollset(&events
, 2);
1869 goto error_create_poll
;
1872 /* Add the application registration socket */
1873 ret
= lttng_poll_add(&events
, apps_sock
, LPOLLIN
| LPOLLRDHUP
);
1875 goto error_poll_add
;
1878 /* Notify all applications to register */
1879 ret
= notify_ust_apps(1);
1881 ERR("Failed to notify applications or create the wait shared memory.\n"
1882 "Execution continues but there might be problem for already\n"
1883 "running applications that wishes to register.");
1887 DBG("Accepting application registration");
1889 /* Inifinite blocking call, waiting for transmission */
1891 health_poll_entry();
1892 ret
= lttng_poll_wait(&events
, -1);
1896 * Restart interrupted system call.
1898 if (errno
== EINTR
) {
1906 for (i
= 0; i
< nb_fd
; i
++) {
1907 health_code_update();
1909 /* Fetch once the poll data */
1910 revents
= LTTNG_POLL_GETEV(&events
, i
);
1911 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1913 /* Thread quit pipe has been closed. Killing thread. */
1914 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1920 /* Event on the registration socket */
1921 if (pollfd
== apps_sock
) {
1922 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1923 ERR("Register apps socket poll error");
1925 } else if (revents
& LPOLLIN
) {
1926 sock
= lttcomm_accept_unix_sock(apps_sock
);
1932 * Set socket timeout for both receiving and ending.
1933 * app_socket_timeout is in seconds, whereas
1934 * lttcomm_setsockopt_rcv_timeout and
1935 * lttcomm_setsockopt_snd_timeout expect msec as
1938 (void) lttcomm_setsockopt_rcv_timeout(sock
,
1939 app_socket_timeout
* 1000);
1940 (void) lttcomm_setsockopt_snd_timeout(sock
,
1941 app_socket_timeout
* 1000);
1944 * Set the CLOEXEC flag. Return code is useless because
1945 * either way, the show must go on.
1947 (void) utils_set_fd_cloexec(sock
);
1949 /* Create UST registration command for enqueuing */
1950 ust_cmd
= zmalloc(sizeof(struct ust_command
));
1951 if (ust_cmd
== NULL
) {
1952 PERROR("ust command zmalloc");
1957 * Using message-based transmissions to ensure we don't
1958 * have to deal with partially received messages.
1960 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
1962 ERR("Exhausted file descriptors allowed for applications.");
1972 health_code_update();
1973 ret
= ust_app_recv_registration(sock
, &ust_cmd
->reg_msg
);
1976 /* Close socket of the application. */
1981 lttng_fd_put(LTTNG_FD_APPS
, 1);
1985 health_code_update();
1987 ust_cmd
->sock
= sock
;
1990 DBG("UST registration received with pid:%d ppid:%d uid:%d"
1991 " gid:%d sock:%d name:%s (version %d.%d)",
1992 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1993 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1994 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1995 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1998 * Lock free enqueue the registration request. The red pill
1999 * has been taken! This apps will be part of the *system*.
2001 cds_wfq_enqueue(&ust_cmd_queue
.queue
, &ust_cmd
->node
);
2004 * Wake the registration queue futex. Implicit memory
2005 * barrier with the exchange in cds_wfq_enqueue.
2007 futex_nto1_wake(&ust_cmd_queue
.futex
);
2015 /* Notify that the registration thread is gone */
2018 if (apps_sock
>= 0) {
2019 ret
= close(apps_sock
);
2029 lttng_fd_put(LTTNG_FD_APPS
, 1);
2031 unlink(apps_unix_sock_path
);
2034 lttng_poll_clean(&events
);
2038 DBG("UST Registration thread cleanup complete");
2041 ERR("Health error occurred in %s", __func__
);
2043 health_unregister(health_sessiond
);
2049 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
2050 * exec or it will fails.
2052 static int spawn_consumer_thread(struct consumer_data
*consumer_data
)
2055 struct timespec timeout
;
2057 /* Make sure we set the readiness flag to 0 because we are NOT ready */
2058 consumer_data
->consumer_thread_is_ready
= 0;
2060 /* Setup pthread condition */
2061 ret
= pthread_condattr_init(&consumer_data
->condattr
);
2064 PERROR("pthread_condattr_init consumer data");
2069 * Set the monotonic clock in order to make sure we DO NOT jump in time
2070 * between the clock_gettime() call and the timedwait call. See bug #324
2071 * for a more details and how we noticed it.
2073 ret
= pthread_condattr_setclock(&consumer_data
->condattr
, CLOCK_MONOTONIC
);
2076 PERROR("pthread_condattr_setclock consumer data");
2080 ret
= pthread_cond_init(&consumer_data
->cond
, &consumer_data
->condattr
);
2083 PERROR("pthread_cond_init consumer data");
2087 ret
= pthread_create(&consumer_data
->thread
, NULL
, thread_manage_consumer
,
2090 PERROR("pthread_create consumer");
2095 /* We are about to wait on a pthread condition */
2096 pthread_mutex_lock(&consumer_data
->cond_mutex
);
2098 /* Get time for sem_timedwait absolute timeout */
2099 clock_ret
= clock_gettime(CLOCK_MONOTONIC
, &timeout
);
2101 * Set the timeout for the condition timed wait even if the clock gettime
2102 * call fails since we might loop on that call and we want to avoid to
2103 * increment the timeout too many times.
2105 timeout
.tv_sec
+= DEFAULT_SEM_WAIT_TIMEOUT
;
2108 * The following loop COULD be skipped in some conditions so this is why we
2109 * set ret to 0 in order to make sure at least one round of the loop is
2115 * Loop until the condition is reached or when a timeout is reached. Note
2116 * that the pthread_cond_timedwait(P) man page specifies that EINTR can NOT
2117 * be returned but the pthread_cond(3), from the glibc-doc, says that it is
2118 * possible. This loop does not take any chances and works with both of
2121 while (!consumer_data
->consumer_thread_is_ready
&& ret
!= ETIMEDOUT
) {
2122 if (clock_ret
< 0) {
2123 PERROR("clock_gettime spawn consumer");
2124 /* Infinite wait for the consumerd thread to be ready */
2125 ret
= pthread_cond_wait(&consumer_data
->cond
,
2126 &consumer_data
->cond_mutex
);
2128 ret
= pthread_cond_timedwait(&consumer_data
->cond
,
2129 &consumer_data
->cond_mutex
, &timeout
);
2133 /* Release the pthread condition */
2134 pthread_mutex_unlock(&consumer_data
->cond_mutex
);
2138 if (ret
== ETIMEDOUT
) {
2142 * Call has timed out so we kill the kconsumerd_thread and return
2145 ERR("Condition timed out. The consumer thread was never ready."
2147 pth_ret
= pthread_cancel(consumer_data
->thread
);
2149 PERROR("pthread_cancel consumer thread");
2152 PERROR("pthread_cond_wait failed consumer thread");
2154 /* Caller is expecting a negative value on failure. */
2159 pthread_mutex_lock(&consumer_data
->pid_mutex
);
2160 if (consumer_data
->pid
== 0) {
2161 ERR("Consumerd did not start");
2162 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2165 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2174 * Join consumer thread
2176 static int join_consumer_thread(struct consumer_data
*consumer_data
)
2180 /* Consumer pid must be a real one. */
2181 if (consumer_data
->pid
> 0) {
2183 ret
= kill(consumer_data
->pid
, SIGTERM
);
2185 ERR("Error killing consumer daemon");
2188 return pthread_join(consumer_data
->thread
, &status
);
2195 * Fork and exec a consumer daemon (consumerd).
2197 * Return pid if successful else -1.
2199 static pid_t
spawn_consumerd(struct consumer_data
*consumer_data
)
2203 const char *consumer_to_use
;
2204 const char *verbosity
;
2207 DBG("Spawning consumerd");
2214 if (opt_verbose_consumer
) {
2215 verbosity
= "--verbose";
2217 verbosity
= "--quiet";
2219 switch (consumer_data
->type
) {
2220 case LTTNG_CONSUMER_KERNEL
:
2222 * Find out which consumerd to execute. We will first try the
2223 * 64-bit path, then the sessiond's installation directory, and
2224 * fallback on the 32-bit one,
2226 DBG3("Looking for a kernel consumer at these locations:");
2227 DBG3(" 1) %s", consumerd64_bin
);
2228 DBG3(" 2) %s/%s", INSTALL_BIN_PATH
, CONSUMERD_FILE
);
2229 DBG3(" 3) %s", consumerd32_bin
);
2230 if (stat(consumerd64_bin
, &st
) == 0) {
2231 DBG3("Found location #1");
2232 consumer_to_use
= consumerd64_bin
;
2233 } else if (stat(INSTALL_BIN_PATH
"/" CONSUMERD_FILE
, &st
) == 0) {
2234 DBG3("Found location #2");
2235 consumer_to_use
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
2236 } else if (stat(consumerd32_bin
, &st
) == 0) {
2237 DBG3("Found location #3");
2238 consumer_to_use
= consumerd32_bin
;
2240 DBG("Could not find any valid consumerd executable");
2244 DBG("Using kernel consumer at: %s", consumer_to_use
);
2245 ret
= execl(consumer_to_use
,
2246 "lttng-consumerd", verbosity
, "-k",
2247 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2248 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2249 "--group", tracing_group_name
,
2252 case LTTNG_CONSUMER64_UST
:
2254 char *tmpnew
= NULL
;
2256 if (consumerd64_libdir
[0] != '\0') {
2260 tmp
= getenv("LD_LIBRARY_PATH");
2264 tmplen
= strlen("LD_LIBRARY_PATH=")
2265 + strlen(consumerd64_libdir
) + 1 /* : */ + strlen(tmp
);
2266 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
2271 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
2272 strcat(tmpnew
, consumerd64_libdir
);
2273 if (tmp
[0] != '\0') {
2274 strcat(tmpnew
, ":");
2275 strcat(tmpnew
, tmp
);
2277 ret
= putenv(tmpnew
);
2284 DBG("Using 64-bit UST consumer at: %s", consumerd64_bin
);
2285 ret
= execl(consumerd64_bin
, "lttng-consumerd", verbosity
, "-u",
2286 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2287 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2288 "--group", tracing_group_name
,
2290 if (consumerd64_libdir
[0] != '\0') {
2295 case LTTNG_CONSUMER32_UST
:
2297 char *tmpnew
= NULL
;
2299 if (consumerd32_libdir
[0] != '\0') {
2303 tmp
= getenv("LD_LIBRARY_PATH");
2307 tmplen
= strlen("LD_LIBRARY_PATH=")
2308 + strlen(consumerd32_libdir
) + 1 /* : */ + strlen(tmp
);
2309 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
2314 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
2315 strcat(tmpnew
, consumerd32_libdir
);
2316 if (tmp
[0] != '\0') {
2317 strcat(tmpnew
, ":");
2318 strcat(tmpnew
, tmp
);
2320 ret
= putenv(tmpnew
);
2327 DBG("Using 32-bit UST consumer at: %s", consumerd32_bin
);
2328 ret
= execl(consumerd32_bin
, "lttng-consumerd", verbosity
, "-u",
2329 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2330 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2331 "--group", tracing_group_name
,
2333 if (consumerd32_libdir
[0] != '\0') {
2339 PERROR("unknown consumer type");
2343 PERROR("Consumer execl()");
2345 /* Reaching this point, we got a failure on our execl(). */
2347 } else if (pid
> 0) {
2350 PERROR("start consumer fork");
2358 * Spawn the consumerd daemon and session daemon thread.
2360 static int start_consumerd(struct consumer_data
*consumer_data
)
2365 * Set the listen() state on the socket since there is a possible race
2366 * between the exec() of the consumer daemon and this call if place in the
2367 * consumer thread. See bug #366 for more details.
2369 ret
= lttcomm_listen_unix_sock(consumer_data
->err_sock
);
2374 pthread_mutex_lock(&consumer_data
->pid_mutex
);
2375 if (consumer_data
->pid
!= 0) {
2376 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2380 ret
= spawn_consumerd(consumer_data
);
2382 ERR("Spawning consumerd failed");
2383 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2387 /* Setting up the consumer_data pid */
2388 consumer_data
->pid
= ret
;
2389 DBG2("Consumer pid %d", consumer_data
->pid
);
2390 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2392 DBG2("Spawning consumer control thread");
2393 ret
= spawn_consumer_thread(consumer_data
);
2395 ERR("Fatal error spawning consumer control thread");
2403 /* Cleanup already created sockets on error. */
2404 if (consumer_data
->err_sock
>= 0) {
2407 err
= close(consumer_data
->err_sock
);
2409 PERROR("close consumer data error socket");
2416 * Setup necessary data for kernel tracer action.
2418 static int init_kernel_tracer(void)
2422 /* Modprobe lttng kernel modules */
2423 ret
= modprobe_lttng_control();
2428 /* Open debugfs lttng */
2429 kernel_tracer_fd
= open(module_proc_lttng
, O_RDWR
);
2430 if (kernel_tracer_fd
< 0) {
2431 DBG("Failed to open %s", module_proc_lttng
);
2436 /* Validate kernel version */
2437 ret
= kernel_validate_version(kernel_tracer_fd
);
2442 ret
= modprobe_lttng_data();
2447 DBG("Kernel tracer fd %d", kernel_tracer_fd
);
2451 modprobe_remove_lttng_control();
2452 ret
= close(kernel_tracer_fd
);
2456 kernel_tracer_fd
= -1;
2457 return LTTNG_ERR_KERN_VERSION
;
2460 ret
= close(kernel_tracer_fd
);
2466 modprobe_remove_lttng_control();
2469 WARN("No kernel tracer available");
2470 kernel_tracer_fd
= -1;
2472 return LTTNG_ERR_NEED_ROOT_SESSIOND
;
2474 return LTTNG_ERR_KERN_NA
;
2480 * Copy consumer output from the tracing session to the domain session. The
2481 * function also applies the right modification on a per domain basis for the
2482 * trace files destination directory.
2484 * Should *NOT* be called with RCU read-side lock held.
2486 static int copy_session_consumer(int domain
, struct ltt_session
*session
)
2489 const char *dir_name
;
2490 struct consumer_output
*consumer
;
2493 assert(session
->consumer
);
2496 case LTTNG_DOMAIN_KERNEL
:
2497 DBG3("Copying tracing session consumer output in kernel session");
2499 * XXX: We should audit the session creation and what this function
2500 * does "extra" in order to avoid a destroy since this function is used
2501 * in the domain session creation (kernel and ust) only. Same for UST
2504 if (session
->kernel_session
->consumer
) {
2505 consumer_destroy_output(session
->kernel_session
->consumer
);
2507 session
->kernel_session
->consumer
=
2508 consumer_copy_output(session
->consumer
);
2509 /* Ease our life a bit for the next part */
2510 consumer
= session
->kernel_session
->consumer
;
2511 dir_name
= DEFAULT_KERNEL_TRACE_DIR
;
2513 case LTTNG_DOMAIN_JUL
:
2514 case LTTNG_DOMAIN_UST
:
2515 DBG3("Copying tracing session consumer output in UST session");
2516 if (session
->ust_session
->consumer
) {
2517 consumer_destroy_output(session
->ust_session
->consumer
);
2519 session
->ust_session
->consumer
=
2520 consumer_copy_output(session
->consumer
);
2521 /* Ease our life a bit for the next part */
2522 consumer
= session
->ust_session
->consumer
;
2523 dir_name
= DEFAULT_UST_TRACE_DIR
;
2526 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2530 /* Append correct directory to subdir */
2531 strncat(consumer
->subdir
, dir_name
,
2532 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
2533 DBG3("Copy session consumer subdir %s", consumer
->subdir
);
2542 * Create an UST session and add it to the session ust list.
2544 * Should *NOT* be called with RCU read-side lock held.
2546 static int create_ust_session(struct ltt_session
*session
,
2547 struct lttng_domain
*domain
)
2550 struct ltt_ust_session
*lus
= NULL
;
2554 assert(session
->consumer
);
2556 switch (domain
->type
) {
2557 case LTTNG_DOMAIN_JUL
:
2558 case LTTNG_DOMAIN_UST
:
2561 ERR("Unknown UST domain on create session %d", domain
->type
);
2562 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2566 DBG("Creating UST session");
2568 lus
= trace_ust_create_session(session
->id
);
2570 ret
= LTTNG_ERR_UST_SESS_FAIL
;
2574 lus
->uid
= session
->uid
;
2575 lus
->gid
= session
->gid
;
2576 lus
->output_traces
= session
->output_traces
;
2577 lus
->snapshot_mode
= session
->snapshot_mode
;
2578 lus
->live_timer_interval
= session
->live_timer
;
2579 session
->ust_session
= lus
;
2581 /* Copy session output to the newly created UST session */
2582 ret
= copy_session_consumer(domain
->type
, session
);
2583 if (ret
!= LTTNG_OK
) {
2591 session
->ust_session
= NULL
;
2596 * Create a kernel tracer session then create the default channel.
2598 static int create_kernel_session(struct ltt_session
*session
)
2602 DBG("Creating kernel session");
2604 ret
= kernel_create_session(session
, kernel_tracer_fd
);
2606 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
2610 /* Code flow safety */
2611 assert(session
->kernel_session
);
2613 /* Copy session output to the newly created Kernel session */
2614 ret
= copy_session_consumer(LTTNG_DOMAIN_KERNEL
, session
);
2615 if (ret
!= LTTNG_OK
) {
2619 /* Create directory(ies) on local filesystem. */
2620 if (session
->kernel_session
->consumer
->type
== CONSUMER_DST_LOCAL
&&
2621 strlen(session
->kernel_session
->consumer
->dst
.trace_path
) > 0) {
2622 ret
= run_as_mkdir_recursive(
2623 session
->kernel_session
->consumer
->dst
.trace_path
,
2624 S_IRWXU
| S_IRWXG
, session
->uid
, session
->gid
);
2626 if (ret
!= -EEXIST
) {
2627 ERR("Trace directory creation error");
2633 session
->kernel_session
->uid
= session
->uid
;
2634 session
->kernel_session
->gid
= session
->gid
;
2635 session
->kernel_session
->output_traces
= session
->output_traces
;
2636 session
->kernel_session
->snapshot_mode
= session
->snapshot_mode
;
2641 trace_kernel_destroy_session(session
->kernel_session
);
2642 session
->kernel_session
= NULL
;
2647 * Count number of session permitted by uid/gid.
2649 static unsigned int lttng_sessions_count(uid_t uid
, gid_t gid
)
2652 struct ltt_session
*session
;
2654 DBG("Counting number of available session for UID %d GID %d",
2656 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
2658 * Only list the sessions the user can control.
2660 if (!session_access_ok(session
, uid
, gid
)) {
2669 * Process the command requested by the lttng client within the command
2670 * context structure. This function make sure that the return structure (llm)
2671 * is set and ready for transmission before returning.
2673 * Return any error encountered or 0 for success.
2675 * "sock" is only used for special-case var. len data.
2677 * Should *NOT* be called with RCU read-side lock held.
2679 static int process_client_msg(struct command_ctx
*cmd_ctx
, int sock
,
2683 int need_tracing_session
= 1;
2686 DBG("Processing client command %d", cmd_ctx
->lsm
->cmd_type
);
2690 switch (cmd_ctx
->lsm
->cmd_type
) {
2691 case LTTNG_CREATE_SESSION
:
2692 case LTTNG_CREATE_SESSION_SNAPSHOT
:
2693 case LTTNG_CREATE_SESSION_LIVE
:
2694 case LTTNG_DESTROY_SESSION
:
2695 case LTTNG_LIST_SESSIONS
:
2696 case LTTNG_LIST_DOMAINS
:
2697 case LTTNG_START_TRACE
:
2698 case LTTNG_STOP_TRACE
:
2699 case LTTNG_DATA_PENDING
:
2700 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
2701 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
2702 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
2703 case LTTNG_SNAPSHOT_RECORD
:
2710 if (opt_no_kernel
&& need_domain
2711 && cmd_ctx
->lsm
->domain
.type
== LTTNG_DOMAIN_KERNEL
) {
2713 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
2715 ret
= LTTNG_ERR_KERN_NA
;
2720 /* Deny register consumer if we already have a spawned consumer. */
2721 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_REGISTER_CONSUMER
) {
2722 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
2723 if (kconsumer_data
.pid
> 0) {
2724 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2725 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2728 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2732 * Check for command that don't needs to allocate a returned payload. We do
2733 * this here so we don't have to make the call for no payload at each
2736 switch(cmd_ctx
->lsm
->cmd_type
) {
2737 case LTTNG_LIST_SESSIONS
:
2738 case LTTNG_LIST_TRACEPOINTS
:
2739 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2740 case LTTNG_LIST_DOMAINS
:
2741 case LTTNG_LIST_CHANNELS
:
2742 case LTTNG_LIST_EVENTS
:
2745 /* Setup lttng message with no payload */
2746 ret
= setup_lttng_msg(cmd_ctx
, 0);
2748 /* This label does not try to unlock the session */
2749 goto init_setup_error
;
2753 /* Commands that DO NOT need a session. */
2754 switch (cmd_ctx
->lsm
->cmd_type
) {
2755 case LTTNG_CREATE_SESSION
:
2756 case LTTNG_CREATE_SESSION_SNAPSHOT
:
2757 case LTTNG_CREATE_SESSION_LIVE
:
2758 case LTTNG_CALIBRATE
:
2759 case LTTNG_LIST_SESSIONS
:
2760 case LTTNG_LIST_TRACEPOINTS
:
2761 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2762 need_tracing_session
= 0;
2765 DBG("Getting session %s by name", cmd_ctx
->lsm
->session
.name
);
2767 * We keep the session list lock across _all_ commands
2768 * for now, because the per-session lock does not
2769 * handle teardown properly.
2771 session_lock_list();
2772 cmd_ctx
->session
= session_find_by_name(cmd_ctx
->lsm
->session
.name
);
2773 if (cmd_ctx
->session
== NULL
) {
2774 ret
= LTTNG_ERR_SESS_NOT_FOUND
;
2777 /* Acquire lock for the session */
2778 session_lock(cmd_ctx
->session
);
2788 * Check domain type for specific "pre-action".
2790 switch (cmd_ctx
->lsm
->domain
.type
) {
2791 case LTTNG_DOMAIN_KERNEL
:
2793 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
2797 /* Kernel tracer check */
2798 if (kernel_tracer_fd
== -1) {
2799 /* Basically, load kernel tracer modules */
2800 ret
= init_kernel_tracer();
2806 /* Consumer is in an ERROR state. Report back to client */
2807 if (uatomic_read(&kernel_consumerd_state
) == CONSUMER_ERROR
) {
2808 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
2812 /* Need a session for kernel command */
2813 if (need_tracing_session
) {
2814 if (cmd_ctx
->session
->kernel_session
== NULL
) {
2815 ret
= create_kernel_session(cmd_ctx
->session
);
2817 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
2822 /* Start the kernel consumer daemon */
2823 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
2824 if (kconsumer_data
.pid
== 0 &&
2825 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2826 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2827 ret
= start_consumerd(&kconsumer_data
);
2829 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2832 uatomic_set(&kernel_consumerd_state
, CONSUMER_STARTED
);
2834 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2838 * The consumer was just spawned so we need to add the socket to
2839 * the consumer output of the session if exist.
2841 ret
= consumer_create_socket(&kconsumer_data
,
2842 cmd_ctx
->session
->kernel_session
->consumer
);
2849 case LTTNG_DOMAIN_JUL
:
2850 case LTTNG_DOMAIN_UST
:
2852 if (!ust_app_supported()) {
2853 ret
= LTTNG_ERR_NO_UST
;
2856 /* Consumer is in an ERROR state. Report back to client */
2857 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
2858 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
2862 if (need_tracing_session
) {
2863 /* Create UST session if none exist. */
2864 if (cmd_ctx
->session
->ust_session
== NULL
) {
2865 ret
= create_ust_session(cmd_ctx
->session
,
2866 &cmd_ctx
->lsm
->domain
);
2867 if (ret
!= LTTNG_OK
) {
2872 /* Start the UST consumer daemons */
2874 pthread_mutex_lock(&ustconsumer64_data
.pid_mutex
);
2875 if (consumerd64_bin
[0] != '\0' &&
2876 ustconsumer64_data
.pid
== 0 &&
2877 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2878 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
2879 ret
= start_consumerd(&ustconsumer64_data
);
2881 ret
= LTTNG_ERR_UST_CONSUMER64_FAIL
;
2882 uatomic_set(&ust_consumerd64_fd
, -EINVAL
);
2886 uatomic_set(&ust_consumerd64_fd
, ustconsumer64_data
.cmd_sock
);
2887 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
2889 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
2893 * Setup socket for consumer 64 bit. No need for atomic access
2894 * since it was set above and can ONLY be set in this thread.
2896 ret
= consumer_create_socket(&ustconsumer64_data
,
2897 cmd_ctx
->session
->ust_session
->consumer
);
2903 pthread_mutex_lock(&ustconsumer32_data
.pid_mutex
);
2904 if (consumerd32_bin
[0] != '\0' &&
2905 ustconsumer32_data
.pid
== 0 &&
2906 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2907 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
2908 ret
= start_consumerd(&ustconsumer32_data
);
2910 ret
= LTTNG_ERR_UST_CONSUMER32_FAIL
;
2911 uatomic_set(&ust_consumerd32_fd
, -EINVAL
);
2915 uatomic_set(&ust_consumerd32_fd
, ustconsumer32_data
.cmd_sock
);
2916 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
2918 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
2922 * Setup socket for consumer 64 bit. No need for atomic access
2923 * since it was set above and can ONLY be set in this thread.
2925 ret
= consumer_create_socket(&ustconsumer32_data
,
2926 cmd_ctx
->session
->ust_session
->consumer
);
2938 /* Validate consumer daemon state when start/stop trace command */
2939 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_START_TRACE
||
2940 cmd_ctx
->lsm
->cmd_type
== LTTNG_STOP_TRACE
) {
2941 switch (cmd_ctx
->lsm
->domain
.type
) {
2942 case LTTNG_DOMAIN_JUL
:
2943 case LTTNG_DOMAIN_UST
:
2944 if (uatomic_read(&ust_consumerd_state
) != CONSUMER_STARTED
) {
2945 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
2949 case LTTNG_DOMAIN_KERNEL
:
2950 if (uatomic_read(&kernel_consumerd_state
) != CONSUMER_STARTED
) {
2951 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
2959 * Check that the UID or GID match that of the tracing session.
2960 * The root user can interact with all sessions.
2962 if (need_tracing_session
) {
2963 if (!session_access_ok(cmd_ctx
->session
,
2964 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
2965 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
))) {
2966 ret
= LTTNG_ERR_EPERM
;
2972 * Send relayd information to consumer as soon as we have a domain and a
2975 if (cmd_ctx
->session
&& need_domain
) {
2977 * Setup relayd if not done yet. If the relayd information was already
2978 * sent to the consumer, this call will gracefully return.
2980 ret
= cmd_setup_relayd(cmd_ctx
->session
);
2981 if (ret
!= LTTNG_OK
) {
2986 /* Process by command type */
2987 switch (cmd_ctx
->lsm
->cmd_type
) {
2988 case LTTNG_ADD_CONTEXT
:
2990 ret
= cmd_add_context(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2991 cmd_ctx
->lsm
->u
.context
.channel_name
,
2992 &cmd_ctx
->lsm
->u
.context
.ctx
, kernel_poll_pipe
[1]);
2995 case LTTNG_DISABLE_CHANNEL
:
2997 ret
= cmd_disable_channel(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2998 cmd_ctx
->lsm
->u
.disable
.channel_name
);
3001 case LTTNG_DISABLE_EVENT
:
3003 ret
= cmd_disable_event(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
3004 cmd_ctx
->lsm
->u
.disable
.channel_name
,
3005 cmd_ctx
->lsm
->u
.disable
.name
);
3008 case LTTNG_DISABLE_ALL_EVENT
:
3010 DBG("Disabling all events");
3012 ret
= cmd_disable_event_all(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
3013 cmd_ctx
->lsm
->u
.disable
.channel_name
);
3016 case LTTNG_ENABLE_CHANNEL
:
3018 ret
= cmd_enable_channel(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
3019 &cmd_ctx
->lsm
->u
.channel
.chan
, kernel_poll_pipe
[1]);
3022 case LTTNG_ENABLE_EVENT
:
3024 struct lttng_event_exclusion
*exclusion
= NULL
;
3025 struct lttng_filter_bytecode
*bytecode
= NULL
;
3027 /* Handle exclusion events and receive it from the client. */
3028 if (cmd_ctx
->lsm
->u
.enable
.exclusion_count
> 0) {
3029 size_t count
= cmd_ctx
->lsm
->u
.enable
.exclusion_count
;
3031 exclusion
= zmalloc(sizeof(struct lttng_event_exclusion
) +
3032 (count
* LTTNG_SYMBOL_NAME_LEN
));
3034 ret
= LTTNG_ERR_EXCLUSION_NOMEM
;
3038 DBG("Receiving var len exclusion event list from client ...");
3039 exclusion
->count
= count
;
3040 ret
= lttcomm_recv_unix_sock(sock
, exclusion
->names
,
3041 count
* LTTNG_SYMBOL_NAME_LEN
);
3043 DBG("Nothing recv() from client var len data... continuing");
3046 ret
= LTTNG_ERR_EXCLUSION_INVAL
;
3051 /* Handle filter and get bytecode from client. */
3052 if (cmd_ctx
->lsm
->u
.enable
.bytecode_len
> 0) {
3053 size_t bytecode_len
= cmd_ctx
->lsm
->u
.enable
.bytecode_len
;
3055 if (bytecode_len
> LTTNG_FILTER_MAX_LEN
) {
3056 ret
= LTTNG_ERR_FILTER_INVAL
;
3061 bytecode
= zmalloc(bytecode_len
);
3064 ret
= LTTNG_ERR_FILTER_NOMEM
;
3068 /* Receive var. len. data */
3069 DBG("Receiving var len filter's bytecode from client ...");
3070 ret
= lttcomm_recv_unix_sock(sock
, bytecode
, bytecode_len
);
3072 DBG("Nothing recv() from client car len data... continuing");
3076 ret
= LTTNG_ERR_FILTER_INVAL
;
3080 if ((bytecode
->len
+ sizeof(*bytecode
)) != bytecode_len
) {
3083 ret
= LTTNG_ERR_FILTER_INVAL
;
3088 ret
= cmd_enable_event(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
3089 cmd_ctx
->lsm
->u
.enable
.channel_name
,
3090 &cmd_ctx
->lsm
->u
.enable
.event
, bytecode
, exclusion
,
3091 kernel_poll_pipe
[1]);
3094 case LTTNG_ENABLE_ALL_EVENT
:
3096 DBG("Enabling all events");
3098 ret
= cmd_enable_event_all(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
3099 cmd_ctx
->lsm
->u
.enable
.channel_name
,
3100 cmd_ctx
->lsm
->u
.enable
.event
.type
, NULL
, kernel_poll_pipe
[1]);
3103 case LTTNG_LIST_TRACEPOINTS
:
3105 struct lttng_event
*events
;
3108 session_lock_list();
3109 nb_events
= cmd_list_tracepoints(cmd_ctx
->lsm
->domain
.type
, &events
);
3110 session_unlock_list();
3111 if (nb_events
< 0) {
3112 /* Return value is a negative lttng_error_code. */
3118 * Setup lttng message with payload size set to the event list size in
3119 * bytes and then copy list into the llm payload.
3121 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_event
) * nb_events
);
3127 /* Copy event list into message payload */
3128 memcpy(cmd_ctx
->llm
->payload
, events
,
3129 sizeof(struct lttng_event
) * nb_events
);
3136 case LTTNG_LIST_TRACEPOINT_FIELDS
:
3138 struct lttng_event_field
*fields
;
3141 session_lock_list();
3142 nb_fields
= cmd_list_tracepoint_fields(cmd_ctx
->lsm
->domain
.type
,
3144 session_unlock_list();
3145 if (nb_fields
< 0) {
3146 /* Return value is a negative lttng_error_code. */
3152 * Setup lttng message with payload size set to the event list size in
3153 * bytes and then copy list into the llm payload.
3155 ret
= setup_lttng_msg(cmd_ctx
,
3156 sizeof(struct lttng_event_field
) * nb_fields
);
3162 /* Copy event list into message payload */
3163 memcpy(cmd_ctx
->llm
->payload
, fields
,
3164 sizeof(struct lttng_event_field
) * nb_fields
);
3171 case LTTNG_SET_CONSUMER_URI
:
3174 struct lttng_uri
*uris
;
3176 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3177 len
= nb_uri
* sizeof(struct lttng_uri
);
3180 ret
= LTTNG_ERR_INVALID
;
3184 uris
= zmalloc(len
);
3186 ret
= LTTNG_ERR_FATAL
;
3190 /* Receive variable len data */
3191 DBG("Receiving %zu URI(s) from client ...", nb_uri
);
3192 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3194 DBG("No URIs received from client... continuing");
3196 ret
= LTTNG_ERR_SESSION_FAIL
;
3201 ret
= cmd_set_consumer_uri(cmd_ctx
->lsm
->domain
.type
, cmd_ctx
->session
,
3203 if (ret
!= LTTNG_OK
) {
3209 * XXX: 0 means that this URI should be applied on the session. Should
3210 * be a DOMAIN enuam.
3212 if (cmd_ctx
->lsm
->domain
.type
== 0) {
3213 /* Add the URI for the UST session if a consumer is present. */
3214 if (cmd_ctx
->session
->ust_session
&&
3215 cmd_ctx
->session
->ust_session
->consumer
) {
3216 ret
= cmd_set_consumer_uri(LTTNG_DOMAIN_UST
, cmd_ctx
->session
,
3218 } else if (cmd_ctx
->session
->kernel_session
&&
3219 cmd_ctx
->session
->kernel_session
->consumer
) {
3220 ret
= cmd_set_consumer_uri(LTTNG_DOMAIN_KERNEL
,
3221 cmd_ctx
->session
, nb_uri
, uris
);
3229 case LTTNG_START_TRACE
:
3231 ret
= cmd_start_trace(cmd_ctx
->session
);
3234 case LTTNG_STOP_TRACE
:
3236 ret
= cmd_stop_trace(cmd_ctx
->session
);
3239 case LTTNG_CREATE_SESSION
:
3242 struct lttng_uri
*uris
= NULL
;
3244 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3245 len
= nb_uri
* sizeof(struct lttng_uri
);
3248 uris
= zmalloc(len
);
3250 ret
= LTTNG_ERR_FATAL
;
3254 /* Receive variable len data */
3255 DBG("Waiting for %zu URIs from client ...", nb_uri
);
3256 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3258 DBG("No URIs received from client... continuing");
3260 ret
= LTTNG_ERR_SESSION_FAIL
;
3265 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
3266 DBG("Creating session with ONE network URI is a bad call");
3267 ret
= LTTNG_ERR_SESSION_FAIL
;
3273 ret
= cmd_create_session_uri(cmd_ctx
->lsm
->session
.name
, uris
, nb_uri
,
3274 &cmd_ctx
->creds
, 0);
3280 case LTTNG_DESTROY_SESSION
:
3282 ret
= cmd_destroy_session(cmd_ctx
->session
, kernel_poll_pipe
[1]);
3284 /* Set session to NULL so we do not unlock it after free. */
3285 cmd_ctx
->session
= NULL
;
3288 case LTTNG_LIST_DOMAINS
:
3291 struct lttng_domain
*domains
;
3293 nb_dom
= cmd_list_domains(cmd_ctx
->session
, &domains
);
3295 /* Return value is a negative lttng_error_code. */
3300 ret
= setup_lttng_msg(cmd_ctx
, nb_dom
* sizeof(struct lttng_domain
));
3306 /* Copy event list into message payload */
3307 memcpy(cmd_ctx
->llm
->payload
, domains
,
3308 nb_dom
* sizeof(struct lttng_domain
));
3315 case LTTNG_LIST_CHANNELS
:
3318 struct lttng_channel
*channels
= NULL
;
3320 nb_chan
= cmd_list_channels(cmd_ctx
->lsm
->domain
.type
,
3321 cmd_ctx
->session
, &channels
);
3323 /* Return value is a negative lttng_error_code. */
3328 ret
= setup_lttng_msg(cmd_ctx
, nb_chan
* sizeof(struct lttng_channel
));
3334 /* Copy event list into message payload */
3335 memcpy(cmd_ctx
->llm
->payload
, channels
,
3336 nb_chan
* sizeof(struct lttng_channel
));
3343 case LTTNG_LIST_EVENTS
:
3346 struct lttng_event
*events
= NULL
;
3348 nb_event
= cmd_list_events(cmd_ctx
->lsm
->domain
.type
, cmd_ctx
->session
,
3349 cmd_ctx
->lsm
->u
.list
.channel_name
, &events
);
3351 /* Return value is a negative lttng_error_code. */
3356 ret
= setup_lttng_msg(cmd_ctx
, nb_event
* sizeof(struct lttng_event
));
3362 /* Copy event list into message payload */
3363 memcpy(cmd_ctx
->llm
->payload
, events
,
3364 nb_event
* sizeof(struct lttng_event
));
3371 case LTTNG_LIST_SESSIONS
:
3373 unsigned int nr_sessions
;
3375 session_lock_list();
3376 nr_sessions
= lttng_sessions_count(
3377 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
3378 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
3380 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_session
) * nr_sessions
);
3382 session_unlock_list();
3386 /* Filled the session array */
3387 cmd_list_lttng_sessions((struct lttng_session
*)(cmd_ctx
->llm
->payload
),
3388 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
3389 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
3391 session_unlock_list();
3396 case LTTNG_CALIBRATE
:
3398 ret
= cmd_calibrate(cmd_ctx
->lsm
->domain
.type
,
3399 &cmd_ctx
->lsm
->u
.calibrate
);
3402 case LTTNG_REGISTER_CONSUMER
:
3404 struct consumer_data
*cdata
;
3406 switch (cmd_ctx
->lsm
->domain
.type
) {
3407 case LTTNG_DOMAIN_KERNEL
:
3408 cdata
= &kconsumer_data
;
3411 ret
= LTTNG_ERR_UND
;
3415 ret
= cmd_register_consumer(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
3416 cmd_ctx
->lsm
->u
.reg
.path
, cdata
);
3419 case LTTNG_DATA_PENDING
:
3421 ret
= cmd_data_pending(cmd_ctx
->session
);
3424 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
3426 struct lttcomm_lttng_output_id reply
;
3428 ret
= cmd_snapshot_add_output(cmd_ctx
->session
,
3429 &cmd_ctx
->lsm
->u
.snapshot_output
.output
, &reply
.id
);
3430 if (ret
!= LTTNG_OK
) {
3434 ret
= setup_lttng_msg(cmd_ctx
, sizeof(reply
));
3439 /* Copy output list into message payload */
3440 memcpy(cmd_ctx
->llm
->payload
, &reply
, sizeof(reply
));
3444 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
3446 ret
= cmd_snapshot_del_output(cmd_ctx
->session
,
3447 &cmd_ctx
->lsm
->u
.snapshot_output
.output
);
3450 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
3453 struct lttng_snapshot_output
*outputs
= NULL
;
3455 nb_output
= cmd_snapshot_list_outputs(cmd_ctx
->session
, &outputs
);
3456 if (nb_output
< 0) {
3461 ret
= setup_lttng_msg(cmd_ctx
,
3462 nb_output
* sizeof(struct lttng_snapshot_output
));
3469 /* Copy output list into message payload */
3470 memcpy(cmd_ctx
->llm
->payload
, outputs
,
3471 nb_output
* sizeof(struct lttng_snapshot_output
));
3478 case LTTNG_SNAPSHOT_RECORD
:
3480 ret
= cmd_snapshot_record(cmd_ctx
->session
,
3481 &cmd_ctx
->lsm
->u
.snapshot_record
.output
,
3482 cmd_ctx
->lsm
->u
.snapshot_record
.wait
);
3485 case LTTNG_CREATE_SESSION_SNAPSHOT
:
3488 struct lttng_uri
*uris
= NULL
;
3490 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3491 len
= nb_uri
* sizeof(struct lttng_uri
);
3494 uris
= zmalloc(len
);
3496 ret
= LTTNG_ERR_FATAL
;
3500 /* Receive variable len data */
3501 DBG("Waiting for %zu URIs from client ...", nb_uri
);
3502 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3504 DBG("No URIs received from client... continuing");
3506 ret
= LTTNG_ERR_SESSION_FAIL
;
3511 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
3512 DBG("Creating session with ONE network URI is a bad call");
3513 ret
= LTTNG_ERR_SESSION_FAIL
;
3519 ret
= cmd_create_session_snapshot(cmd_ctx
->lsm
->session
.name
, uris
,
3520 nb_uri
, &cmd_ctx
->creds
);
3524 case LTTNG_CREATE_SESSION_LIVE
:
3527 struct lttng_uri
*uris
= NULL
;
3529 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3530 len
= nb_uri
* sizeof(struct lttng_uri
);
3533 uris
= zmalloc(len
);
3535 ret
= LTTNG_ERR_FATAL
;
3539 /* Receive variable len data */
3540 DBG("Waiting for %zu URIs from client ...", nb_uri
);
3541 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3543 DBG("No URIs received from client... continuing");
3545 ret
= LTTNG_ERR_SESSION_FAIL
;
3550 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
3551 DBG("Creating session with ONE network URI is a bad call");
3552 ret
= LTTNG_ERR_SESSION_FAIL
;
3558 ret
= cmd_create_session_uri(cmd_ctx
->lsm
->session
.name
, uris
,
3559 nb_uri
, &cmd_ctx
->creds
, cmd_ctx
->lsm
->u
.session_live
.timer_interval
);
3564 ret
= LTTNG_ERR_UND
;
3569 if (cmd_ctx
->llm
== NULL
) {
3570 DBG("Missing llm structure. Allocating one.");
3571 if (setup_lttng_msg(cmd_ctx
, 0) < 0) {
3575 /* Set return code */
3576 cmd_ctx
->llm
->ret_code
= ret
;
3578 if (cmd_ctx
->session
) {
3579 session_unlock(cmd_ctx
->session
);
3581 if (need_tracing_session
) {
3582 session_unlock_list();
3589 * Thread managing health check socket.
3591 static void *thread_manage_health(void *data
)
3593 int sock
= -1, new_sock
= -1, ret
, i
, pollfd
, err
= -1;
3594 uint32_t revents
, nb_fd
;
3595 struct lttng_poll_event events
;
3596 struct health_comm_msg msg
;
3597 struct health_comm_reply reply
;
3599 DBG("[thread] Manage health check started");
3601 rcu_register_thread();
3603 /* We might hit an error path before this is created. */
3604 lttng_poll_init(&events
);
3606 /* Create unix socket */
3607 sock
= lttcomm_create_unix_sock(health_unix_sock_path
);
3609 ERR("Unable to create health check Unix socket");
3615 /* lttng health client socket path permissions */
3616 ret
= chown(health_unix_sock_path
, 0,
3617 utils_get_group_id(tracing_group_name
));
3619 ERR("Unable to set group on %s", health_unix_sock_path
);
3625 ret
= chmod(health_unix_sock_path
,
3626 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
3628 ERR("Unable to set permissions on %s", health_unix_sock_path
);
3636 * Set the CLOEXEC flag. Return code is useless because either way, the
3639 (void) utils_set_fd_cloexec(sock
);
3641 ret
= lttcomm_listen_unix_sock(sock
);
3647 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
3648 * more will be added to this poll set.
3650 ret
= sessiond_set_thread_pollset(&events
, 2);
3655 /* Add the application registration socket */
3656 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLPRI
);
3661 lttng_sessiond_notify_ready();
3664 DBG("Health check ready");
3666 /* Inifinite blocking call, waiting for transmission */
3668 ret
= lttng_poll_wait(&events
, -1);
3671 * Restart interrupted system call.
3673 if (errno
== EINTR
) {
3681 for (i
= 0; i
< nb_fd
; i
++) {
3682 /* Fetch once the poll data */
3683 revents
= LTTNG_POLL_GETEV(&events
, i
);
3684 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3686 /* Thread quit pipe has been closed. Killing thread. */
3687 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
3693 /* Event on the registration socket */
3694 if (pollfd
== sock
) {
3695 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3696 ERR("Health socket poll error");
3702 new_sock
= lttcomm_accept_unix_sock(sock
);
3708 * Set the CLOEXEC flag. Return code is useless because either way, the
3711 (void) utils_set_fd_cloexec(new_sock
);
3713 DBG("Receiving data from client for health...");
3714 ret
= lttcomm_recv_unix_sock(new_sock
, (void *)&msg
, sizeof(msg
));
3716 DBG("Nothing recv() from client... continuing");
3717 ret
= close(new_sock
);
3725 rcu_thread_online();
3727 memset(&reply
, 0, sizeof(reply
));
3728 for (i
= 0; i
< NR_HEALTH_SESSIOND_TYPES
; i
++) {
3730 * health_check_state returns 0 if health is
3733 if (!health_check_state(health_sessiond
, i
)) {
3734 reply
.ret_code
|= 1ULL << i
;
3738 DBG2("Health check return value %" PRIx64
, reply
.ret_code
);
3740 ret
= send_unix_sock(new_sock
, (void *) &reply
, sizeof(reply
));
3742 ERR("Failed to send health data back to client");
3745 /* End of transmission */
3746 ret
= close(new_sock
);
3756 ERR("Health error occurred in %s", __func__
);
3758 DBG("Health check thread dying");
3759 unlink(health_unix_sock_path
);
3767 lttng_poll_clean(&events
);
3769 rcu_unregister_thread();
3774 * This thread manage all clients request using the unix client socket for
3777 static void *thread_manage_clients(void *data
)
3779 int sock
= -1, ret
, i
, pollfd
, err
= -1;
3781 uint32_t revents
, nb_fd
;
3782 struct command_ctx
*cmd_ctx
= NULL
;
3783 struct lttng_poll_event events
;
3785 DBG("[thread] Manage client started");
3787 rcu_register_thread();
3789 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_CMD
);
3791 health_code_update();
3793 ret
= lttcomm_listen_unix_sock(client_sock
);
3799 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
3800 * more will be added to this poll set.
3802 ret
= sessiond_set_thread_pollset(&events
, 2);
3804 goto error_create_poll
;
3807 /* Add the application registration socket */
3808 ret
= lttng_poll_add(&events
, client_sock
, LPOLLIN
| LPOLLPRI
);
3813 lttng_sessiond_notify_ready();
3815 /* This testpoint is after we signal readiness to the parent. */
3816 if (testpoint(sessiond_thread_manage_clients
)) {
3820 if (testpoint(sessiond_thread_manage_clients_before_loop
)) {
3824 health_code_update();
3827 DBG("Accepting client command ...");
3829 /* Inifinite blocking call, waiting for transmission */
3831 health_poll_entry();
3832 ret
= lttng_poll_wait(&events
, -1);
3836 * Restart interrupted system call.
3838 if (errno
== EINTR
) {
3846 for (i
= 0; i
< nb_fd
; i
++) {
3847 /* Fetch once the poll data */
3848 revents
= LTTNG_POLL_GETEV(&events
, i
);
3849 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3851 health_code_update();
3853 /* Thread quit pipe has been closed. Killing thread. */
3854 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
3860 /* Event on the registration socket */
3861 if (pollfd
== client_sock
) {
3862 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3863 ERR("Client socket poll error");
3869 DBG("Wait for client response");
3871 health_code_update();
3873 sock
= lttcomm_accept_unix_sock(client_sock
);
3879 * Set the CLOEXEC flag. Return code is useless because either way, the
3882 (void) utils_set_fd_cloexec(sock
);
3884 /* Set socket option for credentials retrieval */
3885 ret
= lttcomm_setsockopt_creds_unix_sock(sock
);
3890 /* Allocate context command to process the client request */
3891 cmd_ctx
= zmalloc(sizeof(struct command_ctx
));
3892 if (cmd_ctx
== NULL
) {
3893 PERROR("zmalloc cmd_ctx");
3897 /* Allocate data buffer for reception */
3898 cmd_ctx
->lsm
= zmalloc(sizeof(struct lttcomm_session_msg
));
3899 if (cmd_ctx
->lsm
== NULL
) {
3900 PERROR("zmalloc cmd_ctx->lsm");
3904 cmd_ctx
->llm
= NULL
;
3905 cmd_ctx
->session
= NULL
;
3907 health_code_update();
3910 * Data is received from the lttng client. The struct
3911 * lttcomm_session_msg (lsm) contains the command and data request of
3914 DBG("Receiving data from client ...");
3915 ret
= lttcomm_recv_creds_unix_sock(sock
, cmd_ctx
->lsm
,
3916 sizeof(struct lttcomm_session_msg
), &cmd_ctx
->creds
);
3918 DBG("Nothing recv() from client... continuing");
3924 clean_command_ctx(&cmd_ctx
);
3928 health_code_update();
3930 // TODO: Validate cmd_ctx including sanity check for
3931 // security purpose.
3933 rcu_thread_online();
3935 * This function dispatch the work to the kernel or userspace tracer
3936 * libs and fill the lttcomm_lttng_msg data structure of all the needed
3937 * informations for the client. The command context struct contains
3938 * everything this function may needs.
3940 ret
= process_client_msg(cmd_ctx
, sock
, &sock_error
);
3941 rcu_thread_offline();
3949 * TODO: Inform client somehow of the fatal error. At
3950 * this point, ret < 0 means that a zmalloc failed
3951 * (ENOMEM). Error detected but still accept
3952 * command, unless a socket error has been
3955 clean_command_ctx(&cmd_ctx
);
3959 health_code_update();
3961 DBG("Sending response (size: %d, retcode: %s)",
3962 cmd_ctx
->lttng_msg_size
,
3963 lttng_strerror(-cmd_ctx
->llm
->ret_code
));
3964 ret
= send_unix_sock(sock
, cmd_ctx
->llm
, cmd_ctx
->lttng_msg_size
);
3966 ERR("Failed to send data back to client");
3969 /* End of transmission */
3976 clean_command_ctx(&cmd_ctx
);
3978 health_code_update();
3990 lttng_poll_clean(&events
);
3991 clean_command_ctx(&cmd_ctx
);
3995 unlink(client_unix_sock_path
);
3996 if (client_sock
>= 0) {
3997 ret
= close(client_sock
);
4005 ERR("Health error occurred in %s", __func__
);
4008 health_unregister(health_sessiond
);
4010 DBG("Client thread dying");
4012 rcu_unregister_thread();
4018 * usage function on stderr
4020 static void usage(void)
4022 fprintf(stderr
, "Usage: %s OPTIONS\n\nOptions:\n", progname
);
4023 fprintf(stderr
, " -h, --help Display this usage.\n");
4024 fprintf(stderr
, " -c, --client-sock PATH Specify path for the client unix socket\n");
4025 fprintf(stderr
, " -a, --apps-sock PATH Specify path for apps unix socket\n");
4026 fprintf(stderr
, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
4027 fprintf(stderr
, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
4028 fprintf(stderr
, " --ustconsumerd32-err-sock PATH Specify path for the 32-bit UST consumer error socket\n");
4029 fprintf(stderr
, " --ustconsumerd64-err-sock PATH Specify path for the 64-bit UST consumer error socket\n");
4030 fprintf(stderr
, " --ustconsumerd32-cmd-sock PATH Specify path for the 32-bit UST consumer command socket\n");
4031 fprintf(stderr
, " --ustconsumerd64-cmd-sock PATH Specify path for the 64-bit UST consumer command socket\n");
4032 fprintf(stderr
, " --consumerd32-path PATH Specify path for the 32-bit UST consumer daemon binary\n");
4033 fprintf(stderr
, " --consumerd32-libdir PATH Specify path for the 32-bit UST consumer daemon libraries\n");
4034 fprintf(stderr
, " --consumerd64-path PATH Specify path for the 64-bit UST consumer daemon binary\n");
4035 fprintf(stderr
, " --consumerd64-libdir PATH Specify path for the 64-bit UST consumer daemon libraries\n");
4036 fprintf(stderr
, " -d, --daemonize Start as a daemon.\n");
4037 fprintf(stderr
, " -b, --background Start as a daemon, keeping console open.\n");
4038 fprintf(stderr
, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
4039 fprintf(stderr
, " -V, --version Show version number.\n");
4040 fprintf(stderr
, " -S, --sig-parent Send SIGUSR1 to parent pid to notify readiness.\n");
4041 fprintf(stderr
, " -q, --quiet No output at all.\n");
4042 fprintf(stderr
, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
4043 fprintf(stderr
, " -p, --pidfile FILE Write a pid to FILE name overriding the default value.\n");
4044 fprintf(stderr
, " --verbose-consumer Verbose mode for consumer. Activate DBG() macro.\n");
4045 fprintf(stderr
, " --no-kernel Disable kernel tracer\n");
4046 fprintf(stderr
, " --jul-tcp-port JUL application registration TCP port\n");
4050 * daemon argument parsing
4052 static int parse_args(int argc
, char **argv
)
4056 static struct option long_options
[] = {
4057 { "client-sock", 1, 0, 'c' },
4058 { "apps-sock", 1, 0, 'a' },
4059 { "kconsumerd-cmd-sock", 1, 0, 'C' },
4060 { "kconsumerd-err-sock", 1, 0, 'E' },
4061 { "ustconsumerd32-cmd-sock", 1, 0, 'G' },
4062 { "ustconsumerd32-err-sock", 1, 0, 'H' },
4063 { "ustconsumerd64-cmd-sock", 1, 0, 'D' },
4064 { "ustconsumerd64-err-sock", 1, 0, 'F' },
4065 { "consumerd32-path", 1, 0, 'u' },
4066 { "consumerd32-libdir", 1, 0, 'U' },
4067 { "consumerd64-path", 1, 0, 't' },
4068 { "consumerd64-libdir", 1, 0, 'T' },
4069 { "daemonize", 0, 0, 'd' },
4070 { "sig-parent", 0, 0, 'S' },
4071 { "help", 0, 0, 'h' },
4072 { "group", 1, 0, 'g' },
4073 { "version", 0, 0, 'V' },
4074 { "quiet", 0, 0, 'q' },
4075 { "verbose", 0, 0, 'v' },
4076 { "verbose-consumer", 0, 0, 'Z' },
4077 { "no-kernel", 0, 0, 'N' },
4078 { "pidfile", 1, 0, 'p' },
4079 { "jul-tcp-port", 1, 0, 'J' },
4080 { "background", 0, 0, 'b' },
4085 int option_index
= 0;
4086 c
= getopt_long(argc
, argv
, "dhqvVSN" "a:c:g:s:C:E:D:F:Z:u:t:p:J:b",
4087 long_options
, &option_index
);
4094 fprintf(stderr
, "option %s", long_options
[option_index
].name
);
4096 fprintf(stderr
, " with arg %s\n", optarg
);
4100 snprintf(client_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4103 snprintf(apps_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4112 tracing_group_name
= optarg
;
4118 fprintf(stdout
, "%s\n", VERSION
);
4124 snprintf(kconsumer_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4127 snprintf(kconsumer_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4130 snprintf(ustconsumer64_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4133 snprintf(ustconsumer64_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4136 snprintf(ustconsumer32_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4139 snprintf(ustconsumer32_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4145 lttng_opt_quiet
= 1;
4148 /* Verbose level can increase using multiple -v */
4149 lttng_opt_verbose
+= 1;
4152 opt_verbose_consumer
+= 1;
4155 consumerd32_bin
= optarg
;
4158 consumerd32_libdir
= optarg
;
4161 consumerd64_bin
= optarg
;
4164 consumerd64_libdir
= optarg
;
4167 opt_pidfile
= optarg
;
4169 case 'J': /* JUL TCP port. */
4174 v
= strtoul(optarg
, NULL
, 0);
4175 if (errno
!= 0 || !isdigit(optarg
[0])) {
4176 ERR("Wrong value in --jul-tcp-port parameter: %s", optarg
);
4179 if (v
== 0 || v
>= 65535) {
4180 ERR("Port overflow in --jul-tcp-port parameter: %s", optarg
);
4183 jul_tcp_port
= (uint32_t) v
;
4184 DBG3("JUL TCP port set to non default: %u", jul_tcp_port
);
4188 /* Unknown option or other error.
4189 * Error is printed by getopt, just return */
4198 * Creates the two needed socket by the daemon.
4199 * apps_sock - The communication socket for all UST apps.
4200 * client_sock - The communication of the cli tool (lttng).
4202 static int init_daemon_socket(void)
4207 old_umask
= umask(0);
4209 /* Create client tool unix socket */
4210 client_sock
= lttcomm_create_unix_sock(client_unix_sock_path
);
4211 if (client_sock
< 0) {
4212 ERR("Create unix sock failed: %s", client_unix_sock_path
);
4217 /* Set the cloexec flag */
4218 ret
= utils_set_fd_cloexec(client_sock
);
4220 ERR("Unable to set CLOEXEC flag to the client Unix socket (fd: %d). "
4221 "Continuing but note that the consumer daemon will have a "
4222 "reference to this socket on exec()", client_sock
);
4225 /* File permission MUST be 660 */
4226 ret
= chmod(client_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
4228 ERR("Set file permissions failed: %s", client_unix_sock_path
);
4233 /* Create the application unix socket */
4234 apps_sock
= lttcomm_create_unix_sock(apps_unix_sock_path
);
4235 if (apps_sock
< 0) {
4236 ERR("Create unix sock failed: %s", apps_unix_sock_path
);
4241 /* Set the cloexec flag */
4242 ret
= utils_set_fd_cloexec(apps_sock
);
4244 ERR("Unable to set CLOEXEC flag to the app Unix socket (fd: %d). "
4245 "Continuing but note that the consumer daemon will have a "
4246 "reference to this socket on exec()", apps_sock
);
4249 /* File permission MUST be 666 */
4250 ret
= chmod(apps_unix_sock_path
,
4251 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IROTH
| S_IWOTH
);
4253 ERR("Set file permissions failed: %s", apps_unix_sock_path
);
4258 DBG3("Session daemon client socket %d and application socket %d created",
4259 client_sock
, apps_sock
);
4267 * Check if the global socket is available, and if a daemon is answering at the
4268 * other side. If yes, error is returned.
4270 static int check_existing_daemon(void)
4272 /* Is there anybody out there ? */
4273 if (lttng_session_daemon_alive()) {
4281 * Set the tracing group gid onto the client socket.
4283 * Race window between mkdir and chown is OK because we are going from more
4284 * permissive (root.root) to less permissive (root.tracing).
4286 static int set_permissions(char *rundir
)
4291 gid
= utils_get_group_id(tracing_group_name
);
4293 /* Set lttng run dir */
4294 ret
= chown(rundir
, 0, gid
);
4296 ERR("Unable to set group on %s", rundir
);
4301 * Ensure all applications and tracing group can search the run
4302 * dir. Allow everyone to read the directory, since it does not
4303 * buy us anything to hide its content.
4305 ret
= chmod(rundir
, S_IRWXU
| S_IRGRP
| S_IXGRP
| S_IROTH
| S_IXOTH
);
4307 ERR("Unable to set permissions on %s", rundir
);
4311 /* lttng client socket path */
4312 ret
= chown(client_unix_sock_path
, 0, gid
);
4314 ERR("Unable to set group on %s", client_unix_sock_path
);
4318 /* kconsumer error socket path */
4319 ret
= chown(kconsumer_data
.err_unix_sock_path
, 0, 0);
4321 ERR("Unable to set group on %s", kconsumer_data
.err_unix_sock_path
);
4325 /* 64-bit ustconsumer error socket path */
4326 ret
= chown(ustconsumer64_data
.err_unix_sock_path
, 0, 0);
4328 ERR("Unable to set group on %s", ustconsumer64_data
.err_unix_sock_path
);
4332 /* 32-bit ustconsumer compat32 error socket path */
4333 ret
= chown(ustconsumer32_data
.err_unix_sock_path
, 0, 0);
4335 ERR("Unable to set group on %s", ustconsumer32_data
.err_unix_sock_path
);
4339 DBG("All permissions are set");
4345 * Create the lttng run directory needed for all global sockets and pipe.
4347 static int create_lttng_rundir(const char *rundir
)
4351 DBG3("Creating LTTng run directory: %s", rundir
);
4353 ret
= mkdir(rundir
, S_IRWXU
);
4355 if (errno
!= EEXIST
) {
4356 ERR("Unable to create %s", rundir
);
4368 * Setup sockets and directory needed by the kconsumerd communication with the
4371 static int set_consumer_sockets(struct consumer_data
*consumer_data
,
4375 char path
[PATH_MAX
];
4377 switch (consumer_data
->type
) {
4378 case LTTNG_CONSUMER_KERNEL
:
4379 snprintf(path
, PATH_MAX
, DEFAULT_KCONSUMERD_PATH
, rundir
);
4381 case LTTNG_CONSUMER64_UST
:
4382 snprintf(path
, PATH_MAX
, DEFAULT_USTCONSUMERD64_PATH
, rundir
);
4384 case LTTNG_CONSUMER32_UST
:
4385 snprintf(path
, PATH_MAX
, DEFAULT_USTCONSUMERD32_PATH
, rundir
);
4388 ERR("Consumer type unknown");
4393 DBG2("Creating consumer directory: %s", path
);
4395 ret
= mkdir(path
, S_IRWXU
| S_IRGRP
| S_IXGRP
);
4397 if (errno
!= EEXIST
) {
4399 ERR("Failed to create %s", path
);
4405 ret
= chown(path
, 0, utils_get_group_id(tracing_group_name
));
4407 ERR("Unable to set group on %s", path
);
4413 /* Create the kconsumerd error unix socket */
4414 consumer_data
->err_sock
=
4415 lttcomm_create_unix_sock(consumer_data
->err_unix_sock_path
);
4416 if (consumer_data
->err_sock
< 0) {
4417 ERR("Create unix sock failed: %s", consumer_data
->err_unix_sock_path
);
4423 * Set the CLOEXEC flag. Return code is useless because either way, the
4426 ret
= utils_set_fd_cloexec(consumer_data
->err_sock
);
4428 PERROR("utils_set_fd_cloexec");
4429 /* continue anyway */
4432 /* File permission MUST be 660 */
4433 ret
= chmod(consumer_data
->err_unix_sock_path
,
4434 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
4436 ERR("Set file permissions failed: %s", consumer_data
->err_unix_sock_path
);
4446 * Signal handler for the daemon
4448 * Simply stop all worker threads, leaving main() return gracefully after
4449 * joining all threads and calling cleanup().
4451 static void sighandler(int sig
)
4455 DBG("SIGPIPE caught");
4458 DBG("SIGINT caught");
4462 DBG("SIGTERM caught");
4466 CMM_STORE_SHARED(recv_child_signal
, 1);
4474 * Setup signal handler for :
4475 * SIGINT, SIGTERM, SIGPIPE
4477 static int set_signal_handler(void)
4480 struct sigaction sa
;
4483 if ((ret
= sigemptyset(&sigset
)) < 0) {
4484 PERROR("sigemptyset");
4488 sa
.sa_handler
= sighandler
;
4489 sa
.sa_mask
= sigset
;
4491 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
4492 PERROR("sigaction");
4496 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
4497 PERROR("sigaction");
4501 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
4502 PERROR("sigaction");
4506 if ((ret
= sigaction(SIGUSR1
, &sa
, NULL
)) < 0) {
4507 PERROR("sigaction");
4511 DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT");
4517 * Set open files limit to unlimited. This daemon can open a large number of
4518 * file descriptors in order to consumer multiple kernel traces.
4520 static void set_ulimit(void)
4525 /* The kernel does not allowed an infinite limit for open files */
4526 lim
.rlim_cur
= 65535;
4527 lim
.rlim_max
= 65535;
4529 ret
= setrlimit(RLIMIT_NOFILE
, &lim
);
4531 PERROR("failed to set open files limit");
4536 * Write pidfile using the rundir and opt_pidfile.
4538 static void write_pidfile(void)
4541 char pidfile_path
[PATH_MAX
];
4546 strncpy(pidfile_path
, opt_pidfile
, sizeof(pidfile_path
));
4548 /* Build pidfile path from rundir and opt_pidfile. */
4549 ret
= snprintf(pidfile_path
, sizeof(pidfile_path
), "%s/"
4550 DEFAULT_LTTNG_SESSIOND_PIDFILE
, rundir
);
4552 PERROR("snprintf pidfile path");
4558 * Create pid file in rundir. Return value is of no importance. The
4559 * execution will continue even though we are not able to write the file.
4561 (void) utils_create_pid_file(getpid(), pidfile_path
);
4568 * Create lockfile using the rundir and return its fd.
4570 static int create_lockfile(void)
4573 char lockfile_path
[PATH_MAX
];
4575 ret
= generate_lock_file_path(lockfile_path
, sizeof(lockfile_path
));
4580 ret
= utils_create_lock_file(lockfile_path
);
4586 * Write JUL TCP port using the rundir.
4588 static void write_julport(void)
4591 char path
[PATH_MAX
];
4595 ret
= snprintf(path
, sizeof(path
), "%s/"
4596 DEFAULT_LTTNG_SESSIOND_JULPORT_FILE
, rundir
);
4598 PERROR("snprintf julport path");
4603 * Create TCP JUL port file in rundir. Return value is of no importance.
4604 * The execution will continue even though we are not able to write the
4607 (void) utils_create_pid_file(jul_tcp_port
, path
);
4616 int main(int argc
, char **argv
)
4620 const char *home_path
, *env_app_timeout
;
4622 init_kernel_workarounds();
4624 rcu_register_thread();
4626 if ((ret
= set_signal_handler()) < 0) {
4630 setup_consumerd_path();
4632 page_size
= sysconf(_SC_PAGESIZE
);
4633 if (page_size
< 0) {
4634 PERROR("sysconf _SC_PAGESIZE");
4635 page_size
= LONG_MAX
;
4636 WARN("Fallback page size to %ld", page_size
);
4639 /* Parse arguments */
4641 if ((ret
= parse_args(argc
, argv
)) < 0) {
4646 if (opt_daemon
|| opt_background
) {
4649 ret
= lttng_daemonize(&child_ppid
, &recv_child_signal
,
4656 * We are in the child. Make sure all other file descriptors are
4657 * closed, in case we are called with more opened file descriptors than
4658 * the standard ones.
4660 for (i
= 3; i
< sysconf(_SC_OPEN_MAX
); i
++) {
4665 /* Create thread quit pipe */
4666 if ((ret
= init_thread_quit_pipe()) < 0) {
4670 /* Check if daemon is UID = 0 */
4671 is_root
= !getuid();
4674 rundir
= strdup(DEFAULT_LTTNG_RUNDIR
);
4680 /* Create global run dir with root access */
4681 ret
= create_lttng_rundir(rundir
);
4686 if (strlen(apps_unix_sock_path
) == 0) {
4687 snprintf(apps_unix_sock_path
, PATH_MAX
,
4688 DEFAULT_GLOBAL_APPS_UNIX_SOCK
);
4691 if (strlen(client_unix_sock_path
) == 0) {
4692 snprintf(client_unix_sock_path
, PATH_MAX
,
4693 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK
);
4696 /* Set global SHM for ust */
4697 if (strlen(wait_shm_path
) == 0) {
4698 snprintf(wait_shm_path
, PATH_MAX
,
4699 DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH
);
4702 if (strlen(health_unix_sock_path
) == 0) {
4703 snprintf(health_unix_sock_path
, sizeof(health_unix_sock_path
),
4704 DEFAULT_GLOBAL_HEALTH_UNIX_SOCK
);
4707 /* Setup kernel consumerd path */
4708 snprintf(kconsumer_data
.err_unix_sock_path
, PATH_MAX
,
4709 DEFAULT_KCONSUMERD_ERR_SOCK_PATH
, rundir
);
4710 snprintf(kconsumer_data
.cmd_unix_sock_path
, PATH_MAX
,
4711 DEFAULT_KCONSUMERD_CMD_SOCK_PATH
, rundir
);
4713 DBG2("Kernel consumer err path: %s",
4714 kconsumer_data
.err_unix_sock_path
);
4715 DBG2("Kernel consumer cmd path: %s",
4716 kconsumer_data
.cmd_unix_sock_path
);
4718 home_path
= utils_get_home_dir();
4719 if (home_path
== NULL
) {
4720 /* TODO: Add --socket PATH option */
4721 ERR("Can't get HOME directory for sockets creation.");
4727 * Create rundir from home path. This will create something like
4730 ret
= asprintf(&rundir
, DEFAULT_LTTNG_HOME_RUNDIR
, home_path
);
4736 ret
= create_lttng_rundir(rundir
);
4741 if (strlen(apps_unix_sock_path
) == 0) {
4742 snprintf(apps_unix_sock_path
, PATH_MAX
,
4743 DEFAULT_HOME_APPS_UNIX_SOCK
, home_path
);
4746 /* Set the cli tool unix socket path */
4747 if (strlen(client_unix_sock_path
) == 0) {
4748 snprintf(client_unix_sock_path
, PATH_MAX
,
4749 DEFAULT_HOME_CLIENT_UNIX_SOCK
, home_path
);
4752 /* Set global SHM for ust */
4753 if (strlen(wait_shm_path
) == 0) {
4754 snprintf(wait_shm_path
, PATH_MAX
,
4755 DEFAULT_HOME_APPS_WAIT_SHM_PATH
, getuid());
4758 /* Set health check Unix path */
4759 if (strlen(health_unix_sock_path
) == 0) {
4760 snprintf(health_unix_sock_path
, sizeof(health_unix_sock_path
),
4761 DEFAULT_HOME_HEALTH_UNIX_SOCK
, home_path
);
4765 lockfile_fd
= create_lockfile();
4766 if (lockfile_fd
< 0) {
4770 /* Set consumer initial state */
4771 kernel_consumerd_state
= CONSUMER_STOPPED
;
4772 ust_consumerd_state
= CONSUMER_STOPPED
;
4774 DBG("Client socket path %s", client_unix_sock_path
);
4775 DBG("Application socket path %s", apps_unix_sock_path
);
4776 DBG("Application wait path %s", wait_shm_path
);
4777 DBG("LTTng run directory path: %s", rundir
);
4779 /* 32 bits consumerd path setup */
4780 snprintf(ustconsumer32_data
.err_unix_sock_path
, PATH_MAX
,
4781 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
, rundir
);
4782 snprintf(ustconsumer32_data
.cmd_unix_sock_path
, PATH_MAX
,
4783 DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
, rundir
);
4785 DBG2("UST consumer 32 bits err path: %s",
4786 ustconsumer32_data
.err_unix_sock_path
);
4787 DBG2("UST consumer 32 bits cmd path: %s",
4788 ustconsumer32_data
.cmd_unix_sock_path
);
4790 /* 64 bits consumerd path setup */
4791 snprintf(ustconsumer64_data
.err_unix_sock_path
, PATH_MAX
,
4792 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
, rundir
);
4793 snprintf(ustconsumer64_data
.cmd_unix_sock_path
, PATH_MAX
,
4794 DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
, rundir
);
4796 DBG2("UST consumer 64 bits err path: %s",
4797 ustconsumer64_data
.err_unix_sock_path
);
4798 DBG2("UST consumer 64 bits cmd path: %s",
4799 ustconsumer64_data
.cmd_unix_sock_path
);
4802 * See if daemon already exist.
4804 if ((ret
= check_existing_daemon()) < 0) {
4805 ERR("Already running daemon.\n");
4807 * We do not goto exit because we must not cleanup()
4808 * because a daemon is already running.
4814 * Init UST app hash table. Alloc hash table before this point since
4815 * cleanup() can get called after that point.
4819 /* Initialize JUL domain subsystem. */
4820 if ((ret
= jul_init()) < 0) {
4821 /* ENOMEM at this point. */
4825 /* After this point, we can safely call cleanup() with "goto exit" */
4828 * These actions must be executed as root. We do that *after* setting up
4829 * the sockets path because we MUST make the check for another daemon using
4830 * those paths *before* trying to set the kernel consumer sockets and init
4834 ret
= set_consumer_sockets(&kconsumer_data
, rundir
);
4839 /* Setup kernel tracer */
4840 if (!opt_no_kernel
) {
4841 init_kernel_tracer();
4844 /* Set ulimit for open files */
4847 /* init lttng_fd tracking must be done after set_ulimit. */
4850 ret
= set_consumer_sockets(&ustconsumer64_data
, rundir
);
4855 ret
= set_consumer_sockets(&ustconsumer32_data
, rundir
);
4860 /* Setup the needed unix socket */
4861 if ((ret
= init_daemon_socket()) < 0) {
4865 /* Set credentials to socket */
4866 if (is_root
&& ((ret
= set_permissions(rundir
)) < 0)) {
4870 /* Get parent pid if -S, --sig-parent is specified. */
4871 if (opt_sig_parent
) {
4875 /* Setup the kernel pipe for waking up the kernel thread */
4876 if (is_root
&& !opt_no_kernel
) {
4877 if ((ret
= utils_create_pipe_cloexec(kernel_poll_pipe
)) < 0) {
4882 /* Setup the thread ht_cleanup communication pipe. */
4883 if (utils_create_pipe_cloexec(ht_cleanup_pipe
) < 0) {
4887 /* Setup the thread apps communication pipe. */
4888 if ((ret
= utils_create_pipe_cloexec(apps_cmd_pipe
)) < 0) {
4892 /* Setup the thread apps notify communication pipe. */
4893 if (utils_create_pipe_cloexec(apps_cmd_notify_pipe
) < 0) {
4897 /* Initialize global buffer per UID and PID registry. */
4898 buffer_reg_init_uid_registry();
4899 buffer_reg_init_pid_registry();
4901 /* Init UST command queue. */
4902 cds_wfq_init(&ust_cmd_queue
.queue
);
4905 * Get session list pointer. This pointer MUST NOT be free(). This list is
4906 * statically declared in session.c
4908 session_list_ptr
= session_get_list();
4910 /* Set up max poll set size */
4911 lttng_poll_set_max_size();
4915 /* Check for the application socket timeout env variable. */
4916 env_app_timeout
= getenv(DEFAULT_APP_SOCKET_TIMEOUT_ENV
);
4917 if (env_app_timeout
) {
4918 app_socket_timeout
= atoi(env_app_timeout
);
4920 app_socket_timeout
= DEFAULT_APP_SOCKET_RW_TIMEOUT
;
4926 /* Initialize communication library */
4928 /* This is to get the TCP timeout value. */
4929 lttcomm_inet_init();
4932 * Initialize the health check subsystem. This call should set the
4933 * appropriate time values.
4935 health_sessiond
= health_app_create(NR_HEALTH_SESSIOND_TYPES
);
4936 if (!health_sessiond
) {
4937 PERROR("health_app_create error");
4938 goto exit_health_sessiond_cleanup
;
4941 /* Create thread to clean up RCU hash tables */
4942 ret
= pthread_create(&ht_cleanup_thread
, NULL
,
4943 thread_ht_cleanup
, (void *) NULL
);
4945 PERROR("pthread_create ht_cleanup");
4946 goto exit_ht_cleanup
;
4949 /* Create health-check thread */
4950 ret
= pthread_create(&health_thread
, NULL
,
4951 thread_manage_health
, (void *) NULL
);
4953 PERROR("pthread_create health");
4957 /* Create thread to manage the client socket */
4958 ret
= pthread_create(&client_thread
, NULL
,
4959 thread_manage_clients
, (void *) NULL
);
4961 PERROR("pthread_create clients");
4965 /* Create thread to dispatch registration */
4966 ret
= pthread_create(&dispatch_thread
, NULL
,
4967 thread_dispatch_ust_registration
, (void *) NULL
);
4969 PERROR("pthread_create dispatch");
4973 /* Create thread to manage application registration. */
4974 ret
= pthread_create(®_apps_thread
, NULL
,
4975 thread_registration_apps
, (void *) NULL
);
4977 PERROR("pthread_create registration");
4981 /* Create thread to manage application socket */
4982 ret
= pthread_create(&apps_thread
, NULL
,
4983 thread_manage_apps
, (void *) NULL
);
4985 PERROR("pthread_create apps");
4989 /* Create thread to manage application notify socket */
4990 ret
= pthread_create(&apps_notify_thread
, NULL
,
4991 ust_thread_manage_notify
, (void *) NULL
);
4993 PERROR("pthread_create notify");
4994 goto exit_apps_notify
;
4997 /* Create JUL registration thread. */
4998 ret
= pthread_create(&jul_reg_thread
, NULL
,
4999 jul_thread_manage_registration
, (void *) NULL
);
5001 PERROR("pthread_create JUL");
5005 /* Don't start this thread if kernel tracing is not requested nor root */
5006 if (is_root
&& !opt_no_kernel
) {
5007 /* Create kernel thread to manage kernel event */
5008 ret
= pthread_create(&kernel_thread
, NULL
,
5009 thread_manage_kernel
, (void *) NULL
);
5011 PERROR("pthread_create kernel");
5015 ret
= pthread_join(kernel_thread
, &status
);
5017 PERROR("pthread_join");
5018 goto error
; /* join error, exit without cleanup */
5023 ret
= pthread_join(jul_reg_thread
, &status
);
5025 PERROR("pthread_join JUL");
5026 goto error
; /* join error, exit without cleanup */
5030 ret
= pthread_join(apps_notify_thread
, &status
);
5032 PERROR("pthread_join apps notify");
5033 goto error
; /* join error, exit without cleanup */
5037 ret
= pthread_join(apps_thread
, &status
);
5039 PERROR("pthread_join apps");
5040 goto error
; /* join error, exit without cleanup */
5045 ret
= pthread_join(reg_apps_thread
, &status
);
5047 PERROR("pthread_join");
5048 goto error
; /* join error, exit without cleanup */
5052 ret
= pthread_join(dispatch_thread
, &status
);
5054 PERROR("pthread_join");
5055 goto error
; /* join error, exit without cleanup */
5059 ret
= pthread_join(client_thread
, &status
);
5061 PERROR("pthread_join");
5062 goto error
; /* join error, exit without cleanup */
5065 ret
= join_consumer_thread(&kconsumer_data
);
5067 PERROR("join_consumer");
5068 goto error
; /* join error, exit without cleanup */
5071 ret
= join_consumer_thread(&ustconsumer32_data
);
5073 PERROR("join_consumer ust32");
5074 goto error
; /* join error, exit without cleanup */
5077 ret
= join_consumer_thread(&ustconsumer64_data
);
5079 PERROR("join_consumer ust64");
5080 goto error
; /* join error, exit without cleanup */
5084 ret
= pthread_join(health_thread
, &status
);
5086 PERROR("pthread_join health thread");
5087 goto error
; /* join error, exit without cleanup */
5091 ret
= pthread_join(ht_cleanup_thread
, &status
);
5093 PERROR("pthread_join ht cleanup thread");
5094 goto error
; /* join error, exit without cleanup */
5097 health_app_destroy(health_sessiond
);
5098 exit_health_sessiond_cleanup
:
5101 * cleanup() is called when no other thread is running.
5103 rcu_thread_online();
5105 rcu_thread_offline();
5106 rcu_unregister_thread();