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"
64 #include "testpoint.h"
65 #include "ust-thread.h"
67 #define CONSUMERD_FILE "lttng-consumerd"
70 const char default_tracing_group
[] = DEFAULT_TRACING_GROUP
;
73 const char *opt_tracing_group
;
74 static const char *opt_pidfile
;
75 static int opt_sig_parent
;
76 static int opt_verbose_consumer
;
77 static int opt_daemon
;
78 static int opt_no_kernel
;
79 static int is_root
; /* Set to 1 if the daemon is running as root */
80 static pid_t ppid
; /* Parent PID for --sig-parent option */
84 * Consumer daemon specific control data. Every value not initialized here is
85 * set to 0 by the static definition.
87 static struct consumer_data kconsumer_data
= {
88 .type
= LTTNG_CONSUMER_KERNEL
,
89 .err_unix_sock_path
= DEFAULT_KCONSUMERD_ERR_SOCK_PATH
,
90 .cmd_unix_sock_path
= DEFAULT_KCONSUMERD_CMD_SOCK_PATH
,
93 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
94 .lock
= PTHREAD_MUTEX_INITIALIZER
,
95 .cond
= PTHREAD_COND_INITIALIZER
,
96 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
98 static struct consumer_data ustconsumer64_data
= {
99 .type
= LTTNG_CONSUMER64_UST
,
100 .err_unix_sock_path
= DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
,
101 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
,
104 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
105 .lock
= PTHREAD_MUTEX_INITIALIZER
,
106 .cond
= PTHREAD_COND_INITIALIZER
,
107 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
109 static struct consumer_data ustconsumer32_data
= {
110 .type
= LTTNG_CONSUMER32_UST
,
111 .err_unix_sock_path
= DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
,
112 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
,
115 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
116 .lock
= PTHREAD_MUTEX_INITIALIZER
,
117 .cond
= PTHREAD_COND_INITIALIZER
,
118 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
121 /* Shared between threads */
122 static int dispatch_thread_exit
;
124 /* Global application Unix socket path */
125 static char apps_unix_sock_path
[PATH_MAX
];
126 /* Global client Unix socket path */
127 static char client_unix_sock_path
[PATH_MAX
];
128 /* global wait shm path for UST */
129 static char wait_shm_path
[PATH_MAX
];
130 /* Global health check unix path */
131 static char health_unix_sock_path
[PATH_MAX
];
133 /* Sockets and FDs */
134 static int client_sock
= -1;
135 static int apps_sock
= -1;
136 int kernel_tracer_fd
= -1;
137 static int kernel_poll_pipe
[2] = { -1, -1 };
140 * Quit pipe for all threads. This permits a single cancellation point
141 * for all threads when receiving an event on the pipe.
143 static int thread_quit_pipe
[2] = { -1, -1 };
146 * This pipe is used to inform the thread managing application communication
147 * that a command is queued and ready to be processed.
149 static int apps_cmd_pipe
[2] = { -1, -1 };
151 int apps_cmd_notify_pipe
[2] = { -1, -1 };
153 /* Pthread, Mutexes and Semaphores */
154 static pthread_t apps_thread
;
155 static pthread_t apps_notify_thread
;
156 static pthread_t reg_apps_thread
;
157 static pthread_t client_thread
;
158 static pthread_t kernel_thread
;
159 static pthread_t dispatch_thread
;
160 static pthread_t health_thread
;
161 static pthread_t ht_cleanup_thread
;
164 * UST registration command queue. This queue is tied with a futex and uses a N
165 * wakers / 1 waiter implemented and detailed in futex.c/.h
167 * The thread_manage_apps and thread_dispatch_ust_registration interact with
168 * this queue and the wait/wake scheme.
170 static struct ust_cmd_queue ust_cmd_queue
;
173 * Pointer initialized before thread creation.
175 * This points to the tracing session list containing the session count and a
176 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
177 * MUST NOT be taken if you call a public function in session.c.
179 * The lock is nested inside the structure: session_list_ptr->lock. Please use
180 * session_lock_list and session_unlock_list for lock acquisition.
182 static struct ltt_session_list
*session_list_ptr
;
184 int ust_consumerd64_fd
= -1;
185 int ust_consumerd32_fd
= -1;
187 static const char *consumerd32_bin
= CONFIG_CONSUMERD32_BIN
;
188 static const char *consumerd64_bin
= CONFIG_CONSUMERD64_BIN
;
189 static const char *consumerd32_libdir
= CONFIG_CONSUMERD32_LIBDIR
;
190 static const char *consumerd64_libdir
= CONFIG_CONSUMERD64_LIBDIR
;
192 static const char *module_proc_lttng
= "/proc/lttng";
195 * Consumer daemon state which is changed when spawning it, killing it or in
196 * case of a fatal error.
198 enum consumerd_state
{
199 CONSUMER_STARTED
= 1,
200 CONSUMER_STOPPED
= 2,
205 * This consumer daemon state is used to validate if a client command will be
206 * able to reach the consumer. If not, the client is informed. For instance,
207 * doing a "lttng start" when the consumer state is set to ERROR will return an
208 * error to the client.
210 * The following example shows a possible race condition of this scheme:
212 * consumer thread error happens
214 * client cmd checks state -> still OK
215 * consumer thread exit, sets error
216 * client cmd try to talk to consumer
219 * However, since the consumer is a different daemon, we have no way of making
220 * sure the command will reach it safely even with this state flag. This is why
221 * we consider that up to the state validation during command processing, the
222 * command is safe. After that, we can not guarantee the correctness of the
223 * client request vis-a-vis the consumer.
225 static enum consumerd_state ust_consumerd_state
;
226 static enum consumerd_state kernel_consumerd_state
;
229 * Socket timeout for receiving and sending in seconds.
231 static int app_socket_timeout
;
233 /* Set in main() with the current page size. */
237 void setup_consumerd_path(void)
239 const char *bin
, *libdir
;
242 * Allow INSTALL_BIN_PATH to be used as a target path for the
243 * native architecture size consumer if CONFIG_CONSUMER*_PATH
244 * has not been defined.
246 #if (CAA_BITS_PER_LONG == 32)
247 if (!consumerd32_bin
[0]) {
248 consumerd32_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
250 if (!consumerd32_libdir
[0]) {
251 consumerd32_libdir
= INSTALL_LIB_PATH
;
253 #elif (CAA_BITS_PER_LONG == 64)
254 if (!consumerd64_bin
[0]) {
255 consumerd64_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
257 if (!consumerd64_libdir
[0]) {
258 consumerd64_libdir
= INSTALL_LIB_PATH
;
261 #error "Unknown bitness"
265 * runtime env. var. overrides the build default.
267 bin
= getenv("LTTNG_CONSUMERD32_BIN");
269 consumerd32_bin
= bin
;
271 bin
= getenv("LTTNG_CONSUMERD64_BIN");
273 consumerd64_bin
= bin
;
275 libdir
= getenv("LTTNG_CONSUMERD32_LIBDIR");
277 consumerd32_libdir
= libdir
;
279 libdir
= getenv("LTTNG_CONSUMERD64_LIBDIR");
281 consumerd64_libdir
= libdir
;
286 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
288 int sessiond_set_thread_pollset(struct lttng_poll_event
*events
, size_t size
)
294 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
300 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
| LPOLLERR
);
312 * Check if the thread quit pipe was triggered.
314 * Return 1 if it was triggered else 0;
316 int sessiond_check_thread_quit_pipe(int fd
, uint32_t events
)
318 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
326 * Return group ID of the tracing group or -1 if not found.
328 static gid_t
allowed_group(void)
332 if (opt_tracing_group
) {
333 grp
= getgrnam(opt_tracing_group
);
335 grp
= getgrnam(default_tracing_group
);
345 * Init thread quit pipe.
347 * Return -1 on error or 0 if all pipes are created.
349 static int init_thread_quit_pipe(void)
353 ret
= pipe(thread_quit_pipe
);
355 PERROR("thread quit pipe");
359 for (i
= 0; i
< 2; i
++) {
360 ret
= fcntl(thread_quit_pipe
[i
], F_SETFD
, FD_CLOEXEC
);
372 * Stop all threads by closing the thread quit pipe.
374 static void stop_threads(void)
378 /* Stopping all threads */
379 DBG("Terminating all threads");
380 ret
= notify_thread_pipe(thread_quit_pipe
[1]);
382 ERR("write error on thread quit pipe");
385 /* Dispatch thread */
386 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
387 futex_nto1_wake(&ust_cmd_queue
.futex
);
391 * Close every consumer sockets.
393 static void close_consumer_sockets(void)
397 if (kconsumer_data
.err_sock
>= 0) {
398 ret
= close(kconsumer_data
.err_sock
);
400 PERROR("kernel consumer err_sock close");
403 if (ustconsumer32_data
.err_sock
>= 0) {
404 ret
= close(ustconsumer32_data
.err_sock
);
406 PERROR("UST consumerd32 err_sock close");
409 if (ustconsumer64_data
.err_sock
>= 0) {
410 ret
= close(ustconsumer64_data
.err_sock
);
412 PERROR("UST consumerd64 err_sock close");
415 if (kconsumer_data
.cmd_sock
>= 0) {
416 ret
= close(kconsumer_data
.cmd_sock
);
418 PERROR("kernel consumer cmd_sock close");
421 if (ustconsumer32_data
.cmd_sock
>= 0) {
422 ret
= close(ustconsumer32_data
.cmd_sock
);
424 PERROR("UST consumerd32 cmd_sock close");
427 if (ustconsumer64_data
.cmd_sock
>= 0) {
428 ret
= close(ustconsumer64_data
.cmd_sock
);
430 PERROR("UST consumerd64 cmd_sock close");
438 static void cleanup(void)
442 struct ltt_session
*sess
, *stmp
;
447 * Close the thread quit pipe. It has already done its job,
448 * since we are now called.
450 utils_close_pipe(thread_quit_pipe
);
453 * If opt_pidfile is undefined, the default file will be wiped when
454 * removing the rundir.
457 ret
= remove(opt_pidfile
);
459 PERROR("remove pidfile %s", opt_pidfile
);
463 DBG("Removing %s directory", rundir
);
464 ret
= asprintf(&cmd
, "rm -rf %s", rundir
);
466 ERR("asprintf failed. Something is really wrong!");
469 /* Remove lttng run directory */
472 ERR("Unable to clean %s", rundir
);
477 DBG("Cleaning up all sessions");
479 /* Destroy session list mutex */
480 if (session_list_ptr
!= NULL
) {
481 pthread_mutex_destroy(&session_list_ptr
->lock
);
483 /* Cleanup ALL session */
484 cds_list_for_each_entry_safe(sess
, stmp
,
485 &session_list_ptr
->head
, list
) {
486 cmd_destroy_session(sess
, kernel_poll_pipe
[1]);
490 DBG("Closing all UST sockets");
491 ust_app_clean_list();
492 buffer_reg_destroy_registries();
494 if (is_root
&& !opt_no_kernel
) {
495 DBG2("Closing kernel fd");
496 if (kernel_tracer_fd
>= 0) {
497 ret
= close(kernel_tracer_fd
);
502 DBG("Unloading kernel modules");
503 modprobe_remove_lttng_all();
506 close_consumer_sockets();
509 DBG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm"
510 "Matthew, BEET driven development works!%c[%dm",
511 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
516 * Send data on a unix socket using the liblttsessiondcomm API.
518 * Return lttcomm error code.
520 static int send_unix_sock(int sock
, void *buf
, size_t len
)
522 /* Check valid length */
527 return lttcomm_send_unix_sock(sock
, buf
, len
);
531 * Free memory of a command context structure.
533 static void clean_command_ctx(struct command_ctx
**cmd_ctx
)
535 DBG("Clean command context structure");
537 if ((*cmd_ctx
)->llm
) {
538 free((*cmd_ctx
)->llm
);
540 if ((*cmd_ctx
)->lsm
) {
541 free((*cmd_ctx
)->lsm
);
549 * Notify UST applications using the shm mmap futex.
551 static int notify_ust_apps(int active
)
555 DBG("Notifying applications of session daemon state: %d", active
);
557 /* See shm.c for this call implying mmap, shm and futex calls */
558 wait_shm_mmap
= shm_ust_get_mmap(wait_shm_path
, is_root
);
559 if (wait_shm_mmap
== NULL
) {
563 /* Wake waiting process */
564 futex_wait_update((int32_t *) wait_shm_mmap
, active
);
566 /* Apps notified successfully */
574 * Setup the outgoing data buffer for the response (llm) by allocating the
575 * right amount of memory and copying the original information from the lsm
578 * Return total size of the buffer pointed by buf.
580 static int setup_lttng_msg(struct command_ctx
*cmd_ctx
, size_t size
)
586 cmd_ctx
->llm
= zmalloc(sizeof(struct lttcomm_lttng_msg
) + buf_size
);
587 if (cmd_ctx
->llm
== NULL
) {
593 /* Copy common data */
594 cmd_ctx
->llm
->cmd_type
= cmd_ctx
->lsm
->cmd_type
;
595 cmd_ctx
->llm
->pid
= cmd_ctx
->lsm
->domain
.attr
.pid
;
597 cmd_ctx
->llm
->data_size
= size
;
598 cmd_ctx
->lttng_msg_size
= sizeof(struct lttcomm_lttng_msg
) + buf_size
;
607 * Update the kernel poll set of all channel fd available over all tracing
608 * session. Add the wakeup pipe at the end of the set.
610 static int update_kernel_poll(struct lttng_poll_event
*events
)
613 struct ltt_session
*session
;
614 struct ltt_kernel_channel
*channel
;
616 DBG("Updating kernel poll set");
619 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
620 session_lock(session
);
621 if (session
->kernel_session
== NULL
) {
622 session_unlock(session
);
626 cds_list_for_each_entry(channel
,
627 &session
->kernel_session
->channel_list
.head
, list
) {
628 /* Add channel fd to the kernel poll set */
629 ret
= lttng_poll_add(events
, channel
->fd
, LPOLLIN
| LPOLLRDNORM
);
631 session_unlock(session
);
634 DBG("Channel fd %d added to kernel set", channel
->fd
);
636 session_unlock(session
);
638 session_unlock_list();
643 session_unlock_list();
648 * Find the channel fd from 'fd' over all tracing session. When found, check
649 * for new channel stream and send those stream fds to the kernel consumer.
651 * Useful for CPU hotplug feature.
653 static int update_kernel_stream(struct consumer_data
*consumer_data
, int fd
)
656 struct ltt_session
*session
;
657 struct ltt_kernel_session
*ksess
;
658 struct ltt_kernel_channel
*channel
;
660 DBG("Updating kernel streams for channel fd %d", fd
);
663 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
664 session_lock(session
);
665 if (session
->kernel_session
== NULL
) {
666 session_unlock(session
);
669 ksess
= session
->kernel_session
;
671 cds_list_for_each_entry(channel
, &ksess
->channel_list
.head
, list
) {
672 if (channel
->fd
== fd
) {
673 DBG("Channel found, updating kernel streams");
674 ret
= kernel_open_channel_stream(channel
);
678 /* Update the stream global counter */
679 ksess
->stream_count_global
+= ret
;
682 * Have we already sent fds to the consumer? If yes, it means
683 * that tracing is started so it is safe to send our updated
686 if (ksess
->consumer_fds_sent
== 1 && ksess
->consumer
!= NULL
) {
687 struct lttng_ht_iter iter
;
688 struct consumer_socket
*socket
;
691 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
,
692 &iter
.iter
, socket
, node
.node
) {
693 pthread_mutex_lock(socket
->lock
);
694 ret
= kernel_consumer_send_channel_stream(socket
,
696 session
->output_traces
? 1 : 0);
697 pthread_mutex_unlock(socket
->lock
);
708 session_unlock(session
);
710 session_unlock_list();
714 session_unlock(session
);
715 session_unlock_list();
720 * For each tracing session, update newly registered apps. The session list
721 * lock MUST be acquired before calling this.
723 static void update_ust_app(int app_sock
)
725 struct ltt_session
*sess
, *stmp
;
727 /* Consumer is in an ERROR state. Stop any application update. */
728 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
729 /* Stop the update process since the consumer is dead. */
733 /* For all tracing session(s) */
734 cds_list_for_each_entry_safe(sess
, stmp
, &session_list_ptr
->head
, list
) {
736 if (sess
->ust_session
) {
737 ust_app_global_update(sess
->ust_session
, app_sock
);
739 session_unlock(sess
);
744 * This thread manage event coming from the kernel.
746 * Features supported in this thread:
749 static void *thread_manage_kernel(void *data
)
751 int ret
, i
, pollfd
, update_poll_flag
= 1, err
= -1;
752 uint32_t revents
, nb_fd
;
754 struct lttng_poll_event events
;
756 DBG("[thread] Thread manage kernel started");
758 health_register(HEALTH_TYPE_KERNEL
);
761 * This first step of the while is to clean this structure which could free
762 * non NULL pointers so initialize it before the loop.
764 lttng_poll_init(&events
);
766 if (testpoint(thread_manage_kernel
)) {
767 goto error_testpoint
;
770 health_code_update();
772 if (testpoint(thread_manage_kernel_before_loop
)) {
773 goto error_testpoint
;
777 health_code_update();
779 if (update_poll_flag
== 1) {
780 /* Clean events object. We are about to populate it again. */
781 lttng_poll_clean(&events
);
783 ret
= sessiond_set_thread_pollset(&events
, 2);
785 goto error_poll_create
;
788 ret
= lttng_poll_add(&events
, kernel_poll_pipe
[0], LPOLLIN
);
793 /* This will add the available kernel channel if any. */
794 ret
= update_kernel_poll(&events
);
798 update_poll_flag
= 0;
801 DBG("Thread kernel polling on %d fds", LTTNG_POLL_GETNB(&events
));
803 /* Poll infinite value of time */
806 ret
= lttng_poll_wait(&events
, -1);
810 * Restart interrupted system call.
812 if (errno
== EINTR
) {
816 } else if (ret
== 0) {
817 /* Should not happen since timeout is infinite */
818 ERR("Return value of poll is 0 with an infinite timeout.\n"
819 "This should not have happened! Continuing...");
825 for (i
= 0; i
< nb_fd
; i
++) {
826 /* Fetch once the poll data */
827 revents
= LTTNG_POLL_GETEV(&events
, i
);
828 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
830 health_code_update();
832 /* Thread quit pipe has been closed. Killing thread. */
833 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
839 /* Check for data on kernel pipe */
840 if (pollfd
== kernel_poll_pipe
[0] && (revents
& LPOLLIN
)) {
842 ret
= read(kernel_poll_pipe
[0], &tmp
, 1);
843 } while (ret
< 0 && errno
== EINTR
);
845 * Ret value is useless here, if this pipe gets any actions an
846 * update is required anyway.
848 update_poll_flag
= 1;
852 * New CPU detected by the kernel. Adding kernel stream to
853 * kernel session and updating the kernel consumer
855 if (revents
& LPOLLIN
) {
856 ret
= update_kernel_stream(&kconsumer_data
, pollfd
);
862 * TODO: We might want to handle the LPOLLERR | LPOLLHUP
863 * and unregister kernel stream at this point.
872 lttng_poll_clean(&events
);
875 utils_close_pipe(kernel_poll_pipe
);
876 kernel_poll_pipe
[0] = kernel_poll_pipe
[1] = -1;
879 ERR("Health error occurred in %s", __func__
);
880 WARN("Kernel thread died unexpectedly. "
881 "Kernel tracing can continue but CPU hotplug is disabled.");
884 DBG("Kernel thread dying");
889 * Signal pthread condition of the consumer data that the thread.
891 static void signal_consumer_condition(struct consumer_data
*data
, int state
)
893 pthread_mutex_lock(&data
->cond_mutex
);
896 * The state is set before signaling. It can be any value, it's the waiter
897 * job to correctly interpret this condition variable associated to the
898 * consumer pthread_cond.
900 * A value of 0 means that the corresponding thread of the consumer data
901 * was not started. 1 indicates that the thread has started and is ready
902 * for action. A negative value means that there was an error during the
905 data
->consumer_thread_is_ready
= state
;
906 (void) pthread_cond_signal(&data
->cond
);
908 pthread_mutex_unlock(&data
->cond_mutex
);
912 * This thread manage the consumer error sent back to the session daemon.
914 static void *thread_manage_consumer(void *data
)
916 int sock
= -1, i
, ret
, pollfd
, err
= -1;
917 uint32_t revents
, nb_fd
;
918 enum lttcomm_return_code code
;
919 struct lttng_poll_event events
;
920 struct consumer_data
*consumer_data
= data
;
922 DBG("[thread] Manage consumer started");
924 health_register(HEALTH_TYPE_CONSUMER
);
926 health_code_update();
929 * Pass 3 as size here for the thread quit pipe, consumerd_err_sock and the
930 * metadata_sock. Nothing more will be added to this poll set.
932 ret
= sessiond_set_thread_pollset(&events
, 3);
938 * The error socket here is already in a listening state which was done
939 * just before spawning this thread to avoid a race between the consumer
940 * daemon exec trying to connect and the listen() call.
942 ret
= lttng_poll_add(&events
, consumer_data
->err_sock
, LPOLLIN
| LPOLLRDHUP
);
947 health_code_update();
949 /* Infinite blocking call, waiting for transmission */
953 if (testpoint(thread_manage_consumer
)) {
957 ret
= lttng_poll_wait(&events
, -1);
961 * Restart interrupted system call.
963 if (errno
== EINTR
) {
971 for (i
= 0; i
< nb_fd
; i
++) {
972 /* Fetch once the poll data */
973 revents
= LTTNG_POLL_GETEV(&events
, i
);
974 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
976 health_code_update();
978 /* Thread quit pipe has been closed. Killing thread. */
979 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
985 /* Event on the registration socket */
986 if (pollfd
== consumer_data
->err_sock
) {
987 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
988 ERR("consumer err socket poll error");
994 sock
= lttcomm_accept_unix_sock(consumer_data
->err_sock
);
1000 * Set the CLOEXEC flag. Return code is useless because either way, the
1003 (void) utils_set_fd_cloexec(sock
);
1005 health_code_update();
1007 DBG2("Receiving code from consumer err_sock");
1009 /* Getting status code from kconsumerd */
1010 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1011 sizeof(enum lttcomm_return_code
));
1016 health_code_update();
1017 if (code
== LTTCOMM_CONSUMERD_COMMAND_SOCK_READY
) {
1018 /* Connect both socket, command and metadata. */
1019 consumer_data
->cmd_sock
=
1020 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
1021 consumer_data
->metadata_fd
=
1022 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
1023 if (consumer_data
->cmd_sock
< 0
1024 || consumer_data
->metadata_fd
< 0) {
1025 PERROR("consumer connect cmd socket");
1026 /* On error, signal condition and quit. */
1027 signal_consumer_condition(consumer_data
, -1);
1030 consumer_data
->metadata_sock
.fd_ptr
= &consumer_data
->metadata_fd
;
1031 /* Create metadata socket lock. */
1032 consumer_data
->metadata_sock
.lock
= zmalloc(sizeof(pthread_mutex_t
));
1033 if (consumer_data
->metadata_sock
.lock
== NULL
) {
1034 PERROR("zmalloc pthread mutex");
1038 pthread_mutex_init(consumer_data
->metadata_sock
.lock
, NULL
);
1040 signal_consumer_condition(consumer_data
, 1);
1041 DBG("Consumer command socket ready (fd: %d", consumer_data
->cmd_sock
);
1042 DBG("Consumer metadata socket ready (fd: %d)",
1043 consumer_data
->metadata_fd
);
1045 ERR("consumer error when waiting for SOCK_READY : %s",
1046 lttcomm_get_readable_code(-code
));
1050 /* Remove the consumerd error sock since we've established a connexion */
1051 ret
= lttng_poll_del(&events
, consumer_data
->err_sock
);
1056 /* Add new accepted error socket. */
1057 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLRDHUP
);
1062 /* Add metadata socket that is successfully connected. */
1063 ret
= lttng_poll_add(&events
, consumer_data
->metadata_fd
,
1064 LPOLLIN
| LPOLLRDHUP
);
1069 health_code_update();
1071 /* Infinite blocking call, waiting for transmission */
1074 health_poll_entry();
1075 ret
= lttng_poll_wait(&events
, -1);
1079 * Restart interrupted system call.
1081 if (errno
== EINTR
) {
1089 for (i
= 0; i
< nb_fd
; i
++) {
1090 /* Fetch once the poll data */
1091 revents
= LTTNG_POLL_GETEV(&events
, i
);
1092 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1094 health_code_update();
1096 /* Thread quit pipe has been closed. Killing thread. */
1097 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1103 if (pollfd
== sock
) {
1104 /* Event on the consumerd socket */
1105 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1106 ERR("consumer err socket second poll error");
1109 health_code_update();
1110 /* Wait for any kconsumerd error */
1111 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1112 sizeof(enum lttcomm_return_code
));
1114 ERR("consumer closed the command socket");
1118 ERR("consumer return code : %s",
1119 lttcomm_get_readable_code(-code
));
1122 } else if (pollfd
== consumer_data
->metadata_fd
) {
1123 /* UST metadata requests */
1124 ret
= ust_consumer_metadata_request(
1125 &consumer_data
->metadata_sock
);
1127 ERR("Handling metadata request");
1132 ERR("Unknown pollfd");
1136 health_code_update();
1142 * We lock here because we are about to close the sockets and some other
1143 * thread might be using them so get exclusive access which will abort all
1144 * other consumer command by other threads.
1146 pthread_mutex_lock(&consumer_data
->lock
);
1148 /* Immediately set the consumerd state to stopped */
1149 if (consumer_data
->type
== LTTNG_CONSUMER_KERNEL
) {
1150 uatomic_set(&kernel_consumerd_state
, CONSUMER_ERROR
);
1151 } else if (consumer_data
->type
== LTTNG_CONSUMER64_UST
||
1152 consumer_data
->type
== LTTNG_CONSUMER32_UST
) {
1153 uatomic_set(&ust_consumerd_state
, CONSUMER_ERROR
);
1155 /* Code flow error... */
1159 if (consumer_data
->err_sock
>= 0) {
1160 ret
= close(consumer_data
->err_sock
);
1164 consumer_data
->err_sock
= -1;
1166 if (consumer_data
->cmd_sock
>= 0) {
1167 ret
= close(consumer_data
->cmd_sock
);
1171 consumer_data
->cmd_sock
= -1;
1173 if (consumer_data
->metadata_sock
.fd_ptr
&&
1174 *consumer_data
->metadata_sock
.fd_ptr
>= 0) {
1175 ret
= close(*consumer_data
->metadata_sock
.fd_ptr
);
1187 unlink(consumer_data
->err_unix_sock_path
);
1188 unlink(consumer_data
->cmd_unix_sock_path
);
1189 consumer_data
->pid
= 0;
1190 pthread_mutex_unlock(&consumer_data
->lock
);
1192 /* Cleanup metadata socket mutex. */
1193 if (consumer_data
->metadata_sock
.lock
) {
1194 pthread_mutex_destroy(consumer_data
->metadata_sock
.lock
);
1195 free(consumer_data
->metadata_sock
.lock
);
1197 lttng_poll_clean(&events
);
1201 ERR("Health error occurred in %s", __func__
);
1203 health_unregister();
1204 DBG("consumer thread cleanup completed");
1210 * This thread manage application communication.
1212 static void *thread_manage_apps(void *data
)
1214 int i
, ret
, pollfd
, err
= -1;
1215 uint32_t revents
, nb_fd
;
1216 struct lttng_poll_event events
;
1218 DBG("[thread] Manage application started");
1220 rcu_register_thread();
1221 rcu_thread_online();
1223 health_register(HEALTH_TYPE_APP_MANAGE
);
1225 if (testpoint(thread_manage_apps
)) {
1226 goto error_testpoint
;
1229 health_code_update();
1231 ret
= sessiond_set_thread_pollset(&events
, 2);
1233 goto error_poll_create
;
1236 ret
= lttng_poll_add(&events
, apps_cmd_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
1241 if (testpoint(thread_manage_apps_before_loop
)) {
1245 health_code_update();
1248 DBG("Apps thread polling on %d fds", LTTNG_POLL_GETNB(&events
));
1250 /* Inifinite blocking call, waiting for transmission */
1252 health_poll_entry();
1253 ret
= lttng_poll_wait(&events
, -1);
1257 * Restart interrupted system call.
1259 if (errno
== EINTR
) {
1267 for (i
= 0; i
< nb_fd
; i
++) {
1268 /* Fetch once the poll data */
1269 revents
= LTTNG_POLL_GETEV(&events
, i
);
1270 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1272 health_code_update();
1274 /* Thread quit pipe has been closed. Killing thread. */
1275 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1281 /* Inspect the apps cmd pipe */
1282 if (pollfd
== apps_cmd_pipe
[0]) {
1283 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1284 ERR("Apps command pipe error");
1286 } else if (revents
& LPOLLIN
) {
1291 ret
= read(apps_cmd_pipe
[0], &sock
, sizeof(sock
));
1292 } while (ret
< 0 && errno
== EINTR
);
1293 if (ret
< 0 || ret
< sizeof(sock
)) {
1294 PERROR("read apps cmd pipe");
1298 health_code_update();
1301 * We only monitor the error events of the socket. This
1302 * thread does not handle any incoming data from UST
1305 ret
= lttng_poll_add(&events
, sock
,
1306 LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
);
1311 DBG("Apps with sock %d added to poll set", sock
);
1315 * At this point, we know that a registered application made
1316 * the event at poll_wait.
1318 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1319 /* Removing from the poll set */
1320 ret
= lttng_poll_del(&events
, pollfd
);
1325 /* Socket closed on remote end. */
1326 ust_app_unregister(pollfd
);
1330 health_code_update();
1336 lttng_poll_clean(&events
);
1339 utils_close_pipe(apps_cmd_pipe
);
1340 apps_cmd_pipe
[0] = apps_cmd_pipe
[1] = -1;
1343 * We don't clean the UST app hash table here since already registered
1344 * applications can still be controlled so let them be until the session
1345 * daemon dies or the applications stop.
1350 ERR("Health error occurred in %s", __func__
);
1352 health_unregister();
1353 DBG("Application communication apps thread cleanup complete");
1354 rcu_thread_offline();
1355 rcu_unregister_thread();
1360 * Send a socket to a thread This is called from the dispatch UST registration
1361 * thread once all sockets are set for the application.
1363 * The sock value can be invalid, we don't really care, the thread will handle
1364 * it and make the necessary cleanup if so.
1366 * On success, return 0 else a negative value being the errno message of the
1369 static int send_socket_to_thread(int fd
, int sock
)
1374 * It's possible that the FD is set as invalid with -1 concurrently just
1375 * before calling this function being a shutdown state of the thread.
1383 ret
= write(fd
, &sock
, sizeof(sock
));
1384 } while (ret
< 0 && errno
== EINTR
);
1385 if (ret
< 0 || ret
!= sizeof(sock
)) {
1386 PERROR("write apps pipe %d", fd
);
1393 /* All good. Don't send back the write positive ret value. */
1400 * Sanitize the wait queue of the dispatch registration thread meaning removing
1401 * invalid nodes from it. This is to avoid memory leaks for the case the UST
1402 * notify socket is never received.
1404 static void sanitize_wait_queue(struct ust_reg_wait_queue
*wait_queue
)
1406 int ret
, nb_fd
= 0, i
;
1407 unsigned int fd_added
= 0;
1408 struct lttng_poll_event events
;
1409 struct ust_reg_wait_node
*wait_node
= NULL
, *tmp_wait_node
;
1413 lttng_poll_init(&events
);
1415 /* Just skip everything for an empty queue. */
1416 if (!wait_queue
->count
) {
1420 ret
= lttng_poll_create(&events
, wait_queue
->count
, LTTNG_CLOEXEC
);
1425 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1426 &wait_queue
->head
, head
) {
1427 assert(wait_node
->app
);
1428 ret
= lttng_poll_add(&events
, wait_node
->app
->sock
,
1429 LPOLLHUP
| LPOLLERR
);
1442 * Poll but don't block so we can quickly identify the faulty events and
1443 * clean them afterwards from the wait queue.
1445 ret
= lttng_poll_wait(&events
, 0);
1451 for (i
= 0; i
< nb_fd
; i
++) {
1452 /* Get faulty FD. */
1453 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
1454 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1456 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1457 &wait_queue
->head
, head
) {
1458 if (pollfd
== wait_node
->app
->sock
&&
1459 (revents
& (LPOLLHUP
| LPOLLERR
))) {
1460 cds_list_del(&wait_node
->head
);
1461 wait_queue
->count
--;
1462 ust_app_destroy(wait_node
->app
);
1470 DBG("Wait queue sanitized, %d node were cleaned up", nb_fd
);
1474 lttng_poll_clean(&events
);
1478 lttng_poll_clean(&events
);
1480 ERR("Unable to sanitize wait queue");
1485 * Dispatch request from the registration threads to the application
1486 * communication thread.
1488 static void *thread_dispatch_ust_registration(void *data
)
1491 struct cds_wfq_node
*node
;
1492 struct ust_command
*ust_cmd
= NULL
;
1493 struct ust_reg_wait_node
*wait_node
= NULL
, *tmp_wait_node
;
1494 struct ust_reg_wait_queue wait_queue
= {
1498 health_register(HEALTH_TYPE_APP_REG_DISPATCH
);
1500 health_code_update();
1502 CDS_INIT_LIST_HEAD(&wait_queue
.head
);
1504 DBG("[thread] Dispatch UST command started");
1506 while (!CMM_LOAD_SHARED(dispatch_thread_exit
)) {
1507 health_code_update();
1509 /* Atomically prepare the queue futex */
1510 futex_nto1_prepare(&ust_cmd_queue
.futex
);
1513 struct ust_app
*app
= NULL
;
1517 * Make sure we don't have node(s) that have hung up before receiving
1518 * the notify socket. This is to clean the list in order to avoid
1519 * memory leaks from notify socket that are never seen.
1521 sanitize_wait_queue(&wait_queue
);
1523 health_code_update();
1524 /* Dequeue command for registration */
1525 node
= cds_wfq_dequeue_blocking(&ust_cmd_queue
.queue
);
1527 DBG("Woken up but nothing in the UST command queue");
1528 /* Continue thread execution */
1532 ust_cmd
= caa_container_of(node
, struct ust_command
, node
);
1534 DBG("Dispatching UST registration pid:%d ppid:%d uid:%d"
1535 " gid:%d sock:%d name:%s (version %d.%d)",
1536 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1537 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1538 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1539 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1541 if (ust_cmd
->reg_msg
.type
== USTCTL_SOCKET_CMD
) {
1542 wait_node
= zmalloc(sizeof(*wait_node
));
1544 PERROR("zmalloc wait_node dispatch");
1545 ret
= close(ust_cmd
->sock
);
1547 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1549 lttng_fd_put(LTTNG_FD_APPS
, 1);
1553 CDS_INIT_LIST_HEAD(&wait_node
->head
);
1555 /* Create application object if socket is CMD. */
1556 wait_node
->app
= ust_app_create(&ust_cmd
->reg_msg
,
1558 if (!wait_node
->app
) {
1559 ret
= close(ust_cmd
->sock
);
1561 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1563 lttng_fd_put(LTTNG_FD_APPS
, 1);
1569 * Add application to the wait queue so we can set the notify
1570 * socket before putting this object in the global ht.
1572 cds_list_add(&wait_node
->head
, &wait_queue
.head
);
1577 * We have to continue here since we don't have the notify
1578 * socket and the application MUST be added to the hash table
1579 * only at that moment.
1584 * Look for the application in the local wait queue and set the
1585 * notify socket if found.
1587 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1588 &wait_queue
.head
, head
) {
1589 health_code_update();
1590 if (wait_node
->app
->pid
== ust_cmd
->reg_msg
.pid
) {
1591 wait_node
->app
->notify_sock
= ust_cmd
->sock
;
1592 cds_list_del(&wait_node
->head
);
1594 app
= wait_node
->app
;
1596 DBG3("UST app notify socket %d is set", ust_cmd
->sock
);
1602 * With no application at this stage the received socket is
1603 * basically useless so close it before we free the cmd data
1604 * structure for good.
1607 ret
= close(ust_cmd
->sock
);
1609 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1611 lttng_fd_put(LTTNG_FD_APPS
, 1);
1618 * @session_lock_list
1620 * Lock the global session list so from the register up to the
1621 * registration done message, no thread can see the application
1622 * and change its state.
1624 session_lock_list();
1628 * Add application to the global hash table. This needs to be
1629 * done before the update to the UST registry can locate the
1634 /* Set app version. This call will print an error if needed. */
1635 (void) ust_app_version(app
);
1637 /* Send notify socket through the notify pipe. */
1638 ret
= send_socket_to_thread(apps_cmd_notify_pipe
[1],
1642 session_unlock_list();
1644 * No notify thread, stop the UST tracing. However, this is
1645 * not an internal error of the this thread thus setting
1646 * the health error code to a normal exit.
1653 * Update newly registered application with the tracing
1654 * registry info already enabled information.
1656 update_ust_app(app
->sock
);
1659 * Don't care about return value. Let the manage apps threads
1660 * handle app unregistration upon socket close.
1662 (void) ust_app_register_done(app
->sock
);
1665 * Even if the application socket has been closed, send the app
1666 * to the thread and unregistration will take place at that
1669 ret
= send_socket_to_thread(apps_cmd_pipe
[1], app
->sock
);
1672 session_unlock_list();
1674 * No apps. thread, stop the UST tracing. However, this is
1675 * not an internal error of the this thread thus setting
1676 * the health error code to a normal exit.
1683 session_unlock_list();
1685 } while (node
!= NULL
);
1687 health_poll_entry();
1688 /* Futex wait on queue. Blocking call on futex() */
1689 futex_nto1_wait(&ust_cmd_queue
.futex
);
1692 /* Normal exit, no error */
1696 /* Clean up wait queue. */
1697 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1698 &wait_queue
.head
, head
) {
1699 cds_list_del(&wait_node
->head
);
1704 DBG("Dispatch thread dying");
1707 ERR("Health error occurred in %s", __func__
);
1709 health_unregister();
1714 * This thread manage application registration.
1716 static void *thread_registration_apps(void *data
)
1718 int sock
= -1, i
, ret
, pollfd
, err
= -1;
1719 uint32_t revents
, nb_fd
;
1720 struct lttng_poll_event events
;
1722 * Get allocated in this thread, enqueued to a global queue, dequeued and
1723 * freed in the manage apps thread.
1725 struct ust_command
*ust_cmd
= NULL
;
1727 DBG("[thread] Manage application registration started");
1729 health_register(HEALTH_TYPE_APP_REG
);
1731 if (testpoint(thread_registration_apps
)) {
1732 goto error_testpoint
;
1735 ret
= lttcomm_listen_unix_sock(apps_sock
);
1741 * Pass 2 as size here for the thread quit pipe and apps socket. Nothing
1742 * more will be added to this poll set.
1744 ret
= sessiond_set_thread_pollset(&events
, 2);
1746 goto error_create_poll
;
1749 /* Add the application registration socket */
1750 ret
= lttng_poll_add(&events
, apps_sock
, LPOLLIN
| LPOLLRDHUP
);
1752 goto error_poll_add
;
1755 /* Notify all applications to register */
1756 ret
= notify_ust_apps(1);
1758 ERR("Failed to notify applications or create the wait shared memory.\n"
1759 "Execution continues but there might be problem for already\n"
1760 "running applications that wishes to register.");
1764 DBG("Accepting application registration");
1766 /* Inifinite blocking call, waiting for transmission */
1768 health_poll_entry();
1769 ret
= lttng_poll_wait(&events
, -1);
1773 * Restart interrupted system call.
1775 if (errno
== EINTR
) {
1783 for (i
= 0; i
< nb_fd
; i
++) {
1784 health_code_update();
1786 /* Fetch once the poll data */
1787 revents
= LTTNG_POLL_GETEV(&events
, i
);
1788 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1790 /* Thread quit pipe has been closed. Killing thread. */
1791 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1797 /* Event on the registration socket */
1798 if (pollfd
== apps_sock
) {
1799 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1800 ERR("Register apps socket poll error");
1802 } else if (revents
& LPOLLIN
) {
1803 sock
= lttcomm_accept_unix_sock(apps_sock
);
1809 * Set socket timeout for both receiving and ending.
1810 * app_socket_timeout is in seconds, whereas
1811 * lttcomm_setsockopt_rcv_timeout and
1812 * lttcomm_setsockopt_snd_timeout expect msec as
1815 (void) lttcomm_setsockopt_rcv_timeout(sock
,
1816 app_socket_timeout
* 1000);
1817 (void) lttcomm_setsockopt_snd_timeout(sock
,
1818 app_socket_timeout
* 1000);
1821 * Set the CLOEXEC flag. Return code is useless because
1822 * either way, the show must go on.
1824 (void) utils_set_fd_cloexec(sock
);
1826 /* Create UST registration command for enqueuing */
1827 ust_cmd
= zmalloc(sizeof(struct ust_command
));
1828 if (ust_cmd
== NULL
) {
1829 PERROR("ust command zmalloc");
1834 * Using message-based transmissions to ensure we don't
1835 * have to deal with partially received messages.
1837 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
1839 ERR("Exhausted file descriptors allowed for applications.");
1849 health_code_update();
1850 ret
= ust_app_recv_registration(sock
, &ust_cmd
->reg_msg
);
1853 /* Close socket of the application. */
1858 lttng_fd_put(LTTNG_FD_APPS
, 1);
1862 health_code_update();
1864 ust_cmd
->sock
= sock
;
1867 DBG("UST registration received with pid:%d ppid:%d uid:%d"
1868 " gid:%d sock:%d name:%s (version %d.%d)",
1869 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1870 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1871 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1872 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1875 * Lock free enqueue the registration request. The red pill
1876 * has been taken! This apps will be part of the *system*.
1878 cds_wfq_enqueue(&ust_cmd_queue
.queue
, &ust_cmd
->node
);
1881 * Wake the registration queue futex. Implicit memory
1882 * barrier with the exchange in cds_wfq_enqueue.
1884 futex_nto1_wake(&ust_cmd_queue
.futex
);
1894 ERR("Health error occurred in %s", __func__
);
1897 /* Notify that the registration thread is gone */
1900 if (apps_sock
>= 0) {
1901 ret
= close(apps_sock
);
1911 lttng_fd_put(LTTNG_FD_APPS
, 1);
1913 unlink(apps_unix_sock_path
);
1916 lttng_poll_clean(&events
);
1920 DBG("UST Registration thread cleanup complete");
1921 health_unregister();
1927 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
1928 * exec or it will fails.
1930 static int spawn_consumer_thread(struct consumer_data
*consumer_data
)
1933 struct timespec timeout
;
1935 /* Make sure we set the readiness flag to 0 because we are NOT ready */
1936 consumer_data
->consumer_thread_is_ready
= 0;
1938 /* Setup pthread condition */
1939 ret
= pthread_condattr_init(&consumer_data
->condattr
);
1942 PERROR("pthread_condattr_init consumer data");
1947 * Set the monotonic clock in order to make sure we DO NOT jump in time
1948 * between the clock_gettime() call and the timedwait call. See bug #324
1949 * for a more details and how we noticed it.
1951 ret
= pthread_condattr_setclock(&consumer_data
->condattr
, CLOCK_MONOTONIC
);
1954 PERROR("pthread_condattr_setclock consumer data");
1958 ret
= pthread_cond_init(&consumer_data
->cond
, &consumer_data
->condattr
);
1961 PERROR("pthread_cond_init consumer data");
1965 ret
= pthread_create(&consumer_data
->thread
, NULL
, thread_manage_consumer
,
1968 PERROR("pthread_create consumer");
1973 /* We are about to wait on a pthread condition */
1974 pthread_mutex_lock(&consumer_data
->cond_mutex
);
1976 /* Get time for sem_timedwait absolute timeout */
1977 clock_ret
= clock_gettime(CLOCK_MONOTONIC
, &timeout
);
1979 * Set the timeout for the condition timed wait even if the clock gettime
1980 * call fails since we might loop on that call and we want to avoid to
1981 * increment the timeout too many times.
1983 timeout
.tv_sec
+= DEFAULT_SEM_WAIT_TIMEOUT
;
1986 * The following loop COULD be skipped in some conditions so this is why we
1987 * set ret to 0 in order to make sure at least one round of the loop is
1993 * Loop until the condition is reached or when a timeout is reached. Note
1994 * that the pthread_cond_timedwait(P) man page specifies that EINTR can NOT
1995 * be returned but the pthread_cond(3), from the glibc-doc, says that it is
1996 * possible. This loop does not take any chances and works with both of
1999 while (!consumer_data
->consumer_thread_is_ready
&& ret
!= ETIMEDOUT
) {
2000 if (clock_ret
< 0) {
2001 PERROR("clock_gettime spawn consumer");
2002 /* Infinite wait for the consumerd thread to be ready */
2003 ret
= pthread_cond_wait(&consumer_data
->cond
,
2004 &consumer_data
->cond_mutex
);
2006 ret
= pthread_cond_timedwait(&consumer_data
->cond
,
2007 &consumer_data
->cond_mutex
, &timeout
);
2011 /* Release the pthread condition */
2012 pthread_mutex_unlock(&consumer_data
->cond_mutex
);
2016 if (ret
== ETIMEDOUT
) {
2020 * Call has timed out so we kill the kconsumerd_thread and return
2023 ERR("Condition timed out. The consumer thread was never ready."
2025 pth_ret
= pthread_cancel(consumer_data
->thread
);
2027 PERROR("pthread_cancel consumer thread");
2030 PERROR("pthread_cond_wait failed consumer thread");
2032 /* Caller is expecting a negative value on failure. */
2037 pthread_mutex_lock(&consumer_data
->pid_mutex
);
2038 if (consumer_data
->pid
== 0) {
2039 ERR("Consumerd did not start");
2040 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2043 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2052 * Join consumer thread
2054 static int join_consumer_thread(struct consumer_data
*consumer_data
)
2058 /* Consumer pid must be a real one. */
2059 if (consumer_data
->pid
> 0) {
2061 ret
= kill(consumer_data
->pid
, SIGTERM
);
2063 ERR("Error killing consumer daemon");
2066 return pthread_join(consumer_data
->thread
, &status
);
2073 * Fork and exec a consumer daemon (consumerd).
2075 * Return pid if successful else -1.
2077 static pid_t
spawn_consumerd(struct consumer_data
*consumer_data
)
2081 const char *consumer_to_use
;
2082 const char *verbosity
;
2085 DBG("Spawning consumerd");
2092 if (opt_verbose_consumer
) {
2093 verbosity
= "--verbose";
2095 verbosity
= "--quiet";
2097 switch (consumer_data
->type
) {
2098 case LTTNG_CONSUMER_KERNEL
:
2100 * Find out which consumerd to execute. We will first try the
2101 * 64-bit path, then the sessiond's installation directory, and
2102 * fallback on the 32-bit one,
2104 DBG3("Looking for a kernel consumer at these locations:");
2105 DBG3(" 1) %s", consumerd64_bin
);
2106 DBG3(" 2) %s/%s", INSTALL_BIN_PATH
, CONSUMERD_FILE
);
2107 DBG3(" 3) %s", consumerd32_bin
);
2108 if (stat(consumerd64_bin
, &st
) == 0) {
2109 DBG3("Found location #1");
2110 consumer_to_use
= consumerd64_bin
;
2111 } else if (stat(INSTALL_BIN_PATH
"/" CONSUMERD_FILE
, &st
) == 0) {
2112 DBG3("Found location #2");
2113 consumer_to_use
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
2114 } else if (stat(consumerd32_bin
, &st
) == 0) {
2115 DBG3("Found location #3");
2116 consumer_to_use
= consumerd32_bin
;
2118 DBG("Could not find any valid consumerd executable");
2122 DBG("Using kernel consumer at: %s", consumer_to_use
);
2123 ret
= execl(consumer_to_use
,
2124 "lttng-consumerd", verbosity
, "-k",
2125 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2126 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2129 case LTTNG_CONSUMER64_UST
:
2131 char *tmpnew
= NULL
;
2133 if (consumerd64_libdir
[0] != '\0') {
2137 tmp
= getenv("LD_LIBRARY_PATH");
2141 tmplen
= strlen("LD_LIBRARY_PATH=")
2142 + strlen(consumerd64_libdir
) + 1 /* : */ + strlen(tmp
);
2143 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
2148 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
2149 strcat(tmpnew
, consumerd64_libdir
);
2150 if (tmp
[0] != '\0') {
2151 strcat(tmpnew
, ":");
2152 strcat(tmpnew
, tmp
);
2154 ret
= putenv(tmpnew
);
2161 DBG("Using 64-bit UST consumer at: %s", consumerd64_bin
);
2162 ret
= execl(consumerd64_bin
, "lttng-consumerd", verbosity
, "-u",
2163 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2164 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2166 if (consumerd64_libdir
[0] != '\0') {
2171 case LTTNG_CONSUMER32_UST
:
2173 char *tmpnew
= NULL
;
2175 if (consumerd32_libdir
[0] != '\0') {
2179 tmp
= getenv("LD_LIBRARY_PATH");
2183 tmplen
= strlen("LD_LIBRARY_PATH=")
2184 + strlen(consumerd32_libdir
) + 1 /* : */ + strlen(tmp
);
2185 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
2190 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
2191 strcat(tmpnew
, consumerd32_libdir
);
2192 if (tmp
[0] != '\0') {
2193 strcat(tmpnew
, ":");
2194 strcat(tmpnew
, tmp
);
2196 ret
= putenv(tmpnew
);
2203 DBG("Using 32-bit UST consumer at: %s", consumerd32_bin
);
2204 ret
= execl(consumerd32_bin
, "lttng-consumerd", verbosity
, "-u",
2205 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2206 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2208 if (consumerd32_libdir
[0] != '\0') {
2214 PERROR("unknown consumer type");
2218 PERROR("Consumer execl()");
2220 /* Reaching this point, we got a failure on our execl(). */
2222 } else if (pid
> 0) {
2225 PERROR("start consumer fork");
2233 * Spawn the consumerd daemon and session daemon thread.
2235 static int start_consumerd(struct consumer_data
*consumer_data
)
2240 * Set the listen() state on the socket since there is a possible race
2241 * between the exec() of the consumer daemon and this call if place in the
2242 * consumer thread. See bug #366 for more details.
2244 ret
= lttcomm_listen_unix_sock(consumer_data
->err_sock
);
2249 pthread_mutex_lock(&consumer_data
->pid_mutex
);
2250 if (consumer_data
->pid
!= 0) {
2251 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2255 ret
= spawn_consumerd(consumer_data
);
2257 ERR("Spawning consumerd failed");
2258 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2262 /* Setting up the consumer_data pid */
2263 consumer_data
->pid
= ret
;
2264 DBG2("Consumer pid %d", consumer_data
->pid
);
2265 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2267 DBG2("Spawning consumer control thread");
2268 ret
= spawn_consumer_thread(consumer_data
);
2270 ERR("Fatal error spawning consumer control thread");
2278 /* Cleanup already created sockets on error. */
2279 if (consumer_data
->err_sock
>= 0) {
2282 err
= close(consumer_data
->err_sock
);
2284 PERROR("close consumer data error socket");
2291 * Compute health status of each consumer. If one of them is zero (bad
2292 * state), we return 0.
2294 static int check_consumer_health(void)
2298 ret
= health_check_state(HEALTH_TYPE_CONSUMER
);
2300 DBG3("Health consumer check %d", ret
);
2306 * Setup necessary data for kernel tracer action.
2308 static int init_kernel_tracer(void)
2312 /* Modprobe lttng kernel modules */
2313 ret
= modprobe_lttng_control();
2318 /* Open debugfs lttng */
2319 kernel_tracer_fd
= open(module_proc_lttng
, O_RDWR
);
2320 if (kernel_tracer_fd
< 0) {
2321 DBG("Failed to open %s", module_proc_lttng
);
2326 /* Validate kernel version */
2327 ret
= kernel_validate_version(kernel_tracer_fd
);
2332 ret
= modprobe_lttng_data();
2337 DBG("Kernel tracer fd %d", kernel_tracer_fd
);
2341 modprobe_remove_lttng_control();
2342 ret
= close(kernel_tracer_fd
);
2346 kernel_tracer_fd
= -1;
2347 return LTTNG_ERR_KERN_VERSION
;
2350 ret
= close(kernel_tracer_fd
);
2356 modprobe_remove_lttng_control();
2359 WARN("No kernel tracer available");
2360 kernel_tracer_fd
= -1;
2362 return LTTNG_ERR_NEED_ROOT_SESSIOND
;
2364 return LTTNG_ERR_KERN_NA
;
2370 * Copy consumer output from the tracing session to the domain session. The
2371 * function also applies the right modification on a per domain basis for the
2372 * trace files destination directory.
2374 * Should *NOT* be called with RCU read-side lock held.
2376 static int copy_session_consumer(int domain
, struct ltt_session
*session
)
2379 const char *dir_name
;
2380 struct consumer_output
*consumer
;
2383 assert(session
->consumer
);
2386 case LTTNG_DOMAIN_KERNEL
:
2387 DBG3("Copying tracing session consumer output in kernel session");
2389 * XXX: We should audit the session creation and what this function
2390 * does "extra" in order to avoid a destroy since this function is used
2391 * in the domain session creation (kernel and ust) only. Same for UST
2394 if (session
->kernel_session
->consumer
) {
2395 consumer_destroy_output(session
->kernel_session
->consumer
);
2397 session
->kernel_session
->consumer
=
2398 consumer_copy_output(session
->consumer
);
2399 /* Ease our life a bit for the next part */
2400 consumer
= session
->kernel_session
->consumer
;
2401 dir_name
= DEFAULT_KERNEL_TRACE_DIR
;
2403 case LTTNG_DOMAIN_UST
:
2404 DBG3("Copying tracing session consumer output in UST session");
2405 if (session
->ust_session
->consumer
) {
2406 consumer_destroy_output(session
->ust_session
->consumer
);
2408 session
->ust_session
->consumer
=
2409 consumer_copy_output(session
->consumer
);
2410 /* Ease our life a bit for the next part */
2411 consumer
= session
->ust_session
->consumer
;
2412 dir_name
= DEFAULT_UST_TRACE_DIR
;
2415 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2419 /* Append correct directory to subdir */
2420 strncat(consumer
->subdir
, dir_name
,
2421 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
2422 DBG3("Copy session consumer subdir %s", consumer
->subdir
);
2431 * Create an UST session and add it to the session ust list.
2433 * Should *NOT* be called with RCU read-side lock held.
2435 static int create_ust_session(struct ltt_session
*session
,
2436 struct lttng_domain
*domain
)
2439 struct ltt_ust_session
*lus
= NULL
;
2443 assert(session
->consumer
);
2445 switch (domain
->type
) {
2446 case LTTNG_DOMAIN_UST
:
2449 ERR("Unknown UST domain on create session %d", domain
->type
);
2450 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2454 DBG("Creating UST session");
2456 lus
= trace_ust_create_session(session
->id
);
2458 ret
= LTTNG_ERR_UST_SESS_FAIL
;
2462 lus
->uid
= session
->uid
;
2463 lus
->gid
= session
->gid
;
2464 lus
->output_traces
= session
->output_traces
;
2465 lus
->snapshot_mode
= session
->snapshot_mode
;
2466 session
->ust_session
= lus
;
2468 /* Copy session output to the newly created UST session */
2469 ret
= copy_session_consumer(domain
->type
, session
);
2470 if (ret
!= LTTNG_OK
) {
2478 session
->ust_session
= NULL
;
2483 * Create a kernel tracer session then create the default channel.
2485 static int create_kernel_session(struct ltt_session
*session
)
2489 DBG("Creating kernel session");
2491 ret
= kernel_create_session(session
, kernel_tracer_fd
);
2493 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
2497 /* Code flow safety */
2498 assert(session
->kernel_session
);
2500 /* Copy session output to the newly created Kernel session */
2501 ret
= copy_session_consumer(LTTNG_DOMAIN_KERNEL
, session
);
2502 if (ret
!= LTTNG_OK
) {
2506 /* Create directory(ies) on local filesystem. */
2507 if (session
->kernel_session
->consumer
->type
== CONSUMER_DST_LOCAL
&&
2508 strlen(session
->kernel_session
->consumer
->dst
.trace_path
) > 0) {
2509 ret
= run_as_mkdir_recursive(
2510 session
->kernel_session
->consumer
->dst
.trace_path
,
2511 S_IRWXU
| S_IRWXG
, session
->uid
, session
->gid
);
2513 if (ret
!= -EEXIST
) {
2514 ERR("Trace directory creation error");
2520 session
->kernel_session
->uid
= session
->uid
;
2521 session
->kernel_session
->gid
= session
->gid
;
2522 session
->kernel_session
->output_traces
= session
->output_traces
;
2523 session
->kernel_session
->snapshot_mode
= session
->snapshot_mode
;
2528 trace_kernel_destroy_session(session
->kernel_session
);
2529 session
->kernel_session
= NULL
;
2534 * Count number of session permitted by uid/gid.
2536 static unsigned int lttng_sessions_count(uid_t uid
, gid_t gid
)
2539 struct ltt_session
*session
;
2541 DBG("Counting number of available session for UID %d GID %d",
2543 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
2545 * Only list the sessions the user can control.
2547 if (!session_access_ok(session
, uid
, gid
)) {
2556 * Process the command requested by the lttng client within the command
2557 * context structure. This function make sure that the return structure (llm)
2558 * is set and ready for transmission before returning.
2560 * Return any error encountered or 0 for success.
2562 * "sock" is only used for special-case var. len data.
2564 * Should *NOT* be called with RCU read-side lock held.
2566 static int process_client_msg(struct command_ctx
*cmd_ctx
, int sock
,
2570 int need_tracing_session
= 1;
2573 DBG("Processing client command %d", cmd_ctx
->lsm
->cmd_type
);
2577 switch (cmd_ctx
->lsm
->cmd_type
) {
2578 case LTTNG_CREATE_SESSION
:
2579 case LTTNG_CREATE_SESSION_SNAPSHOT
:
2580 case LTTNG_DESTROY_SESSION
:
2581 case LTTNG_LIST_SESSIONS
:
2582 case LTTNG_LIST_DOMAINS
:
2583 case LTTNG_START_TRACE
:
2584 case LTTNG_STOP_TRACE
:
2585 case LTTNG_DATA_PENDING
:
2586 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
2587 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
2588 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
2589 case LTTNG_SNAPSHOT_RECORD
:
2596 if (opt_no_kernel
&& need_domain
2597 && cmd_ctx
->lsm
->domain
.type
== LTTNG_DOMAIN_KERNEL
) {
2599 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
2601 ret
= LTTNG_ERR_KERN_NA
;
2606 /* Deny register consumer if we already have a spawned consumer. */
2607 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_REGISTER_CONSUMER
) {
2608 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
2609 if (kconsumer_data
.pid
> 0) {
2610 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2611 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2614 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2618 * Check for command that don't needs to allocate a returned payload. We do
2619 * this here so we don't have to make the call for no payload at each
2622 switch(cmd_ctx
->lsm
->cmd_type
) {
2623 case LTTNG_LIST_SESSIONS
:
2624 case LTTNG_LIST_TRACEPOINTS
:
2625 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2626 case LTTNG_LIST_DOMAINS
:
2627 case LTTNG_LIST_CHANNELS
:
2628 case LTTNG_LIST_EVENTS
:
2631 /* Setup lttng message with no payload */
2632 ret
= setup_lttng_msg(cmd_ctx
, 0);
2634 /* This label does not try to unlock the session */
2635 goto init_setup_error
;
2639 /* Commands that DO NOT need a session. */
2640 switch (cmd_ctx
->lsm
->cmd_type
) {
2641 case LTTNG_CREATE_SESSION
:
2642 case LTTNG_CREATE_SESSION_SNAPSHOT
:
2643 case LTTNG_CALIBRATE
:
2644 case LTTNG_LIST_SESSIONS
:
2645 case LTTNG_LIST_TRACEPOINTS
:
2646 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2647 need_tracing_session
= 0;
2650 DBG("Getting session %s by name", cmd_ctx
->lsm
->session
.name
);
2652 * We keep the session list lock across _all_ commands
2653 * for now, because the per-session lock does not
2654 * handle teardown properly.
2656 session_lock_list();
2657 cmd_ctx
->session
= session_find_by_name(cmd_ctx
->lsm
->session
.name
);
2658 if (cmd_ctx
->session
== NULL
) {
2659 ret
= LTTNG_ERR_SESS_NOT_FOUND
;
2662 /* Acquire lock for the session */
2663 session_lock(cmd_ctx
->session
);
2673 * Check domain type for specific "pre-action".
2675 switch (cmd_ctx
->lsm
->domain
.type
) {
2676 case LTTNG_DOMAIN_KERNEL
:
2678 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
2682 /* Kernel tracer check */
2683 if (kernel_tracer_fd
== -1) {
2684 /* Basically, load kernel tracer modules */
2685 ret
= init_kernel_tracer();
2691 /* Consumer is in an ERROR state. Report back to client */
2692 if (uatomic_read(&kernel_consumerd_state
) == CONSUMER_ERROR
) {
2693 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
2697 /* Need a session for kernel command */
2698 if (need_tracing_session
) {
2699 if (cmd_ctx
->session
->kernel_session
== NULL
) {
2700 ret
= create_kernel_session(cmd_ctx
->session
);
2702 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
2707 /* Start the kernel consumer daemon */
2708 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
2709 if (kconsumer_data
.pid
== 0 &&
2710 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2711 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2712 ret
= start_consumerd(&kconsumer_data
);
2714 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2717 uatomic_set(&kernel_consumerd_state
, CONSUMER_STARTED
);
2719 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2723 * The consumer was just spawned so we need to add the socket to
2724 * the consumer output of the session if exist.
2726 ret
= consumer_create_socket(&kconsumer_data
,
2727 cmd_ctx
->session
->kernel_session
->consumer
);
2734 case LTTNG_DOMAIN_UST
:
2736 if (!ust_app_supported()) {
2737 ret
= LTTNG_ERR_NO_UST
;
2740 /* Consumer is in an ERROR state. Report back to client */
2741 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
2742 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
2746 if (need_tracing_session
) {
2747 /* Create UST session if none exist. */
2748 if (cmd_ctx
->session
->ust_session
== NULL
) {
2749 ret
= create_ust_session(cmd_ctx
->session
,
2750 &cmd_ctx
->lsm
->domain
);
2751 if (ret
!= LTTNG_OK
) {
2756 /* Start the UST consumer daemons */
2758 pthread_mutex_lock(&ustconsumer64_data
.pid_mutex
);
2759 if (consumerd64_bin
[0] != '\0' &&
2760 ustconsumer64_data
.pid
== 0 &&
2761 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2762 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
2763 ret
= start_consumerd(&ustconsumer64_data
);
2765 ret
= LTTNG_ERR_UST_CONSUMER64_FAIL
;
2766 uatomic_set(&ust_consumerd64_fd
, -EINVAL
);
2770 uatomic_set(&ust_consumerd64_fd
, ustconsumer64_data
.cmd_sock
);
2771 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
2773 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
2777 * Setup socket for consumer 64 bit. No need for atomic access
2778 * since it was set above and can ONLY be set in this thread.
2780 ret
= consumer_create_socket(&ustconsumer64_data
,
2781 cmd_ctx
->session
->ust_session
->consumer
);
2787 if (consumerd32_bin
[0] != '\0' &&
2788 ustconsumer32_data
.pid
== 0 &&
2789 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2790 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
2791 ret
= start_consumerd(&ustconsumer32_data
);
2793 ret
= LTTNG_ERR_UST_CONSUMER32_FAIL
;
2794 uatomic_set(&ust_consumerd32_fd
, -EINVAL
);
2798 uatomic_set(&ust_consumerd32_fd
, ustconsumer32_data
.cmd_sock
);
2799 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
2801 pthread_mutex_unlock(&ustconsumer32_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(&ustconsumer32_data
,
2809 cmd_ctx
->session
->ust_session
->consumer
);
2821 /* Validate consumer daemon state when start/stop trace command */
2822 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_START_TRACE
||
2823 cmd_ctx
->lsm
->cmd_type
== LTTNG_STOP_TRACE
) {
2824 switch (cmd_ctx
->lsm
->domain
.type
) {
2825 case LTTNG_DOMAIN_UST
:
2826 if (uatomic_read(&ust_consumerd_state
) != CONSUMER_STARTED
) {
2827 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
2831 case LTTNG_DOMAIN_KERNEL
:
2832 if (uatomic_read(&kernel_consumerd_state
) != CONSUMER_STARTED
) {
2833 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
2841 * Check that the UID or GID match that of the tracing session.
2842 * The root user can interact with all sessions.
2844 if (need_tracing_session
) {
2845 if (!session_access_ok(cmd_ctx
->session
,
2846 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
2847 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
))) {
2848 ret
= LTTNG_ERR_EPERM
;
2854 * Send relayd information to consumer as soon as we have a domain and a
2857 if (cmd_ctx
->session
&& need_domain
) {
2859 * Setup relayd if not done yet. If the relayd information was already
2860 * sent to the consumer, this call will gracefully return.
2862 ret
= cmd_setup_relayd(cmd_ctx
->session
);
2863 if (ret
!= LTTNG_OK
) {
2868 /* Process by command type */
2869 switch (cmd_ctx
->lsm
->cmd_type
) {
2870 case LTTNG_ADD_CONTEXT
:
2872 ret
= cmd_add_context(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2873 cmd_ctx
->lsm
->u
.context
.channel_name
,
2874 &cmd_ctx
->lsm
->u
.context
.ctx
, kernel_poll_pipe
[1]);
2877 case LTTNG_DISABLE_CHANNEL
:
2879 ret
= cmd_disable_channel(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2880 cmd_ctx
->lsm
->u
.disable
.channel_name
);
2883 case LTTNG_DISABLE_EVENT
:
2885 ret
= cmd_disable_event(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2886 cmd_ctx
->lsm
->u
.disable
.channel_name
,
2887 cmd_ctx
->lsm
->u
.disable
.name
);
2890 case LTTNG_DISABLE_ALL_EVENT
:
2892 DBG("Disabling all events");
2894 ret
= cmd_disable_event_all(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2895 cmd_ctx
->lsm
->u
.disable
.channel_name
);
2898 case LTTNG_ENABLE_CHANNEL
:
2900 ret
= cmd_enable_channel(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
2901 &cmd_ctx
->lsm
->u
.channel
.chan
, kernel_poll_pipe
[1]);
2904 case LTTNG_ENABLE_EVENT
:
2906 ret
= cmd_enable_event(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
2907 cmd_ctx
->lsm
->u
.enable
.channel_name
,
2908 &cmd_ctx
->lsm
->u
.enable
.event
, NULL
, kernel_poll_pipe
[1]);
2911 case LTTNG_ENABLE_ALL_EVENT
:
2913 DBG("Enabling all events");
2915 ret
= cmd_enable_event_all(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
2916 cmd_ctx
->lsm
->u
.enable
.channel_name
,
2917 cmd_ctx
->lsm
->u
.enable
.event
.type
, NULL
, kernel_poll_pipe
[1]);
2920 case LTTNG_LIST_TRACEPOINTS
:
2922 struct lttng_event
*events
;
2925 nb_events
= cmd_list_tracepoints(cmd_ctx
->lsm
->domain
.type
, &events
);
2926 if (nb_events
< 0) {
2927 /* Return value is a negative lttng_error_code. */
2933 * Setup lttng message with payload size set to the event list size in
2934 * bytes and then copy list into the llm payload.
2936 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_event
) * nb_events
);
2942 /* Copy event list into message payload */
2943 memcpy(cmd_ctx
->llm
->payload
, events
,
2944 sizeof(struct lttng_event
) * nb_events
);
2951 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2953 struct lttng_event_field
*fields
;
2956 nb_fields
= cmd_list_tracepoint_fields(cmd_ctx
->lsm
->domain
.type
,
2958 if (nb_fields
< 0) {
2959 /* Return value is a negative lttng_error_code. */
2965 * Setup lttng message with payload size set to the event list size in
2966 * bytes and then copy list into the llm payload.
2968 ret
= setup_lttng_msg(cmd_ctx
,
2969 sizeof(struct lttng_event_field
) * nb_fields
);
2975 /* Copy event list into message payload */
2976 memcpy(cmd_ctx
->llm
->payload
, fields
,
2977 sizeof(struct lttng_event_field
) * nb_fields
);
2984 case LTTNG_SET_CONSUMER_URI
:
2987 struct lttng_uri
*uris
;
2989 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
2990 len
= nb_uri
* sizeof(struct lttng_uri
);
2993 ret
= LTTNG_ERR_INVALID
;
2997 uris
= zmalloc(len
);
2999 ret
= LTTNG_ERR_FATAL
;
3003 /* Receive variable len data */
3004 DBG("Receiving %zu URI(s) from client ...", nb_uri
);
3005 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3007 DBG("No URIs received from client... continuing");
3009 ret
= LTTNG_ERR_SESSION_FAIL
;
3014 ret
= cmd_set_consumer_uri(cmd_ctx
->lsm
->domain
.type
, cmd_ctx
->session
,
3016 if (ret
!= LTTNG_OK
) {
3022 * XXX: 0 means that this URI should be applied on the session. Should
3023 * be a DOMAIN enuam.
3025 if (cmd_ctx
->lsm
->domain
.type
== 0) {
3026 /* Add the URI for the UST session if a consumer is present. */
3027 if (cmd_ctx
->session
->ust_session
&&
3028 cmd_ctx
->session
->ust_session
->consumer
) {
3029 ret
= cmd_set_consumer_uri(LTTNG_DOMAIN_UST
, cmd_ctx
->session
,
3031 } else if (cmd_ctx
->session
->kernel_session
&&
3032 cmd_ctx
->session
->kernel_session
->consumer
) {
3033 ret
= cmd_set_consumer_uri(LTTNG_DOMAIN_KERNEL
,
3034 cmd_ctx
->session
, nb_uri
, uris
);
3042 case LTTNG_START_TRACE
:
3044 ret
= cmd_start_trace(cmd_ctx
->session
);
3047 case LTTNG_STOP_TRACE
:
3049 ret
= cmd_stop_trace(cmd_ctx
->session
);
3052 case LTTNG_CREATE_SESSION
:
3055 struct lttng_uri
*uris
= NULL
;
3057 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3058 len
= nb_uri
* sizeof(struct lttng_uri
);
3061 uris
= zmalloc(len
);
3063 ret
= LTTNG_ERR_FATAL
;
3067 /* Receive variable len data */
3068 DBG("Waiting for %zu URIs from client ...", nb_uri
);
3069 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3071 DBG("No URIs received from client... continuing");
3073 ret
= LTTNG_ERR_SESSION_FAIL
;
3078 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
3079 DBG("Creating session with ONE network URI is a bad call");
3080 ret
= LTTNG_ERR_SESSION_FAIL
;
3086 ret
= cmd_create_session_uri(cmd_ctx
->lsm
->session
.name
, uris
, nb_uri
,
3093 case LTTNG_DESTROY_SESSION
:
3095 ret
= cmd_destroy_session(cmd_ctx
->session
, kernel_poll_pipe
[1]);
3097 /* Set session to NULL so we do not unlock it after free. */
3098 cmd_ctx
->session
= NULL
;
3101 case LTTNG_LIST_DOMAINS
:
3104 struct lttng_domain
*domains
;
3106 nb_dom
= cmd_list_domains(cmd_ctx
->session
, &domains
);
3108 /* Return value is a negative lttng_error_code. */
3113 ret
= setup_lttng_msg(cmd_ctx
, nb_dom
* sizeof(struct lttng_domain
));
3119 /* Copy event list into message payload */
3120 memcpy(cmd_ctx
->llm
->payload
, domains
,
3121 nb_dom
* sizeof(struct lttng_domain
));
3128 case LTTNG_LIST_CHANNELS
:
3131 struct lttng_channel
*channels
;
3133 nb_chan
= cmd_list_channels(cmd_ctx
->lsm
->domain
.type
,
3134 cmd_ctx
->session
, &channels
);
3136 /* Return value is a negative lttng_error_code. */
3141 ret
= setup_lttng_msg(cmd_ctx
, nb_chan
* sizeof(struct lttng_channel
));
3147 /* Copy event list into message payload */
3148 memcpy(cmd_ctx
->llm
->payload
, channels
,
3149 nb_chan
* sizeof(struct lttng_channel
));
3156 case LTTNG_LIST_EVENTS
:
3159 struct lttng_event
*events
= NULL
;
3161 nb_event
= cmd_list_events(cmd_ctx
->lsm
->domain
.type
, cmd_ctx
->session
,
3162 cmd_ctx
->lsm
->u
.list
.channel_name
, &events
);
3164 /* Return value is a negative lttng_error_code. */
3169 ret
= setup_lttng_msg(cmd_ctx
, nb_event
* sizeof(struct lttng_event
));
3175 /* Copy event list into message payload */
3176 memcpy(cmd_ctx
->llm
->payload
, events
,
3177 nb_event
* sizeof(struct lttng_event
));
3184 case LTTNG_LIST_SESSIONS
:
3186 unsigned int nr_sessions
;
3188 session_lock_list();
3189 nr_sessions
= lttng_sessions_count(
3190 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
3191 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
3193 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_session
) * nr_sessions
);
3195 session_unlock_list();
3199 /* Filled the session array */
3200 cmd_list_lttng_sessions((struct lttng_session
*)(cmd_ctx
->llm
->payload
),
3201 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
3202 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
3204 session_unlock_list();
3209 case LTTNG_CALIBRATE
:
3211 ret
= cmd_calibrate(cmd_ctx
->lsm
->domain
.type
,
3212 &cmd_ctx
->lsm
->u
.calibrate
);
3215 case LTTNG_REGISTER_CONSUMER
:
3217 struct consumer_data
*cdata
;
3219 switch (cmd_ctx
->lsm
->domain
.type
) {
3220 case LTTNG_DOMAIN_KERNEL
:
3221 cdata
= &kconsumer_data
;
3224 ret
= LTTNG_ERR_UND
;
3228 ret
= cmd_register_consumer(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
3229 cmd_ctx
->lsm
->u
.reg
.path
, cdata
);
3232 case LTTNG_ENABLE_EVENT_WITH_FILTER
:
3234 struct lttng_filter_bytecode
*bytecode
;
3236 if (cmd_ctx
->lsm
->u
.enable
.bytecode_len
> LTTNG_FILTER_MAX_LEN
) {
3237 ret
= LTTNG_ERR_FILTER_INVAL
;
3240 if (cmd_ctx
->lsm
->u
.enable
.bytecode_len
== 0) {
3241 ret
= LTTNG_ERR_FILTER_INVAL
;
3244 bytecode
= zmalloc(cmd_ctx
->lsm
->u
.enable
.bytecode_len
);
3246 ret
= LTTNG_ERR_FILTER_NOMEM
;
3249 /* Receive var. len. data */
3250 DBG("Receiving var len data from client ...");
3251 ret
= lttcomm_recv_unix_sock(sock
, bytecode
,
3252 cmd_ctx
->lsm
->u
.enable
.bytecode_len
);
3254 DBG("Nothing recv() from client var len data... continuing");
3256 ret
= LTTNG_ERR_FILTER_INVAL
;
3260 if (bytecode
->len
+ sizeof(*bytecode
)
3261 != cmd_ctx
->lsm
->u
.enable
.bytecode_len
) {
3263 ret
= LTTNG_ERR_FILTER_INVAL
;
3267 ret
= cmd_enable_event(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
3268 cmd_ctx
->lsm
->u
.enable
.channel_name
,
3269 &cmd_ctx
->lsm
->u
.enable
.event
, bytecode
, kernel_poll_pipe
[1]);
3272 case LTTNG_DATA_PENDING
:
3274 ret
= cmd_data_pending(cmd_ctx
->session
);
3277 case LTTNG_SNAPSHOT_ADD_OUTPUT
:
3279 struct lttcomm_lttng_output_id reply
;
3281 ret
= cmd_snapshot_add_output(cmd_ctx
->session
,
3282 &cmd_ctx
->lsm
->u
.snapshot_output
.output
, &reply
.id
);
3283 if (ret
!= LTTNG_OK
) {
3287 ret
= setup_lttng_msg(cmd_ctx
, sizeof(reply
));
3292 /* Copy output list into message payload */
3293 memcpy(cmd_ctx
->llm
->payload
, &reply
, sizeof(reply
));
3297 case LTTNG_SNAPSHOT_DEL_OUTPUT
:
3299 ret
= cmd_snapshot_del_output(cmd_ctx
->session
,
3300 &cmd_ctx
->lsm
->u
.snapshot_output
.output
);
3303 case LTTNG_SNAPSHOT_LIST_OUTPUT
:
3306 struct lttng_snapshot_output
*outputs
= NULL
;
3308 nb_output
= cmd_snapshot_list_outputs(cmd_ctx
->session
, &outputs
);
3309 if (nb_output
< 0) {
3314 ret
= setup_lttng_msg(cmd_ctx
,
3315 nb_output
* sizeof(struct lttng_snapshot_output
));
3322 /* Copy output list into message payload */
3323 memcpy(cmd_ctx
->llm
->payload
, outputs
,
3324 nb_output
* sizeof(struct lttng_snapshot_output
));
3331 case LTTNG_SNAPSHOT_RECORD
:
3333 ret
= cmd_snapshot_record(cmd_ctx
->session
,
3334 &cmd_ctx
->lsm
->u
.snapshot_record
.output
,
3335 cmd_ctx
->lsm
->u
.snapshot_record
.wait
);
3338 case LTTNG_CREATE_SESSION_SNAPSHOT
:
3341 struct lttng_uri
*uris
= NULL
;
3343 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3344 len
= nb_uri
* sizeof(struct lttng_uri
);
3347 uris
= zmalloc(len
);
3349 ret
= LTTNG_ERR_FATAL
;
3353 /* Receive variable len data */
3354 DBG("Waiting for %zu URIs from client ...", nb_uri
);
3355 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3357 DBG("No URIs received from client... continuing");
3359 ret
= LTTNG_ERR_SESSION_FAIL
;
3364 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
3365 DBG("Creating session with ONE network URI is a bad call");
3366 ret
= LTTNG_ERR_SESSION_FAIL
;
3372 ret
= cmd_create_session_snapshot(cmd_ctx
->lsm
->session
.name
, uris
,
3373 nb_uri
, &cmd_ctx
->creds
);
3378 ret
= LTTNG_ERR_UND
;
3383 if (cmd_ctx
->llm
== NULL
) {
3384 DBG("Missing llm structure. Allocating one.");
3385 if (setup_lttng_msg(cmd_ctx
, 0) < 0) {
3389 /* Set return code */
3390 cmd_ctx
->llm
->ret_code
= ret
;
3392 if (cmd_ctx
->session
) {
3393 session_unlock(cmd_ctx
->session
);
3395 if (need_tracing_session
) {
3396 session_unlock_list();
3403 * Thread managing health check socket.
3405 static void *thread_manage_health(void *data
)
3407 int sock
= -1, new_sock
= -1, ret
, i
, pollfd
, err
= -1;
3408 uint32_t revents
, nb_fd
;
3409 struct lttng_poll_event events
;
3410 struct lttcomm_health_msg msg
;
3411 struct lttcomm_health_data reply
;
3413 DBG("[thread] Manage health check started");
3415 rcu_register_thread();
3417 /* We might hit an error path before this is created. */
3418 lttng_poll_init(&events
);
3420 /* Create unix socket */
3421 sock
= lttcomm_create_unix_sock(health_unix_sock_path
);
3423 ERR("Unable to create health check Unix socket");
3429 * Set the CLOEXEC flag. Return code is useless because either way, the
3432 (void) utils_set_fd_cloexec(sock
);
3434 ret
= lttcomm_listen_unix_sock(sock
);
3440 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
3441 * more will be added to this poll set.
3443 ret
= sessiond_set_thread_pollset(&events
, 2);
3448 /* Add the application registration socket */
3449 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLPRI
);
3455 DBG("Health check ready");
3457 /* Inifinite blocking call, waiting for transmission */
3459 ret
= lttng_poll_wait(&events
, -1);
3462 * Restart interrupted system call.
3464 if (errno
== EINTR
) {
3472 for (i
= 0; i
< nb_fd
; i
++) {
3473 /* Fetch once the poll data */
3474 revents
= LTTNG_POLL_GETEV(&events
, i
);
3475 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3477 /* Thread quit pipe has been closed. Killing thread. */
3478 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
3484 /* Event on the registration socket */
3485 if (pollfd
== sock
) {
3486 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3487 ERR("Health socket poll error");
3493 new_sock
= lttcomm_accept_unix_sock(sock
);
3499 * Set the CLOEXEC flag. Return code is useless because either way, the
3502 (void) utils_set_fd_cloexec(new_sock
);
3504 DBG("Receiving data from client for health...");
3505 ret
= lttcomm_recv_unix_sock(new_sock
, (void *)&msg
, sizeof(msg
));
3507 DBG("Nothing recv() from client... continuing");
3508 ret
= close(new_sock
);
3516 rcu_thread_online();
3518 switch (msg
.component
) {
3519 case LTTNG_HEALTH_CMD
:
3520 reply
.ret_code
= health_check_state(HEALTH_TYPE_CMD
);
3522 case LTTNG_HEALTH_APP_MANAGE
:
3523 reply
.ret_code
= health_check_state(HEALTH_TYPE_APP_MANAGE
);
3525 case LTTNG_HEALTH_APP_REG
:
3526 reply
.ret_code
= health_check_state(HEALTH_TYPE_APP_REG
);
3528 case LTTNG_HEALTH_KERNEL
:
3529 reply
.ret_code
= health_check_state(HEALTH_TYPE_KERNEL
);
3531 case LTTNG_HEALTH_CONSUMER
:
3532 reply
.ret_code
= check_consumer_health();
3534 case LTTNG_HEALTH_HT_CLEANUP
:
3535 reply
.ret_code
= health_check_state(HEALTH_TYPE_HT_CLEANUP
);
3537 case LTTNG_HEALTH_APP_MANAGE_NOTIFY
:
3538 reply
.ret_code
= health_check_state(HEALTH_TYPE_APP_MANAGE_NOTIFY
);
3540 case LTTNG_HEALTH_APP_REG_DISPATCH
:
3541 reply
.ret_code
= health_check_state(HEALTH_TYPE_APP_REG_DISPATCH
);
3543 case LTTNG_HEALTH_ALL
:
3545 health_check_state(HEALTH_TYPE_APP_MANAGE
) &&
3546 health_check_state(HEALTH_TYPE_APP_REG
) &&
3547 health_check_state(HEALTH_TYPE_CMD
) &&
3548 health_check_state(HEALTH_TYPE_KERNEL
) &&
3549 check_consumer_health() &&
3550 health_check_state(HEALTH_TYPE_HT_CLEANUP
) &&
3551 health_check_state(HEALTH_TYPE_APP_MANAGE_NOTIFY
) &&
3552 health_check_state(HEALTH_TYPE_APP_REG_DISPATCH
);
3555 reply
.ret_code
= LTTNG_ERR_UND
;
3560 * Flip ret value since 0 is a success and 1 indicates a bad health for
3561 * the client where in the sessiond it is the opposite. Again, this is
3562 * just to make things easier for us poor developer which enjoy a lot
3565 if (reply
.ret_code
== 0 || reply
.ret_code
== 1) {
3566 reply
.ret_code
= !reply
.ret_code
;
3569 DBG2("Health check return value %d", reply
.ret_code
);
3571 ret
= send_unix_sock(new_sock
, (void *) &reply
, sizeof(reply
));
3573 ERR("Failed to send health data back to client");
3576 /* End of transmission */
3577 ret
= close(new_sock
);
3587 ERR("Health error occurred in %s", __func__
);
3589 DBG("Health check thread dying");
3590 unlink(health_unix_sock_path
);
3598 lttng_poll_clean(&events
);
3600 rcu_unregister_thread();
3605 * This thread manage all clients request using the unix client socket for
3608 static void *thread_manage_clients(void *data
)
3610 int sock
= -1, ret
, i
, pollfd
, err
= -1;
3612 uint32_t revents
, nb_fd
;
3613 struct command_ctx
*cmd_ctx
= NULL
;
3614 struct lttng_poll_event events
;
3616 DBG("[thread] Manage client started");
3618 rcu_register_thread();
3620 health_register(HEALTH_TYPE_CMD
);
3622 if (testpoint(thread_manage_clients
)) {
3623 goto error_testpoint
;
3626 health_code_update();
3628 ret
= lttcomm_listen_unix_sock(client_sock
);
3634 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
3635 * more will be added to this poll set.
3637 ret
= sessiond_set_thread_pollset(&events
, 2);
3639 goto error_create_poll
;
3642 /* Add the application registration socket */
3643 ret
= lttng_poll_add(&events
, client_sock
, LPOLLIN
| LPOLLPRI
);
3649 * Notify parent pid that we are ready to accept command for client side.
3651 if (opt_sig_parent
) {
3652 kill(ppid
, SIGUSR1
);
3655 if (testpoint(thread_manage_clients_before_loop
)) {
3659 health_code_update();
3662 DBG("Accepting client command ...");
3664 /* Inifinite blocking call, waiting for transmission */
3666 health_poll_entry();
3667 ret
= lttng_poll_wait(&events
, -1);
3671 * Restart interrupted system call.
3673 if (errno
== EINTR
) {
3681 for (i
= 0; i
< nb_fd
; i
++) {
3682 /* Fetch once the poll data */
3683 revents
= LTTNG_POLL_GETEV(&events
, i
);
3684 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3686 health_code_update();
3688 /* Thread quit pipe has been closed. Killing thread. */
3689 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
3695 /* Event on the registration socket */
3696 if (pollfd
== client_sock
) {
3697 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3698 ERR("Client socket poll error");
3704 DBG("Wait for client response");
3706 health_code_update();
3708 sock
= lttcomm_accept_unix_sock(client_sock
);
3714 * Set the CLOEXEC flag. Return code is useless because either way, the
3717 (void) utils_set_fd_cloexec(sock
);
3719 /* Set socket option for credentials retrieval */
3720 ret
= lttcomm_setsockopt_creds_unix_sock(sock
);
3725 /* Allocate context command to process the client request */
3726 cmd_ctx
= zmalloc(sizeof(struct command_ctx
));
3727 if (cmd_ctx
== NULL
) {
3728 PERROR("zmalloc cmd_ctx");
3732 /* Allocate data buffer for reception */
3733 cmd_ctx
->lsm
= zmalloc(sizeof(struct lttcomm_session_msg
));
3734 if (cmd_ctx
->lsm
== NULL
) {
3735 PERROR("zmalloc cmd_ctx->lsm");
3739 cmd_ctx
->llm
= NULL
;
3740 cmd_ctx
->session
= NULL
;
3742 health_code_update();
3745 * Data is received from the lttng client. The struct
3746 * lttcomm_session_msg (lsm) contains the command and data request of
3749 DBG("Receiving data from client ...");
3750 ret
= lttcomm_recv_creds_unix_sock(sock
, cmd_ctx
->lsm
,
3751 sizeof(struct lttcomm_session_msg
), &cmd_ctx
->creds
);
3753 DBG("Nothing recv() from client... continuing");
3759 clean_command_ctx(&cmd_ctx
);
3763 health_code_update();
3765 // TODO: Validate cmd_ctx including sanity check for
3766 // security purpose.
3768 rcu_thread_online();
3770 * This function dispatch the work to the kernel or userspace tracer
3771 * libs and fill the lttcomm_lttng_msg data structure of all the needed
3772 * informations for the client. The command context struct contains
3773 * everything this function may needs.
3775 ret
= process_client_msg(cmd_ctx
, sock
, &sock_error
);
3776 rcu_thread_offline();
3784 * TODO: Inform client somehow of the fatal error. At
3785 * this point, ret < 0 means that a zmalloc failed
3786 * (ENOMEM). Error detected but still accept
3787 * command, unless a socket error has been
3790 clean_command_ctx(&cmd_ctx
);
3794 health_code_update();
3796 DBG("Sending response (size: %d, retcode: %s)",
3797 cmd_ctx
->lttng_msg_size
,
3798 lttng_strerror(-cmd_ctx
->llm
->ret_code
));
3799 ret
= send_unix_sock(sock
, cmd_ctx
->llm
, cmd_ctx
->lttng_msg_size
);
3801 ERR("Failed to send data back to client");
3804 /* End of transmission */
3811 clean_command_ctx(&cmd_ctx
);
3813 health_code_update();
3825 lttng_poll_clean(&events
);
3826 clean_command_ctx(&cmd_ctx
);
3831 unlink(client_unix_sock_path
);
3832 if (client_sock
>= 0) {
3833 ret
= close(client_sock
);
3841 ERR("Health error occurred in %s", __func__
);
3844 health_unregister();
3846 DBG("Client thread dying");
3848 rcu_unregister_thread();
3854 * usage function on stderr
3856 static void usage(void)
3858 fprintf(stderr
, "Usage: %s OPTIONS\n\nOptions:\n", progname
);
3859 fprintf(stderr
, " -h, --help Display this usage.\n");
3860 fprintf(stderr
, " -c, --client-sock PATH Specify path for the client unix socket\n");
3861 fprintf(stderr
, " -a, --apps-sock PATH Specify path for apps unix socket\n");
3862 fprintf(stderr
, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
3863 fprintf(stderr
, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
3864 fprintf(stderr
, " --ustconsumerd32-err-sock PATH Specify path for the 32-bit UST consumer error socket\n");
3865 fprintf(stderr
, " --ustconsumerd64-err-sock PATH Specify path for the 64-bit UST consumer error socket\n");
3866 fprintf(stderr
, " --ustconsumerd32-cmd-sock PATH Specify path for the 32-bit UST consumer command socket\n");
3867 fprintf(stderr
, " --ustconsumerd64-cmd-sock PATH Specify path for the 64-bit UST consumer command socket\n");
3868 fprintf(stderr
, " --consumerd32-path PATH Specify path for the 32-bit UST consumer daemon binary\n");
3869 fprintf(stderr
, " --consumerd32-libdir PATH Specify path for the 32-bit UST consumer daemon libraries\n");
3870 fprintf(stderr
, " --consumerd64-path PATH Specify path for the 64-bit UST consumer daemon binary\n");
3871 fprintf(stderr
, " --consumerd64-libdir PATH Specify path for the 64-bit UST consumer daemon libraries\n");
3872 fprintf(stderr
, " -d, --daemonize Start as a daemon.\n");
3873 fprintf(stderr
, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
3874 fprintf(stderr
, " -V, --version Show version number.\n");
3875 fprintf(stderr
, " -S, --sig-parent Send SIGUSR1 to parent pid to notify readiness.\n");
3876 fprintf(stderr
, " -q, --quiet No output at all.\n");
3877 fprintf(stderr
, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
3878 fprintf(stderr
, " -p, --pidfile FILE Write a pid to FILE name overriding the default value.\n");
3879 fprintf(stderr
, " --verbose-consumer Verbose mode for consumer. Activate DBG() macro.\n");
3880 fprintf(stderr
, " --no-kernel Disable kernel tracer\n");
3884 * daemon argument parsing
3886 static int parse_args(int argc
, char **argv
)
3890 static struct option long_options
[] = {
3891 { "client-sock", 1, 0, 'c' },
3892 { "apps-sock", 1, 0, 'a' },
3893 { "kconsumerd-cmd-sock", 1, 0, 'C' },
3894 { "kconsumerd-err-sock", 1, 0, 'E' },
3895 { "ustconsumerd32-cmd-sock", 1, 0, 'G' },
3896 { "ustconsumerd32-err-sock", 1, 0, 'H' },
3897 { "ustconsumerd64-cmd-sock", 1, 0, 'D' },
3898 { "ustconsumerd64-err-sock", 1, 0, 'F' },
3899 { "consumerd32-path", 1, 0, 'u' },
3900 { "consumerd32-libdir", 1, 0, 'U' },
3901 { "consumerd64-path", 1, 0, 't' },
3902 { "consumerd64-libdir", 1, 0, 'T' },
3903 { "daemonize", 0, 0, 'd' },
3904 { "sig-parent", 0, 0, 'S' },
3905 { "help", 0, 0, 'h' },
3906 { "group", 1, 0, 'g' },
3907 { "version", 0, 0, 'V' },
3908 { "quiet", 0, 0, 'q' },
3909 { "verbose", 0, 0, 'v' },
3910 { "verbose-consumer", 0, 0, 'Z' },
3911 { "no-kernel", 0, 0, 'N' },
3912 { "pidfile", 1, 0, 'p' },
3917 int option_index
= 0;
3918 c
= getopt_long(argc
, argv
, "dhqvVSN" "a:c:g:s:C:E:D:F:Z:u:t:p:",
3919 long_options
, &option_index
);
3926 fprintf(stderr
, "option %s", long_options
[option_index
].name
);
3928 fprintf(stderr
, " with arg %s\n", optarg
);
3932 snprintf(client_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3935 snprintf(apps_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3941 opt_tracing_group
= optarg
;
3947 fprintf(stdout
, "%s\n", VERSION
);
3953 snprintf(kconsumer_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3956 snprintf(kconsumer_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3959 snprintf(ustconsumer64_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3962 snprintf(ustconsumer64_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3965 snprintf(ustconsumer32_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3968 snprintf(ustconsumer32_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3974 lttng_opt_quiet
= 1;
3977 /* Verbose level can increase using multiple -v */
3978 lttng_opt_verbose
+= 1;
3981 opt_verbose_consumer
+= 1;
3984 consumerd32_bin
= optarg
;
3987 consumerd32_libdir
= optarg
;
3990 consumerd64_bin
= optarg
;
3993 consumerd64_libdir
= optarg
;
3996 opt_pidfile
= optarg
;
3999 /* Unknown option or other error.
4000 * Error is printed by getopt, just return */
4009 * Creates the two needed socket by the daemon.
4010 * apps_sock - The communication socket for all UST apps.
4011 * client_sock - The communication of the cli tool (lttng).
4013 static int init_daemon_socket(void)
4018 old_umask
= umask(0);
4020 /* Create client tool unix socket */
4021 client_sock
= lttcomm_create_unix_sock(client_unix_sock_path
);
4022 if (client_sock
< 0) {
4023 ERR("Create unix sock failed: %s", client_unix_sock_path
);
4028 /* Set the cloexec flag */
4029 ret
= utils_set_fd_cloexec(client_sock
);
4031 ERR("Unable to set CLOEXEC flag to the client Unix socket (fd: %d). "
4032 "Continuing but note that the consumer daemon will have a "
4033 "reference to this socket on exec()", client_sock
);
4036 /* File permission MUST be 660 */
4037 ret
= chmod(client_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
4039 ERR("Set file permissions failed: %s", client_unix_sock_path
);
4044 /* Create the application unix socket */
4045 apps_sock
= lttcomm_create_unix_sock(apps_unix_sock_path
);
4046 if (apps_sock
< 0) {
4047 ERR("Create unix sock failed: %s", apps_unix_sock_path
);
4052 /* Set the cloexec flag */
4053 ret
= utils_set_fd_cloexec(apps_sock
);
4055 ERR("Unable to set CLOEXEC flag to the app Unix socket (fd: %d). "
4056 "Continuing but note that the consumer daemon will have a "
4057 "reference to this socket on exec()", apps_sock
);
4060 /* File permission MUST be 666 */
4061 ret
= chmod(apps_unix_sock_path
,
4062 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IROTH
| S_IWOTH
);
4064 ERR("Set file permissions failed: %s", apps_unix_sock_path
);
4069 DBG3("Session daemon client socket %d and application socket %d created",
4070 client_sock
, apps_sock
);
4078 * Check if the global socket is available, and if a daemon is answering at the
4079 * other side. If yes, error is returned.
4081 static int check_existing_daemon(void)
4083 /* Is there anybody out there ? */
4084 if (lttng_session_daemon_alive()) {
4092 * Set the tracing group gid onto the client socket.
4094 * Race window between mkdir and chown is OK because we are going from more
4095 * permissive (root.root) to less permissive (root.tracing).
4097 static int set_permissions(char *rundir
)
4102 ret
= allowed_group();
4104 WARN("No tracing group detected");
4105 /* Setting gid to 0 if no tracing group is found */
4111 /* Set lttng run dir */
4112 ret
= chown(rundir
, 0, gid
);
4114 ERR("Unable to set group on %s", rundir
);
4118 /* Ensure all applications and tracing group can search the run dir */
4119 ret
= chmod(rundir
, S_IRWXU
| S_IXGRP
| S_IXOTH
);
4121 ERR("Unable to set permissions on %s", rundir
);
4125 /* lttng client socket path */
4126 ret
= chown(client_unix_sock_path
, 0, gid
);
4128 ERR("Unable to set group on %s", client_unix_sock_path
);
4132 /* kconsumer error socket path */
4133 ret
= chown(kconsumer_data
.err_unix_sock_path
, 0, gid
);
4135 ERR("Unable to set group on %s", kconsumer_data
.err_unix_sock_path
);
4139 /* 64-bit ustconsumer error socket path */
4140 ret
= chown(ustconsumer64_data
.err_unix_sock_path
, 0, gid
);
4142 ERR("Unable to set group on %s", ustconsumer64_data
.err_unix_sock_path
);
4146 /* 32-bit ustconsumer compat32 error socket path */
4147 ret
= chown(ustconsumer32_data
.err_unix_sock_path
, 0, gid
);
4149 ERR("Unable to set group on %s", ustconsumer32_data
.err_unix_sock_path
);
4153 DBG("All permissions are set");
4159 * Create the lttng run directory needed for all global sockets and pipe.
4161 static int create_lttng_rundir(const char *rundir
)
4165 DBG3("Creating LTTng run directory: %s", rundir
);
4167 ret
= mkdir(rundir
, S_IRWXU
);
4169 if (errno
!= EEXIST
) {
4170 ERR("Unable to create %s", rundir
);
4182 * Setup sockets and directory needed by the kconsumerd communication with the
4185 static int set_consumer_sockets(struct consumer_data
*consumer_data
,
4189 char path
[PATH_MAX
];
4191 switch (consumer_data
->type
) {
4192 case LTTNG_CONSUMER_KERNEL
:
4193 snprintf(path
, PATH_MAX
, DEFAULT_KCONSUMERD_PATH
, rundir
);
4195 case LTTNG_CONSUMER64_UST
:
4196 snprintf(path
, PATH_MAX
, DEFAULT_USTCONSUMERD64_PATH
, rundir
);
4198 case LTTNG_CONSUMER32_UST
:
4199 snprintf(path
, PATH_MAX
, DEFAULT_USTCONSUMERD32_PATH
, rundir
);
4202 ERR("Consumer type unknown");
4207 DBG2("Creating consumer directory: %s", path
);
4209 ret
= mkdir(path
, S_IRWXU
);
4211 if (errno
!= EEXIST
) {
4213 ERR("Failed to create %s", path
);
4219 /* Create the kconsumerd error unix socket */
4220 consumer_data
->err_sock
=
4221 lttcomm_create_unix_sock(consumer_data
->err_unix_sock_path
);
4222 if (consumer_data
->err_sock
< 0) {
4223 ERR("Create unix sock failed: %s", consumer_data
->err_unix_sock_path
);
4229 * Set the CLOEXEC flag. Return code is useless because either way, the
4232 ret
= utils_set_fd_cloexec(consumer_data
->err_sock
);
4234 PERROR("utils_set_fd_cloexec");
4235 /* continue anyway */
4238 /* File permission MUST be 660 */
4239 ret
= chmod(consumer_data
->err_unix_sock_path
,
4240 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
4242 ERR("Set file permissions failed: %s", consumer_data
->err_unix_sock_path
);
4252 * Signal handler for the daemon
4254 * Simply stop all worker threads, leaving main() return gracefully after
4255 * joining all threads and calling cleanup().
4257 static void sighandler(int sig
)
4261 DBG("SIGPIPE caught");
4264 DBG("SIGINT caught");
4268 DBG("SIGTERM caught");
4277 * Setup signal handler for :
4278 * SIGINT, SIGTERM, SIGPIPE
4280 static int set_signal_handler(void)
4283 struct sigaction sa
;
4286 if ((ret
= sigemptyset(&sigset
)) < 0) {
4287 PERROR("sigemptyset");
4291 sa
.sa_handler
= sighandler
;
4292 sa
.sa_mask
= sigset
;
4294 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
4295 PERROR("sigaction");
4299 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
4300 PERROR("sigaction");
4304 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
4305 PERROR("sigaction");
4309 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
4315 * Set open files limit to unlimited. This daemon can open a large number of
4316 * file descriptors in order to consumer multiple kernel traces.
4318 static void set_ulimit(void)
4323 /* The kernel does not allowed an infinite limit for open files */
4324 lim
.rlim_cur
= 65535;
4325 lim
.rlim_max
= 65535;
4327 ret
= setrlimit(RLIMIT_NOFILE
, &lim
);
4329 PERROR("failed to set open files limit");
4334 * Write pidfile using the rundir and opt_pidfile.
4336 static void write_pidfile(void)
4339 char pidfile_path
[PATH_MAX
];
4344 strncpy(pidfile_path
, opt_pidfile
, sizeof(pidfile_path
));
4346 /* Build pidfile path from rundir and opt_pidfile. */
4347 ret
= snprintf(pidfile_path
, sizeof(pidfile_path
), "%s/"
4348 DEFAULT_LTTNG_SESSIOND_PIDFILE
, rundir
);
4350 PERROR("snprintf pidfile path");
4356 * Create pid file in rundir. Return value is of no importance. The
4357 * execution will continue even though we are not able to write the file.
4359 (void) utils_create_pid_file(getpid(), pidfile_path
);
4368 int main(int argc
, char **argv
)
4372 const char *home_path
, *env_app_timeout
;
4374 init_kernel_workarounds();
4376 rcu_register_thread();
4378 setup_consumerd_path();
4380 page_size
= sysconf(_SC_PAGESIZE
);
4381 if (page_size
< 0) {
4382 PERROR("sysconf _SC_PAGESIZE");
4383 page_size
= LONG_MAX
;
4384 WARN("Fallback page size to %ld", page_size
);
4387 /* Parse arguments */
4389 if ((ret
= parse_args(argc
, argv
)) < 0) {
4399 * child: setsid, close FD 0, 1, 2, chdir /
4400 * parent: exit (if fork is successful)
4408 * We are in the child. Make sure all other file
4409 * descriptors are closed, in case we are called with
4410 * more opened file descriptors than the standard ones.
4412 for (i
= 3; i
< sysconf(_SC_OPEN_MAX
); i
++) {
4417 /* Create thread quit pipe */
4418 if ((ret
= init_thread_quit_pipe()) < 0) {
4422 /* Check if daemon is UID = 0 */
4423 is_root
= !getuid();
4426 rundir
= strdup(DEFAULT_LTTNG_RUNDIR
);
4428 /* Create global run dir with root access */
4429 ret
= create_lttng_rundir(rundir
);
4434 if (strlen(apps_unix_sock_path
) == 0) {
4435 snprintf(apps_unix_sock_path
, PATH_MAX
,
4436 DEFAULT_GLOBAL_APPS_UNIX_SOCK
);
4439 if (strlen(client_unix_sock_path
) == 0) {
4440 snprintf(client_unix_sock_path
, PATH_MAX
,
4441 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK
);
4444 /* Set global SHM for ust */
4445 if (strlen(wait_shm_path
) == 0) {
4446 snprintf(wait_shm_path
, PATH_MAX
,
4447 DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH
);
4450 if (strlen(health_unix_sock_path
) == 0) {
4451 snprintf(health_unix_sock_path
, sizeof(health_unix_sock_path
),
4452 DEFAULT_GLOBAL_HEALTH_UNIX_SOCK
);
4455 /* Setup kernel consumerd path */
4456 snprintf(kconsumer_data
.err_unix_sock_path
, PATH_MAX
,
4457 DEFAULT_KCONSUMERD_ERR_SOCK_PATH
, rundir
);
4458 snprintf(kconsumer_data
.cmd_unix_sock_path
, PATH_MAX
,
4459 DEFAULT_KCONSUMERD_CMD_SOCK_PATH
, rundir
);
4461 DBG2("Kernel consumer err path: %s",
4462 kconsumer_data
.err_unix_sock_path
);
4463 DBG2("Kernel consumer cmd path: %s",
4464 kconsumer_data
.cmd_unix_sock_path
);
4466 home_path
= utils_get_home_dir();
4467 if (home_path
== NULL
) {
4468 /* TODO: Add --socket PATH option */
4469 ERR("Can't get HOME directory for sockets creation.");
4475 * Create rundir from home path. This will create something like
4478 ret
= asprintf(&rundir
, DEFAULT_LTTNG_HOME_RUNDIR
, home_path
);
4484 ret
= create_lttng_rundir(rundir
);
4489 if (strlen(apps_unix_sock_path
) == 0) {
4490 snprintf(apps_unix_sock_path
, PATH_MAX
,
4491 DEFAULT_HOME_APPS_UNIX_SOCK
, home_path
);
4494 /* Set the cli tool unix socket path */
4495 if (strlen(client_unix_sock_path
) == 0) {
4496 snprintf(client_unix_sock_path
, PATH_MAX
,
4497 DEFAULT_HOME_CLIENT_UNIX_SOCK
, home_path
);
4500 /* Set global SHM for ust */
4501 if (strlen(wait_shm_path
) == 0) {
4502 snprintf(wait_shm_path
, PATH_MAX
,
4503 DEFAULT_HOME_APPS_WAIT_SHM_PATH
, getuid());
4506 /* Set health check Unix path */
4507 if (strlen(health_unix_sock_path
) == 0) {
4508 snprintf(health_unix_sock_path
, sizeof(health_unix_sock_path
),
4509 DEFAULT_HOME_HEALTH_UNIX_SOCK
, home_path
);
4513 /* Set consumer initial state */
4514 kernel_consumerd_state
= CONSUMER_STOPPED
;
4515 ust_consumerd_state
= CONSUMER_STOPPED
;
4517 DBG("Client socket path %s", client_unix_sock_path
);
4518 DBG("Application socket path %s", apps_unix_sock_path
);
4519 DBG("Application wait path %s", wait_shm_path
);
4520 DBG("LTTng run directory path: %s", rundir
);
4522 /* 32 bits consumerd path setup */
4523 snprintf(ustconsumer32_data
.err_unix_sock_path
, PATH_MAX
,
4524 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
, rundir
);
4525 snprintf(ustconsumer32_data
.cmd_unix_sock_path
, PATH_MAX
,
4526 DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
, rundir
);
4528 DBG2("UST consumer 32 bits err path: %s",
4529 ustconsumer32_data
.err_unix_sock_path
);
4530 DBG2("UST consumer 32 bits cmd path: %s",
4531 ustconsumer32_data
.cmd_unix_sock_path
);
4533 /* 64 bits consumerd path setup */
4534 snprintf(ustconsumer64_data
.err_unix_sock_path
, PATH_MAX
,
4535 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
, rundir
);
4536 snprintf(ustconsumer64_data
.cmd_unix_sock_path
, PATH_MAX
,
4537 DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
, rundir
);
4539 DBG2("UST consumer 64 bits err path: %s",
4540 ustconsumer64_data
.err_unix_sock_path
);
4541 DBG2("UST consumer 64 bits cmd path: %s",
4542 ustconsumer64_data
.cmd_unix_sock_path
);
4545 * See if daemon already exist.
4547 if ((ret
= check_existing_daemon()) < 0) {
4548 ERR("Already running daemon.\n");
4550 * We do not goto exit because we must not cleanup()
4551 * because a daemon is already running.
4557 * Init UST app hash table. Alloc hash table before this point since
4558 * cleanup() can get called after that point.
4562 /* After this point, we can safely call cleanup() with "goto exit" */
4565 * These actions must be executed as root. We do that *after* setting up
4566 * the sockets path because we MUST make the check for another daemon using
4567 * those paths *before* trying to set the kernel consumer sockets and init
4571 ret
= set_consumer_sockets(&kconsumer_data
, rundir
);
4576 /* Setup kernel tracer */
4577 if (!opt_no_kernel
) {
4578 init_kernel_tracer();
4581 /* Set ulimit for open files */
4584 /* init lttng_fd tracking must be done after set_ulimit. */
4587 ret
= set_consumer_sockets(&ustconsumer64_data
, rundir
);
4592 ret
= set_consumer_sockets(&ustconsumer32_data
, rundir
);
4597 if ((ret
= set_signal_handler()) < 0) {
4601 /* Setup the needed unix socket */
4602 if ((ret
= init_daemon_socket()) < 0) {
4606 /* Set credentials to socket */
4607 if (is_root
&& ((ret
= set_permissions(rundir
)) < 0)) {
4611 /* Get parent pid if -S, --sig-parent is specified. */
4612 if (opt_sig_parent
) {
4616 /* Setup the kernel pipe for waking up the kernel thread */
4617 if (is_root
&& !opt_no_kernel
) {
4618 if ((ret
= utils_create_pipe_cloexec(kernel_poll_pipe
)) < 0) {
4623 /* Setup the thread ht_cleanup communication pipe. */
4624 if (utils_create_pipe_cloexec(ht_cleanup_pipe
) < 0) {
4628 /* Setup the thread apps communication pipe. */
4629 if ((ret
= utils_create_pipe_cloexec(apps_cmd_pipe
)) < 0) {
4633 /* Setup the thread apps notify communication pipe. */
4634 if (utils_create_pipe_cloexec(apps_cmd_notify_pipe
) < 0) {
4638 /* Initialize global buffer per UID and PID registry. */
4639 buffer_reg_init_uid_registry();
4640 buffer_reg_init_pid_registry();
4642 /* Init UST command queue. */
4643 cds_wfq_init(&ust_cmd_queue
.queue
);
4646 * Get session list pointer. This pointer MUST NOT be free(). This list is
4647 * statically declared in session.c
4649 session_list_ptr
= session_get_list();
4651 /* Set up max poll set size */
4652 lttng_poll_set_max_size();
4656 /* Check for the application socket timeout env variable. */
4657 env_app_timeout
= getenv(DEFAULT_APP_SOCKET_TIMEOUT_ENV
);
4658 if (env_app_timeout
) {
4659 app_socket_timeout
= atoi(env_app_timeout
);
4661 app_socket_timeout
= DEFAULT_APP_SOCKET_RW_TIMEOUT
;
4666 /* Initialize communication library */
4668 /* This is to get the TCP timeout value. */
4669 lttcomm_inet_init();
4672 * Initialize the health check subsystem. This call should set the
4673 * appropriate time values.
4677 /* Create thread to manage the client socket */
4678 ret
= pthread_create(&ht_cleanup_thread
, NULL
,
4679 thread_ht_cleanup
, (void *) NULL
);
4681 PERROR("pthread_create ht_cleanup");
4682 goto exit_ht_cleanup
;
4685 /* Create thread to manage the client socket */
4686 ret
= pthread_create(&health_thread
, NULL
,
4687 thread_manage_health
, (void *) NULL
);
4689 PERROR("pthread_create health");
4693 /* Create thread to manage the client socket */
4694 ret
= pthread_create(&client_thread
, NULL
,
4695 thread_manage_clients
, (void *) NULL
);
4697 PERROR("pthread_create clients");
4701 /* Create thread to dispatch registration */
4702 ret
= pthread_create(&dispatch_thread
, NULL
,
4703 thread_dispatch_ust_registration
, (void *) NULL
);
4705 PERROR("pthread_create dispatch");
4709 /* Create thread to manage application registration. */
4710 ret
= pthread_create(®_apps_thread
, NULL
,
4711 thread_registration_apps
, (void *) NULL
);
4713 PERROR("pthread_create registration");
4717 /* Create thread to manage application socket */
4718 ret
= pthread_create(&apps_thread
, NULL
,
4719 thread_manage_apps
, (void *) NULL
);
4721 PERROR("pthread_create apps");
4725 /* Create thread to manage application notify socket */
4726 ret
= pthread_create(&apps_notify_thread
, NULL
,
4727 ust_thread_manage_notify
, (void *) NULL
);
4729 PERROR("pthread_create apps");
4733 /* Don't start this thread if kernel tracing is not requested nor root */
4734 if (is_root
&& !opt_no_kernel
) {
4735 /* Create kernel thread to manage kernel event */
4736 ret
= pthread_create(&kernel_thread
, NULL
,
4737 thread_manage_kernel
, (void *) NULL
);
4739 PERROR("pthread_create kernel");
4743 ret
= pthread_join(kernel_thread
, &status
);
4745 PERROR("pthread_join");
4746 goto error
; /* join error, exit without cleanup */
4751 ret
= pthread_join(apps_thread
, &status
);
4753 PERROR("pthread_join");
4754 goto error
; /* join error, exit without cleanup */
4758 ret
= pthread_join(reg_apps_thread
, &status
);
4760 PERROR("pthread_join");
4761 goto error
; /* join error, exit without cleanup */
4765 ret
= pthread_join(dispatch_thread
, &status
);
4767 PERROR("pthread_join");
4768 goto error
; /* join error, exit without cleanup */
4772 ret
= pthread_join(client_thread
, &status
);
4774 PERROR("pthread_join");
4775 goto error
; /* join error, exit without cleanup */
4778 ret
= join_consumer_thread(&kconsumer_data
);
4780 PERROR("join_consumer");
4781 goto error
; /* join error, exit without cleanup */
4784 ret
= join_consumer_thread(&ustconsumer32_data
);
4786 PERROR("join_consumer ust32");
4787 goto error
; /* join error, exit without cleanup */
4790 ret
= join_consumer_thread(&ustconsumer64_data
);
4792 PERROR("join_consumer ust64");
4793 goto error
; /* join error, exit without cleanup */
4797 ret
= pthread_join(health_thread
, &status
);
4799 PERROR("pthread_join health thread");
4800 goto error
; /* join error, exit without cleanup */
4804 ret
= pthread_join(ht_cleanup_thread
, &status
);
4806 PERROR("pthread_join ht cleanup thread");
4807 goto error
; /* join error, exit without cleanup */
4812 * cleanup() is called when no other thread is running.
4814 rcu_thread_online();
4816 rcu_thread_offline();
4817 rcu_unregister_thread();