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.
30 #include <sys/mount.h>
31 #include <sys/resource.h>
32 #include <sys/socket.h>
34 #include <sys/types.h>
36 #include <urcu/uatomic.h>
40 #include <common/common.h>
41 #include <common/compat/socket.h>
42 #include <common/defaults.h>
43 #include <common/kernel-consumer/kernel-consumer.h>
44 #include <common/futex.h>
45 #include <common/relayd/relayd.h>
46 #include <common/utils.h>
48 #include "lttng-sessiond.h"
49 #include "buffer-registry.h"
56 #include "kernel-consumer.h"
60 #include "ust-consumer.h"
63 #include "health-sessiond.h"
64 #include "testpoint.h"
65 #include "ust-thread.h"
66 #include "jul-thread.h"
68 #define CONSUMERD_FILE "lttng-consumerd"
71 static const char *tracing_group_name
= DEFAULT_TRACING_GROUP
;
72 static const char *opt_pidfile
;
73 static int opt_sig_parent
;
74 static int opt_verbose_consumer
;
75 static int opt_daemon
;
76 static int opt_no_kernel
;
77 static int is_root
; /* Set to 1 if the daemon is running as root */
78 static pid_t ppid
; /* Parent PID for --sig-parent option */
82 * Consumer daemon specific control data. Every value not initialized here is
83 * set to 0 by the static definition.
85 static struct consumer_data kconsumer_data
= {
86 .type
= LTTNG_CONSUMER_KERNEL
,
87 .err_unix_sock_path
= DEFAULT_KCONSUMERD_ERR_SOCK_PATH
,
88 .cmd_unix_sock_path
= DEFAULT_KCONSUMERD_CMD_SOCK_PATH
,
91 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
92 .lock
= PTHREAD_MUTEX_INITIALIZER
,
93 .cond
= PTHREAD_COND_INITIALIZER
,
94 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
96 static struct consumer_data ustconsumer64_data
= {
97 .type
= LTTNG_CONSUMER64_UST
,
98 .err_unix_sock_path
= DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
,
99 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
,
102 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
103 .lock
= PTHREAD_MUTEX_INITIALIZER
,
104 .cond
= PTHREAD_COND_INITIALIZER
,
105 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
107 static struct consumer_data ustconsumer32_data
= {
108 .type
= LTTNG_CONSUMER32_UST
,
109 .err_unix_sock_path
= DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
,
110 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
,
113 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
114 .lock
= PTHREAD_MUTEX_INITIALIZER
,
115 .cond
= PTHREAD_COND_INITIALIZER
,
116 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
119 /* Shared between threads */
120 static int dispatch_thread_exit
;
122 /* Global application Unix socket path */
123 static char apps_unix_sock_path
[PATH_MAX
];
124 /* Global client Unix socket path */
125 static char client_unix_sock_path
[PATH_MAX
];
126 /* global wait shm path for UST */
127 static char wait_shm_path
[PATH_MAX
];
128 /* Global health check unix path */
129 static char health_unix_sock_path
[PATH_MAX
];
131 /* Sockets and FDs */
132 static int client_sock
= -1;
133 static int apps_sock
= -1;
134 int kernel_tracer_fd
= -1;
135 static int kernel_poll_pipe
[2] = { -1, -1 };
138 * Quit pipe for all threads. This permits a single cancellation point
139 * for all threads when receiving an event on the pipe.
141 static int thread_quit_pipe
[2] = { -1, -1 };
144 * This pipe is used to inform the thread managing application communication
145 * that a command is queued and ready to be processed.
147 static int apps_cmd_pipe
[2] = { -1, -1 };
149 int apps_cmd_notify_pipe
[2] = { -1, -1 };
151 /* Pthread, Mutexes and Semaphores */
152 static pthread_t apps_thread
;
153 static pthread_t apps_notify_thread
;
154 static pthread_t reg_apps_thread
;
155 static pthread_t client_thread
;
156 static pthread_t kernel_thread
;
157 static pthread_t dispatch_thread
;
158 static pthread_t health_thread
;
159 static pthread_t ht_cleanup_thread
;
160 static pthread_t jul_reg_thread
;
163 * UST registration command queue. This queue is tied with a futex and uses a N
164 * wakers / 1 waiter implemented and detailed in futex.c/.h
166 * The thread_manage_apps and thread_dispatch_ust_registration interact with
167 * this queue and the wait/wake scheme.
169 static struct ust_cmd_queue ust_cmd_queue
;
172 * Pointer initialized before thread creation.
174 * This points to the tracing session list containing the session count and a
175 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
176 * MUST NOT be taken if you call a public function in session.c.
178 * The lock is nested inside the structure: session_list_ptr->lock. Please use
179 * session_lock_list and session_unlock_list for lock acquisition.
181 static struct ltt_session_list
*session_list_ptr
;
183 int ust_consumerd64_fd
= -1;
184 int ust_consumerd32_fd
= -1;
186 static const char *consumerd32_bin
= CONFIG_CONSUMERD32_BIN
;
187 static const char *consumerd64_bin
= CONFIG_CONSUMERD64_BIN
;
188 static const char *consumerd32_libdir
= CONFIG_CONSUMERD32_LIBDIR
;
189 static const char *consumerd64_libdir
= CONFIG_CONSUMERD64_LIBDIR
;
191 static const char *module_proc_lttng
= "/proc/lttng";
194 * Consumer daemon state which is changed when spawning it, killing it or in
195 * case of a fatal error.
197 enum consumerd_state
{
198 CONSUMER_STARTED
= 1,
199 CONSUMER_STOPPED
= 2,
204 * This consumer daemon state is used to validate if a client command will be
205 * able to reach the consumer. If not, the client is informed. For instance,
206 * doing a "lttng start" when the consumer state is set to ERROR will return an
207 * error to the client.
209 * The following example shows a possible race condition of this scheme:
211 * consumer thread error happens
213 * client cmd checks state -> still OK
214 * consumer thread exit, sets error
215 * client cmd try to talk to consumer
218 * However, since the consumer is a different daemon, we have no way of making
219 * sure the command will reach it safely even with this state flag. This is why
220 * we consider that up to the state validation during command processing, the
221 * command is safe. After that, we can not guarantee the correctness of the
222 * client request vis-a-vis the consumer.
224 static enum consumerd_state ust_consumerd_state
;
225 static enum consumerd_state kernel_consumerd_state
;
228 * Socket timeout for receiving and sending in seconds.
230 static int app_socket_timeout
;
232 /* Set in main() with the current page size. */
235 /* Application health monitoring */
236 struct health_app
*health_sessiond
;
238 /* JUL TCP port for registration. Used by the JUL thread. */
239 unsigned int jul_tcp_port
= DEFAULT_JUL_TCP_PORT
;
242 void setup_consumerd_path(void)
244 const char *bin
, *libdir
;
247 * Allow INSTALL_BIN_PATH to be used as a target path for the
248 * native architecture size consumer if CONFIG_CONSUMER*_PATH
249 * has not been defined.
251 #if (CAA_BITS_PER_LONG == 32)
252 if (!consumerd32_bin
[0]) {
253 consumerd32_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
255 if (!consumerd32_libdir
[0]) {
256 consumerd32_libdir
= INSTALL_LIB_PATH
;
258 #elif (CAA_BITS_PER_LONG == 64)
259 if (!consumerd64_bin
[0]) {
260 consumerd64_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
262 if (!consumerd64_libdir
[0]) {
263 consumerd64_libdir
= INSTALL_LIB_PATH
;
266 #error "Unknown bitness"
270 * runtime env. var. overrides the build default.
272 bin
= getenv("LTTNG_CONSUMERD32_BIN");
274 consumerd32_bin
= bin
;
276 bin
= getenv("LTTNG_CONSUMERD64_BIN");
278 consumerd64_bin
= bin
;
280 libdir
= getenv("LTTNG_CONSUMERD32_LIBDIR");
282 consumerd32_libdir
= libdir
;
284 libdir
= getenv("LTTNG_CONSUMERD64_LIBDIR");
286 consumerd64_libdir
= libdir
;
291 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
293 int sessiond_set_thread_pollset(struct lttng_poll_event
*events
, size_t size
)
299 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
305 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
| LPOLLERR
);
317 * Check if the thread quit pipe was triggered.
319 * Return 1 if it was triggered else 0;
321 int sessiond_check_thread_quit_pipe(int fd
, uint32_t events
)
323 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
331 * Init thread quit pipe.
333 * Return -1 on error or 0 if all pipes are created.
335 static int init_thread_quit_pipe(void)
339 ret
= pipe(thread_quit_pipe
);
341 PERROR("thread quit pipe");
345 for (i
= 0; i
< 2; i
++) {
346 ret
= fcntl(thread_quit_pipe
[i
], F_SETFD
, FD_CLOEXEC
);
358 * Stop all threads by closing the thread quit pipe.
360 static void stop_threads(void)
364 /* Stopping all threads */
365 DBG("Terminating all threads");
366 ret
= notify_thread_pipe(thread_quit_pipe
[1]);
368 ERR("write error on thread quit pipe");
371 /* Dispatch thread */
372 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
373 futex_nto1_wake(&ust_cmd_queue
.futex
);
377 * Close every consumer sockets.
379 static void close_consumer_sockets(void)
383 if (kconsumer_data
.err_sock
>= 0) {
384 ret
= close(kconsumer_data
.err_sock
);
386 PERROR("kernel consumer err_sock close");
389 if (ustconsumer32_data
.err_sock
>= 0) {
390 ret
= close(ustconsumer32_data
.err_sock
);
392 PERROR("UST consumerd32 err_sock close");
395 if (ustconsumer64_data
.err_sock
>= 0) {
396 ret
= close(ustconsumer64_data
.err_sock
);
398 PERROR("UST consumerd64 err_sock close");
401 if (kconsumer_data
.cmd_sock
>= 0) {
402 ret
= close(kconsumer_data
.cmd_sock
);
404 PERROR("kernel consumer cmd_sock close");
407 if (ustconsumer32_data
.cmd_sock
>= 0) {
408 ret
= close(ustconsumer32_data
.cmd_sock
);
410 PERROR("UST consumerd32 cmd_sock close");
413 if (ustconsumer64_data
.cmd_sock
>= 0) {
414 ret
= close(ustconsumer64_data
.cmd_sock
);
416 PERROR("UST consumerd64 cmd_sock close");
424 static void cleanup(void)
427 struct ltt_session
*sess
, *stmp
;
433 * Close the thread quit pipe. It has already done its job,
434 * since we are now called.
436 utils_close_pipe(thread_quit_pipe
);
439 * If opt_pidfile is undefined, the default file will be wiped when
440 * removing the rundir.
443 ret
= remove(opt_pidfile
);
445 PERROR("remove pidfile %s", opt_pidfile
);
449 DBG("Removing sessiond and consumerd content of directory %s", rundir
);
452 snprintf(path
, PATH_MAX
,
454 rundir
, DEFAULT_LTTNG_SESSIOND_PIDFILE
);
455 DBG("Removing %s", path
);
458 snprintf(path
, PATH_MAX
, "%s/%s", rundir
,
459 DEFAULT_LTTNG_SESSIOND_JULPORT_FILE
);
460 DBG("Removing %s", path
);
464 snprintf(path
, PATH_MAX
,
465 DEFAULT_KCONSUMERD_ERR_SOCK_PATH
,
467 DBG("Removing %s", path
);
470 snprintf(path
, PATH_MAX
,
471 DEFAULT_KCONSUMERD_PATH
,
473 DBG("Removing directory %s", path
);
476 /* ust consumerd 32 */
477 snprintf(path
, PATH_MAX
,
478 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
,
480 DBG("Removing %s", path
);
483 snprintf(path
, PATH_MAX
,
484 DEFAULT_USTCONSUMERD32_PATH
,
486 DBG("Removing directory %s", path
);
489 /* ust consumerd 64 */
490 snprintf(path
, PATH_MAX
,
491 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
,
493 DBG("Removing %s", path
);
496 snprintf(path
, PATH_MAX
,
497 DEFAULT_USTCONSUMERD64_PATH
,
499 DBG("Removing directory %s", path
);
503 * We do NOT rmdir rundir because there are other processes
504 * using it, for instance lttng-relayd, which can start in
505 * parallel with this teardown.
510 DBG("Cleaning up all sessions");
512 /* Destroy session list mutex */
513 if (session_list_ptr
!= NULL
) {
514 pthread_mutex_destroy(&session_list_ptr
->lock
);
516 /* Cleanup ALL session */
517 cds_list_for_each_entry_safe(sess
, stmp
,
518 &session_list_ptr
->head
, list
) {
519 cmd_destroy_session(sess
, kernel_poll_pipe
[1]);
523 DBG("Closing all UST sockets");
524 ust_app_clean_list();
525 buffer_reg_destroy_registries();
527 if (is_root
&& !opt_no_kernel
) {
528 DBG2("Closing kernel fd");
529 if (kernel_tracer_fd
>= 0) {
530 ret
= close(kernel_tracer_fd
);
535 DBG("Unloading kernel modules");
536 modprobe_remove_lttng_all();
539 close_consumer_sockets();
542 DBG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm"
543 "Matthew, BEET driven development works!%c[%dm",
544 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
549 * Send data on a unix socket using the liblttsessiondcomm API.
551 * Return lttcomm error code.
553 static int send_unix_sock(int sock
, void *buf
, size_t len
)
555 /* Check valid length */
560 return lttcomm_send_unix_sock(sock
, buf
, len
);
564 * Free memory of a command context structure.
566 static void clean_command_ctx(struct command_ctx
**cmd_ctx
)
568 DBG("Clean command context structure");
570 if ((*cmd_ctx
)->llm
) {
571 free((*cmd_ctx
)->llm
);
573 if ((*cmd_ctx
)->lsm
) {
574 free((*cmd_ctx
)->lsm
);
582 * Notify UST applications using the shm mmap futex.
584 static int notify_ust_apps(int active
)
588 DBG("Notifying applications of session daemon state: %d", active
);
590 /* See shm.c for this call implying mmap, shm and futex calls */
591 wait_shm_mmap
= shm_ust_get_mmap(wait_shm_path
, is_root
);
592 if (wait_shm_mmap
== NULL
) {
596 /* Wake waiting process */
597 futex_wait_update((int32_t *) wait_shm_mmap
, active
);
599 /* Apps notified successfully */
607 * Setup the outgoing data buffer for the response (llm) by allocating the
608 * right amount of memory and copying the original information from the lsm
611 * Return total size of the buffer pointed by buf.
613 static int setup_lttng_msg(struct command_ctx
*cmd_ctx
, size_t size
)
619 cmd_ctx
->llm
= zmalloc(sizeof(struct lttcomm_lttng_msg
) + buf_size
);
620 if (cmd_ctx
->llm
== NULL
) {
626 /* Copy common data */
627 cmd_ctx
->llm
->cmd_type
= cmd_ctx
->lsm
->cmd_type
;
628 cmd_ctx
->llm
->pid
= cmd_ctx
->lsm
->domain
.attr
.pid
;
630 cmd_ctx
->llm
->data_size
= size
;
631 cmd_ctx
->lttng_msg_size
= sizeof(struct lttcomm_lttng_msg
) + buf_size
;
640 * Update the kernel poll set of all channel fd available over all tracing
641 * session. Add the wakeup pipe at the end of the set.
643 static int update_kernel_poll(struct lttng_poll_event
*events
)
646 struct ltt_session
*session
;
647 struct ltt_kernel_channel
*channel
;
649 DBG("Updating kernel poll set");
652 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
653 session_lock(session
);
654 if (session
->kernel_session
== NULL
) {
655 session_unlock(session
);
659 cds_list_for_each_entry(channel
,
660 &session
->kernel_session
->channel_list
.head
, list
) {
661 /* Add channel fd to the kernel poll set */
662 ret
= lttng_poll_add(events
, channel
->fd
, LPOLLIN
| LPOLLRDNORM
);
664 session_unlock(session
);
667 DBG("Channel fd %d added to kernel set", channel
->fd
);
669 session_unlock(session
);
671 session_unlock_list();
676 session_unlock_list();
681 * Find the channel fd from 'fd' over all tracing session. When found, check
682 * for new channel stream and send those stream fds to the kernel consumer.
684 * Useful for CPU hotplug feature.
686 static int update_kernel_stream(struct consumer_data
*consumer_data
, int fd
)
689 struct ltt_session
*session
;
690 struct ltt_kernel_session
*ksess
;
691 struct ltt_kernel_channel
*channel
;
693 DBG("Updating kernel streams for channel fd %d", fd
);
696 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
697 session_lock(session
);
698 if (session
->kernel_session
== NULL
) {
699 session_unlock(session
);
702 ksess
= session
->kernel_session
;
704 cds_list_for_each_entry(channel
, &ksess
->channel_list
.head
, list
) {
705 if (channel
->fd
== fd
) {
706 DBG("Channel found, updating kernel streams");
707 ret
= kernel_open_channel_stream(channel
);
711 /* Update the stream global counter */
712 ksess
->stream_count_global
+= ret
;
715 * Have we already sent fds to the consumer? If yes, it means
716 * that tracing is started so it is safe to send our updated
719 if (ksess
->consumer_fds_sent
== 1 && ksess
->consumer
!= NULL
) {
720 struct lttng_ht_iter iter
;
721 struct consumer_socket
*socket
;
724 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
,
725 &iter
.iter
, socket
, node
.node
) {
726 pthread_mutex_lock(socket
->lock
);
727 ret
= kernel_consumer_send_channel_stream(socket
,
729 session
->output_traces
? 1 : 0);
730 pthread_mutex_unlock(socket
->lock
);
741 session_unlock(session
);
743 session_unlock_list();
747 session_unlock(session
);
748 session_unlock_list();
753 * For each tracing session, update newly registered apps. The session list
754 * lock MUST be acquired before calling this.
756 static void update_ust_app(int app_sock
)
758 struct ltt_session
*sess
, *stmp
;
760 /* Consumer is in an ERROR state. Stop any application update. */
761 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
762 /* Stop the update process since the consumer is dead. */
766 /* For all tracing session(s) */
767 cds_list_for_each_entry_safe(sess
, stmp
, &session_list_ptr
->head
, list
) {
769 if (sess
->ust_session
) {
770 ust_app_global_update(sess
->ust_session
, app_sock
);
772 session_unlock(sess
);
777 * This thread manage event coming from the kernel.
779 * Features supported in this thread:
782 static void *thread_manage_kernel(void *data
)
784 int ret
, i
, pollfd
, update_poll_flag
= 1, err
= -1;
785 uint32_t revents
, nb_fd
;
787 struct lttng_poll_event events
;
789 DBG("[thread] Thread manage kernel started");
791 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_KERNEL
);
794 * This first step of the while is to clean this structure which could free
795 * non NULL pointers so initialize it before the loop.
797 lttng_poll_init(&events
);
799 if (testpoint(thread_manage_kernel
)) {
800 goto error_testpoint
;
803 health_code_update();
805 if (testpoint(thread_manage_kernel_before_loop
)) {
806 goto error_testpoint
;
810 health_code_update();
812 if (update_poll_flag
== 1) {
813 /* Clean events object. We are about to populate it again. */
814 lttng_poll_clean(&events
);
816 ret
= sessiond_set_thread_pollset(&events
, 2);
818 goto error_poll_create
;
821 ret
= lttng_poll_add(&events
, kernel_poll_pipe
[0], LPOLLIN
);
826 /* This will add the available kernel channel if any. */
827 ret
= update_kernel_poll(&events
);
831 update_poll_flag
= 0;
834 DBG("Thread kernel polling on %d fds", LTTNG_POLL_GETNB(&events
));
836 /* Poll infinite value of time */
839 ret
= lttng_poll_wait(&events
, -1);
843 * Restart interrupted system call.
845 if (errno
== EINTR
) {
849 } else if (ret
== 0) {
850 /* Should not happen since timeout is infinite */
851 ERR("Return value of poll is 0 with an infinite timeout.\n"
852 "This should not have happened! Continuing...");
858 for (i
= 0; i
< nb_fd
; i
++) {
859 /* Fetch once the poll data */
860 revents
= LTTNG_POLL_GETEV(&events
, i
);
861 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
863 health_code_update();
865 /* Thread quit pipe has been closed. Killing thread. */
866 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
872 /* Check for data on kernel pipe */
873 if (pollfd
== kernel_poll_pipe
[0] && (revents
& LPOLLIN
)) {
874 (void) lttng_read(kernel_poll_pipe
[0],
877 * Ret value is useless here, if this pipe gets any actions an
878 * update is required anyway.
880 update_poll_flag
= 1;
884 * New CPU detected by the kernel. Adding kernel stream to
885 * kernel session and updating the kernel consumer
887 if (revents
& LPOLLIN
) {
888 ret
= update_kernel_stream(&kconsumer_data
, pollfd
);
894 * TODO: We might want to handle the LPOLLERR | LPOLLHUP
895 * and unregister kernel stream at this point.
904 lttng_poll_clean(&events
);
907 utils_close_pipe(kernel_poll_pipe
);
908 kernel_poll_pipe
[0] = kernel_poll_pipe
[1] = -1;
911 ERR("Health error occurred in %s", __func__
);
912 WARN("Kernel thread died unexpectedly. "
913 "Kernel tracing can continue but CPU hotplug is disabled.");
915 health_unregister(health_sessiond
);
916 DBG("Kernel thread dying");
921 * Signal pthread condition of the consumer data that the thread.
923 static void signal_consumer_condition(struct consumer_data
*data
, int state
)
925 pthread_mutex_lock(&data
->cond_mutex
);
928 * The state is set before signaling. It can be any value, it's the waiter
929 * job to correctly interpret this condition variable associated to the
930 * consumer pthread_cond.
932 * A value of 0 means that the corresponding thread of the consumer data
933 * was not started. 1 indicates that the thread has started and is ready
934 * for action. A negative value means that there was an error during the
937 data
->consumer_thread_is_ready
= state
;
938 (void) pthread_cond_signal(&data
->cond
);
940 pthread_mutex_unlock(&data
->cond_mutex
);
944 * This thread manage the consumer error sent back to the session daemon.
946 static void *thread_manage_consumer(void *data
)
948 int sock
= -1, i
, ret
, pollfd
, err
= -1;
949 uint32_t revents
, nb_fd
;
950 enum lttcomm_return_code code
;
951 struct lttng_poll_event events
;
952 struct consumer_data
*consumer_data
= data
;
954 DBG("[thread] Manage consumer started");
956 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_CONSUMER
);
958 health_code_update();
961 * Pass 3 as size here for the thread quit pipe, consumerd_err_sock and the
962 * metadata_sock. Nothing more will be added to this poll set.
964 ret
= sessiond_set_thread_pollset(&events
, 3);
970 * The error socket here is already in a listening state which was done
971 * just before spawning this thread to avoid a race between the consumer
972 * daemon exec trying to connect and the listen() call.
974 ret
= lttng_poll_add(&events
, consumer_data
->err_sock
, LPOLLIN
| LPOLLRDHUP
);
979 health_code_update();
981 /* Infinite blocking call, waiting for transmission */
985 if (testpoint(thread_manage_consumer
)) {
989 ret
= lttng_poll_wait(&events
, -1);
993 * Restart interrupted system call.
995 if (errno
== EINTR
) {
1003 for (i
= 0; i
< nb_fd
; i
++) {
1004 /* Fetch once the poll data */
1005 revents
= LTTNG_POLL_GETEV(&events
, i
);
1006 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1008 health_code_update();
1010 /* Thread quit pipe has been closed. Killing thread. */
1011 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1017 /* Event on the registration socket */
1018 if (pollfd
== consumer_data
->err_sock
) {
1019 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1020 ERR("consumer err socket poll error");
1026 sock
= lttcomm_accept_unix_sock(consumer_data
->err_sock
);
1032 * Set the CLOEXEC flag. Return code is useless because either way, the
1035 (void) utils_set_fd_cloexec(sock
);
1037 health_code_update();
1039 DBG2("Receiving code from consumer err_sock");
1041 /* Getting status code from kconsumerd */
1042 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1043 sizeof(enum lttcomm_return_code
));
1048 health_code_update();
1050 if (code
== LTTCOMM_CONSUMERD_COMMAND_SOCK_READY
) {
1051 /* Connect both socket, command and metadata. */
1052 consumer_data
->cmd_sock
=
1053 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
1054 consumer_data
->metadata_fd
=
1055 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
1056 if (consumer_data
->cmd_sock
< 0
1057 || consumer_data
->metadata_fd
< 0) {
1058 PERROR("consumer connect cmd socket");
1059 /* On error, signal condition and quit. */
1060 signal_consumer_condition(consumer_data
, -1);
1063 consumer_data
->metadata_sock
.fd_ptr
= &consumer_data
->metadata_fd
;
1064 /* Create metadata socket lock. */
1065 consumer_data
->metadata_sock
.lock
= zmalloc(sizeof(pthread_mutex_t
));
1066 if (consumer_data
->metadata_sock
.lock
== NULL
) {
1067 PERROR("zmalloc pthread mutex");
1071 pthread_mutex_init(consumer_data
->metadata_sock
.lock
, NULL
);
1073 signal_consumer_condition(consumer_data
, 1);
1074 DBG("Consumer command socket ready (fd: %d", consumer_data
->cmd_sock
);
1075 DBG("Consumer metadata socket ready (fd: %d)",
1076 consumer_data
->metadata_fd
);
1078 ERR("consumer error when waiting for SOCK_READY : %s",
1079 lttcomm_get_readable_code(-code
));
1083 /* Remove the consumerd error sock since we've established a connexion */
1084 ret
= lttng_poll_del(&events
, consumer_data
->err_sock
);
1089 /* Add new accepted error socket. */
1090 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLRDHUP
);
1095 /* Add metadata socket that is successfully connected. */
1096 ret
= lttng_poll_add(&events
, consumer_data
->metadata_fd
,
1097 LPOLLIN
| LPOLLRDHUP
);
1102 health_code_update();
1104 /* Infinite blocking call, waiting for transmission */
1107 health_poll_entry();
1108 ret
= lttng_poll_wait(&events
, -1);
1112 * Restart interrupted system call.
1114 if (errno
== EINTR
) {
1122 for (i
= 0; i
< nb_fd
; i
++) {
1123 /* Fetch once the poll data */
1124 revents
= LTTNG_POLL_GETEV(&events
, i
);
1125 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1127 health_code_update();
1129 /* Thread quit pipe has been closed. Killing thread. */
1130 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1136 if (pollfd
== sock
) {
1137 /* Event on the consumerd socket */
1138 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1139 ERR("consumer err socket second poll error");
1142 health_code_update();
1143 /* Wait for any kconsumerd error */
1144 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1145 sizeof(enum lttcomm_return_code
));
1147 ERR("consumer closed the command socket");
1151 ERR("consumer return code : %s",
1152 lttcomm_get_readable_code(-code
));
1155 } else if (pollfd
== consumer_data
->metadata_fd
) {
1156 /* UST metadata requests */
1157 ret
= ust_consumer_metadata_request(
1158 &consumer_data
->metadata_sock
);
1160 ERR("Handling metadata request");
1165 ERR("Unknown pollfd");
1169 health_code_update();
1175 * We lock here because we are about to close the sockets and some other
1176 * thread might be using them so get exclusive access which will abort all
1177 * other consumer command by other threads.
1179 pthread_mutex_lock(&consumer_data
->lock
);
1181 /* Immediately set the consumerd state to stopped */
1182 if (consumer_data
->type
== LTTNG_CONSUMER_KERNEL
) {
1183 uatomic_set(&kernel_consumerd_state
, CONSUMER_ERROR
);
1184 } else if (consumer_data
->type
== LTTNG_CONSUMER64_UST
||
1185 consumer_data
->type
== LTTNG_CONSUMER32_UST
) {
1186 uatomic_set(&ust_consumerd_state
, CONSUMER_ERROR
);
1188 /* Code flow error... */
1192 if (consumer_data
->err_sock
>= 0) {
1193 ret
= close(consumer_data
->err_sock
);
1197 consumer_data
->err_sock
= -1;
1199 if (consumer_data
->cmd_sock
>= 0) {
1200 ret
= close(consumer_data
->cmd_sock
);
1204 consumer_data
->cmd_sock
= -1;
1206 if (*consumer_data
->metadata_sock
.fd_ptr
>= 0) {
1207 ret
= close(*consumer_data
->metadata_sock
.fd_ptr
);
1220 unlink(consumer_data
->err_unix_sock_path
);
1221 unlink(consumer_data
->cmd_unix_sock_path
);
1222 consumer_data
->pid
= 0;
1223 pthread_mutex_unlock(&consumer_data
->lock
);
1225 /* Cleanup metadata socket mutex. */
1226 pthread_mutex_destroy(consumer_data
->metadata_sock
.lock
);
1227 free(consumer_data
->metadata_sock
.lock
);
1229 lttng_poll_clean(&events
);
1233 ERR("Health error occurred in %s", __func__
);
1235 health_unregister(health_sessiond
);
1236 DBG("consumer thread cleanup completed");
1242 * This thread manage application communication.
1244 static void *thread_manage_apps(void *data
)
1246 int i
, ret
, pollfd
, err
= -1;
1248 uint32_t revents
, nb_fd
;
1249 struct lttng_poll_event events
;
1251 DBG("[thread] Manage application started");
1253 rcu_register_thread();
1254 rcu_thread_online();
1256 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_APP_MANAGE
);
1258 if (testpoint(thread_manage_apps
)) {
1259 goto error_testpoint
;
1262 health_code_update();
1264 ret
= sessiond_set_thread_pollset(&events
, 2);
1266 goto error_poll_create
;
1269 ret
= lttng_poll_add(&events
, apps_cmd_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
1274 if (testpoint(thread_manage_apps_before_loop
)) {
1278 health_code_update();
1281 DBG("Apps thread polling on %d fds", LTTNG_POLL_GETNB(&events
));
1283 /* Inifinite blocking call, waiting for transmission */
1285 health_poll_entry();
1286 ret
= lttng_poll_wait(&events
, -1);
1290 * Restart interrupted system call.
1292 if (errno
== EINTR
) {
1300 for (i
= 0; i
< nb_fd
; i
++) {
1301 /* Fetch once the poll data */
1302 revents
= LTTNG_POLL_GETEV(&events
, i
);
1303 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1305 health_code_update();
1307 /* Thread quit pipe has been closed. Killing thread. */
1308 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1314 /* Inspect the apps cmd pipe */
1315 if (pollfd
== apps_cmd_pipe
[0]) {
1316 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1317 ERR("Apps command pipe error");
1319 } else if (revents
& LPOLLIN
) {
1323 size_ret
= lttng_read(apps_cmd_pipe
[0], &sock
, sizeof(sock
));
1324 if (size_ret
< sizeof(sock
)) {
1325 PERROR("read apps cmd pipe");
1329 health_code_update();
1332 * We only monitor the error events of the socket. This
1333 * thread does not handle any incoming data from UST
1336 ret
= lttng_poll_add(&events
, sock
,
1337 LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
);
1342 DBG("Apps with sock %d added to poll set", sock
);
1344 health_code_update();
1350 * At this point, we know that a registered application made
1351 * the event at poll_wait.
1353 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1354 /* Removing from the poll set */
1355 ret
= lttng_poll_del(&events
, pollfd
);
1360 /* Socket closed on remote end. */
1361 ust_app_unregister(pollfd
);
1366 health_code_update();
1372 lttng_poll_clean(&events
);
1375 utils_close_pipe(apps_cmd_pipe
);
1376 apps_cmd_pipe
[0] = apps_cmd_pipe
[1] = -1;
1379 * We don't clean the UST app hash table here since already registered
1380 * applications can still be controlled so let them be until the session
1381 * daemon dies or the applications stop.
1386 ERR("Health error occurred in %s", __func__
);
1388 health_unregister(health_sessiond
);
1389 DBG("Application communication apps thread cleanup complete");
1390 rcu_thread_offline();
1391 rcu_unregister_thread();
1396 * Send a socket to a thread This is called from the dispatch UST registration
1397 * thread once all sockets are set for the application.
1399 * The sock value can be invalid, we don't really care, the thread will handle
1400 * it and make the necessary cleanup if so.
1402 * On success, return 0 else a negative value being the errno message of the
1405 static int send_socket_to_thread(int fd
, int sock
)
1410 * It's possible that the FD is set as invalid with -1 concurrently just
1411 * before calling this function being a shutdown state of the thread.
1418 ret
= lttng_write(fd
, &sock
, sizeof(sock
));
1419 if (ret
< sizeof(sock
)) {
1420 PERROR("write apps pipe %d", fd
);
1427 /* All good. Don't send back the write positive ret value. */
1434 * Sanitize the wait queue of the dispatch registration thread meaning removing
1435 * invalid nodes from it. This is to avoid memory leaks for the case the UST
1436 * notify socket is never received.
1438 static void sanitize_wait_queue(struct ust_reg_wait_queue
*wait_queue
)
1440 int ret
, nb_fd
= 0, i
;
1441 unsigned int fd_added
= 0;
1442 struct lttng_poll_event events
;
1443 struct ust_reg_wait_node
*wait_node
= NULL
, *tmp_wait_node
;
1447 lttng_poll_init(&events
);
1449 /* Just skip everything for an empty queue. */
1450 if (!wait_queue
->count
) {
1454 ret
= lttng_poll_create(&events
, wait_queue
->count
, LTTNG_CLOEXEC
);
1459 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1460 &wait_queue
->head
, head
) {
1461 assert(wait_node
->app
);
1462 ret
= lttng_poll_add(&events
, wait_node
->app
->sock
,
1463 LPOLLHUP
| LPOLLERR
);
1476 * Poll but don't block so we can quickly identify the faulty events and
1477 * clean them afterwards from the wait queue.
1479 ret
= lttng_poll_wait(&events
, 0);
1485 for (i
= 0; i
< nb_fd
; i
++) {
1486 /* Get faulty FD. */
1487 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
1488 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1490 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1491 &wait_queue
->head
, head
) {
1492 if (pollfd
== wait_node
->app
->sock
&&
1493 (revents
& (LPOLLHUP
| LPOLLERR
))) {
1494 cds_list_del(&wait_node
->head
);
1495 wait_queue
->count
--;
1496 ust_app_destroy(wait_node
->app
);
1504 DBG("Wait queue sanitized, %d node were cleaned up", nb_fd
);
1508 lttng_poll_clean(&events
);
1512 lttng_poll_clean(&events
);
1514 ERR("Unable to sanitize wait queue");
1519 * Dispatch request from the registration threads to the application
1520 * communication thread.
1522 static void *thread_dispatch_ust_registration(void *data
)
1525 struct cds_wfq_node
*node
;
1526 struct ust_command
*ust_cmd
= NULL
;
1527 struct ust_reg_wait_node
*wait_node
= NULL
, *tmp_wait_node
;
1528 struct ust_reg_wait_queue wait_queue
= {
1532 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_APP_REG_DISPATCH
);
1534 health_code_update();
1536 CDS_INIT_LIST_HEAD(&wait_queue
.head
);
1538 DBG("[thread] Dispatch UST command started");
1540 while (!CMM_LOAD_SHARED(dispatch_thread_exit
)) {
1541 health_code_update();
1543 /* Atomically prepare the queue futex */
1544 futex_nto1_prepare(&ust_cmd_queue
.futex
);
1547 struct ust_app
*app
= NULL
;
1551 * Make sure we don't have node(s) that have hung up before receiving
1552 * the notify socket. This is to clean the list in order to avoid
1553 * memory leaks from notify socket that are never seen.
1555 sanitize_wait_queue(&wait_queue
);
1557 health_code_update();
1558 /* Dequeue command for registration */
1559 node
= cds_wfq_dequeue_blocking(&ust_cmd_queue
.queue
);
1561 DBG("Woken up but nothing in the UST command queue");
1562 /* Continue thread execution */
1566 ust_cmd
= caa_container_of(node
, struct ust_command
, node
);
1568 DBG("Dispatching UST registration pid:%d ppid:%d uid:%d"
1569 " gid:%d sock:%d name:%s (version %d.%d)",
1570 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1571 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1572 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1573 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1575 if (ust_cmd
->reg_msg
.type
== USTCTL_SOCKET_CMD
) {
1576 wait_node
= zmalloc(sizeof(*wait_node
));
1578 PERROR("zmalloc wait_node dispatch");
1579 ret
= close(ust_cmd
->sock
);
1581 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1583 lttng_fd_put(LTTNG_FD_APPS
, 1);
1587 CDS_INIT_LIST_HEAD(&wait_node
->head
);
1589 /* Create application object if socket is CMD. */
1590 wait_node
->app
= ust_app_create(&ust_cmd
->reg_msg
,
1592 if (!wait_node
->app
) {
1593 ret
= close(ust_cmd
->sock
);
1595 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1597 lttng_fd_put(LTTNG_FD_APPS
, 1);
1603 * Add application to the wait queue so we can set the notify
1604 * socket before putting this object in the global ht.
1606 cds_list_add(&wait_node
->head
, &wait_queue
.head
);
1611 * We have to continue here since we don't have the notify
1612 * socket and the application MUST be added to the hash table
1613 * only at that moment.
1618 * Look for the application in the local wait queue and set the
1619 * notify socket if found.
1621 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1622 &wait_queue
.head
, head
) {
1623 health_code_update();
1624 if (wait_node
->app
->pid
== ust_cmd
->reg_msg
.pid
) {
1625 wait_node
->app
->notify_sock
= ust_cmd
->sock
;
1626 cds_list_del(&wait_node
->head
);
1628 app
= wait_node
->app
;
1630 DBG3("UST app notify socket %d is set", ust_cmd
->sock
);
1636 * With no application at this stage the received socket is
1637 * basically useless so close it before we free the cmd data
1638 * structure for good.
1641 ret
= close(ust_cmd
->sock
);
1643 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1645 lttng_fd_put(LTTNG_FD_APPS
, 1);
1652 * @session_lock_list
1654 * Lock the global session list so from the register up to the
1655 * registration done message, no thread can see the application
1656 * and change its state.
1658 session_lock_list();
1662 * Add application to the global hash table. This needs to be
1663 * done before the update to the UST registry can locate the
1668 /* Set app version. This call will print an error if needed. */
1669 (void) ust_app_version(app
);
1671 /* Send notify socket through the notify pipe. */
1672 ret
= send_socket_to_thread(apps_cmd_notify_pipe
[1],
1676 session_unlock_list();
1678 * No notify thread, stop the UST tracing. However, this is
1679 * not an internal error of the this thread thus setting
1680 * the health error code to a normal exit.
1687 * Update newly registered application with the tracing
1688 * registry info already enabled information.
1690 update_ust_app(app
->sock
);
1693 * Don't care about return value. Let the manage apps threads
1694 * handle app unregistration upon socket close.
1696 (void) ust_app_register_done(app
->sock
);
1699 * Even if the application socket has been closed, send the app
1700 * to the thread and unregistration will take place at that
1703 ret
= send_socket_to_thread(apps_cmd_pipe
[1], app
->sock
);
1706 session_unlock_list();
1708 * No apps. thread, stop the UST tracing. However, this is
1709 * not an internal error of the this thread thus setting
1710 * the health error code to a normal exit.
1717 session_unlock_list();
1719 } while (node
!= NULL
);
1721 health_poll_entry();
1722 /* Futex wait on queue. Blocking call on futex() */
1723 futex_nto1_wait(&ust_cmd_queue
.futex
);
1726 /* Normal exit, no error */
1730 /* Clean up wait queue. */
1731 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1732 &wait_queue
.head
, head
) {
1733 cds_list_del(&wait_node
->head
);
1738 DBG("Dispatch thread dying");
1741 ERR("Health error occurred in %s", __func__
);
1743 health_unregister(health_sessiond
);
1748 * This thread manage application registration.
1750 static void *thread_registration_apps(void *data
)
1752 int sock
= -1, i
, ret
, pollfd
, err
= -1;
1753 uint32_t revents
, nb_fd
;
1754 struct lttng_poll_event events
;
1756 * Get allocated in this thread, enqueued to a global queue, dequeued and
1757 * freed in the manage apps thread.
1759 struct ust_command
*ust_cmd
= NULL
;
1761 DBG("[thread] Manage application registration started");
1763 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_APP_REG
);
1765 if (testpoint(thread_registration_apps
)) {
1766 goto error_testpoint
;
1769 ret
= lttcomm_listen_unix_sock(apps_sock
);
1775 * Pass 2 as size here for the thread quit pipe and apps socket. Nothing
1776 * more will be added to this poll set.
1778 ret
= sessiond_set_thread_pollset(&events
, 2);
1780 goto error_create_poll
;
1783 /* Add the application registration socket */
1784 ret
= lttng_poll_add(&events
, apps_sock
, LPOLLIN
| LPOLLRDHUP
);
1786 goto error_poll_add
;
1789 /* Notify all applications to register */
1790 ret
= notify_ust_apps(1);
1792 ERR("Failed to notify applications or create the wait shared memory.\n"
1793 "Execution continues but there might be problem for already\n"
1794 "running applications that wishes to register.");
1798 DBG("Accepting application registration");
1800 /* Inifinite blocking call, waiting for transmission */
1802 health_poll_entry();
1803 ret
= lttng_poll_wait(&events
, -1);
1807 * Restart interrupted system call.
1809 if (errno
== EINTR
) {
1817 for (i
= 0; i
< nb_fd
; i
++) {
1818 health_code_update();
1820 /* Fetch once the poll data */
1821 revents
= LTTNG_POLL_GETEV(&events
, i
);
1822 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1824 /* Thread quit pipe has been closed. Killing thread. */
1825 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1831 /* Event on the registration socket */
1832 if (pollfd
== apps_sock
) {
1833 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1834 ERR("Register apps socket poll error");
1836 } else if (revents
& LPOLLIN
) {
1837 sock
= lttcomm_accept_unix_sock(apps_sock
);
1843 * Set socket timeout for both receiving and ending.
1844 * app_socket_timeout is in seconds, whereas
1845 * lttcomm_setsockopt_rcv_timeout and
1846 * lttcomm_setsockopt_snd_timeout expect msec as
1849 (void) lttcomm_setsockopt_rcv_timeout(sock
,
1850 app_socket_timeout
* 1000);
1851 (void) lttcomm_setsockopt_snd_timeout(sock
,
1852 app_socket_timeout
* 1000);
1855 * Set the CLOEXEC flag. Return code is useless because
1856 * either way, the show must go on.
1858 (void) utils_set_fd_cloexec(sock
);
1860 /* Create UST registration command for enqueuing */
1861 ust_cmd
= zmalloc(sizeof(struct ust_command
));
1862 if (ust_cmd
== NULL
) {
1863 PERROR("ust command zmalloc");
1868 * Using message-based transmissions to ensure we don't
1869 * have to deal with partially received messages.
1871 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
1873 ERR("Exhausted file descriptors allowed for applications.");
1883 health_code_update();
1884 ret
= ust_app_recv_registration(sock
, &ust_cmd
->reg_msg
);
1887 /* Close socket of the application. */
1892 lttng_fd_put(LTTNG_FD_APPS
, 1);
1896 health_code_update();
1898 ust_cmd
->sock
= sock
;
1901 DBG("UST registration received with pid:%d ppid:%d uid:%d"
1902 " gid:%d sock:%d name:%s (version %d.%d)",
1903 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1904 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1905 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1906 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1909 * Lock free enqueue the registration request. The red pill
1910 * has been taken! This apps will be part of the *system*.
1912 cds_wfq_enqueue(&ust_cmd_queue
.queue
, &ust_cmd
->node
);
1915 * Wake the registration queue futex. Implicit memory
1916 * barrier with the exchange in cds_wfq_enqueue.
1918 futex_nto1_wake(&ust_cmd_queue
.futex
);
1928 ERR("Health error occurred in %s", __func__
);
1931 /* Notify that the registration thread is gone */
1934 if (apps_sock
>= 0) {
1935 ret
= close(apps_sock
);
1945 lttng_fd_put(LTTNG_FD_APPS
, 1);
1947 unlink(apps_unix_sock_path
);
1950 lttng_poll_clean(&events
);
1954 DBG("UST Registration thread cleanup complete");
1955 health_unregister(health_sessiond
);
1961 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
1962 * exec or it will fails.
1964 static int spawn_consumer_thread(struct consumer_data
*consumer_data
)
1967 struct timespec timeout
;
1969 /* Make sure we set the readiness flag to 0 because we are NOT ready */
1970 consumer_data
->consumer_thread_is_ready
= 0;
1972 /* Setup pthread condition */
1973 ret
= pthread_condattr_init(&consumer_data
->condattr
);
1976 PERROR("pthread_condattr_init consumer data");
1981 * Set the monotonic clock in order to make sure we DO NOT jump in time
1982 * between the clock_gettime() call and the timedwait call. See bug #324
1983 * for a more details and how we noticed it.
1985 ret
= pthread_condattr_setclock(&consumer_data
->condattr
, CLOCK_MONOTONIC
);
1988 PERROR("pthread_condattr_setclock consumer data");
1992 ret
= pthread_cond_init(&consumer_data
->cond
, &consumer_data
->condattr
);
1995 PERROR("pthread_cond_init consumer data");
1999 ret
= pthread_create(&consumer_data
->thread
, NULL
, thread_manage_consumer
,
2002 PERROR("pthread_create consumer");
2007 /* We are about to wait on a pthread condition */
2008 pthread_mutex_lock(&consumer_data
->cond_mutex
);
2010 /* Get time for sem_timedwait absolute timeout */
2011 clock_ret
= clock_gettime(CLOCK_MONOTONIC
, &timeout
);
2013 * Set the timeout for the condition timed wait even if the clock gettime
2014 * call fails since we might loop on that call and we want to avoid to
2015 * increment the timeout too many times.
2017 timeout
.tv_sec
+= DEFAULT_SEM_WAIT_TIMEOUT
;
2020 * The following loop COULD be skipped in some conditions so this is why we
2021 * set ret to 0 in order to make sure at least one round of the loop is
2027 * Loop until the condition is reached or when a timeout is reached. Note
2028 * that the pthread_cond_timedwait(P) man page specifies that EINTR can NOT
2029 * be returned but the pthread_cond(3), from the glibc-doc, says that it is
2030 * possible. This loop does not take any chances and works with both of
2033 while (!consumer_data
->consumer_thread_is_ready
&& ret
!= ETIMEDOUT
) {
2034 if (clock_ret
< 0) {
2035 PERROR("clock_gettime spawn consumer");
2036 /* Infinite wait for the consumerd thread to be ready */
2037 ret
= pthread_cond_wait(&consumer_data
->cond
,
2038 &consumer_data
->cond_mutex
);
2040 ret
= pthread_cond_timedwait(&consumer_data
->cond
,
2041 &consumer_data
->cond_mutex
, &timeout
);
2045 /* Release the pthread condition */
2046 pthread_mutex_unlock(&consumer_data
->cond_mutex
);
2050 if (ret
== ETIMEDOUT
) {
2052 * Call has timed out so we kill the kconsumerd_thread and return
2055 ERR("Condition timed out. The consumer thread was never ready."
2057 ret
= pthread_cancel(consumer_data
->thread
);
2059 PERROR("pthread_cancel consumer thread");
2062 PERROR("pthread_cond_wait failed consumer thread");
2067 pthread_mutex_lock(&consumer_data
->pid_mutex
);
2068 if (consumer_data
->pid
== 0) {
2069 ERR("Consumerd did not start");
2070 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2073 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2082 * Join consumer thread
2084 static int join_consumer_thread(struct consumer_data
*consumer_data
)
2088 /* Consumer pid must be a real one. */
2089 if (consumer_data
->pid
> 0) {
2091 ret
= kill(consumer_data
->pid
, SIGTERM
);
2093 ERR("Error killing consumer daemon");
2096 return pthread_join(consumer_data
->thread
, &status
);
2103 * Fork and exec a consumer daemon (consumerd).
2105 * Return pid if successful else -1.
2107 static pid_t
spawn_consumerd(struct consumer_data
*consumer_data
)
2111 const char *consumer_to_use
;
2112 const char *verbosity
;
2115 DBG("Spawning consumerd");
2122 if (opt_verbose_consumer
) {
2123 verbosity
= "--verbose";
2125 verbosity
= "--quiet";
2127 switch (consumer_data
->type
) {
2128 case LTTNG_CONSUMER_KERNEL
:
2130 * Find out which consumerd to execute. We will first try the
2131 * 64-bit path, then the sessiond's installation directory, and
2132 * fallback on the 32-bit one,
2134 DBG3("Looking for a kernel consumer at these locations:");
2135 DBG3(" 1) %s", consumerd64_bin
);
2136 DBG3(" 2) %s/%s", INSTALL_BIN_PATH
, CONSUMERD_FILE
);
2137 DBG3(" 3) %s", consumerd32_bin
);
2138 if (stat(consumerd64_bin
, &st
) == 0) {
2139 DBG3("Found location #1");
2140 consumer_to_use
= consumerd64_bin
;
2141 } else if (stat(INSTALL_BIN_PATH
"/" CONSUMERD_FILE
, &st
) == 0) {
2142 DBG3("Found location #2");
2143 consumer_to_use
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
2144 } else if (stat(consumerd32_bin
, &st
) == 0) {
2145 DBG3("Found location #3");
2146 consumer_to_use
= consumerd32_bin
;
2148 DBG("Could not find any valid consumerd executable");
2151 DBG("Using kernel consumer at: %s", consumer_to_use
);
2152 execl(consumer_to_use
,
2153 "lttng-consumerd", verbosity
, "-k",
2154 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2155 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2156 "--group", tracing_group_name
,
2159 case LTTNG_CONSUMER64_UST
:
2161 char *tmpnew
= NULL
;
2163 if (consumerd64_libdir
[0] != '\0') {
2167 tmp
= getenv("LD_LIBRARY_PATH");
2171 tmplen
= strlen("LD_LIBRARY_PATH=")
2172 + strlen(consumerd64_libdir
) + 1 /* : */ + strlen(tmp
);
2173 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
2178 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
2179 strcat(tmpnew
, consumerd64_libdir
);
2180 if (tmp
[0] != '\0') {
2181 strcat(tmpnew
, ":");
2182 strcat(tmpnew
, tmp
);
2184 ret
= putenv(tmpnew
);
2191 DBG("Using 64-bit UST consumer at: %s", consumerd64_bin
);
2192 ret
= execl(consumerd64_bin
, "lttng-consumerd", verbosity
, "-u",
2193 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2194 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2195 "--group", tracing_group_name
,
2197 if (consumerd64_libdir
[0] != '\0') {
2205 case LTTNG_CONSUMER32_UST
:
2207 char *tmpnew
= NULL
;
2209 if (consumerd32_libdir
[0] != '\0') {
2213 tmp
= getenv("LD_LIBRARY_PATH");
2217 tmplen
= strlen("LD_LIBRARY_PATH=")
2218 + strlen(consumerd32_libdir
) + 1 /* : */ + strlen(tmp
);
2219 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
2224 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
2225 strcat(tmpnew
, consumerd32_libdir
);
2226 if (tmp
[0] != '\0') {
2227 strcat(tmpnew
, ":");
2228 strcat(tmpnew
, tmp
);
2230 ret
= putenv(tmpnew
);
2237 DBG("Using 32-bit UST consumer at: %s", consumerd32_bin
);
2238 ret
= execl(consumerd32_bin
, "lttng-consumerd", verbosity
, "-u",
2239 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2240 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2241 "--group", tracing_group_name
,
2243 if (consumerd32_libdir
[0] != '\0') {
2252 PERROR("unknown consumer type");
2256 PERROR("kernel start consumer exec");
2259 } else if (pid
> 0) {
2262 PERROR("start consumer fork");
2270 * Spawn the consumerd daemon and session daemon thread.
2272 static int start_consumerd(struct consumer_data
*consumer_data
)
2277 * Set the listen() state on the socket since there is a possible race
2278 * between the exec() of the consumer daemon and this call if place in the
2279 * consumer thread. See bug #366 for more details.
2281 ret
= lttcomm_listen_unix_sock(consumer_data
->err_sock
);
2286 pthread_mutex_lock(&consumer_data
->pid_mutex
);
2287 if (consumer_data
->pid
!= 0) {
2288 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2292 ret
= spawn_consumerd(consumer_data
);
2294 ERR("Spawning consumerd failed");
2295 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2299 /* Setting up the consumer_data pid */
2300 consumer_data
->pid
= ret
;
2301 DBG2("Consumer pid %d", consumer_data
->pid
);
2302 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2304 DBG2("Spawning consumer control thread");
2305 ret
= spawn_consumer_thread(consumer_data
);
2307 ERR("Fatal error spawning consumer control thread");
2315 /* Cleanup already created sockets on error. */
2316 if (consumer_data
->err_sock
>= 0) {
2319 err
= close(consumer_data
->err_sock
);
2321 PERROR("close consumer data error socket");
2328 * Setup necessary data for kernel tracer action.
2330 static int init_kernel_tracer(void)
2334 /* Modprobe lttng kernel modules */
2335 ret
= modprobe_lttng_control();
2340 /* Open debugfs lttng */
2341 kernel_tracer_fd
= open(module_proc_lttng
, O_RDWR
);
2342 if (kernel_tracer_fd
< 0) {
2343 DBG("Failed to open %s", module_proc_lttng
);
2348 /* Validate kernel version */
2349 ret
= kernel_validate_version(kernel_tracer_fd
);
2354 ret
= modprobe_lttng_data();
2359 DBG("Kernel tracer fd %d", kernel_tracer_fd
);
2363 modprobe_remove_lttng_control();
2364 ret
= close(kernel_tracer_fd
);
2368 kernel_tracer_fd
= -1;
2369 return LTTNG_ERR_KERN_VERSION
;
2372 ret
= close(kernel_tracer_fd
);
2378 modprobe_remove_lttng_control();
2381 WARN("No kernel tracer available");
2382 kernel_tracer_fd
= -1;
2384 return LTTNG_ERR_NEED_ROOT_SESSIOND
;
2386 return LTTNG_ERR_KERN_NA
;
2392 * Copy consumer output from the tracing session to the domain session. The
2393 * function also applies the right modification on a per domain basis for the
2394 * trace files destination directory.
2396 * Should *NOT* be called with RCU read-side lock held.
2398 static int copy_session_consumer(int domain
, struct ltt_session
*session
)
2401 const char *dir_name
;
2402 struct consumer_output
*consumer
;
2405 assert(session
->consumer
);
2408 case LTTNG_DOMAIN_KERNEL
:
2409 DBG3("Copying tracing session consumer output in kernel session");
2411 * XXX: We should audit the session creation and what this function
2412 * does "extra" in order to avoid a destroy since this function is used
2413 * in the domain session creation (kernel and ust) only. Same for UST
2416 if (session
->kernel_session
->consumer
) {
2417 consumer_destroy_output(session
->kernel_session
->consumer
);
2419 session
->kernel_session
->consumer
=
2420 consumer_copy_output(session
->consumer
);
2421 /* Ease our life a bit for the next part */
2422 consumer
= session
->kernel_session
->consumer
;
2423 dir_name
= DEFAULT_KERNEL_TRACE_DIR
;
2425 case LTTNG_DOMAIN_JUL
:
2426 case LTTNG_DOMAIN_UST
:
2427 DBG3("Copying tracing session consumer output in UST session");
2428 if (session
->ust_session
->consumer
) {
2429 consumer_destroy_output(session
->ust_session
->consumer
);
2431 session
->ust_session
->consumer
=
2432 consumer_copy_output(session
->consumer
);
2433 /* Ease our life a bit for the next part */
2434 consumer
= session
->ust_session
->consumer
;
2435 dir_name
= DEFAULT_UST_TRACE_DIR
;
2438 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2442 /* Append correct directory to subdir */
2443 strncat(consumer
->subdir
, dir_name
,
2444 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
2445 DBG3("Copy session consumer subdir %s", consumer
->subdir
);
2454 * Create an UST session and add it to the session ust list.
2456 * Should *NOT* be called with RCU read-side lock held.
2458 static int create_ust_session(struct ltt_session
*session
,
2459 struct lttng_domain
*domain
)
2462 struct ltt_ust_session
*lus
= NULL
;
2466 assert(session
->consumer
);
2468 switch (domain
->type
) {
2469 case LTTNG_DOMAIN_JUL
:
2470 case LTTNG_DOMAIN_UST
:
2473 ERR("Unknown UST domain on create session %d", domain
->type
);
2474 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2478 DBG("Creating UST session");
2480 lus
= trace_ust_create_session(session
->id
);
2482 ret
= LTTNG_ERR_UST_SESS_FAIL
;
2486 lus
->uid
= session
->uid
;
2487 lus
->gid
= session
->gid
;
2488 lus
->output_traces
= session
->output_traces
;
2489 lus
->snapshot_mode
= session
->snapshot_mode
;
2490 lus
->live_timer_interval
= session
->live_timer
;
2491 session
->ust_session
= lus
;
2493 /* Copy session output to the newly created UST session */
2494 ret
= copy_session_consumer(domain
->type
, session
);
2495 if (ret
!= LTTNG_OK
) {
2503 session
->ust_session
= NULL
;
2508 * Create a kernel tracer session then create the default channel.
2510 static int create_kernel_session(struct ltt_session
*session
)
2514 DBG("Creating kernel session");
2516 ret
= kernel_create_session(session
, kernel_tracer_fd
);
2518 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
2522 /* Code flow safety */
2523 assert(session
->kernel_session
);
2525 /* Copy session output to the newly created Kernel session */
2526 ret
= copy_session_consumer(LTTNG_DOMAIN_KERNEL
, session
);
2527 if (ret
!= LTTNG_OK
) {
2531 /* Create directory(ies) on local filesystem. */
2532 if (session
->kernel_session
->consumer
->type
== CONSUMER_DST_LOCAL
&&
2533 strlen(session
->kernel_session
->consumer
->dst
.trace_path
) > 0) {
2534 ret
= run_as_mkdir_recursive(
2535 session
->kernel_session
->consumer
->dst
.trace_path
,
2536 S_IRWXU
| S_IRWXG
, session
->uid
, session
->gid
);
2538 if (ret
!= -EEXIST
) {
2539 ERR("Trace directory creation error");
2545 session
->kernel_session
->uid
= session
->uid
;
2546 session
->kernel_session
->gid
= session
->gid
;
2547 session
->kernel_session
->output_traces
= session
->output_traces
;
2548 session
->kernel_session
->snapshot_mode
= session
->snapshot_mode
;
2553 trace_kernel_destroy_session(session
->kernel_session
);
2554 session
->kernel_session
= NULL
;
2559 * Count number of session permitted by uid/gid.
2561 static unsigned int lttng_sessions_count(uid_t uid
, gid_t gid
)
2564 struct ltt_session
*session
;
2566 DBG("Counting number of available session for UID %d GID %d",
2568 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
2570 * Only list the sessions the user can control.
2572 if (!session_access_ok(session
, uid
, gid
)) {
2581 * Process the command requested by the lttng client within the command
2582 * context structure. This function make sure that the return structure (llm)
2583 * is set and ready for transmission before returning.
2585 * Return any error encountered or 0 for success.
2587 * "sock" is only used for special-case var. len data.
2589 * Should *NOT* be called with RCU read-side lock held.
2591 static int process_client_msg(struct command_ctx
*cmd_ctx
, int sock
,
2595 int need_tracing_session
= 1;
2598 DBG("Processing client command %d", cmd_ctx
->lsm
->cmd_type
);
2602 switch (cmd_ctx
->lsm
->cmd_type
) {
2603 case LTTNG_CREATE_SESSION
:
2604 case LTTNG_CREATE_SESSION_SNAPSHOT
:
2605 case LTTNG_CREATE_SESSION_LIVE
:
2606 case LTTNG_DESTROY_SESSION
:
2607 case LTTNG_LIST_SESSIONS
:
2608 case LTTNG_LIST_DOMAINS
:
2609 case LTTNG_START_TRACE
:
2610 case LTTNG_STOP_TRACE
:
2611 case LTTNG_DATA_PENDING
:
2612 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
2613 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
2614 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
2615 case LTTNG_SNAPSHOT_RECORD
:
2622 if (opt_no_kernel
&& need_domain
2623 && cmd_ctx
->lsm
->domain
.type
== LTTNG_DOMAIN_KERNEL
) {
2625 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
2627 ret
= LTTNG_ERR_KERN_NA
;
2632 /* Deny register consumer if we already have a spawned consumer. */
2633 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_REGISTER_CONSUMER
) {
2634 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
2635 if (kconsumer_data
.pid
> 0) {
2636 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2637 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2640 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2644 * Check for command that don't needs to allocate a returned payload. We do
2645 * this here so we don't have to make the call for no payload at each
2648 switch(cmd_ctx
->lsm
->cmd_type
) {
2649 case LTTNG_LIST_SESSIONS
:
2650 case LTTNG_LIST_TRACEPOINTS
:
2651 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2652 case LTTNG_LIST_DOMAINS
:
2653 case LTTNG_LIST_CHANNELS
:
2654 case LTTNG_LIST_EVENTS
:
2657 /* Setup lttng message with no payload */
2658 ret
= setup_lttng_msg(cmd_ctx
, 0);
2660 /* This label does not try to unlock the session */
2661 goto init_setup_error
;
2665 /* Commands that DO NOT need a session. */
2666 switch (cmd_ctx
->lsm
->cmd_type
) {
2667 case LTTNG_CREATE_SESSION
:
2668 case LTTNG_CREATE_SESSION_SNAPSHOT
:
2669 case LTTNG_CREATE_SESSION_LIVE
:
2670 case LTTNG_CALIBRATE
:
2671 case LTTNG_LIST_SESSIONS
:
2672 case LTTNG_LIST_TRACEPOINTS
:
2673 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2674 need_tracing_session
= 0;
2677 DBG("Getting session %s by name", cmd_ctx
->lsm
->session
.name
);
2679 * We keep the session list lock across _all_ commands
2680 * for now, because the per-session lock does not
2681 * handle teardown properly.
2683 session_lock_list();
2684 cmd_ctx
->session
= session_find_by_name(cmd_ctx
->lsm
->session
.name
);
2685 if (cmd_ctx
->session
== NULL
) {
2686 ret
= LTTNG_ERR_SESS_NOT_FOUND
;
2689 /* Acquire lock for the session */
2690 session_lock(cmd_ctx
->session
);
2700 * Check domain type for specific "pre-action".
2702 switch (cmd_ctx
->lsm
->domain
.type
) {
2703 case LTTNG_DOMAIN_KERNEL
:
2705 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
2709 /* Kernel tracer check */
2710 if (kernel_tracer_fd
== -1) {
2711 /* Basically, load kernel tracer modules */
2712 ret
= init_kernel_tracer();
2718 /* Consumer is in an ERROR state. Report back to client */
2719 if (uatomic_read(&kernel_consumerd_state
) == CONSUMER_ERROR
) {
2720 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
2724 /* Need a session for kernel command */
2725 if (need_tracing_session
) {
2726 if (cmd_ctx
->session
->kernel_session
== NULL
) {
2727 ret
= create_kernel_session(cmd_ctx
->session
);
2729 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
2734 /* Start the kernel consumer daemon */
2735 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
2736 if (kconsumer_data
.pid
== 0 &&
2737 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2738 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2739 ret
= start_consumerd(&kconsumer_data
);
2741 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2744 uatomic_set(&kernel_consumerd_state
, CONSUMER_STARTED
);
2746 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2750 * The consumer was just spawned so we need to add the socket to
2751 * the consumer output of the session if exist.
2753 ret
= consumer_create_socket(&kconsumer_data
,
2754 cmd_ctx
->session
->kernel_session
->consumer
);
2761 case LTTNG_DOMAIN_JUL
:
2762 case LTTNG_DOMAIN_UST
:
2764 if (!ust_app_supported()) {
2765 ret
= LTTNG_ERR_NO_UST
;
2768 /* Consumer is in an ERROR state. Report back to client */
2769 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
2770 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
2774 if (need_tracing_session
) {
2775 /* Create UST session if none exist. */
2776 if (cmd_ctx
->session
->ust_session
== NULL
) {
2777 ret
= create_ust_session(cmd_ctx
->session
,
2778 &cmd_ctx
->lsm
->domain
);
2779 if (ret
!= LTTNG_OK
) {
2784 /* Start the UST consumer daemons */
2786 pthread_mutex_lock(&ustconsumer64_data
.pid_mutex
);
2787 if (consumerd64_bin
[0] != '\0' &&
2788 ustconsumer64_data
.pid
== 0 &&
2789 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2790 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
2791 ret
= start_consumerd(&ustconsumer64_data
);
2793 ret
= LTTNG_ERR_UST_CONSUMER64_FAIL
;
2794 uatomic_set(&ust_consumerd64_fd
, -EINVAL
);
2798 uatomic_set(&ust_consumerd64_fd
, ustconsumer64_data
.cmd_sock
);
2799 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
2801 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
2805 * Setup socket for consumer 64 bit. No need for atomic access
2806 * since it was set above and can ONLY be set in this thread.
2808 ret
= consumer_create_socket(&ustconsumer64_data
,
2809 cmd_ctx
->session
->ust_session
->consumer
);
2815 if (consumerd32_bin
[0] != '\0' &&
2816 ustconsumer32_data
.pid
== 0 &&
2817 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2818 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
2819 ret
= start_consumerd(&ustconsumer32_data
);
2821 ret
= LTTNG_ERR_UST_CONSUMER32_FAIL
;
2822 uatomic_set(&ust_consumerd32_fd
, -EINVAL
);
2826 uatomic_set(&ust_consumerd32_fd
, ustconsumer32_data
.cmd_sock
);
2827 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
2829 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
2833 * Setup socket for consumer 64 bit. No need for atomic access
2834 * since it was set above and can ONLY be set in this thread.
2836 ret
= consumer_create_socket(&ustconsumer32_data
,
2837 cmd_ctx
->session
->ust_session
->consumer
);
2849 /* Validate consumer daemon state when start/stop trace command */
2850 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_START_TRACE
||
2851 cmd_ctx
->lsm
->cmd_type
== LTTNG_STOP_TRACE
) {
2852 switch (cmd_ctx
->lsm
->domain
.type
) {
2853 case LTTNG_DOMAIN_JUL
:
2854 case LTTNG_DOMAIN_UST
:
2855 if (uatomic_read(&ust_consumerd_state
) != CONSUMER_STARTED
) {
2856 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
2860 case LTTNG_DOMAIN_KERNEL
:
2861 if (uatomic_read(&kernel_consumerd_state
) != CONSUMER_STARTED
) {
2862 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
2870 * Check that the UID or GID match that of the tracing session.
2871 * The root user can interact with all sessions.
2873 if (need_tracing_session
) {
2874 if (!session_access_ok(cmd_ctx
->session
,
2875 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
2876 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
))) {
2877 ret
= LTTNG_ERR_EPERM
;
2883 * Send relayd information to consumer as soon as we have a domain and a
2886 if (cmd_ctx
->session
&& need_domain
) {
2888 * Setup relayd if not done yet. If the relayd information was already
2889 * sent to the consumer, this call will gracefully return.
2891 ret
= cmd_setup_relayd(cmd_ctx
->session
);
2892 if (ret
!= LTTNG_OK
) {
2897 /* Process by command type */
2898 switch (cmd_ctx
->lsm
->cmd_type
) {
2899 case LTTNG_ADD_CONTEXT
:
2901 ret
= cmd_add_context(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2902 cmd_ctx
->lsm
->u
.context
.channel_name
,
2903 &cmd_ctx
->lsm
->u
.context
.ctx
, kernel_poll_pipe
[1]);
2906 case LTTNG_DISABLE_CHANNEL
:
2908 ret
= cmd_disable_channel(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2909 cmd_ctx
->lsm
->u
.disable
.channel_name
);
2912 case LTTNG_DISABLE_EVENT
:
2914 ret
= cmd_disable_event(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2915 cmd_ctx
->lsm
->u
.disable
.channel_name
,
2916 cmd_ctx
->lsm
->u
.disable
.name
);
2919 case LTTNG_DISABLE_ALL_EVENT
:
2921 DBG("Disabling all events");
2923 ret
= cmd_disable_event_all(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2924 cmd_ctx
->lsm
->u
.disable
.channel_name
);
2927 case LTTNG_ENABLE_CHANNEL
:
2929 ret
= cmd_enable_channel(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
2930 &cmd_ctx
->lsm
->u
.channel
.chan
, kernel_poll_pipe
[1]);
2933 case LTTNG_ENABLE_EVENT
:
2935 ret
= cmd_enable_event(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
2936 cmd_ctx
->lsm
->u
.enable
.channel_name
,
2937 &cmd_ctx
->lsm
->u
.enable
.event
, NULL
, kernel_poll_pipe
[1]);
2940 case LTTNG_ENABLE_ALL_EVENT
:
2942 DBG("Enabling all events");
2944 ret
= cmd_enable_event_all(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
2945 cmd_ctx
->lsm
->u
.enable
.channel_name
,
2946 cmd_ctx
->lsm
->u
.enable
.event
.type
, NULL
, kernel_poll_pipe
[1]);
2949 case LTTNG_LIST_TRACEPOINTS
:
2951 struct lttng_event
*events
;
2954 nb_events
= cmd_list_tracepoints(cmd_ctx
->lsm
->domain
.type
, &events
);
2955 if (nb_events
< 0) {
2956 /* Return value is a negative lttng_error_code. */
2962 * Setup lttng message with payload size set to the event list size in
2963 * bytes and then copy list into the llm payload.
2965 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_event
) * nb_events
);
2971 /* Copy event list into message payload */
2972 memcpy(cmd_ctx
->llm
->payload
, events
,
2973 sizeof(struct lttng_event
) * nb_events
);
2980 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2982 struct lttng_event_field
*fields
;
2985 nb_fields
= cmd_list_tracepoint_fields(cmd_ctx
->lsm
->domain
.type
,
2987 if (nb_fields
< 0) {
2988 /* Return value is a negative lttng_error_code. */
2994 * Setup lttng message with payload size set to the event list size in
2995 * bytes and then copy list into the llm payload.
2997 ret
= setup_lttng_msg(cmd_ctx
,
2998 sizeof(struct lttng_event_field
) * nb_fields
);
3004 /* Copy event list into message payload */
3005 memcpy(cmd_ctx
->llm
->payload
, fields
,
3006 sizeof(struct lttng_event_field
) * nb_fields
);
3013 case LTTNG_SET_CONSUMER_URI
:
3016 struct lttng_uri
*uris
;
3018 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3019 len
= nb_uri
* sizeof(struct lttng_uri
);
3022 ret
= LTTNG_ERR_INVALID
;
3026 uris
= zmalloc(len
);
3028 ret
= LTTNG_ERR_FATAL
;
3032 /* Receive variable len data */
3033 DBG("Receiving %zu URI(s) from client ...", nb_uri
);
3034 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3036 DBG("No URIs received from client... continuing");
3038 ret
= LTTNG_ERR_SESSION_FAIL
;
3043 ret
= cmd_set_consumer_uri(cmd_ctx
->lsm
->domain
.type
, cmd_ctx
->session
,
3045 if (ret
!= LTTNG_OK
) {
3051 * XXX: 0 means that this URI should be applied on the session. Should
3052 * be a DOMAIN enuam.
3054 if (cmd_ctx
->lsm
->domain
.type
== 0) {
3055 /* Add the URI for the UST session if a consumer is present. */
3056 if (cmd_ctx
->session
->ust_session
&&
3057 cmd_ctx
->session
->ust_session
->consumer
) {
3058 ret
= cmd_set_consumer_uri(LTTNG_DOMAIN_UST
, cmd_ctx
->session
,
3060 } else if (cmd_ctx
->session
->kernel_session
&&
3061 cmd_ctx
->session
->kernel_session
->consumer
) {
3062 ret
= cmd_set_consumer_uri(LTTNG_DOMAIN_KERNEL
,
3063 cmd_ctx
->session
, nb_uri
, uris
);
3071 case LTTNG_START_TRACE
:
3073 ret
= cmd_start_trace(cmd_ctx
->session
);
3076 case LTTNG_STOP_TRACE
:
3078 ret
= cmd_stop_trace(cmd_ctx
->session
);
3081 case LTTNG_CREATE_SESSION
:
3084 struct lttng_uri
*uris
= NULL
;
3086 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3087 len
= nb_uri
* sizeof(struct lttng_uri
);
3090 uris
= zmalloc(len
);
3092 ret
= LTTNG_ERR_FATAL
;
3096 /* Receive variable len data */
3097 DBG("Waiting for %zu URIs from client ...", nb_uri
);
3098 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3100 DBG("No URIs received from client... continuing");
3102 ret
= LTTNG_ERR_SESSION_FAIL
;
3107 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
3108 DBG("Creating session with ONE network URI is a bad call");
3109 ret
= LTTNG_ERR_SESSION_FAIL
;
3115 ret
= cmd_create_session_uri(cmd_ctx
->lsm
->session
.name
, uris
, nb_uri
,
3116 &cmd_ctx
->creds
, 0);
3122 case LTTNG_DESTROY_SESSION
:
3124 ret
= cmd_destroy_session(cmd_ctx
->session
, kernel_poll_pipe
[1]);
3126 /* Set session to NULL so we do not unlock it after free. */
3127 cmd_ctx
->session
= NULL
;
3130 case LTTNG_LIST_DOMAINS
:
3133 struct lttng_domain
*domains
;
3135 nb_dom
= cmd_list_domains(cmd_ctx
->session
, &domains
);
3137 /* Return value is a negative lttng_error_code. */
3142 ret
= setup_lttng_msg(cmd_ctx
, nb_dom
* sizeof(struct lttng_domain
));
3148 /* Copy event list into message payload */
3149 memcpy(cmd_ctx
->llm
->payload
, domains
,
3150 nb_dom
* sizeof(struct lttng_domain
));
3157 case LTTNG_LIST_CHANNELS
:
3160 struct lttng_channel
*channels
;
3162 nb_chan
= cmd_list_channels(cmd_ctx
->lsm
->domain
.type
,
3163 cmd_ctx
->session
, &channels
);
3165 /* Return value is a negative lttng_error_code. */
3170 ret
= setup_lttng_msg(cmd_ctx
, nb_chan
* sizeof(struct lttng_channel
));
3176 /* Copy event list into message payload */
3177 memcpy(cmd_ctx
->llm
->payload
, channels
,
3178 nb_chan
* sizeof(struct lttng_channel
));
3185 case LTTNG_LIST_EVENTS
:
3188 struct lttng_event
*events
= NULL
;
3190 nb_event
= cmd_list_events(cmd_ctx
->lsm
->domain
.type
, cmd_ctx
->session
,
3191 cmd_ctx
->lsm
->u
.list
.channel_name
, &events
);
3193 /* Return value is a negative lttng_error_code. */
3198 ret
= setup_lttng_msg(cmd_ctx
, nb_event
* sizeof(struct lttng_event
));
3204 /* Copy event list into message payload */
3205 memcpy(cmd_ctx
->llm
->payload
, events
,
3206 nb_event
* sizeof(struct lttng_event
));
3213 case LTTNG_LIST_SESSIONS
:
3215 unsigned int nr_sessions
;
3217 session_lock_list();
3218 nr_sessions
= lttng_sessions_count(
3219 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
3220 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
3222 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_session
) * nr_sessions
);
3224 session_unlock_list();
3228 /* Filled the session array */
3229 cmd_list_lttng_sessions((struct lttng_session
*)(cmd_ctx
->llm
->payload
),
3230 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
3231 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
3233 session_unlock_list();
3238 case LTTNG_CALIBRATE
:
3240 ret
= cmd_calibrate(cmd_ctx
->lsm
->domain
.type
,
3241 &cmd_ctx
->lsm
->u
.calibrate
);
3244 case LTTNG_REGISTER_CONSUMER
:
3246 struct consumer_data
*cdata
;
3248 switch (cmd_ctx
->lsm
->domain
.type
) {
3249 case LTTNG_DOMAIN_KERNEL
:
3250 cdata
= &kconsumer_data
;
3253 ret
= LTTNG_ERR_UND
;
3257 ret
= cmd_register_consumer(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
3258 cmd_ctx
->lsm
->u
.reg
.path
, cdata
);
3261 case LTTNG_ENABLE_EVENT_WITH_FILTER
:
3263 struct lttng_filter_bytecode
*bytecode
;
3265 if (cmd_ctx
->lsm
->u
.enable
.bytecode_len
> LTTNG_FILTER_MAX_LEN
) {
3266 ret
= LTTNG_ERR_FILTER_INVAL
;
3269 if (cmd_ctx
->lsm
->u
.enable
.bytecode_len
== 0) {
3270 ret
= LTTNG_ERR_FILTER_INVAL
;
3273 bytecode
= zmalloc(cmd_ctx
->lsm
->u
.enable
.bytecode_len
);
3275 ret
= LTTNG_ERR_FILTER_NOMEM
;
3278 /* Receive var. len. data */
3279 DBG("Receiving var len data from client ...");
3280 ret
= lttcomm_recv_unix_sock(sock
, bytecode
,
3281 cmd_ctx
->lsm
->u
.enable
.bytecode_len
);
3283 DBG("Nothing recv() from client var len data... continuing");
3285 ret
= LTTNG_ERR_FILTER_INVAL
;
3289 if (bytecode
->len
+ sizeof(*bytecode
)
3290 != cmd_ctx
->lsm
->u
.enable
.bytecode_len
) {
3292 ret
= LTTNG_ERR_FILTER_INVAL
;
3296 ret
= cmd_enable_event(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
3297 cmd_ctx
->lsm
->u
.enable
.channel_name
,
3298 &cmd_ctx
->lsm
->u
.enable
.event
, bytecode
, kernel_poll_pipe
[1]);
3301 case LTTNG_DATA_PENDING
:
3303 ret
= cmd_data_pending(cmd_ctx
->session
);
3306 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
3308 struct lttcomm_lttng_output_id reply
;
3310 ret
= cmd_snapshot_add_output(cmd_ctx
->session
,
3311 &cmd_ctx
->lsm
->u
.snapshot_output
.output
, &reply
.id
);
3312 if (ret
!= LTTNG_OK
) {
3316 ret
= setup_lttng_msg(cmd_ctx
, sizeof(reply
));
3321 /* Copy output list into message payload */
3322 memcpy(cmd_ctx
->llm
->payload
, &reply
, sizeof(reply
));
3326 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
3328 ret
= cmd_snapshot_del_output(cmd_ctx
->session
,
3329 &cmd_ctx
->lsm
->u
.snapshot_output
.output
);
3332 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
3335 struct lttng_snapshot_output
*outputs
= NULL
;
3337 nb_output
= cmd_snapshot_list_outputs(cmd_ctx
->session
, &outputs
);
3338 if (nb_output
< 0) {
3343 ret
= setup_lttng_msg(cmd_ctx
,
3344 nb_output
* sizeof(struct lttng_snapshot_output
));
3351 /* Copy output list into message payload */
3352 memcpy(cmd_ctx
->llm
->payload
, outputs
,
3353 nb_output
* sizeof(struct lttng_snapshot_output
));
3360 case LTTNG_SNAPSHOT_RECORD
:
3362 ret
= cmd_snapshot_record(cmd_ctx
->session
,
3363 &cmd_ctx
->lsm
->u
.snapshot_record
.output
,
3364 cmd_ctx
->lsm
->u
.snapshot_record
.wait
);
3367 case LTTNG_CREATE_SESSION_SNAPSHOT
:
3370 struct lttng_uri
*uris
= NULL
;
3372 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3373 len
= nb_uri
* sizeof(struct lttng_uri
);
3376 uris
= zmalloc(len
);
3378 ret
= LTTNG_ERR_FATAL
;
3382 /* Receive variable len data */
3383 DBG("Waiting for %zu URIs from client ...", nb_uri
);
3384 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3386 DBG("No URIs received from client... continuing");
3388 ret
= LTTNG_ERR_SESSION_FAIL
;
3393 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
3394 DBG("Creating session with ONE network URI is a bad call");
3395 ret
= LTTNG_ERR_SESSION_FAIL
;
3401 ret
= cmd_create_session_snapshot(cmd_ctx
->lsm
->session
.name
, uris
,
3402 nb_uri
, &cmd_ctx
->creds
);
3406 case LTTNG_CREATE_SESSION_LIVE
:
3409 struct lttng_uri
*uris
= NULL
;
3411 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3412 len
= nb_uri
* sizeof(struct lttng_uri
);
3415 uris
= zmalloc(len
);
3417 ret
= LTTNG_ERR_FATAL
;
3421 /* Receive variable len data */
3422 DBG("Waiting for %zu URIs from client ...", nb_uri
);
3423 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3425 DBG("No URIs received from client... continuing");
3427 ret
= LTTNG_ERR_SESSION_FAIL
;
3432 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
3433 DBG("Creating session with ONE network URI is a bad call");
3434 ret
= LTTNG_ERR_SESSION_FAIL
;
3440 ret
= cmd_create_session_uri(cmd_ctx
->lsm
->session
.name
, uris
,
3441 nb_uri
, &cmd_ctx
->creds
, cmd_ctx
->lsm
->u
.session_live
.timer_interval
);
3446 ret
= LTTNG_ERR_UND
;
3451 if (cmd_ctx
->llm
== NULL
) {
3452 DBG("Missing llm structure. Allocating one.");
3453 if (setup_lttng_msg(cmd_ctx
, 0) < 0) {
3457 /* Set return code */
3458 cmd_ctx
->llm
->ret_code
= ret
;
3460 if (cmd_ctx
->session
) {
3461 session_unlock(cmd_ctx
->session
);
3463 if (need_tracing_session
) {
3464 session_unlock_list();
3471 * Thread managing health check socket.
3473 static void *thread_manage_health(void *data
)
3475 int sock
= -1, new_sock
= -1, ret
, i
, pollfd
, err
= -1;
3476 uint32_t revents
, nb_fd
;
3477 struct lttng_poll_event events
;
3478 struct health_comm_msg msg
;
3479 struct health_comm_reply reply
;
3481 DBG("[thread] Manage health check started");
3483 rcu_register_thread();
3485 /* We might hit an error path before this is created. */
3486 lttng_poll_init(&events
);
3488 /* Create unix socket */
3489 sock
= lttcomm_create_unix_sock(health_unix_sock_path
);
3491 ERR("Unable to create health check Unix socket");
3497 /* lttng health client socket path permissions */
3498 ret
= chown(health_unix_sock_path
, 0,
3499 utils_get_group_id(tracing_group_name
));
3501 ERR("Unable to set group on %s", health_unix_sock_path
);
3507 ret
= chmod(health_unix_sock_path
,
3508 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
3510 ERR("Unable to set permissions on %s", health_unix_sock_path
);
3518 * Set the CLOEXEC flag. Return code is useless because either way, the
3521 (void) utils_set_fd_cloexec(sock
);
3523 ret
= lttcomm_listen_unix_sock(sock
);
3529 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
3530 * more will be added to this poll set.
3532 ret
= sessiond_set_thread_pollset(&events
, 2);
3537 /* Add the application registration socket */
3538 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLPRI
);
3544 DBG("Health check ready");
3546 /* Inifinite blocking call, waiting for transmission */
3548 ret
= lttng_poll_wait(&events
, -1);
3551 * Restart interrupted system call.
3553 if (errno
== EINTR
) {
3561 for (i
= 0; i
< nb_fd
; i
++) {
3562 /* Fetch once the poll data */
3563 revents
= LTTNG_POLL_GETEV(&events
, i
);
3564 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3566 /* Thread quit pipe has been closed. Killing thread. */
3567 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
3573 /* Event on the registration socket */
3574 if (pollfd
== sock
) {
3575 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3576 ERR("Health socket poll error");
3582 new_sock
= lttcomm_accept_unix_sock(sock
);
3588 * Set the CLOEXEC flag. Return code is useless because either way, the
3591 (void) utils_set_fd_cloexec(new_sock
);
3593 DBG("Receiving data from client for health...");
3594 ret
= lttcomm_recv_unix_sock(new_sock
, (void *)&msg
, sizeof(msg
));
3596 DBG("Nothing recv() from client... continuing");
3597 ret
= close(new_sock
);
3605 rcu_thread_online();
3608 for (i
= 0; i
< NR_HEALTH_SESSIOND_TYPES
; i
++) {
3610 * health_check_state returns 0 if health is
3613 if (!health_check_state(health_sessiond
, i
)) {
3614 reply
.ret_code
|= 1ULL << i
;
3618 DBG2("Health check return value %" PRIx64
, reply
.ret_code
);
3620 ret
= send_unix_sock(new_sock
, (void *) &reply
, sizeof(reply
));
3622 ERR("Failed to send health data back to client");
3625 /* End of transmission */
3626 ret
= close(new_sock
);
3636 ERR("Health error occurred in %s", __func__
);
3638 DBG("Health check thread dying");
3639 unlink(health_unix_sock_path
);
3647 lttng_poll_clean(&events
);
3649 rcu_unregister_thread();
3654 * This thread manage all clients request using the unix client socket for
3657 static void *thread_manage_clients(void *data
)
3659 int sock
= -1, ret
, i
, pollfd
, err
= -1;
3661 uint32_t revents
, nb_fd
;
3662 struct command_ctx
*cmd_ctx
= NULL
;
3663 struct lttng_poll_event events
;
3665 DBG("[thread] Manage client started");
3667 rcu_register_thread();
3669 health_register(health_sessiond
, HEALTH_SESSIOND_TYPE_CMD
);
3671 if (testpoint(thread_manage_clients
)) {
3672 goto error_testpoint
;
3675 health_code_update();
3677 ret
= lttcomm_listen_unix_sock(client_sock
);
3683 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
3684 * more will be added to this poll set.
3686 ret
= sessiond_set_thread_pollset(&events
, 2);
3688 goto error_create_poll
;
3691 /* Add the application registration socket */
3692 ret
= lttng_poll_add(&events
, client_sock
, LPOLLIN
| LPOLLPRI
);
3698 * Notify parent pid that we are ready to accept command for client side.
3700 if (opt_sig_parent
) {
3701 kill(ppid
, SIGUSR1
);
3704 if (testpoint(thread_manage_clients_before_loop
)) {
3708 health_code_update();
3711 DBG("Accepting client command ...");
3713 /* Inifinite blocking call, waiting for transmission */
3715 health_poll_entry();
3716 ret
= lttng_poll_wait(&events
, -1);
3720 * Restart interrupted system call.
3722 if (errno
== EINTR
) {
3730 for (i
= 0; i
< nb_fd
; i
++) {
3731 /* Fetch once the poll data */
3732 revents
= LTTNG_POLL_GETEV(&events
, i
);
3733 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3735 health_code_update();
3737 /* Thread quit pipe has been closed. Killing thread. */
3738 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
3744 /* Event on the registration socket */
3745 if (pollfd
== client_sock
) {
3746 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3747 ERR("Client socket poll error");
3753 DBG("Wait for client response");
3755 health_code_update();
3757 sock
= lttcomm_accept_unix_sock(client_sock
);
3763 * Set the CLOEXEC flag. Return code is useless because either way, the
3766 (void) utils_set_fd_cloexec(sock
);
3768 /* Set socket option for credentials retrieval */
3769 ret
= lttcomm_setsockopt_creds_unix_sock(sock
);
3774 /* Allocate context command to process the client request */
3775 cmd_ctx
= zmalloc(sizeof(struct command_ctx
));
3776 if (cmd_ctx
== NULL
) {
3777 PERROR("zmalloc cmd_ctx");
3781 /* Allocate data buffer for reception */
3782 cmd_ctx
->lsm
= zmalloc(sizeof(struct lttcomm_session_msg
));
3783 if (cmd_ctx
->lsm
== NULL
) {
3784 PERROR("zmalloc cmd_ctx->lsm");
3788 cmd_ctx
->llm
= NULL
;
3789 cmd_ctx
->session
= NULL
;
3791 health_code_update();
3794 * Data is received from the lttng client. The struct
3795 * lttcomm_session_msg (lsm) contains the command and data request of
3798 DBG("Receiving data from client ...");
3799 ret
= lttcomm_recv_creds_unix_sock(sock
, cmd_ctx
->lsm
,
3800 sizeof(struct lttcomm_session_msg
), &cmd_ctx
->creds
);
3802 DBG("Nothing recv() from client... continuing");
3808 clean_command_ctx(&cmd_ctx
);
3812 health_code_update();
3814 // TODO: Validate cmd_ctx including sanity check for
3815 // security purpose.
3817 rcu_thread_online();
3819 * This function dispatch the work to the kernel or userspace tracer
3820 * libs and fill the lttcomm_lttng_msg data structure of all the needed
3821 * informations for the client. The command context struct contains
3822 * everything this function may needs.
3824 ret
= process_client_msg(cmd_ctx
, sock
, &sock_error
);
3825 rcu_thread_offline();
3833 * TODO: Inform client somehow of the fatal error. At
3834 * this point, ret < 0 means that a zmalloc failed
3835 * (ENOMEM). Error detected but still accept
3836 * command, unless a socket error has been
3839 clean_command_ctx(&cmd_ctx
);
3843 health_code_update();
3845 DBG("Sending response (size: %d, retcode: %s)",
3846 cmd_ctx
->lttng_msg_size
,
3847 lttng_strerror(-cmd_ctx
->llm
->ret_code
));
3848 ret
= send_unix_sock(sock
, cmd_ctx
->llm
, cmd_ctx
->lttng_msg_size
);
3850 ERR("Failed to send data back to client");
3853 /* End of transmission */
3860 clean_command_ctx(&cmd_ctx
);
3862 health_code_update();
3874 lttng_poll_clean(&events
);
3875 clean_command_ctx(&cmd_ctx
);
3880 unlink(client_unix_sock_path
);
3881 if (client_sock
>= 0) {
3882 ret
= close(client_sock
);
3890 ERR("Health error occurred in %s", __func__
);
3893 health_unregister(health_sessiond
);
3895 DBG("Client thread dying");
3897 rcu_unregister_thread();
3903 * usage function on stderr
3905 static void usage(void)
3907 fprintf(stderr
, "Usage: %s OPTIONS\n\nOptions:\n", progname
);
3908 fprintf(stderr
, " -h, --help Display this usage.\n");
3909 fprintf(stderr
, " -c, --client-sock PATH Specify path for the client unix socket\n");
3910 fprintf(stderr
, " -a, --apps-sock PATH Specify path for apps unix socket\n");
3911 fprintf(stderr
, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
3912 fprintf(stderr
, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
3913 fprintf(stderr
, " --ustconsumerd32-err-sock PATH Specify path for the 32-bit UST consumer error socket\n");
3914 fprintf(stderr
, " --ustconsumerd64-err-sock PATH Specify path for the 64-bit UST consumer error socket\n");
3915 fprintf(stderr
, " --ustconsumerd32-cmd-sock PATH Specify path for the 32-bit UST consumer command socket\n");
3916 fprintf(stderr
, " --ustconsumerd64-cmd-sock PATH Specify path for the 64-bit UST consumer command socket\n");
3917 fprintf(stderr
, " --consumerd32-path PATH Specify path for the 32-bit UST consumer daemon binary\n");
3918 fprintf(stderr
, " --consumerd32-libdir PATH Specify path for the 32-bit UST consumer daemon libraries\n");
3919 fprintf(stderr
, " --consumerd64-path PATH Specify path for the 64-bit UST consumer daemon binary\n");
3920 fprintf(stderr
, " --consumerd64-libdir PATH Specify path for the 64-bit UST consumer daemon libraries\n");
3921 fprintf(stderr
, " -d, --daemonize Start as a daemon.\n");
3922 fprintf(stderr
, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
3923 fprintf(stderr
, " -V, --version Show version number.\n");
3924 fprintf(stderr
, " -S, --sig-parent Send SIGCHLD to parent pid to notify readiness.\n");
3925 fprintf(stderr
, " -q, --quiet No output at all.\n");
3926 fprintf(stderr
, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
3927 fprintf(stderr
, " -p, --pidfile FILE Write a pid to FILE name overriding the default value.\n");
3928 fprintf(stderr
, " --verbose-consumer Verbose mode for consumer. Activate DBG() macro.\n");
3929 fprintf(stderr
, " --no-kernel Disable kernel tracer\n");
3930 fprintf(stderr
, " --jul-tcp-port JUL application registration TCP port\n");
3934 * daemon argument parsing
3936 static int parse_args(int argc
, char **argv
)
3940 static struct option long_options
[] = {
3941 { "client-sock", 1, 0, 'c' },
3942 { "apps-sock", 1, 0, 'a' },
3943 { "kconsumerd-cmd-sock", 1, 0, 'C' },
3944 { "kconsumerd-err-sock", 1, 0, 'E' },
3945 { "ustconsumerd32-cmd-sock", 1, 0, 'G' },
3946 { "ustconsumerd32-err-sock", 1, 0, 'H' },
3947 { "ustconsumerd64-cmd-sock", 1, 0, 'D' },
3948 { "ustconsumerd64-err-sock", 1, 0, 'F' },
3949 { "consumerd32-path", 1, 0, 'u' },
3950 { "consumerd32-libdir", 1, 0, 'U' },
3951 { "consumerd64-path", 1, 0, 't' },
3952 { "consumerd64-libdir", 1, 0, 'T' },
3953 { "daemonize", 0, 0, 'd' },
3954 { "sig-parent", 0, 0, 'S' },
3955 { "help", 0, 0, 'h' },
3956 { "group", 1, 0, 'g' },
3957 { "version", 0, 0, 'V' },
3958 { "quiet", 0, 0, 'q' },
3959 { "verbose", 0, 0, 'v' },
3960 { "verbose-consumer", 0, 0, 'Z' },
3961 { "no-kernel", 0, 0, 'N' },
3962 { "pidfile", 1, 0, 'p' },
3963 { "jul-tcp-port", 1, 0, 'J' },
3968 int option_index
= 0;
3969 c
= getopt_long(argc
, argv
, "dhqvVSN" "a:c:g:s:C:E:D:F:Z:u:t:p:J:",
3970 long_options
, &option_index
);
3977 fprintf(stderr
, "option %s", long_options
[option_index
].name
);
3979 fprintf(stderr
, " with arg %s\n", optarg
);
3983 snprintf(client_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3986 snprintf(apps_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3992 tracing_group_name
= optarg
;
3998 fprintf(stdout
, "%s\n", VERSION
);
4004 snprintf(kconsumer_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4007 snprintf(kconsumer_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4010 snprintf(ustconsumer64_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4013 snprintf(ustconsumer64_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4016 snprintf(ustconsumer32_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4019 snprintf(ustconsumer32_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
4025 lttng_opt_quiet
= 1;
4028 /* Verbose level can increase using multiple -v */
4029 lttng_opt_verbose
+= 1;
4032 opt_verbose_consumer
+= 1;
4035 consumerd32_bin
= optarg
;
4038 consumerd32_libdir
= optarg
;
4041 consumerd64_bin
= optarg
;
4044 consumerd64_libdir
= optarg
;
4047 opt_pidfile
= optarg
;
4049 case 'J': /* JUL TCP port. */
4054 v
= strtoul(optarg
, NULL
, 0);
4055 if (errno
!= 0 || !isdigit(optarg
[0])) {
4056 ERR("Wrong value in --jul-tcp-port parameter: %s", optarg
);
4059 if (v
== 0 || v
>= 65535) {
4060 ERR("Port overflow in --jul-tcp-port parameter: %s", optarg
);
4063 jul_tcp_port
= (uint32_t) v
;
4064 DBG3("JUL TCP port set to non default: %u", jul_tcp_port
);
4068 /* Unknown option or other error.
4069 * Error is printed by getopt, just return */
4078 * Creates the two needed socket by the daemon.
4079 * apps_sock - The communication socket for all UST apps.
4080 * client_sock - The communication of the cli tool (lttng).
4082 static int init_daemon_socket(void)
4087 old_umask
= umask(0);
4089 /* Create client tool unix socket */
4090 client_sock
= lttcomm_create_unix_sock(client_unix_sock_path
);
4091 if (client_sock
< 0) {
4092 ERR("Create unix sock failed: %s", client_unix_sock_path
);
4097 /* Set the cloexec flag */
4098 ret
= utils_set_fd_cloexec(client_sock
);
4100 ERR("Unable to set CLOEXEC flag to the client Unix socket (fd: %d). "
4101 "Continuing but note that the consumer daemon will have a "
4102 "reference to this socket on exec()", client_sock
);
4105 /* File permission MUST be 660 */
4106 ret
= chmod(client_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
4108 ERR("Set file permissions failed: %s", client_unix_sock_path
);
4113 /* Create the application unix socket */
4114 apps_sock
= lttcomm_create_unix_sock(apps_unix_sock_path
);
4115 if (apps_sock
< 0) {
4116 ERR("Create unix sock failed: %s", apps_unix_sock_path
);
4121 /* Set the cloexec flag */
4122 ret
= utils_set_fd_cloexec(apps_sock
);
4124 ERR("Unable to set CLOEXEC flag to the app Unix socket (fd: %d). "
4125 "Continuing but note that the consumer daemon will have a "
4126 "reference to this socket on exec()", apps_sock
);
4129 /* File permission MUST be 666 */
4130 ret
= chmod(apps_unix_sock_path
,
4131 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IROTH
| S_IWOTH
);
4133 ERR("Set file permissions failed: %s", apps_unix_sock_path
);
4138 DBG3("Session daemon client socket %d and application socket %d created",
4139 client_sock
, apps_sock
);
4147 * Check if the global socket is available, and if a daemon is answering at the
4148 * other side. If yes, error is returned.
4150 static int check_existing_daemon(void)
4152 /* Is there anybody out there ? */
4153 if (lttng_session_daemon_alive()) {
4161 * Set the tracing group gid onto the client socket.
4163 * Race window between mkdir and chown is OK because we are going from more
4164 * permissive (root.root) to less permissive (root.tracing).
4166 static int set_permissions(char *rundir
)
4171 gid
= utils_get_group_id(tracing_group_name
);
4173 /* Set lttng run dir */
4174 ret
= chown(rundir
, 0, gid
);
4176 ERR("Unable to set group on %s", rundir
);
4181 * Ensure all applications and tracing group can search the run
4182 * dir. Allow everyone to read the directory, since it does not
4183 * buy us anything to hide its content.
4185 ret
= chmod(rundir
, S_IRWXU
| S_IRGRP
| S_IXGRP
| S_IROTH
| S_IXOTH
);
4187 ERR("Unable to set permissions on %s", rundir
);
4191 /* lttng client socket path */
4192 ret
= chown(client_unix_sock_path
, 0, gid
);
4194 ERR("Unable to set group on %s", client_unix_sock_path
);
4198 /* kconsumer error socket path */
4199 ret
= chown(kconsumer_data
.err_unix_sock_path
, 0, 0);
4201 ERR("Unable to set group on %s", kconsumer_data
.err_unix_sock_path
);
4205 /* 64-bit ustconsumer error socket path */
4206 ret
= chown(ustconsumer64_data
.err_unix_sock_path
, 0, 0);
4208 ERR("Unable to set group on %s", ustconsumer64_data
.err_unix_sock_path
);
4212 /* 32-bit ustconsumer compat32 error socket path */
4213 ret
= chown(ustconsumer32_data
.err_unix_sock_path
, 0, 0);
4215 ERR("Unable to set group on %s", ustconsumer32_data
.err_unix_sock_path
);
4219 DBG("All permissions are set");
4225 * Create the lttng run directory needed for all global sockets and pipe.
4227 static int create_lttng_rundir(const char *rundir
)
4231 DBG3("Creating LTTng run directory: %s", rundir
);
4233 ret
= mkdir(rundir
, S_IRWXU
);
4235 if (errno
!= EEXIST
) {
4236 ERR("Unable to create %s", rundir
);
4248 * Setup sockets and directory needed by the kconsumerd communication with the
4251 static int set_consumer_sockets(struct consumer_data
*consumer_data
,
4255 char path
[PATH_MAX
];
4257 switch (consumer_data
->type
) {
4258 case LTTNG_CONSUMER_KERNEL
:
4259 snprintf(path
, PATH_MAX
, DEFAULT_KCONSUMERD_PATH
, rundir
);
4261 case LTTNG_CONSUMER64_UST
:
4262 snprintf(path
, PATH_MAX
, DEFAULT_USTCONSUMERD64_PATH
, rundir
);
4264 case LTTNG_CONSUMER32_UST
:
4265 snprintf(path
, PATH_MAX
, DEFAULT_USTCONSUMERD32_PATH
, rundir
);
4268 ERR("Consumer type unknown");
4273 DBG2("Creating consumer directory: %s", path
);
4275 ret
= mkdir(path
, S_IRWXU
| S_IRGRP
| S_IXGRP
);
4277 if (errno
!= EEXIST
) {
4279 ERR("Failed to create %s", path
);
4285 ret
= chown(path
, 0, utils_get_group_id(tracing_group_name
));
4287 ERR("Unable to set group on %s", path
);
4293 /* Create the kconsumerd error unix socket */
4294 consumer_data
->err_sock
=
4295 lttcomm_create_unix_sock(consumer_data
->err_unix_sock_path
);
4296 if (consumer_data
->err_sock
< 0) {
4297 ERR("Create unix sock failed: %s", consumer_data
->err_unix_sock_path
);
4303 * Set the CLOEXEC flag. Return code is useless because either way, the
4306 ret
= utils_set_fd_cloexec(consumer_data
->err_sock
);
4308 PERROR("utils_set_fd_cloexec");
4309 /* continue anyway */
4312 /* File permission MUST be 660 */
4313 ret
= chmod(consumer_data
->err_unix_sock_path
,
4314 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
4316 ERR("Set file permissions failed: %s", consumer_data
->err_unix_sock_path
);
4326 * Signal handler for the daemon
4328 * Simply stop all worker threads, leaving main() return gracefully after
4329 * joining all threads and calling cleanup().
4331 static void sighandler(int sig
)
4335 DBG("SIGPIPE caught");
4338 DBG("SIGINT caught");
4342 DBG("SIGTERM caught");
4351 * Setup signal handler for :
4352 * SIGINT, SIGTERM, SIGPIPE
4354 static int set_signal_handler(void)
4357 struct sigaction sa
;
4360 if ((ret
= sigemptyset(&sigset
)) < 0) {
4361 PERROR("sigemptyset");
4365 sa
.sa_handler
= sighandler
;
4366 sa
.sa_mask
= sigset
;
4368 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
4369 PERROR("sigaction");
4373 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
4374 PERROR("sigaction");
4378 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
4379 PERROR("sigaction");
4383 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
4389 * Set open files limit to unlimited. This daemon can open a large number of
4390 * file descriptors in order to consumer multiple kernel traces.
4392 static void set_ulimit(void)
4397 /* The kernel does not allowed an infinite limit for open files */
4398 lim
.rlim_cur
= 65535;
4399 lim
.rlim_max
= 65535;
4401 ret
= setrlimit(RLIMIT_NOFILE
, &lim
);
4403 PERROR("failed to set open files limit");
4408 * Write pidfile using the rundir and opt_pidfile.
4410 static void write_pidfile(void)
4413 char pidfile_path
[PATH_MAX
];
4418 strncpy(pidfile_path
, opt_pidfile
, sizeof(pidfile_path
));
4420 /* Build pidfile path from rundir and opt_pidfile. */
4421 ret
= snprintf(pidfile_path
, sizeof(pidfile_path
), "%s/"
4422 DEFAULT_LTTNG_SESSIOND_PIDFILE
, rundir
);
4424 PERROR("snprintf pidfile path");
4430 * Create pid file in rundir. Return value is of no importance. The
4431 * execution will continue even though we are not able to write the file.
4433 (void) utils_create_pid_file(getpid(), pidfile_path
);
4440 * Write JUL TCP port using the rundir.
4442 static void write_julport(void)
4445 char path
[PATH_MAX
];
4449 ret
= snprintf(path
, sizeof(path
), "%s/"
4450 DEFAULT_LTTNG_SESSIOND_JULPORT_FILE
, rundir
);
4452 PERROR("snprintf julport path");
4457 * Create TCP JUL port file in rundir. Return value is of no importance.
4458 * The execution will continue even though we are not able to write the
4461 (void) utils_create_pid_file(jul_tcp_port
, path
);
4470 int main(int argc
, char **argv
)
4474 const char *home_path
, *env_app_timeout
;
4476 init_kernel_workarounds();
4478 rcu_register_thread();
4480 setup_consumerd_path();
4482 page_size
= sysconf(_SC_PAGESIZE
);
4483 if (page_size
< 0) {
4484 PERROR("sysconf _SC_PAGESIZE");
4485 page_size
= LONG_MAX
;
4486 WARN("Fallback page size to %ld", page_size
);
4489 /* Parse arguments */
4491 if ((ret
= parse_args(argc
, argv
)) < 0) {
4501 * child: setsid, close FD 0, 1, 2, chdir /
4502 * parent: exit (if fork is successful)
4510 * We are in the child. Make sure all other file
4511 * descriptors are closed, in case we are called with
4512 * more opened file descriptors than the standard ones.
4514 for (i
= 3; i
< sysconf(_SC_OPEN_MAX
); i
++) {
4519 /* Create thread quit pipe */
4520 if ((ret
= init_thread_quit_pipe()) < 0) {
4524 /* Check if daemon is UID = 0 */
4525 is_root
= !getuid();
4528 rundir
= strdup(DEFAULT_LTTNG_RUNDIR
);
4530 /* Create global run dir with root access */
4531 ret
= create_lttng_rundir(rundir
);
4536 if (strlen(apps_unix_sock_path
) == 0) {
4537 snprintf(apps_unix_sock_path
, PATH_MAX
,
4538 DEFAULT_GLOBAL_APPS_UNIX_SOCK
);
4541 if (strlen(client_unix_sock_path
) == 0) {
4542 snprintf(client_unix_sock_path
, PATH_MAX
,
4543 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK
);
4546 /* Set global SHM for ust */
4547 if (strlen(wait_shm_path
) == 0) {
4548 snprintf(wait_shm_path
, PATH_MAX
,
4549 DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH
);
4552 if (strlen(health_unix_sock_path
) == 0) {
4553 snprintf(health_unix_sock_path
, sizeof(health_unix_sock_path
),
4554 DEFAULT_GLOBAL_HEALTH_UNIX_SOCK
);
4557 /* Setup kernel consumerd path */
4558 snprintf(kconsumer_data
.err_unix_sock_path
, PATH_MAX
,
4559 DEFAULT_KCONSUMERD_ERR_SOCK_PATH
, rundir
);
4560 snprintf(kconsumer_data
.cmd_unix_sock_path
, PATH_MAX
,
4561 DEFAULT_KCONSUMERD_CMD_SOCK_PATH
, rundir
);
4563 DBG2("Kernel consumer err path: %s",
4564 kconsumer_data
.err_unix_sock_path
);
4565 DBG2("Kernel consumer cmd path: %s",
4566 kconsumer_data
.cmd_unix_sock_path
);
4568 home_path
= utils_get_home_dir();
4569 if (home_path
== NULL
) {
4570 /* TODO: Add --socket PATH option */
4571 ERR("Can't get HOME directory for sockets creation.");
4577 * Create rundir from home path. This will create something like
4580 ret
= asprintf(&rundir
, DEFAULT_LTTNG_HOME_RUNDIR
, home_path
);
4586 ret
= create_lttng_rundir(rundir
);
4591 if (strlen(apps_unix_sock_path
) == 0) {
4592 snprintf(apps_unix_sock_path
, PATH_MAX
,
4593 DEFAULT_HOME_APPS_UNIX_SOCK
, home_path
);
4596 /* Set the cli tool unix socket path */
4597 if (strlen(client_unix_sock_path
) == 0) {
4598 snprintf(client_unix_sock_path
, PATH_MAX
,
4599 DEFAULT_HOME_CLIENT_UNIX_SOCK
, home_path
);
4602 /* Set global SHM for ust */
4603 if (strlen(wait_shm_path
) == 0) {
4604 snprintf(wait_shm_path
, PATH_MAX
,
4605 DEFAULT_HOME_APPS_WAIT_SHM_PATH
, getuid());
4608 /* Set health check Unix path */
4609 if (strlen(health_unix_sock_path
) == 0) {
4610 snprintf(health_unix_sock_path
, sizeof(health_unix_sock_path
),
4611 DEFAULT_HOME_HEALTH_UNIX_SOCK
, home_path
);
4615 /* Set consumer initial state */
4616 kernel_consumerd_state
= CONSUMER_STOPPED
;
4617 ust_consumerd_state
= CONSUMER_STOPPED
;
4619 DBG("Client socket path %s", client_unix_sock_path
);
4620 DBG("Application socket path %s", apps_unix_sock_path
);
4621 DBG("Application wait path %s", wait_shm_path
);
4622 DBG("LTTng run directory path: %s", rundir
);
4624 /* 32 bits consumerd path setup */
4625 snprintf(ustconsumer32_data
.err_unix_sock_path
, PATH_MAX
,
4626 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
, rundir
);
4627 snprintf(ustconsumer32_data
.cmd_unix_sock_path
, PATH_MAX
,
4628 DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
, rundir
);
4630 DBG2("UST consumer 32 bits err path: %s",
4631 ustconsumer32_data
.err_unix_sock_path
);
4632 DBG2("UST consumer 32 bits cmd path: %s",
4633 ustconsumer32_data
.cmd_unix_sock_path
);
4635 /* 64 bits consumerd path setup */
4636 snprintf(ustconsumer64_data
.err_unix_sock_path
, PATH_MAX
,
4637 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
, rundir
);
4638 snprintf(ustconsumer64_data
.cmd_unix_sock_path
, PATH_MAX
,
4639 DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
, rundir
);
4641 DBG2("UST consumer 64 bits err path: %s",
4642 ustconsumer64_data
.err_unix_sock_path
);
4643 DBG2("UST consumer 64 bits cmd path: %s",
4644 ustconsumer64_data
.cmd_unix_sock_path
);
4647 * See if daemon already exist.
4649 if ((ret
= check_existing_daemon()) < 0) {
4650 ERR("Already running daemon.\n");
4652 * We do not goto exit because we must not cleanup()
4653 * because a daemon is already running.
4659 * Init UST app hash table. Alloc hash table before this point since
4660 * cleanup() can get called after that point.
4664 /* Initialize JUL domain subsystem. */
4665 if ((ret
= jul_init()) < 0) {
4666 /* ENOMEM at this point. */
4670 /* After this point, we can safely call cleanup() with "goto exit" */
4673 * These actions must be executed as root. We do that *after* setting up
4674 * the sockets path because we MUST make the check for another daemon using
4675 * those paths *before* trying to set the kernel consumer sockets and init
4679 ret
= set_consumer_sockets(&kconsumer_data
, rundir
);
4684 /* Setup kernel tracer */
4685 if (!opt_no_kernel
) {
4686 init_kernel_tracer();
4689 /* Set ulimit for open files */
4692 /* init lttng_fd tracking must be done after set_ulimit. */
4695 ret
= set_consumer_sockets(&ustconsumer64_data
, rundir
);
4700 ret
= set_consumer_sockets(&ustconsumer32_data
, rundir
);
4705 if ((ret
= set_signal_handler()) < 0) {
4709 /* Setup the needed unix socket */
4710 if ((ret
= init_daemon_socket()) < 0) {
4714 /* Set credentials to socket */
4715 if (is_root
&& ((ret
= set_permissions(rundir
)) < 0)) {
4719 /* Get parent pid if -S, --sig-parent is specified. */
4720 if (opt_sig_parent
) {
4724 /* Setup the kernel pipe for waking up the kernel thread */
4725 if (is_root
&& !opt_no_kernel
) {
4726 if ((ret
= utils_create_pipe_cloexec(kernel_poll_pipe
)) < 0) {
4731 /* Setup the thread ht_cleanup communication pipe. */
4732 if (utils_create_pipe_cloexec(ht_cleanup_pipe
) < 0) {
4736 /* Setup the thread apps communication pipe. */
4737 if ((ret
= utils_create_pipe_cloexec(apps_cmd_pipe
)) < 0) {
4741 /* Setup the thread apps notify communication pipe. */
4742 if (utils_create_pipe_cloexec(apps_cmd_notify_pipe
) < 0) {
4746 /* Initialize global buffer per UID and PID registry. */
4747 buffer_reg_init_uid_registry();
4748 buffer_reg_init_pid_registry();
4750 /* Init UST command queue. */
4751 cds_wfq_init(&ust_cmd_queue
.queue
);
4754 * Get session list pointer. This pointer MUST NOT be free(). This list is
4755 * statically declared in session.c
4757 session_list_ptr
= session_get_list();
4759 /* Set up max poll set size */
4760 lttng_poll_set_max_size();
4764 /* Check for the application socket timeout env variable. */
4765 env_app_timeout
= getenv(DEFAULT_APP_SOCKET_TIMEOUT_ENV
);
4766 if (env_app_timeout
) {
4767 app_socket_timeout
= atoi(env_app_timeout
);
4769 app_socket_timeout
= DEFAULT_APP_SOCKET_RW_TIMEOUT
;
4775 /* Initialize communication library */
4777 /* This is to get the TCP timeout value. */
4778 lttcomm_inet_init();
4781 * Initialize the health check subsystem. This call should set the
4782 * appropriate time values.
4784 health_sessiond
= health_app_create(NR_HEALTH_SESSIOND_TYPES
);
4785 if (!health_sessiond
) {
4786 PERROR("health_app_create error");
4787 goto exit_health_sessiond_cleanup
;
4790 /* Create thread to manage the client socket */
4791 ret
= pthread_create(&ht_cleanup_thread
, NULL
,
4792 thread_ht_cleanup
, (void *) NULL
);
4794 PERROR("pthread_create ht_cleanup");
4795 goto exit_ht_cleanup
;
4798 /* Create thread to manage the client socket */
4799 ret
= pthread_create(&health_thread
, NULL
,
4800 thread_manage_health
, (void *) NULL
);
4802 PERROR("pthread_create health");
4806 /* Create thread to manage the client socket */
4807 ret
= pthread_create(&client_thread
, NULL
,
4808 thread_manage_clients
, (void *) NULL
);
4810 PERROR("pthread_create clients");
4814 /* Create thread to dispatch registration */
4815 ret
= pthread_create(&dispatch_thread
, NULL
,
4816 thread_dispatch_ust_registration
, (void *) NULL
);
4818 PERROR("pthread_create dispatch");
4822 /* Create thread to manage application registration. */
4823 ret
= pthread_create(®_apps_thread
, NULL
,
4824 thread_registration_apps
, (void *) NULL
);
4826 PERROR("pthread_create registration");
4830 /* Create thread to manage application socket */
4831 ret
= pthread_create(&apps_thread
, NULL
,
4832 thread_manage_apps
, (void *) NULL
);
4834 PERROR("pthread_create apps");
4838 /* Create thread to manage application notify socket */
4839 ret
= pthread_create(&apps_notify_thread
, NULL
,
4840 ust_thread_manage_notify
, (void *) NULL
);
4842 PERROR("pthread_create apps");
4843 goto exit_apps_notify
;
4846 /* Create JUL registration thread. */
4847 ret
= pthread_create(&jul_reg_thread
, NULL
,
4848 jul_thread_manage_registration
, (void *) NULL
);
4850 PERROR("pthread_create apps");
4854 /* Don't start this thread if kernel tracing is not requested nor root */
4855 if (is_root
&& !opt_no_kernel
) {
4856 /* Create kernel thread to manage kernel event */
4857 ret
= pthread_create(&kernel_thread
, NULL
,
4858 thread_manage_kernel
, (void *) NULL
);
4860 PERROR("pthread_create kernel");
4864 ret
= pthread_join(kernel_thread
, &status
);
4866 PERROR("pthread_join");
4867 goto error
; /* join error, exit without cleanup */
4872 ret
= pthread_join(jul_reg_thread
, &status
);
4874 PERROR("pthread_join JUL");
4875 goto error
; /* join error, exit without cleanup */
4879 ret
= pthread_join(apps_notify_thread
, &status
);
4881 PERROR("pthread_join apps notify");
4882 goto error
; /* join error, exit without cleanup */
4886 ret
= pthread_join(apps_thread
, &status
);
4888 PERROR("pthread_join apps");
4889 goto error
; /* join error, exit without cleanup */
4894 ret
= pthread_join(reg_apps_thread
, &status
);
4896 PERROR("pthread_join");
4897 goto error
; /* join error, exit without cleanup */
4901 ret
= pthread_join(dispatch_thread
, &status
);
4903 PERROR("pthread_join");
4904 goto error
; /* join error, exit without cleanup */
4908 ret
= pthread_join(client_thread
, &status
);
4910 PERROR("pthread_join");
4911 goto error
; /* join error, exit without cleanup */
4914 ret
= join_consumer_thread(&kconsumer_data
);
4916 PERROR("join_consumer");
4917 goto error
; /* join error, exit without cleanup */
4920 ret
= join_consumer_thread(&ustconsumer32_data
);
4922 PERROR("join_consumer ust32");
4923 goto error
; /* join error, exit without cleanup */
4926 ret
= join_consumer_thread(&ustconsumer64_data
);
4928 PERROR("join_consumer ust64");
4929 goto error
; /* join error, exit without cleanup */
4933 ret
= pthread_join(health_thread
, &status
);
4935 PERROR("pthread_join health thread");
4936 goto error
; /* join error, exit without cleanup */
4940 ret
= pthread_join(ht_cleanup_thread
, &status
);
4942 PERROR("pthread_join ht cleanup thread");
4943 goto error
; /* join error, exit without cleanup */
4946 health_app_destroy(health_sessiond
);
4947 exit_health_sessiond_cleanup
:
4950 * cleanup() is called when no other thread is running.
4952 rcu_thread_online();
4954 rcu_thread_offline();
4955 rcu_unregister_thread();