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.
29 #include <sys/mount.h>
30 #include <sys/resource.h>
31 #include <sys/socket.h>
33 #include <sys/types.h>
35 #include <urcu/uatomic.h>
39 #include <common/common.h>
40 #include <common/compat/poll.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"
55 #include "kernel-consumer.h"
59 #include "ust-consumer.h"
64 #include "testpoint.h"
66 #define CONSUMERD_FILE "lttng-consumerd"
69 const char default_home_dir
[] = DEFAULT_HOME_DIR
;
70 const char default_tracing_group
[] = DEFAULT_TRACING_GROUP
;
71 const char default_ust_sock_dir
[] = DEFAULT_UST_SOCK_DIR
;
72 const char default_global_apps_pipe
[] = DEFAULT_GLOBAL_APPS_PIPE
;
75 const char *opt_tracing_group
;
76 static int opt_sig_parent
;
77 static int opt_verbose_consumer
;
78 static int opt_daemon
;
79 static int opt_no_kernel
;
80 static int is_root
; /* Set to 1 if the daemon is running as root */
81 static pid_t ppid
; /* Parent PID for --sig-parent option */
85 * Consumer daemon specific control data. Every value not initialized here is
86 * set to 0 by the static definition.
88 static struct consumer_data kconsumer_data
= {
89 .type
= LTTNG_CONSUMER_KERNEL
,
90 .err_unix_sock_path
= DEFAULT_KCONSUMERD_ERR_SOCK_PATH
,
91 .cmd_unix_sock_path
= DEFAULT_KCONSUMERD_CMD_SOCK_PATH
,
94 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
95 .lock
= PTHREAD_MUTEX_INITIALIZER
,
96 .cond
= PTHREAD_COND_INITIALIZER
,
97 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
99 static struct consumer_data ustconsumer64_data
= {
100 .type
= LTTNG_CONSUMER64_UST
,
101 .err_unix_sock_path
= DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
,
102 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
,
105 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
106 .lock
= PTHREAD_MUTEX_INITIALIZER
,
107 .cond
= PTHREAD_COND_INITIALIZER
,
108 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
110 static struct consumer_data ustconsumer32_data
= {
111 .type
= LTTNG_CONSUMER32_UST
,
112 .err_unix_sock_path
= DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
,
113 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
,
116 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
117 .lock
= PTHREAD_MUTEX_INITIALIZER
,
118 .cond
= PTHREAD_COND_INITIALIZER
,
119 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
122 /* Shared between threads */
123 static int dispatch_thread_exit
;
125 /* Global application Unix socket path */
126 static char apps_unix_sock_path
[PATH_MAX
];
127 /* Global client Unix socket path */
128 static char client_unix_sock_path
[PATH_MAX
];
129 /* global wait shm path for UST */
130 static char wait_shm_path
[PATH_MAX
];
131 /* Global health check unix path */
132 static char health_unix_sock_path
[PATH_MAX
];
134 /* Sockets and FDs */
135 static int client_sock
= -1;
136 static int apps_sock
= -1;
137 int kernel_tracer_fd
= -1;
138 static int kernel_poll_pipe
[2] = { -1, -1 };
141 * Quit pipe for all threads. This permits a single cancellation point
142 * for all threads when receiving an event on the pipe.
144 static int thread_quit_pipe
[2] = { -1, -1 };
147 * This pipe is used to inform the thread managing application communication
148 * that a command is queued and ready to be processed.
150 static int apps_cmd_pipe
[2] = { -1, -1 };
152 /* Pthread, Mutexes and Semaphores */
153 static pthread_t apps_thread
;
154 static pthread_t reg_apps_thread
;
155 static pthread_t client_thread
;
156 static pthread_t kernel_thread
;
157 static pthread_t dispatch_thread
;
158 static pthread_t health_thread
;
161 * UST registration command queue. This queue is tied with a futex and uses a N
162 * wakers / 1 waiter implemented and detailed in futex.c/.h
164 * The thread_manage_apps and thread_dispatch_ust_registration interact with
165 * this queue and the wait/wake scheme.
167 static struct ust_cmd_queue ust_cmd_queue
;
170 * Pointer initialized before thread creation.
172 * This points to the tracing session list containing the session count and a
173 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
174 * MUST NOT be taken if you call a public function in session.c.
176 * The lock is nested inside the structure: session_list_ptr->lock. Please use
177 * session_lock_list and session_unlock_list for lock acquisition.
179 static struct ltt_session_list
*session_list_ptr
;
181 int ust_consumerd64_fd
= -1;
182 int ust_consumerd32_fd
= -1;
184 static const char *consumerd32_bin
= CONFIG_CONSUMERD32_BIN
;
185 static const char *consumerd64_bin
= CONFIG_CONSUMERD64_BIN
;
186 static const char *consumerd32_libdir
= CONFIG_CONSUMERD32_LIBDIR
;
187 static const char *consumerd64_libdir
= CONFIG_CONSUMERD64_LIBDIR
;
189 static const char *module_proc_lttng
= "/proc/lttng";
192 * Consumer daemon state which is changed when spawning it, killing it or in
193 * case of a fatal error.
195 enum consumerd_state
{
196 CONSUMER_STARTED
= 1,
197 CONSUMER_STOPPED
= 2,
202 * This consumer daemon state is used to validate if a client command will be
203 * able to reach the consumer. If not, the client is informed. For instance,
204 * doing a "lttng start" when the consumer state is set to ERROR will return an
205 * error to the client.
207 * The following example shows a possible race condition of this scheme:
209 * consumer thread error happens
211 * client cmd checks state -> still OK
212 * consumer thread exit, sets error
213 * client cmd try to talk to consumer
216 * However, since the consumer is a different daemon, we have no way of making
217 * sure the command will reach it safely even with this state flag. This is why
218 * we consider that up to the state validation during command processing, the
219 * command is safe. After that, we can not guarantee the correctness of the
220 * client request vis-a-vis the consumer.
222 static enum consumerd_state ust_consumerd_state
;
223 static enum consumerd_state kernel_consumerd_state
;
225 /* Used for the health monitoring of the session daemon. See health.h */
226 struct health_state health_thread_cmd
;
227 struct health_state health_thread_app_manage
;
228 struct health_state health_thread_app_reg
;
229 struct health_state health_thread_kernel
;
232 void setup_consumerd_path(void)
234 const char *bin
, *libdir
;
237 * Allow INSTALL_BIN_PATH to be used as a target path for the
238 * native architecture size consumer if CONFIG_CONSUMER*_PATH
239 * has not been defined.
241 #if (CAA_BITS_PER_LONG == 32)
242 if (!consumerd32_bin
[0]) {
243 consumerd32_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
245 if (!consumerd32_libdir
[0]) {
246 consumerd32_libdir
= INSTALL_LIB_PATH
;
248 #elif (CAA_BITS_PER_LONG == 64)
249 if (!consumerd64_bin
[0]) {
250 consumerd64_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
252 if (!consumerd64_libdir
[0]) {
253 consumerd64_libdir
= INSTALL_LIB_PATH
;
256 #error "Unknown bitness"
260 * runtime env. var. overrides the build default.
262 bin
= getenv("LTTNG_CONSUMERD32_BIN");
264 consumerd32_bin
= bin
;
266 bin
= getenv("LTTNG_CONSUMERD64_BIN");
268 consumerd64_bin
= bin
;
270 libdir
= getenv("LTTNG_CONSUMERD32_LIBDIR");
272 consumerd32_libdir
= libdir
;
274 libdir
= getenv("LTTNG_CONSUMERD64_LIBDIR");
276 consumerd64_libdir
= libdir
;
281 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
283 static int create_thread_poll_set(struct lttng_poll_event
*events
,
288 if (events
== NULL
|| size
== 0) {
293 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
299 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
);
311 * Check if the thread quit pipe was triggered.
313 * Return 1 if it was triggered else 0;
315 static int check_thread_quit_pipe(int fd
, uint32_t events
)
317 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
325 * Return group ID of the tracing group or -1 if not found.
327 static gid_t
allowed_group(void)
331 if (opt_tracing_group
) {
332 grp
= getgrnam(opt_tracing_group
);
334 grp
= getgrnam(default_tracing_group
);
344 * Init thread quit pipe.
346 * Return -1 on error or 0 if all pipes are created.
348 static int init_thread_quit_pipe(void)
352 ret
= pipe(thread_quit_pipe
);
354 PERROR("thread quit pipe");
358 for (i
= 0; i
< 2; i
++) {
359 ret
= fcntl(thread_quit_pipe
[i
], F_SETFD
, FD_CLOEXEC
);
371 * Stop all threads by closing the thread quit pipe.
373 static void stop_threads(void)
377 /* Stopping all threads */
378 DBG("Terminating all threads");
379 ret
= notify_thread_pipe(thread_quit_pipe
[1]);
381 ERR("write error on thread quit pipe");
384 /* Dispatch thread */
385 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
386 futex_nto1_wake(&ust_cmd_queue
.futex
);
392 static void cleanup(void)
396 struct ltt_session
*sess
, *stmp
;
400 /* First thing first, stop all threads */
401 utils_close_pipe(thread_quit_pipe
);
403 DBG("Removing %s directory", rundir
);
404 ret
= asprintf(&cmd
, "rm -rf %s", rundir
);
406 ERR("asprintf failed. Something is really wrong!");
409 /* Remove lttng run directory */
412 ERR("Unable to clean %s", rundir
);
417 DBG("Cleaning up all sessions");
419 /* Destroy session list mutex */
420 if (session_list_ptr
!= NULL
) {
421 pthread_mutex_destroy(&session_list_ptr
->lock
);
423 /* Cleanup ALL session */
424 cds_list_for_each_entry_safe(sess
, stmp
,
425 &session_list_ptr
->head
, list
) {
426 cmd_destroy_session(sess
, kernel_poll_pipe
[1]);
430 DBG("Closing all UST sockets");
431 ust_app_clean_list();
433 if (is_root
&& !opt_no_kernel
) {
434 DBG2("Closing kernel fd");
435 if (kernel_tracer_fd
>= 0) {
436 ret
= close(kernel_tracer_fd
);
441 DBG("Unloading kernel modules");
442 modprobe_remove_lttng_all();
445 utils_close_pipe(kernel_poll_pipe
);
446 utils_close_pipe(apps_cmd_pipe
);
449 DBG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm"
450 "Matthew, BEET driven development works!%c[%dm",
451 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
456 * Send data on a unix socket using the liblttsessiondcomm API.
458 * Return lttcomm error code.
460 static int send_unix_sock(int sock
, void *buf
, size_t len
)
462 /* Check valid length */
467 return lttcomm_send_unix_sock(sock
, buf
, len
);
471 * Free memory of a command context structure.
473 static void clean_command_ctx(struct command_ctx
**cmd_ctx
)
475 DBG("Clean command context structure");
477 if ((*cmd_ctx
)->llm
) {
478 free((*cmd_ctx
)->llm
);
480 if ((*cmd_ctx
)->lsm
) {
481 free((*cmd_ctx
)->lsm
);
489 * Notify UST applications using the shm mmap futex.
491 static int notify_ust_apps(int active
)
495 DBG("Notifying applications of session daemon state: %d", active
);
497 /* See shm.c for this call implying mmap, shm and futex calls */
498 wait_shm_mmap
= shm_ust_get_mmap(wait_shm_path
, is_root
);
499 if (wait_shm_mmap
== NULL
) {
503 /* Wake waiting process */
504 futex_wait_update((int32_t *) wait_shm_mmap
, active
);
506 /* Apps notified successfully */
514 * Setup the outgoing data buffer for the response (llm) by allocating the
515 * right amount of memory and copying the original information from the lsm
518 * Return total size of the buffer pointed by buf.
520 static int setup_lttng_msg(struct command_ctx
*cmd_ctx
, size_t size
)
526 cmd_ctx
->llm
= zmalloc(sizeof(struct lttcomm_lttng_msg
) + buf_size
);
527 if (cmd_ctx
->llm
== NULL
) {
533 /* Copy common data */
534 cmd_ctx
->llm
->cmd_type
= cmd_ctx
->lsm
->cmd_type
;
535 cmd_ctx
->llm
->pid
= cmd_ctx
->lsm
->domain
.attr
.pid
;
537 cmd_ctx
->llm
->data_size
= size
;
538 cmd_ctx
->lttng_msg_size
= sizeof(struct lttcomm_lttng_msg
) + buf_size
;
547 * Update the kernel poll set of all channel fd available over all tracing
548 * session. Add the wakeup pipe at the end of the set.
550 static int update_kernel_poll(struct lttng_poll_event
*events
)
553 struct ltt_session
*session
;
554 struct ltt_kernel_channel
*channel
;
556 DBG("Updating kernel poll set");
559 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
560 session_lock(session
);
561 if (session
->kernel_session
== NULL
) {
562 session_unlock(session
);
566 cds_list_for_each_entry(channel
,
567 &session
->kernel_session
->channel_list
.head
, list
) {
568 /* Add channel fd to the kernel poll set */
569 ret
= lttng_poll_add(events
, channel
->fd
, LPOLLIN
| LPOLLRDNORM
);
571 session_unlock(session
);
574 DBG("Channel fd %d added to kernel set", channel
->fd
);
576 session_unlock(session
);
578 session_unlock_list();
583 session_unlock_list();
588 * Find the channel fd from 'fd' over all tracing session. When found, check
589 * for new channel stream and send those stream fds to the kernel consumer.
591 * Useful for CPU hotplug feature.
593 static int update_kernel_stream(struct consumer_data
*consumer_data
, int fd
)
596 struct ltt_session
*session
;
597 struct ltt_kernel_session
*ksess
;
598 struct ltt_kernel_channel
*channel
;
600 DBG("Updating kernel streams for channel fd %d", fd
);
603 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
604 session_lock(session
);
605 if (session
->kernel_session
== NULL
) {
606 session_unlock(session
);
609 ksess
= session
->kernel_session
;
611 cds_list_for_each_entry(channel
, &ksess
->channel_list
.head
, list
) {
612 if (channel
->fd
== fd
) {
613 DBG("Channel found, updating kernel streams");
614 ret
= kernel_open_channel_stream(channel
);
620 * Have we already sent fds to the consumer? If yes, it means
621 * that tracing is started so it is safe to send our updated
624 if (ksess
->consumer_fds_sent
== 1 && ksess
->consumer
!= NULL
) {
625 struct lttng_ht_iter iter
;
626 struct consumer_socket
*socket
;
629 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
,
630 &iter
.iter
, socket
, node
.node
) {
631 /* Code flow error */
632 assert(socket
->fd
>= 0);
634 pthread_mutex_lock(socket
->lock
);
635 ret
= kernel_consumer_send_channel_stream(socket
->fd
,
637 pthread_mutex_unlock(socket
->lock
);
646 session_unlock(session
);
648 session_unlock_list();
652 session_unlock(session
);
653 session_unlock_list();
658 * For each tracing session, update newly registered apps.
660 static void update_ust_app(int app_sock
)
662 struct ltt_session
*sess
, *stmp
;
666 /* For all tracing session(s) */
667 cds_list_for_each_entry_safe(sess
, stmp
, &session_list_ptr
->head
, list
) {
669 if (sess
->ust_session
) {
670 ust_app_global_update(sess
->ust_session
, app_sock
);
672 session_unlock(sess
);
675 session_unlock_list();
679 * This thread manage event coming from the kernel.
681 * Features supported in this thread:
684 static void *thread_manage_kernel(void *data
)
686 int ret
, i
, pollfd
, update_poll_flag
= 1, err
= -1;
687 uint32_t revents
, nb_fd
;
689 struct lttng_poll_event events
;
691 DBG("Thread manage kernel started");
693 testpoint(thread_manage_kernel
);
695 health_code_update(&health_thread_kernel
);
697 testpoint(thread_manage_kernel_before_loop
);
699 ret
= create_thread_poll_set(&events
, 2);
701 goto error_poll_create
;
704 ret
= lttng_poll_add(&events
, kernel_poll_pipe
[0], LPOLLIN
);
710 health_code_update(&health_thread_kernel
);
712 if (update_poll_flag
== 1) {
714 * Reset number of fd in the poll set. Always 2 since there is the thread
715 * quit pipe and the kernel pipe.
719 ret
= update_kernel_poll(&events
);
723 update_poll_flag
= 0;
726 nb_fd
= LTTNG_POLL_GETNB(&events
);
728 DBG("Thread kernel polling on %d fds", nb_fd
);
730 /* Zeroed the poll events */
731 lttng_poll_reset(&events
);
733 /* Poll infinite value of time */
735 health_poll_update(&health_thread_kernel
);
736 ret
= lttng_poll_wait(&events
, -1);
737 health_poll_update(&health_thread_kernel
);
740 * Restart interrupted system call.
742 if (errno
== EINTR
) {
746 } else if (ret
== 0) {
747 /* Should not happen since timeout is infinite */
748 ERR("Return value of poll is 0 with an infinite timeout.\n"
749 "This should not have happened! Continuing...");
753 for (i
= 0; i
< nb_fd
; i
++) {
754 /* Fetch once the poll data */
755 revents
= LTTNG_POLL_GETEV(&events
, i
);
756 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
758 health_code_update(&health_thread_kernel
);
760 /* Thread quit pipe has been closed. Killing thread. */
761 ret
= check_thread_quit_pipe(pollfd
, revents
);
767 /* Check for data on kernel pipe */
768 if (pollfd
== kernel_poll_pipe
[0] && (revents
& LPOLLIN
)) {
769 ret
= read(kernel_poll_pipe
[0], &tmp
, 1);
770 update_poll_flag
= 1;
774 * New CPU detected by the kernel. Adding kernel stream to
775 * kernel session and updating the kernel consumer
777 if (revents
& LPOLLIN
) {
778 ret
= update_kernel_stream(&kconsumer_data
, pollfd
);
784 * TODO: We might want to handle the LPOLLERR | LPOLLHUP
785 * and unregister kernel stream at this point.
794 lttng_poll_clean(&events
);
797 health_error(&health_thread_kernel
);
798 ERR("Health error occurred in %s", __func__
);
800 health_exit(&health_thread_kernel
);
801 DBG("Kernel thread dying");
806 * Signal pthread condition of the consumer data that the thread.
808 static void signal_consumer_condition(struct consumer_data
*data
, int state
)
810 pthread_mutex_lock(&data
->cond_mutex
);
813 * The state is set before signaling. It can be any value, it's the waiter
814 * job to correctly interpret this condition variable associated to the
815 * consumer pthread_cond.
817 * A value of 0 means that the corresponding thread of the consumer data
818 * was not started. 1 indicates that the thread has started and is ready
819 * for action. A negative value means that there was an error during the
822 data
->consumer_thread_is_ready
= state
;
823 (void) pthread_cond_signal(&data
->cond
);
825 pthread_mutex_unlock(&data
->cond_mutex
);
829 * This thread manage the consumer error sent back to the session daemon.
831 static void *thread_manage_consumer(void *data
)
833 int sock
= -1, i
, ret
, pollfd
, err
= -1;
834 uint32_t revents
, nb_fd
;
835 enum lttcomm_return_code code
;
836 struct lttng_poll_event events
;
837 struct consumer_data
*consumer_data
= data
;
839 DBG("[thread] Manage consumer started");
842 * Since the consumer thread can be spawned at any moment in time, we init
843 * the health to a poll status (1, which is a valid health over time).
844 * When the thread starts, we update here the health to a "code" path being
845 * an even value so this thread, when reaching a poll wait, does not
846 * trigger an error with an even value.
848 * Here is the use case we avoid.
850 * +1: the first poll update during initialization (main())
851 * +2 * x: multiple code update once in this thread.
852 * +1: poll wait in this thread (being a good health state).
853 * == even number which after the wait period shows as a bad health.
855 * In a nutshell, the following poll update to the health state brings back
856 * the state to an even value meaning a code path.
858 health_poll_update(&consumer_data
->health
);
861 * Pass 2 as size here for the thread quit pipe and kconsumerd_err_sock.
862 * Nothing more will be added to this poll set.
864 ret
= create_thread_poll_set(&events
, 2);
870 * The error socket here is already in a listening state which was done
871 * just before spawning this thread to avoid a race between the consumer
872 * daemon exec trying to connect and the listen() call.
874 ret
= lttng_poll_add(&events
, consumer_data
->err_sock
, LPOLLIN
| LPOLLRDHUP
);
879 nb_fd
= LTTNG_POLL_GETNB(&events
);
881 health_code_update(&consumer_data
->health
);
883 /* Inifinite blocking call, waiting for transmission */
885 health_poll_update(&consumer_data
->health
);
887 testpoint(thread_manage_consumer
);
889 ret
= lttng_poll_wait(&events
, -1);
890 health_poll_update(&consumer_data
->health
);
893 * Restart interrupted system call.
895 if (errno
== EINTR
) {
901 for (i
= 0; i
< nb_fd
; i
++) {
902 /* Fetch once the poll data */
903 revents
= LTTNG_POLL_GETEV(&events
, i
);
904 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
906 health_code_update(&consumer_data
->health
);
908 /* Thread quit pipe has been closed. Killing thread. */
909 ret
= check_thread_quit_pipe(pollfd
, revents
);
915 /* Event on the registration socket */
916 if (pollfd
== consumer_data
->err_sock
) {
917 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
918 ERR("consumer err socket poll error");
924 sock
= lttcomm_accept_unix_sock(consumer_data
->err_sock
);
930 * Set the CLOEXEC flag. Return code is useless because either way, the
933 (void) utils_set_fd_cloexec(sock
);
935 health_code_update(&consumer_data
->health
);
937 DBG2("Receiving code from consumer err_sock");
939 /* Getting status code from kconsumerd */
940 ret
= lttcomm_recv_unix_sock(sock
, &code
,
941 sizeof(enum lttcomm_return_code
));
946 health_code_update(&consumer_data
->health
);
948 if (code
== LTTCOMM_CONSUMERD_COMMAND_SOCK_READY
) {
949 consumer_data
->cmd_sock
=
950 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
951 if (consumer_data
->cmd_sock
< 0) {
952 /* On error, signal condition and quit. */
953 signal_consumer_condition(consumer_data
, -1);
954 PERROR("consumer connect");
957 signal_consumer_condition(consumer_data
, 1);
958 DBG("Consumer command socket ready");
960 ERR("consumer error when waiting for SOCK_READY : %s",
961 lttcomm_get_readable_code(-code
));
965 /* Remove the kconsumerd error sock since we've established a connexion */
966 ret
= lttng_poll_del(&events
, consumer_data
->err_sock
);
971 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLRDHUP
);
976 health_code_update(&consumer_data
->health
);
978 /* Update number of fd */
979 nb_fd
= LTTNG_POLL_GETNB(&events
);
981 /* Inifinite blocking call, waiting for transmission */
983 health_poll_update(&consumer_data
->health
);
984 ret
= lttng_poll_wait(&events
, -1);
985 health_poll_update(&consumer_data
->health
);
988 * Restart interrupted system call.
990 if (errno
== EINTR
) {
996 for (i
= 0; i
< nb_fd
; i
++) {
997 /* Fetch once the poll data */
998 revents
= LTTNG_POLL_GETEV(&events
, i
);
999 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1001 health_code_update(&consumer_data
->health
);
1003 /* Thread quit pipe has been closed. Killing thread. */
1004 ret
= check_thread_quit_pipe(pollfd
, revents
);
1010 /* Event on the kconsumerd socket */
1011 if (pollfd
== sock
) {
1012 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1013 ERR("consumer err socket second poll error");
1019 health_code_update(&consumer_data
->health
);
1021 /* Wait for any kconsumerd error */
1022 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1023 sizeof(enum lttcomm_return_code
));
1025 ERR("consumer closed the command socket");
1029 ERR("consumer return code : %s", lttcomm_get_readable_code(-code
));
1033 /* Immediately set the consumerd state to stopped */
1034 if (consumer_data
->type
== LTTNG_CONSUMER_KERNEL
) {
1035 uatomic_set(&kernel_consumerd_state
, CONSUMER_ERROR
);
1036 } else if (consumer_data
->type
== LTTNG_CONSUMER64_UST
||
1037 consumer_data
->type
== LTTNG_CONSUMER32_UST
) {
1038 uatomic_set(&ust_consumerd_state
, CONSUMER_ERROR
);
1040 /* Code flow error... */
1044 if (consumer_data
->err_sock
>= 0) {
1045 ret
= close(consumer_data
->err_sock
);
1050 if (consumer_data
->cmd_sock
>= 0) {
1051 ret
= close(consumer_data
->cmd_sock
);
1063 unlink(consumer_data
->err_unix_sock_path
);
1064 unlink(consumer_data
->cmd_unix_sock_path
);
1065 consumer_data
->pid
= 0;
1067 lttng_poll_clean(&events
);
1070 health_error(&consumer_data
->health
);
1071 ERR("Health error occurred in %s", __func__
);
1073 health_exit(&consumer_data
->health
);
1074 DBG("consumer thread cleanup completed");
1080 * This thread manage application communication.
1082 static void *thread_manage_apps(void *data
)
1084 int i
, ret
, pollfd
, err
= -1;
1085 uint32_t revents
, nb_fd
;
1086 struct ust_command ust_cmd
;
1087 struct lttng_poll_event events
;
1089 DBG("[thread] Manage application started");
1091 testpoint(thread_manage_apps
);
1093 rcu_register_thread();
1094 rcu_thread_online();
1096 health_code_update(&health_thread_app_manage
);
1098 ret
= create_thread_poll_set(&events
, 2);
1100 goto error_poll_create
;
1103 ret
= lttng_poll_add(&events
, apps_cmd_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
1108 testpoint(thread_manage_apps_before_loop
);
1110 health_code_update(&health_thread_app_manage
);
1113 /* Zeroed the events structure */
1114 lttng_poll_reset(&events
);
1116 nb_fd
= LTTNG_POLL_GETNB(&events
);
1118 DBG("Apps thread polling on %d fds", nb_fd
);
1120 /* Inifinite blocking call, waiting for transmission */
1122 health_poll_update(&health_thread_app_manage
);
1123 ret
= lttng_poll_wait(&events
, -1);
1124 health_poll_update(&health_thread_app_manage
);
1127 * Restart interrupted system call.
1129 if (errno
== EINTR
) {
1135 for (i
= 0; i
< nb_fd
; i
++) {
1136 /* Fetch once the poll data */
1137 revents
= LTTNG_POLL_GETEV(&events
, i
);
1138 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1140 health_code_update(&health_thread_app_manage
);
1142 /* Thread quit pipe has been closed. Killing thread. */
1143 ret
= check_thread_quit_pipe(pollfd
, revents
);
1149 /* Inspect the apps cmd pipe */
1150 if (pollfd
== apps_cmd_pipe
[0]) {
1151 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1152 ERR("Apps command pipe error");
1154 } else if (revents
& LPOLLIN
) {
1156 ret
= read(apps_cmd_pipe
[0], &ust_cmd
, sizeof(ust_cmd
));
1157 if (ret
< 0 || ret
< sizeof(ust_cmd
)) {
1158 PERROR("read apps cmd pipe");
1162 health_code_update(&health_thread_app_manage
);
1164 /* Register applicaton to the session daemon */
1165 ret
= ust_app_register(&ust_cmd
.reg_msg
,
1167 if (ret
== -ENOMEM
) {
1169 } else if (ret
< 0) {
1173 health_code_update(&health_thread_app_manage
);
1176 * Validate UST version compatibility.
1178 ret
= ust_app_validate_version(ust_cmd
.sock
);
1181 * Add channel(s) and event(s) to newly registered apps
1182 * from lttng global UST domain.
1184 update_ust_app(ust_cmd
.sock
);
1187 health_code_update(&health_thread_app_manage
);
1189 ret
= ust_app_register_done(ust_cmd
.sock
);
1192 * If the registration is not possible, we simply
1193 * unregister the apps and continue
1195 ust_app_unregister(ust_cmd
.sock
);
1198 * We only monitor the error events of the socket. This
1199 * thread does not handle any incoming data from UST
1202 ret
= lttng_poll_add(&events
, ust_cmd
.sock
,
1203 LPOLLERR
& LPOLLHUP
& LPOLLRDHUP
);
1208 DBG("Apps with sock %d added to poll set",
1212 health_code_update(&health_thread_app_manage
);
1218 * At this point, we know that a registered application made
1219 * the event at poll_wait.
1221 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1222 /* Removing from the poll set */
1223 ret
= lttng_poll_del(&events
, pollfd
);
1228 /* Socket closed on remote end. */
1229 ust_app_unregister(pollfd
);
1234 health_code_update(&health_thread_app_manage
);
1240 lttng_poll_clean(&events
);
1243 health_error(&health_thread_app_manage
);
1244 ERR("Health error occurred in %s", __func__
);
1246 health_exit(&health_thread_app_manage
);
1247 DBG("Application communication apps thread cleanup complete");
1248 rcu_thread_offline();
1249 rcu_unregister_thread();
1254 * Dispatch request from the registration threads to the application
1255 * communication thread.
1257 static void *thread_dispatch_ust_registration(void *data
)
1260 struct cds_wfq_node
*node
;
1261 struct ust_command
*ust_cmd
= NULL
;
1263 DBG("[thread] Dispatch UST command started");
1265 while (!CMM_LOAD_SHARED(dispatch_thread_exit
)) {
1266 /* Atomically prepare the queue futex */
1267 futex_nto1_prepare(&ust_cmd_queue
.futex
);
1270 /* Dequeue command for registration */
1271 node
= cds_wfq_dequeue_blocking(&ust_cmd_queue
.queue
);
1273 DBG("Woken up but nothing in the UST command queue");
1274 /* Continue thread execution */
1278 ust_cmd
= caa_container_of(node
, struct ust_command
, node
);
1280 DBG("Dispatching UST registration pid:%d ppid:%d uid:%d"
1281 " gid:%d sock:%d name:%s (version %d.%d)",
1282 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1283 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1284 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1285 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1287 * Inform apps thread of the new application registration. This
1288 * call is blocking so we can be assured that the data will be read
1289 * at some point in time or wait to the end of the world :)
1291 ret
= write(apps_cmd_pipe
[1], ust_cmd
,
1292 sizeof(struct ust_command
));
1294 PERROR("write apps cmd pipe");
1295 if (errno
== EBADF
) {
1297 * We can't inform the application thread to process
1298 * registration. We will exit or else application
1299 * registration will not occur and tracing will never
1306 } while (node
!= NULL
);
1308 /* Futex wait on queue. Blocking call on futex() */
1309 futex_nto1_wait(&ust_cmd_queue
.futex
);
1313 DBG("Dispatch thread dying");
1318 * This thread manage application registration.
1320 static void *thread_registration_apps(void *data
)
1322 int sock
= -1, i
, ret
, pollfd
, err
= -1;
1323 uint32_t revents
, nb_fd
;
1324 struct lttng_poll_event events
;
1326 * Get allocated in this thread, enqueued to a global queue, dequeued and
1327 * freed in the manage apps thread.
1329 struct ust_command
*ust_cmd
= NULL
;
1331 DBG("[thread] Manage application registration started");
1333 testpoint(thread_registration_apps
);
1335 ret
= lttcomm_listen_unix_sock(apps_sock
);
1341 * Pass 2 as size here for the thread quit pipe and apps socket. Nothing
1342 * more will be added to this poll set.
1344 ret
= create_thread_poll_set(&events
, 2);
1346 goto error_create_poll
;
1349 /* Add the application registration socket */
1350 ret
= lttng_poll_add(&events
, apps_sock
, LPOLLIN
| LPOLLRDHUP
);
1352 goto error_poll_add
;
1355 /* Notify all applications to register */
1356 ret
= notify_ust_apps(1);
1358 ERR("Failed to notify applications or create the wait shared memory.\n"
1359 "Execution continues but there might be problem for already\n"
1360 "running applications that wishes to register.");
1364 DBG("Accepting application registration");
1366 nb_fd
= LTTNG_POLL_GETNB(&events
);
1368 /* Inifinite blocking call, waiting for transmission */
1370 health_poll_update(&health_thread_app_reg
);
1371 ret
= lttng_poll_wait(&events
, -1);
1372 health_poll_update(&health_thread_app_reg
);
1375 * Restart interrupted system call.
1377 if (errno
== EINTR
) {
1383 for (i
= 0; i
< nb_fd
; i
++) {
1384 health_code_update(&health_thread_app_reg
);
1386 /* Fetch once the poll data */
1387 revents
= LTTNG_POLL_GETEV(&events
, i
);
1388 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1390 /* Thread quit pipe has been closed. Killing thread. */
1391 ret
= check_thread_quit_pipe(pollfd
, revents
);
1397 /* Event on the registration socket */
1398 if (pollfd
== apps_sock
) {
1399 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1400 ERR("Register apps socket poll error");
1402 } else if (revents
& LPOLLIN
) {
1403 sock
= lttcomm_accept_unix_sock(apps_sock
);
1409 * Set the CLOEXEC flag. Return code is useless because
1410 * either way, the show must go on.
1412 (void) utils_set_fd_cloexec(sock
);
1414 /* Create UST registration command for enqueuing */
1415 ust_cmd
= zmalloc(sizeof(struct ust_command
));
1416 if (ust_cmd
== NULL
) {
1417 PERROR("ust command zmalloc");
1422 * Using message-based transmissions to ensure we don't
1423 * have to deal with partially received messages.
1425 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
1427 ERR("Exhausted file descriptors allowed for applications.");
1436 health_code_update(&health_thread_app_reg
);
1437 ret
= lttcomm_recv_unix_sock(sock
, &ust_cmd
->reg_msg
,
1438 sizeof(struct ust_register_msg
));
1439 if (ret
< 0 || ret
< sizeof(struct ust_register_msg
)) {
1441 PERROR("lttcomm_recv_unix_sock register apps");
1443 ERR("Wrong size received on apps register");
1450 lttng_fd_put(LTTNG_FD_APPS
, 1);
1454 health_code_update(&health_thread_app_reg
);
1456 ust_cmd
->sock
= sock
;
1459 DBG("UST registration received with pid:%d ppid:%d uid:%d"
1460 " gid:%d sock:%d name:%s (version %d.%d)",
1461 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1462 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1463 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1464 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1467 * Lock free enqueue the registration request. The red pill
1468 * has been taken! This apps will be part of the *system*.
1470 cds_wfq_enqueue(&ust_cmd_queue
.queue
, &ust_cmd
->node
);
1473 * Wake the registration queue futex. Implicit memory
1474 * barrier with the exchange in cds_wfq_enqueue.
1476 futex_nto1_wake(&ust_cmd_queue
.futex
);
1485 health_error(&health_thread_app_reg
);
1486 ERR("Health error occurred in %s", __func__
);
1488 health_exit(&health_thread_app_reg
);
1490 /* Notify that the registration thread is gone */
1493 if (apps_sock
>= 0) {
1494 ret
= close(apps_sock
);
1504 lttng_fd_put(LTTNG_FD_APPS
, 1);
1506 unlink(apps_unix_sock_path
);
1509 lttng_poll_clean(&events
);
1512 DBG("UST Registration thread cleanup complete");
1518 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
1519 * exec or it will fails.
1521 static int spawn_consumer_thread(struct consumer_data
*consumer_data
)
1524 struct timespec timeout
;
1526 /* Make sure we set the readiness flag to 0 because we are NOT ready */
1527 consumer_data
->consumer_thread_is_ready
= 0;
1529 /* Setup pthread condition */
1530 ret
= pthread_condattr_init(&consumer_data
->condattr
);
1533 PERROR("pthread_condattr_init consumer data");
1538 * Set the monotonic clock in order to make sure we DO NOT jump in time
1539 * between the clock_gettime() call and the timedwait call. See bug #324
1540 * for a more details and how we noticed it.
1542 ret
= pthread_condattr_setclock(&consumer_data
->condattr
, CLOCK_MONOTONIC
);
1545 PERROR("pthread_condattr_setclock consumer data");
1549 ret
= pthread_cond_init(&consumer_data
->cond
, &consumer_data
->condattr
);
1552 PERROR("pthread_cond_init consumer data");
1556 ret
= pthread_create(&consumer_data
->thread
, NULL
, thread_manage_consumer
,
1559 PERROR("pthread_create consumer");
1564 /* We are about to wait on a pthread condition */
1565 pthread_mutex_lock(&consumer_data
->cond_mutex
);
1567 /* Get time for sem_timedwait absolute timeout */
1568 clock_ret
= clock_gettime(CLOCK_MONOTONIC
, &timeout
);
1570 * Set the timeout for the condition timed wait even if the clock gettime
1571 * call fails since we might loop on that call and we want to avoid to
1572 * increment the timeout too many times.
1574 timeout
.tv_sec
+= DEFAULT_SEM_WAIT_TIMEOUT
;
1577 * The following loop COULD be skipped in some conditions so this is why we
1578 * set ret to 0 in order to make sure at least one round of the loop is
1584 * Loop until the condition is reached or when a timeout is reached. Note
1585 * that the pthread_cond_timedwait(P) man page specifies that EINTR can NOT
1586 * be returned but the pthread_cond(3), from the glibc-doc, says that it is
1587 * possible. This loop does not take any chances and works with both of
1590 while (!consumer_data
->consumer_thread_is_ready
&& ret
!= ETIMEDOUT
) {
1591 if (clock_ret
< 0) {
1592 PERROR("clock_gettime spawn consumer");
1593 /* Infinite wait for the consumerd thread to be ready */
1594 ret
= pthread_cond_wait(&consumer_data
->cond
,
1595 &consumer_data
->cond_mutex
);
1597 ret
= pthread_cond_timedwait(&consumer_data
->cond
,
1598 &consumer_data
->cond_mutex
, &timeout
);
1602 /* Release the pthread condition */
1603 pthread_mutex_unlock(&consumer_data
->cond_mutex
);
1607 if (ret
== ETIMEDOUT
) {
1609 * Call has timed out so we kill the kconsumerd_thread and return
1612 ERR("Condition timed out. The consumer thread was never ready."
1614 ret
= pthread_cancel(consumer_data
->thread
);
1616 PERROR("pthread_cancel consumer thread");
1619 PERROR("pthread_cond_wait failed consumer thread");
1624 pthread_mutex_lock(&consumer_data
->pid_mutex
);
1625 if (consumer_data
->pid
== 0) {
1626 ERR("Consumerd did not start");
1627 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
1630 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
1639 * Join consumer thread
1641 static int join_consumer_thread(struct consumer_data
*consumer_data
)
1646 /* Consumer pid must be a real one. */
1647 if (consumer_data
->pid
> 0) {
1648 ret
= kill(consumer_data
->pid
, SIGTERM
);
1650 ERR("Error killing consumer daemon");
1653 return pthread_join(consumer_data
->thread
, &status
);
1660 * Fork and exec a consumer daemon (consumerd).
1662 * Return pid if successful else -1.
1664 static pid_t
spawn_consumerd(struct consumer_data
*consumer_data
)
1668 const char *consumer_to_use
;
1669 const char *verbosity
;
1672 DBG("Spawning consumerd");
1679 if (opt_verbose_consumer
) {
1680 verbosity
= "--verbose";
1682 verbosity
= "--quiet";
1684 switch (consumer_data
->type
) {
1685 case LTTNG_CONSUMER_KERNEL
:
1687 * Find out which consumerd to execute. We will first try the
1688 * 64-bit path, then the sessiond's installation directory, and
1689 * fallback on the 32-bit one,
1691 DBG3("Looking for a kernel consumer at these locations:");
1692 DBG3(" 1) %s", consumerd64_bin
);
1693 DBG3(" 2) %s/%s", INSTALL_BIN_PATH
, CONSUMERD_FILE
);
1694 DBG3(" 3) %s", consumerd32_bin
);
1695 if (stat(consumerd64_bin
, &st
) == 0) {
1696 DBG3("Found location #1");
1697 consumer_to_use
= consumerd64_bin
;
1698 } else if (stat(INSTALL_BIN_PATH
"/" CONSUMERD_FILE
, &st
) == 0) {
1699 DBG3("Found location #2");
1700 consumer_to_use
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
1701 } else if (stat(consumerd32_bin
, &st
) == 0) {
1702 DBG3("Found location #3");
1703 consumer_to_use
= consumerd32_bin
;
1705 DBG("Could not find any valid consumerd executable");
1708 DBG("Using kernel consumer at: %s", consumer_to_use
);
1709 execl(consumer_to_use
,
1710 "lttng-consumerd", verbosity
, "-k",
1711 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
1712 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
1715 case LTTNG_CONSUMER64_UST
:
1717 char *tmpnew
= NULL
;
1719 if (consumerd64_libdir
[0] != '\0') {
1723 tmp
= getenv("LD_LIBRARY_PATH");
1727 tmplen
= strlen("LD_LIBRARY_PATH=")
1728 + strlen(consumerd64_libdir
) + 1 /* : */ + strlen(tmp
);
1729 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
1734 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
1735 strcat(tmpnew
, consumerd64_libdir
);
1736 if (tmp
[0] != '\0') {
1737 strcat(tmpnew
, ":");
1738 strcat(tmpnew
, tmp
);
1740 ret
= putenv(tmpnew
);
1746 DBG("Using 64-bit UST consumer at: %s", consumerd64_bin
);
1747 ret
= execl(consumerd64_bin
, "lttng-consumerd", verbosity
, "-u",
1748 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
1749 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
1751 if (consumerd64_libdir
[0] != '\0') {
1759 case LTTNG_CONSUMER32_UST
:
1761 char *tmpnew
= NULL
;
1763 if (consumerd32_libdir
[0] != '\0') {
1767 tmp
= getenv("LD_LIBRARY_PATH");
1771 tmplen
= strlen("LD_LIBRARY_PATH=")
1772 + strlen(consumerd32_libdir
) + 1 /* : */ + strlen(tmp
);
1773 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
1778 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
1779 strcat(tmpnew
, consumerd32_libdir
);
1780 if (tmp
[0] != '\0') {
1781 strcat(tmpnew
, ":");
1782 strcat(tmpnew
, tmp
);
1784 ret
= putenv(tmpnew
);
1790 DBG("Using 32-bit UST consumer at: %s", consumerd32_bin
);
1791 ret
= execl(consumerd32_bin
, "lttng-consumerd", verbosity
, "-u",
1792 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
1793 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
1795 if (consumerd32_libdir
[0] != '\0') {
1804 PERROR("unknown consumer type");
1808 PERROR("kernel start consumer exec");
1811 } else if (pid
> 0) {
1814 PERROR("start consumer fork");
1822 * Spawn the consumerd daemon and session daemon thread.
1824 static int start_consumerd(struct consumer_data
*consumer_data
)
1829 * Set the listen() state on the socket since there is a possible race
1830 * between the exec() of the consumer daemon and this call if place in the
1831 * consumer thread. See bug #366 for more details.
1833 ret
= lttcomm_listen_unix_sock(consumer_data
->err_sock
);
1838 pthread_mutex_lock(&consumer_data
->pid_mutex
);
1839 if (consumer_data
->pid
!= 0) {
1840 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
1844 ret
= spawn_consumerd(consumer_data
);
1846 ERR("Spawning consumerd failed");
1847 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
1851 /* Setting up the consumer_data pid */
1852 consumer_data
->pid
= ret
;
1853 DBG2("Consumer pid %d", consumer_data
->pid
);
1854 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
1856 DBG2("Spawning consumer control thread");
1857 ret
= spawn_consumer_thread(consumer_data
);
1859 ERR("Fatal error spawning consumer control thread");
1867 /* Cleanup already created socket on error. */
1868 if (consumer_data
->err_sock
>= 0) {
1869 err
= close(consumer_data
->err_sock
);
1871 PERROR("close consumer data error socket");
1878 * Compute health status of each consumer. If one of them is zero (bad
1879 * state), we return 0.
1881 static int check_consumer_health(void)
1885 ret
= health_check_state(&kconsumer_data
.health
) &&
1886 health_check_state(&ustconsumer32_data
.health
) &&
1887 health_check_state(&ustconsumer64_data
.health
);
1889 DBG3("Health consumer check %d", ret
);
1895 * Setup necessary data for kernel tracer action.
1897 static int init_kernel_tracer(void)
1901 /* Modprobe lttng kernel modules */
1902 ret
= modprobe_lttng_control();
1907 /* Open debugfs lttng */
1908 kernel_tracer_fd
= open(module_proc_lttng
, O_RDWR
);
1909 if (kernel_tracer_fd
< 0) {
1910 DBG("Failed to open %s", module_proc_lttng
);
1915 /* Validate kernel version */
1916 ret
= kernel_validate_version(kernel_tracer_fd
);
1921 ret
= modprobe_lttng_data();
1926 DBG("Kernel tracer fd %d", kernel_tracer_fd
);
1930 modprobe_remove_lttng_control();
1931 ret
= close(kernel_tracer_fd
);
1935 kernel_tracer_fd
= -1;
1936 return LTTNG_ERR_KERN_VERSION
;
1939 ret
= close(kernel_tracer_fd
);
1945 modprobe_remove_lttng_control();
1948 WARN("No kernel tracer available");
1949 kernel_tracer_fd
= -1;
1951 return LTTNG_ERR_NEED_ROOT_SESSIOND
;
1953 return LTTNG_ERR_KERN_NA
;
1959 * Copy consumer output from the tracing session to the domain session. The
1960 * function also applies the right modification on a per domain basis for the
1961 * trace files destination directory.
1963 static int copy_session_consumer(int domain
, struct ltt_session
*session
)
1966 const char *dir_name
;
1967 struct consumer_output
*consumer
;
1970 assert(session
->consumer
);
1973 case LTTNG_DOMAIN_KERNEL
:
1974 DBG3("Copying tracing session consumer output in kernel session");
1976 * XXX: We should audit the session creation and what this function
1977 * does "extra" in order to avoid a destroy since this function is used
1978 * in the domain session creation (kernel and ust) only. Same for UST
1981 if (session
->kernel_session
->consumer
) {
1982 consumer_destroy_output(session
->kernel_session
->consumer
);
1984 session
->kernel_session
->consumer
=
1985 consumer_copy_output(session
->consumer
);
1986 /* Ease our life a bit for the next part */
1987 consumer
= session
->kernel_session
->consumer
;
1988 dir_name
= DEFAULT_KERNEL_TRACE_DIR
;
1990 case LTTNG_DOMAIN_UST
:
1991 DBG3("Copying tracing session consumer output in UST session");
1992 if (session
->ust_session
->consumer
) {
1993 consumer_destroy_output(session
->ust_session
->consumer
);
1995 session
->ust_session
->consumer
=
1996 consumer_copy_output(session
->consumer
);
1997 /* Ease our life a bit for the next part */
1998 consumer
= session
->ust_session
->consumer
;
1999 dir_name
= DEFAULT_UST_TRACE_DIR
;
2002 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2006 /* Append correct directory to subdir */
2007 strncat(consumer
->subdir
, dir_name
,
2008 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
2009 DBG3("Copy session consumer subdir %s", consumer
->subdir
);
2018 * Create an UST session and add it to the session ust list.
2020 static int create_ust_session(struct ltt_session
*session
,
2021 struct lttng_domain
*domain
)
2024 struct ltt_ust_session
*lus
= NULL
;
2028 assert(session
->consumer
);
2030 switch (domain
->type
) {
2031 case LTTNG_DOMAIN_UST
:
2034 ERR("Unknown UST domain on create session %d", domain
->type
);
2035 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2039 DBG("Creating UST session");
2041 lus
= trace_ust_create_session(session
->path
, session
->id
, domain
);
2043 ret
= LTTNG_ERR_UST_SESS_FAIL
;
2047 lus
->uid
= session
->uid
;
2048 lus
->gid
= session
->gid
;
2049 session
->ust_session
= lus
;
2051 /* Copy session output to the newly created UST session */
2052 ret
= copy_session_consumer(domain
->type
, session
);
2053 if (ret
!= LTTNG_OK
) {
2061 session
->ust_session
= NULL
;
2066 * Create a kernel tracer session then create the default channel.
2068 static int create_kernel_session(struct ltt_session
*session
)
2072 DBG("Creating kernel session");
2074 ret
= kernel_create_session(session
, kernel_tracer_fd
);
2076 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
2080 /* Code flow safety */
2081 assert(session
->kernel_session
);
2083 /* Copy session output to the newly created Kernel session */
2084 ret
= copy_session_consumer(LTTNG_DOMAIN_KERNEL
, session
);
2085 if (ret
!= LTTNG_OK
) {
2089 /* Create directory(ies) on local filesystem. */
2090 if (session
->kernel_session
->consumer
->type
== CONSUMER_DST_LOCAL
&&
2091 strlen(session
->kernel_session
->consumer
->dst
.trace_path
) > 0) {
2092 ret
= run_as_mkdir_recursive(
2093 session
->kernel_session
->consumer
->dst
.trace_path
,
2094 S_IRWXU
| S_IRWXG
, session
->uid
, session
->gid
);
2096 if (ret
!= -EEXIST
) {
2097 ERR("Trace directory creation error");
2103 session
->kernel_session
->uid
= session
->uid
;
2104 session
->kernel_session
->gid
= session
->gid
;
2109 trace_kernel_destroy_session(session
->kernel_session
);
2110 session
->kernel_session
= NULL
;
2115 * Count number of session permitted by uid/gid.
2117 static unsigned int lttng_sessions_count(uid_t uid
, gid_t gid
)
2120 struct ltt_session
*session
;
2122 DBG("Counting number of available session for UID %d GID %d",
2124 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
2126 * Only list the sessions the user can control.
2128 if (!session_access_ok(session
, uid
, gid
)) {
2137 * Process the command requested by the lttng client within the command
2138 * context structure. This function make sure that the return structure (llm)
2139 * is set and ready for transmission before returning.
2141 * Return any error encountered or 0 for success.
2143 * "sock" is only used for special-case var. len data.
2145 static int process_client_msg(struct command_ctx
*cmd_ctx
, int sock
,
2149 int need_tracing_session
= 1;
2152 DBG("Processing client command %d", cmd_ctx
->lsm
->cmd_type
);
2156 switch (cmd_ctx
->lsm
->cmd_type
) {
2157 case LTTNG_CREATE_SESSION
:
2158 case LTTNG_DESTROY_SESSION
:
2159 case LTTNG_LIST_SESSIONS
:
2160 case LTTNG_LIST_DOMAINS
:
2161 case LTTNG_START_TRACE
:
2162 case LTTNG_STOP_TRACE
:
2163 case LTTNG_DATA_PENDING
:
2170 if (opt_no_kernel
&& need_domain
2171 && cmd_ctx
->lsm
->domain
.type
== LTTNG_DOMAIN_KERNEL
) {
2173 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
2175 ret
= LTTNG_ERR_KERN_NA
;
2180 /* Deny register consumer if we already have a spawned consumer. */
2181 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_REGISTER_CONSUMER
) {
2182 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
2183 if (kconsumer_data
.pid
> 0) {
2184 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2185 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2188 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2192 * Check for command that don't needs to allocate a returned payload. We do
2193 * this here so we don't have to make the call for no payload at each
2196 switch(cmd_ctx
->lsm
->cmd_type
) {
2197 case LTTNG_LIST_SESSIONS
:
2198 case LTTNG_LIST_TRACEPOINTS
:
2199 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2200 case LTTNG_LIST_DOMAINS
:
2201 case LTTNG_LIST_CHANNELS
:
2202 case LTTNG_LIST_EVENTS
:
2205 /* Setup lttng message with no payload */
2206 ret
= setup_lttng_msg(cmd_ctx
, 0);
2208 /* This label does not try to unlock the session */
2209 goto init_setup_error
;
2213 /* Commands that DO NOT need a session. */
2214 switch (cmd_ctx
->lsm
->cmd_type
) {
2215 case LTTNG_CREATE_SESSION
:
2216 case LTTNG_CALIBRATE
:
2217 case LTTNG_LIST_SESSIONS
:
2218 case LTTNG_LIST_TRACEPOINTS
:
2219 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2220 need_tracing_session
= 0;
2223 DBG("Getting session %s by name", cmd_ctx
->lsm
->session
.name
);
2225 * We keep the session list lock across _all_ commands
2226 * for now, because the per-session lock does not
2227 * handle teardown properly.
2229 session_lock_list();
2230 cmd_ctx
->session
= session_find_by_name(cmd_ctx
->lsm
->session
.name
);
2231 if (cmd_ctx
->session
== NULL
) {
2232 if (cmd_ctx
->lsm
->session
.name
!= NULL
) {
2233 ret
= LTTNG_ERR_SESS_NOT_FOUND
;
2235 /* If no session name specified */
2236 ret
= LTTNG_ERR_SELECT_SESS
;
2240 /* Acquire lock for the session */
2241 session_lock(cmd_ctx
->session
);
2251 * Check domain type for specific "pre-action".
2253 switch (cmd_ctx
->lsm
->domain
.type
) {
2254 case LTTNG_DOMAIN_KERNEL
:
2256 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
2260 /* Kernel tracer check */
2261 if (kernel_tracer_fd
== -1) {
2262 /* Basically, load kernel tracer modules */
2263 ret
= init_kernel_tracer();
2269 /* Consumer is in an ERROR state. Report back to client */
2270 if (uatomic_read(&kernel_consumerd_state
) == CONSUMER_ERROR
) {
2271 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
2275 /* Need a session for kernel command */
2276 if (need_tracing_session
) {
2277 if (cmd_ctx
->session
->kernel_session
== NULL
) {
2278 ret
= create_kernel_session(cmd_ctx
->session
);
2280 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
2285 /* Start the kernel consumer daemon */
2286 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
2287 if (kconsumer_data
.pid
== 0 &&
2288 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
&&
2289 cmd_ctx
->session
->start_consumer
) {
2290 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2291 ret
= start_consumerd(&kconsumer_data
);
2293 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2296 uatomic_set(&kernel_consumerd_state
, CONSUMER_STARTED
);
2298 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2302 * The consumer was just spawned so we need to add the socket to
2303 * the consumer output of the session if exist.
2305 ret
= consumer_create_socket(&kconsumer_data
,
2306 cmd_ctx
->session
->kernel_session
->consumer
);
2313 case LTTNG_DOMAIN_UST
:
2315 /* Consumer is in an ERROR state. Report back to client */
2316 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
2317 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
2321 if (need_tracing_session
) {
2322 /* Create UST session if none exist. */
2323 if (cmd_ctx
->session
->ust_session
== NULL
) {
2324 ret
= create_ust_session(cmd_ctx
->session
,
2325 &cmd_ctx
->lsm
->domain
);
2326 if (ret
!= LTTNG_OK
) {
2331 /* Start the UST consumer daemons */
2333 pthread_mutex_lock(&ustconsumer64_data
.pid_mutex
);
2334 if (consumerd64_bin
[0] != '\0' &&
2335 ustconsumer64_data
.pid
== 0 &&
2336 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
&&
2337 cmd_ctx
->session
->start_consumer
) {
2338 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
2339 ret
= start_consumerd(&ustconsumer64_data
);
2341 ret
= LTTNG_ERR_UST_CONSUMER64_FAIL
;
2342 uatomic_set(&ust_consumerd64_fd
, -EINVAL
);
2346 uatomic_set(&ust_consumerd64_fd
, ustconsumer64_data
.cmd_sock
);
2347 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
2349 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
2353 * Setup socket for consumer 64 bit. No need for atomic access
2354 * since it was set above and can ONLY be set in this thread.
2356 ret
= consumer_create_socket(&ustconsumer64_data
,
2357 cmd_ctx
->session
->ust_session
->consumer
);
2363 if (consumerd32_bin
[0] != '\0' &&
2364 ustconsumer32_data
.pid
== 0 &&
2365 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
&&
2366 cmd_ctx
->session
->start_consumer
) {
2367 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
2368 ret
= start_consumerd(&ustconsumer32_data
);
2370 ret
= LTTNG_ERR_UST_CONSUMER32_FAIL
;
2371 uatomic_set(&ust_consumerd32_fd
, -EINVAL
);
2375 uatomic_set(&ust_consumerd32_fd
, ustconsumer32_data
.cmd_sock
);
2376 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
2378 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
2382 * Setup socket for consumer 64 bit. No need for atomic access
2383 * since it was set above and can ONLY be set in this thread.
2385 ret
= consumer_create_socket(&ustconsumer32_data
,
2386 cmd_ctx
->session
->ust_session
->consumer
);
2398 /* Validate consumer daemon state when start/stop trace command */
2399 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_START_TRACE
||
2400 cmd_ctx
->lsm
->cmd_type
== LTTNG_STOP_TRACE
) {
2401 switch (cmd_ctx
->lsm
->domain
.type
) {
2402 case LTTNG_DOMAIN_UST
:
2403 if (uatomic_read(&ust_consumerd_state
) != CONSUMER_STARTED
) {
2404 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
2408 case LTTNG_DOMAIN_KERNEL
:
2409 if (uatomic_read(&kernel_consumerd_state
) != CONSUMER_STARTED
) {
2410 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
2418 * Check that the UID or GID match that of the tracing session.
2419 * The root user can interact with all sessions.
2421 if (need_tracing_session
) {
2422 if (!session_access_ok(cmd_ctx
->session
,
2423 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
2424 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
))) {
2425 ret
= LTTNG_ERR_EPERM
;
2430 /* Process by command type */
2431 switch (cmd_ctx
->lsm
->cmd_type
) {
2432 case LTTNG_ADD_CONTEXT
:
2434 ret
= cmd_add_context(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2435 cmd_ctx
->lsm
->u
.context
.channel_name
,
2436 cmd_ctx
->lsm
->u
.context
.event_name
,
2437 &cmd_ctx
->lsm
->u
.context
.ctx
, kernel_poll_pipe
[1]);
2440 case LTTNG_DISABLE_CHANNEL
:
2442 ret
= cmd_disable_channel(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2443 cmd_ctx
->lsm
->u
.disable
.channel_name
);
2446 case LTTNG_DISABLE_EVENT
:
2448 ret
= cmd_disable_event(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2449 cmd_ctx
->lsm
->u
.disable
.channel_name
,
2450 cmd_ctx
->lsm
->u
.disable
.name
);
2453 case LTTNG_DISABLE_ALL_EVENT
:
2455 DBG("Disabling all events");
2457 ret
= cmd_disable_event_all(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2458 cmd_ctx
->lsm
->u
.disable
.channel_name
);
2461 case LTTNG_DISABLE_CONSUMER
:
2463 ret
= cmd_disable_consumer(cmd_ctx
->lsm
->domain
.type
, cmd_ctx
->session
);
2466 case LTTNG_ENABLE_CHANNEL
:
2468 ret
= cmd_enable_channel(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2469 &cmd_ctx
->lsm
->u
.channel
.chan
, kernel_poll_pipe
[1]);
2472 case LTTNG_ENABLE_CONSUMER
:
2475 * XXX: 0 means that this URI should be applied on the session. Should
2476 * be a DOMAIN enuam.
2478 ret
= cmd_enable_consumer(cmd_ctx
->lsm
->domain
.type
, cmd_ctx
->session
);
2479 if (ret
!= LTTNG_OK
) {
2483 if (cmd_ctx
->lsm
->domain
.type
== 0) {
2484 /* Add the URI for the UST session if a consumer is present. */
2485 if (cmd_ctx
->session
->ust_session
&&
2486 cmd_ctx
->session
->ust_session
->consumer
) {
2487 ret
= cmd_enable_consumer(LTTNG_DOMAIN_UST
, cmd_ctx
->session
);
2488 } else if (cmd_ctx
->session
->kernel_session
&&
2489 cmd_ctx
->session
->kernel_session
->consumer
) {
2490 ret
= cmd_enable_consumer(LTTNG_DOMAIN_KERNEL
,
2496 case LTTNG_ENABLE_EVENT
:
2498 ret
= cmd_enable_event(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2499 cmd_ctx
->lsm
->u
.enable
.channel_name
,
2500 &cmd_ctx
->lsm
->u
.enable
.event
, kernel_poll_pipe
[1]);
2503 case LTTNG_ENABLE_ALL_EVENT
:
2505 DBG("Enabling all events");
2507 ret
= cmd_enable_event_all(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2508 cmd_ctx
->lsm
->u
.enable
.channel_name
,
2509 cmd_ctx
->lsm
->u
.enable
.event
.type
, kernel_poll_pipe
[1]);
2512 case LTTNG_LIST_TRACEPOINTS
:
2514 struct lttng_event
*events
;
2517 nb_events
= cmd_list_tracepoints(cmd_ctx
->lsm
->domain
.type
, &events
);
2518 if (nb_events
< 0) {
2519 /* Return value is a negative lttng_error_code. */
2525 * Setup lttng message with payload size set to the event list size in
2526 * bytes and then copy list into the llm payload.
2528 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_event
) * nb_events
);
2534 /* Copy event list into message payload */
2535 memcpy(cmd_ctx
->llm
->payload
, events
,
2536 sizeof(struct lttng_event
) * nb_events
);
2543 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2545 struct lttng_event_field
*fields
;
2548 nb_fields
= cmd_list_tracepoint_fields(cmd_ctx
->lsm
->domain
.type
,
2550 if (nb_fields
< 0) {
2551 /* Return value is a negative lttng_error_code. */
2557 * Setup lttng message with payload size set to the event list size in
2558 * bytes and then copy list into the llm payload.
2560 ret
= setup_lttng_msg(cmd_ctx
,
2561 sizeof(struct lttng_event_field
) * nb_fields
);
2567 /* Copy event list into message payload */
2568 memcpy(cmd_ctx
->llm
->payload
, fields
,
2569 sizeof(struct lttng_event_field
) * nb_fields
);
2576 case LTTNG_SET_CONSUMER_URI
:
2579 struct lttng_uri
*uris
;
2581 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
2582 len
= nb_uri
* sizeof(struct lttng_uri
);
2585 ret
= LTTNG_ERR_INVALID
;
2589 uris
= zmalloc(len
);
2591 ret
= LTTNG_ERR_FATAL
;
2595 /* Receive variable len data */
2596 DBG("Receiving %zu URI(s) from client ...", nb_uri
);
2597 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
2599 DBG("No URIs received from client... continuing");
2601 ret
= LTTNG_ERR_SESSION_FAIL
;
2606 ret
= cmd_set_consumer_uri(cmd_ctx
->lsm
->domain
.type
, cmd_ctx
->session
,
2608 if (ret
!= LTTNG_OK
) {
2614 * XXX: 0 means that this URI should be applied on the session. Should
2615 * be a DOMAIN enuam.
2617 if (cmd_ctx
->lsm
->domain
.type
== 0) {
2618 /* Add the URI for the UST session if a consumer is present. */
2619 if (cmd_ctx
->session
->ust_session
&&
2620 cmd_ctx
->session
->ust_session
->consumer
) {
2621 ret
= cmd_set_consumer_uri(LTTNG_DOMAIN_UST
, cmd_ctx
->session
,
2623 } else if (cmd_ctx
->session
->kernel_session
&&
2624 cmd_ctx
->session
->kernel_session
->consumer
) {
2625 ret
= cmd_set_consumer_uri(LTTNG_DOMAIN_KERNEL
,
2626 cmd_ctx
->session
, nb_uri
, uris
);
2634 case LTTNG_START_TRACE
:
2636 ret
= cmd_start_trace(cmd_ctx
->session
);
2639 case LTTNG_STOP_TRACE
:
2641 ret
= cmd_stop_trace(cmd_ctx
->session
);
2644 case LTTNG_CREATE_SESSION
:
2647 struct lttng_uri
*uris
= NULL
;
2649 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
2650 len
= nb_uri
* sizeof(struct lttng_uri
);
2653 uris
= zmalloc(len
);
2655 ret
= LTTNG_ERR_FATAL
;
2659 /* Receive variable len data */
2660 DBG("Waiting for %zu URIs from client ...", nb_uri
);
2661 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
2663 DBG("No URIs received from client... continuing");
2665 ret
= LTTNG_ERR_SESSION_FAIL
;
2670 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
2671 DBG("Creating session with ONE network URI is a bad call");
2672 ret
= LTTNG_ERR_SESSION_FAIL
;
2678 ret
= cmd_create_session_uri(cmd_ctx
->lsm
->session
.name
, uris
, nb_uri
,
2685 case LTTNG_DESTROY_SESSION
:
2687 ret
= cmd_destroy_session(cmd_ctx
->session
, kernel_poll_pipe
[1]);
2689 /* Set session to NULL so we do not unlock it after free. */
2690 cmd_ctx
->session
= NULL
;
2693 case LTTNG_LIST_DOMAINS
:
2696 struct lttng_domain
*domains
;
2698 nb_dom
= cmd_list_domains(cmd_ctx
->session
, &domains
);
2700 /* Return value is a negative lttng_error_code. */
2705 ret
= setup_lttng_msg(cmd_ctx
, nb_dom
* sizeof(struct lttng_domain
));
2710 /* Copy event list into message payload */
2711 memcpy(cmd_ctx
->llm
->payload
, domains
,
2712 nb_dom
* sizeof(struct lttng_domain
));
2719 case LTTNG_LIST_CHANNELS
:
2722 struct lttng_channel
*channels
;
2724 nb_chan
= cmd_list_channels(cmd_ctx
->lsm
->domain
.type
,
2725 cmd_ctx
->session
, &channels
);
2727 /* Return value is a negative lttng_error_code. */
2732 ret
= setup_lttng_msg(cmd_ctx
, nb_chan
* sizeof(struct lttng_channel
));
2737 /* Copy event list into message payload */
2738 memcpy(cmd_ctx
->llm
->payload
, channels
,
2739 nb_chan
* sizeof(struct lttng_channel
));
2746 case LTTNG_LIST_EVENTS
:
2749 struct lttng_event
*events
= NULL
;
2751 nb_event
= cmd_list_events(cmd_ctx
->lsm
->domain
.type
, cmd_ctx
->session
,
2752 cmd_ctx
->lsm
->u
.list
.channel_name
, &events
);
2754 /* Return value is a negative lttng_error_code. */
2759 ret
= setup_lttng_msg(cmd_ctx
, nb_event
* sizeof(struct lttng_event
));
2764 /* Copy event list into message payload */
2765 memcpy(cmd_ctx
->llm
->payload
, events
,
2766 nb_event
* sizeof(struct lttng_event
));
2773 case LTTNG_LIST_SESSIONS
:
2775 unsigned int nr_sessions
;
2777 session_lock_list();
2778 nr_sessions
= lttng_sessions_count(
2779 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
2780 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
2782 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_session
) * nr_sessions
);
2784 session_unlock_list();
2788 /* Filled the session array */
2789 cmd_list_lttng_sessions((struct lttng_session
*)(cmd_ctx
->llm
->payload
),
2790 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
2791 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
2793 session_unlock_list();
2798 case LTTNG_CALIBRATE
:
2800 ret
= cmd_calibrate(cmd_ctx
->lsm
->domain
.type
,
2801 &cmd_ctx
->lsm
->u
.calibrate
);
2804 case LTTNG_REGISTER_CONSUMER
:
2806 struct consumer_data
*cdata
;
2808 switch (cmd_ctx
->lsm
->domain
.type
) {
2809 case LTTNG_DOMAIN_KERNEL
:
2810 cdata
= &kconsumer_data
;
2813 ret
= LTTNG_ERR_UND
;
2817 ret
= cmd_register_consumer(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2818 cmd_ctx
->lsm
->u
.reg
.path
, cdata
);
2821 case LTTNG_SET_FILTER
:
2823 struct lttng_filter_bytecode
*bytecode
;
2825 if (cmd_ctx
->lsm
->u
.filter
.bytecode_len
> LTTNG_FILTER_MAX_LEN
) {
2826 ret
= LTTNG_ERR_FILTER_INVAL
;
2829 bytecode
= zmalloc(cmd_ctx
->lsm
->u
.filter
.bytecode_len
);
2831 ret
= LTTNG_ERR_FILTER_NOMEM
;
2834 /* Receive var. len. data */
2835 DBG("Receiving var len data from client ...");
2836 ret
= lttcomm_recv_unix_sock(sock
, bytecode
,
2837 cmd_ctx
->lsm
->u
.filter
.bytecode_len
);
2839 DBG("Nothing recv() from client var len data... continuing");
2841 ret
= LTTNG_ERR_FILTER_INVAL
;
2845 if (bytecode
->len
+ sizeof(*bytecode
)
2846 != cmd_ctx
->lsm
->u
.filter
.bytecode_len
) {
2848 ret
= LTTNG_ERR_FILTER_INVAL
;
2852 ret
= cmd_set_filter(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2853 cmd_ctx
->lsm
->u
.filter
.channel_name
,
2854 cmd_ctx
->lsm
->u
.filter
.event_name
,
2858 case LTTNG_DATA_PENDING
:
2860 ret
= cmd_data_pending(cmd_ctx
->session
);
2864 ret
= LTTNG_ERR_UND
;
2869 if (cmd_ctx
->llm
== NULL
) {
2870 DBG("Missing llm structure. Allocating one.");
2871 if (setup_lttng_msg(cmd_ctx
, 0) < 0) {
2875 /* Set return code */
2876 cmd_ctx
->llm
->ret_code
= ret
;
2878 if (cmd_ctx
->session
) {
2879 session_unlock(cmd_ctx
->session
);
2881 if (need_tracing_session
) {
2882 session_unlock_list();
2889 * Thread managing health check socket.
2891 static void *thread_manage_health(void *data
)
2893 int sock
= -1, new_sock
= -1, ret
, i
, pollfd
, err
= -1;
2894 uint32_t revents
, nb_fd
;
2895 struct lttng_poll_event events
;
2896 struct lttcomm_health_msg msg
;
2897 struct lttcomm_health_data reply
;
2899 DBG("[thread] Manage health check started");
2901 rcu_register_thread();
2903 /* Create unix socket */
2904 sock
= lttcomm_create_unix_sock(health_unix_sock_path
);
2906 ERR("Unable to create health check Unix socket");
2912 * Set the CLOEXEC flag. Return code is useless because either way, the
2915 (void) utils_set_fd_cloexec(sock
);
2917 ret
= lttcomm_listen_unix_sock(sock
);
2923 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
2924 * more will be added to this poll set.
2926 ret
= create_thread_poll_set(&events
, 2);
2931 /* Add the application registration socket */
2932 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLPRI
);
2938 DBG("Health check ready");
2940 nb_fd
= LTTNG_POLL_GETNB(&events
);
2942 /* Inifinite blocking call, waiting for transmission */
2944 ret
= lttng_poll_wait(&events
, -1);
2947 * Restart interrupted system call.
2949 if (errno
== EINTR
) {
2955 for (i
= 0; i
< nb_fd
; i
++) {
2956 /* Fetch once the poll data */
2957 revents
= LTTNG_POLL_GETEV(&events
, i
);
2958 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2960 /* Thread quit pipe has been closed. Killing thread. */
2961 ret
= check_thread_quit_pipe(pollfd
, revents
);
2967 /* Event on the registration socket */
2968 if (pollfd
== sock
) {
2969 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2970 ERR("Health socket poll error");
2976 new_sock
= lttcomm_accept_unix_sock(sock
);
2982 * Set the CLOEXEC flag. Return code is useless because either way, the
2985 (void) utils_set_fd_cloexec(new_sock
);
2987 DBG("Receiving data from client for health...");
2988 ret
= lttcomm_recv_unix_sock(new_sock
, (void *)&msg
, sizeof(msg
));
2990 DBG("Nothing recv() from client... continuing");
2991 ret
= close(new_sock
);
2999 rcu_thread_online();
3001 switch (msg
.component
) {
3002 case LTTNG_HEALTH_CMD
:
3003 reply
.ret_code
= health_check_state(&health_thread_cmd
);
3005 case LTTNG_HEALTH_APP_MANAGE
:
3006 reply
.ret_code
= health_check_state(&health_thread_app_manage
);
3008 case LTTNG_HEALTH_APP_REG
:
3009 reply
.ret_code
= health_check_state(&health_thread_app_reg
);
3011 case LTTNG_HEALTH_KERNEL
:
3012 reply
.ret_code
= health_check_state(&health_thread_kernel
);
3014 case LTTNG_HEALTH_CONSUMER
:
3015 reply
.ret_code
= check_consumer_health();
3017 case LTTNG_HEALTH_ALL
:
3019 health_check_state(&health_thread_app_manage
) &&
3020 health_check_state(&health_thread_app_reg
) &&
3021 health_check_state(&health_thread_cmd
) &&
3022 health_check_state(&health_thread_kernel
) &&
3023 check_consumer_health();
3026 reply
.ret_code
= LTTNG_ERR_UND
;
3031 * Flip ret value since 0 is a success and 1 indicates a bad health for
3032 * the client where in the sessiond it is the opposite. Again, this is
3033 * just to make things easier for us poor developer which enjoy a lot
3036 if (reply
.ret_code
== 0 || reply
.ret_code
== 1) {
3037 reply
.ret_code
= !reply
.ret_code
;
3040 DBG2("Health check return value %d", reply
.ret_code
);
3042 ret
= send_unix_sock(new_sock
, (void *) &reply
, sizeof(reply
));
3044 ERR("Failed to send health data back to client");
3047 /* End of transmission */
3048 ret
= close(new_sock
);
3058 ERR("Health error occurred in %s", __func__
);
3060 DBG("Health check thread dying");
3061 unlink(health_unix_sock_path
);
3068 if (new_sock
>= 0) {
3069 ret
= close(new_sock
);
3075 lttng_poll_clean(&events
);
3077 rcu_unregister_thread();
3082 * This thread manage all clients request using the unix client socket for
3085 static void *thread_manage_clients(void *data
)
3087 int sock
= -1, ret
, i
, pollfd
, err
= -1;
3089 uint32_t revents
, nb_fd
;
3090 struct command_ctx
*cmd_ctx
= NULL
;
3091 struct lttng_poll_event events
;
3093 DBG("[thread] Manage client started");
3095 testpoint(thread_manage_clients
);
3097 rcu_register_thread();
3099 health_code_update(&health_thread_cmd
);
3101 ret
= lttcomm_listen_unix_sock(client_sock
);
3107 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
3108 * more will be added to this poll set.
3110 ret
= create_thread_poll_set(&events
, 2);
3115 /* Add the application registration socket */
3116 ret
= lttng_poll_add(&events
, client_sock
, LPOLLIN
| LPOLLPRI
);
3122 * Notify parent pid that we are ready to accept command for client side.
3124 if (opt_sig_parent
) {
3125 kill(ppid
, SIGUSR1
);
3128 testpoint(thread_manage_clients_before_loop
);
3130 health_code_update(&health_thread_cmd
);
3133 DBG("Accepting client command ...");
3135 nb_fd
= LTTNG_POLL_GETNB(&events
);
3137 /* Inifinite blocking call, waiting for transmission */
3139 health_poll_update(&health_thread_cmd
);
3140 ret
= lttng_poll_wait(&events
, -1);
3141 health_poll_update(&health_thread_cmd
);
3144 * Restart interrupted system call.
3146 if (errno
== EINTR
) {
3152 for (i
= 0; i
< nb_fd
; i
++) {
3153 /* Fetch once the poll data */
3154 revents
= LTTNG_POLL_GETEV(&events
, i
);
3155 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3157 health_code_update(&health_thread_cmd
);
3159 /* Thread quit pipe has been closed. Killing thread. */
3160 ret
= check_thread_quit_pipe(pollfd
, revents
);
3166 /* Event on the registration socket */
3167 if (pollfd
== client_sock
) {
3168 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3169 ERR("Client socket poll error");
3175 DBG("Wait for client response");
3177 health_code_update(&health_thread_cmd
);
3179 sock
= lttcomm_accept_unix_sock(client_sock
);
3185 * Set the CLOEXEC flag. Return code is useless because either way, the
3188 (void) utils_set_fd_cloexec(sock
);
3190 /* Set socket option for credentials retrieval */
3191 ret
= lttcomm_setsockopt_creds_unix_sock(sock
);
3196 /* Allocate context command to process the client request */
3197 cmd_ctx
= zmalloc(sizeof(struct command_ctx
));
3198 if (cmd_ctx
== NULL
) {
3199 PERROR("zmalloc cmd_ctx");
3203 /* Allocate data buffer for reception */
3204 cmd_ctx
->lsm
= zmalloc(sizeof(struct lttcomm_session_msg
));
3205 if (cmd_ctx
->lsm
== NULL
) {
3206 PERROR("zmalloc cmd_ctx->lsm");
3210 cmd_ctx
->llm
= NULL
;
3211 cmd_ctx
->session
= NULL
;
3213 health_code_update(&health_thread_cmd
);
3216 * Data is received from the lttng client. The struct
3217 * lttcomm_session_msg (lsm) contains the command and data request of
3220 DBG("Receiving data from client ...");
3221 ret
= lttcomm_recv_creds_unix_sock(sock
, cmd_ctx
->lsm
,
3222 sizeof(struct lttcomm_session_msg
), &cmd_ctx
->creds
);
3224 DBG("Nothing recv() from client... continuing");
3230 clean_command_ctx(&cmd_ctx
);
3234 health_code_update(&health_thread_cmd
);
3236 // TODO: Validate cmd_ctx including sanity check for
3237 // security purpose.
3239 rcu_thread_online();
3241 * This function dispatch the work to the kernel or userspace tracer
3242 * libs and fill the lttcomm_lttng_msg data structure of all the needed
3243 * informations for the client. The command context struct contains
3244 * everything this function may needs.
3246 ret
= process_client_msg(cmd_ctx
, sock
, &sock_error
);
3247 rcu_thread_offline();
3257 * TODO: Inform client somehow of the fatal error. At
3258 * this point, ret < 0 means that a zmalloc failed
3259 * (ENOMEM). Error detected but still accept
3260 * command, unless a socket error has been
3263 clean_command_ctx(&cmd_ctx
);
3267 health_code_update(&health_thread_cmd
);
3269 DBG("Sending response (size: %d, retcode: %s)",
3270 cmd_ctx
->lttng_msg_size
,
3271 lttng_strerror(-cmd_ctx
->llm
->ret_code
));
3272 ret
= send_unix_sock(sock
, cmd_ctx
->llm
, cmd_ctx
->lttng_msg_size
);
3274 ERR("Failed to send data back to client");
3277 /* End of transmission */
3284 clean_command_ctx(&cmd_ctx
);
3286 health_code_update(&health_thread_cmd
);
3292 health_error(&health_thread_cmd
);
3293 ERR("Health error occurred in %s", __func__
);
3295 health_exit(&health_thread_cmd
);
3297 DBG("Client thread dying");
3298 unlink(client_unix_sock_path
);
3299 if (client_sock
>= 0) {
3300 ret
= close(client_sock
);
3312 lttng_poll_clean(&events
);
3313 clean_command_ctx(&cmd_ctx
);
3315 rcu_unregister_thread();
3321 * usage function on stderr
3323 static void usage(void)
3325 fprintf(stderr
, "Usage: %s OPTIONS\n\nOptions:\n", progname
);
3326 fprintf(stderr
, " -h, --help Display this usage.\n");
3327 fprintf(stderr
, " -c, --client-sock PATH Specify path for the client unix socket\n");
3328 fprintf(stderr
, " -a, --apps-sock PATH Specify path for apps unix socket\n");
3329 fprintf(stderr
, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
3330 fprintf(stderr
, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
3331 fprintf(stderr
, " --ustconsumerd32-err-sock PATH Specify path for the 32-bit UST consumer error socket\n");
3332 fprintf(stderr
, " --ustconsumerd64-err-sock PATH Specify path for the 64-bit UST consumer error socket\n");
3333 fprintf(stderr
, " --ustconsumerd32-cmd-sock PATH Specify path for the 32-bit UST consumer command socket\n");
3334 fprintf(stderr
, " --ustconsumerd64-cmd-sock PATH Specify path for the 64-bit UST consumer command socket\n");
3335 fprintf(stderr
, " --consumerd32-path PATH Specify path for the 32-bit UST consumer daemon binary\n");
3336 fprintf(stderr
, " --consumerd32-libdir PATH Specify path for the 32-bit UST consumer daemon libraries\n");
3337 fprintf(stderr
, " --consumerd64-path PATH Specify path for the 64-bit UST consumer daemon binary\n");
3338 fprintf(stderr
, " --consumerd64-libdir PATH Specify path for the 64-bit UST consumer daemon libraries\n");
3339 fprintf(stderr
, " -d, --daemonize Start as a daemon.\n");
3340 fprintf(stderr
, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
3341 fprintf(stderr
, " -V, --version Show version number.\n");
3342 fprintf(stderr
, " -S, --sig-parent Send SIGCHLD to parent pid to notify readiness.\n");
3343 fprintf(stderr
, " -q, --quiet No output at all.\n");
3344 fprintf(stderr
, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
3345 fprintf(stderr
, " --verbose-consumer Verbose mode for consumer. Activate DBG() macro.\n");
3346 fprintf(stderr
, " --no-kernel Disable kernel tracer\n");
3350 * daemon argument parsing
3352 static int parse_args(int argc
, char **argv
)
3356 static struct option long_options
[] = {
3357 { "client-sock", 1, 0, 'c' },
3358 { "apps-sock", 1, 0, 'a' },
3359 { "kconsumerd-cmd-sock", 1, 0, 'C' },
3360 { "kconsumerd-err-sock", 1, 0, 'E' },
3361 { "ustconsumerd32-cmd-sock", 1, 0, 'G' },
3362 { "ustconsumerd32-err-sock", 1, 0, 'H' },
3363 { "ustconsumerd64-cmd-sock", 1, 0, 'D' },
3364 { "ustconsumerd64-err-sock", 1, 0, 'F' },
3365 { "consumerd32-path", 1, 0, 'u' },
3366 { "consumerd32-libdir", 1, 0, 'U' },
3367 { "consumerd64-path", 1, 0, 't' },
3368 { "consumerd64-libdir", 1, 0, 'T' },
3369 { "daemonize", 0, 0, 'd' },
3370 { "sig-parent", 0, 0, 'S' },
3371 { "help", 0, 0, 'h' },
3372 { "group", 1, 0, 'g' },
3373 { "version", 0, 0, 'V' },
3374 { "quiet", 0, 0, 'q' },
3375 { "verbose", 0, 0, 'v' },
3376 { "verbose-consumer", 0, 0, 'Z' },
3377 { "no-kernel", 0, 0, 'N' },
3382 int option_index
= 0;
3383 c
= getopt_long(argc
, argv
, "dhqvVSN" "a:c:g:s:C:E:D:F:Z:u:t",
3384 long_options
, &option_index
);
3391 fprintf(stderr
, "option %s", long_options
[option_index
].name
);
3393 fprintf(stderr
, " with arg %s\n", optarg
);
3397 snprintf(client_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3400 snprintf(apps_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3406 opt_tracing_group
= optarg
;
3412 fprintf(stdout
, "%s\n", VERSION
);
3418 snprintf(kconsumer_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3421 snprintf(kconsumer_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3424 snprintf(ustconsumer64_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3427 snprintf(ustconsumer64_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3430 snprintf(ustconsumer32_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3433 snprintf(ustconsumer32_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3439 lttng_opt_quiet
= 1;
3442 /* Verbose level can increase using multiple -v */
3443 lttng_opt_verbose
+= 1;
3446 opt_verbose_consumer
+= 1;
3449 consumerd32_bin
= optarg
;
3452 consumerd32_libdir
= optarg
;
3455 consumerd64_bin
= optarg
;
3458 consumerd64_libdir
= optarg
;
3461 /* Unknown option or other error.
3462 * Error is printed by getopt, just return */
3471 * Creates the two needed socket by the daemon.
3472 * apps_sock - The communication socket for all UST apps.
3473 * client_sock - The communication of the cli tool (lttng).
3475 static int init_daemon_socket(void)
3480 old_umask
= umask(0);
3482 /* Create client tool unix socket */
3483 client_sock
= lttcomm_create_unix_sock(client_unix_sock_path
);
3484 if (client_sock
< 0) {
3485 ERR("Create unix sock failed: %s", client_unix_sock_path
);
3490 /* Set the cloexec flag */
3491 ret
= utils_set_fd_cloexec(client_sock
);
3493 ERR("Unable to set CLOEXEC flag to the client Unix socket (fd: %d). "
3494 "Continuing but note that the consumer daemon will have a "
3495 "reference to this socket on exec()", client_sock
);
3498 /* File permission MUST be 660 */
3499 ret
= chmod(client_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
3501 ERR("Set file permissions failed: %s", client_unix_sock_path
);
3506 /* Create the application unix socket */
3507 apps_sock
= lttcomm_create_unix_sock(apps_unix_sock_path
);
3508 if (apps_sock
< 0) {
3509 ERR("Create unix sock failed: %s", apps_unix_sock_path
);
3514 /* Set the cloexec flag */
3515 ret
= utils_set_fd_cloexec(apps_sock
);
3517 ERR("Unable to set CLOEXEC flag to the app Unix socket (fd: %d). "
3518 "Continuing but note that the consumer daemon will have a "
3519 "reference to this socket on exec()", apps_sock
);
3522 /* File permission MUST be 666 */
3523 ret
= chmod(apps_unix_sock_path
,
3524 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IROTH
| S_IWOTH
);
3526 ERR("Set file permissions failed: %s", apps_unix_sock_path
);
3531 DBG3("Session daemon client socket %d and application socket %d created",
3532 client_sock
, apps_sock
);
3540 * Check if the global socket is available, and if a daemon is answering at the
3541 * other side. If yes, error is returned.
3543 static int check_existing_daemon(void)
3545 /* Is there anybody out there ? */
3546 if (lttng_session_daemon_alive()) {
3554 * Set the tracing group gid onto the client socket.
3556 * Race window between mkdir and chown is OK because we are going from more
3557 * permissive (root.root) to less permissive (root.tracing).
3559 static int set_permissions(char *rundir
)
3564 ret
= allowed_group();
3566 WARN("No tracing group detected");
3573 /* Set lttng run dir */
3574 ret
= chown(rundir
, 0, gid
);
3576 ERR("Unable to set group on %s", rundir
);
3580 /* Ensure tracing group can search the run dir */
3581 ret
= chmod(rundir
, S_IRWXU
| S_IXGRP
| S_IXOTH
);
3583 ERR("Unable to set permissions on %s", rundir
);
3587 /* lttng client socket path */
3588 ret
= chown(client_unix_sock_path
, 0, gid
);
3590 ERR("Unable to set group on %s", client_unix_sock_path
);
3594 /* kconsumer error socket path */
3595 ret
= chown(kconsumer_data
.err_unix_sock_path
, 0, gid
);
3597 ERR("Unable to set group on %s", kconsumer_data
.err_unix_sock_path
);
3601 /* 64-bit ustconsumer error socket path */
3602 ret
= chown(ustconsumer64_data
.err_unix_sock_path
, 0, gid
);
3604 ERR("Unable to set group on %s", ustconsumer64_data
.err_unix_sock_path
);
3608 /* 32-bit ustconsumer compat32 error socket path */
3609 ret
= chown(ustconsumer32_data
.err_unix_sock_path
, 0, gid
);
3611 ERR("Unable to set group on %s", ustconsumer32_data
.err_unix_sock_path
);
3615 DBG("All permissions are set");
3622 * Create the lttng run directory needed for all global sockets and pipe.
3624 static int create_lttng_rundir(const char *rundir
)
3628 DBG3("Creating LTTng run directory: %s", rundir
);
3630 ret
= mkdir(rundir
, S_IRWXU
);
3632 if (errno
!= EEXIST
) {
3633 ERR("Unable to create %s", rundir
);
3645 * Setup sockets and directory needed by the kconsumerd communication with the
3648 static int set_consumer_sockets(struct consumer_data
*consumer_data
,
3652 char path
[PATH_MAX
];
3654 switch (consumer_data
->type
) {
3655 case LTTNG_CONSUMER_KERNEL
:
3656 snprintf(path
, PATH_MAX
, DEFAULT_KCONSUMERD_PATH
, rundir
);
3658 case LTTNG_CONSUMER64_UST
:
3659 snprintf(path
, PATH_MAX
, DEFAULT_USTCONSUMERD64_PATH
, rundir
);
3661 case LTTNG_CONSUMER32_UST
:
3662 snprintf(path
, PATH_MAX
, DEFAULT_USTCONSUMERD32_PATH
, rundir
);
3665 ERR("Consumer type unknown");
3670 DBG2("Creating consumer directory: %s", path
);
3672 ret
= mkdir(path
, S_IRWXU
);
3674 if (errno
!= EEXIST
) {
3676 ERR("Failed to create %s", path
);
3682 /* Create the kconsumerd error unix socket */
3683 consumer_data
->err_sock
=
3684 lttcomm_create_unix_sock(consumer_data
->err_unix_sock_path
);
3685 if (consumer_data
->err_sock
< 0) {
3686 ERR("Create unix sock failed: %s", consumer_data
->err_unix_sock_path
);
3691 /* File permission MUST be 660 */
3692 ret
= chmod(consumer_data
->err_unix_sock_path
,
3693 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
3695 ERR("Set file permissions failed: %s", consumer_data
->err_unix_sock_path
);
3705 * Signal handler for the daemon
3707 * Simply stop all worker threads, leaving main() return gracefully after
3708 * joining all threads and calling cleanup().
3710 static void sighandler(int sig
)
3714 DBG("SIGPIPE caught");
3717 DBG("SIGINT caught");
3721 DBG("SIGTERM caught");
3730 * Setup signal handler for :
3731 * SIGINT, SIGTERM, SIGPIPE
3733 static int set_signal_handler(void)
3736 struct sigaction sa
;
3739 if ((ret
= sigemptyset(&sigset
)) < 0) {
3740 PERROR("sigemptyset");
3744 sa
.sa_handler
= sighandler
;
3745 sa
.sa_mask
= sigset
;
3747 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
3748 PERROR("sigaction");
3752 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
3753 PERROR("sigaction");
3757 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
3758 PERROR("sigaction");
3762 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
3768 * Set open files limit to unlimited. This daemon can open a large number of
3769 * file descriptors in order to consumer multiple kernel traces.
3771 static void set_ulimit(void)
3776 /* The kernel does not allowed an infinite limit for open files */
3777 lim
.rlim_cur
= 65535;
3778 lim
.rlim_max
= 65535;
3780 ret
= setrlimit(RLIMIT_NOFILE
, &lim
);
3782 PERROR("failed to set open files limit");
3789 int main(int argc
, char **argv
)
3793 const char *home_path
;
3795 init_kernel_workarounds();
3797 rcu_register_thread();
3799 setup_consumerd_path();
3801 /* Parse arguments */
3803 if ((ret
= parse_args(argc
, argv
) < 0)) {
3813 * child: setsid, close FD 0, 1, 2, chdir /
3814 * parent: exit (if fork is successful)
3822 * We are in the child. Make sure all other file
3823 * descriptors are closed, in case we are called with
3824 * more opened file descriptors than the standard ones.
3826 for (i
= 3; i
< sysconf(_SC_OPEN_MAX
); i
++) {
3831 /* Create thread quit pipe */
3832 if ((ret
= init_thread_quit_pipe()) < 0) {
3836 /* Check if daemon is UID = 0 */
3837 is_root
= !getuid();
3840 rundir
= strdup(DEFAULT_LTTNG_RUNDIR
);
3842 /* Create global run dir with root access */
3843 ret
= create_lttng_rundir(rundir
);
3848 if (strlen(apps_unix_sock_path
) == 0) {
3849 snprintf(apps_unix_sock_path
, PATH_MAX
,
3850 DEFAULT_GLOBAL_APPS_UNIX_SOCK
);
3853 if (strlen(client_unix_sock_path
) == 0) {
3854 snprintf(client_unix_sock_path
, PATH_MAX
,
3855 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK
);
3858 /* Set global SHM for ust */
3859 if (strlen(wait_shm_path
) == 0) {
3860 snprintf(wait_shm_path
, PATH_MAX
,
3861 DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH
);
3864 if (strlen(health_unix_sock_path
) == 0) {
3865 snprintf(health_unix_sock_path
, sizeof(health_unix_sock_path
),
3866 DEFAULT_GLOBAL_HEALTH_UNIX_SOCK
);
3869 /* Setup kernel consumerd path */
3870 snprintf(kconsumer_data
.err_unix_sock_path
, PATH_MAX
,
3871 DEFAULT_KCONSUMERD_ERR_SOCK_PATH
, rundir
);
3872 snprintf(kconsumer_data
.cmd_unix_sock_path
, PATH_MAX
,
3873 DEFAULT_KCONSUMERD_CMD_SOCK_PATH
, rundir
);
3875 DBG2("Kernel consumer err path: %s",
3876 kconsumer_data
.err_unix_sock_path
);
3877 DBG2("Kernel consumer cmd path: %s",
3878 kconsumer_data
.cmd_unix_sock_path
);
3880 home_path
= get_home_dir();
3881 if (home_path
== NULL
) {
3882 /* TODO: Add --socket PATH option */
3883 ERR("Can't get HOME directory for sockets creation.");
3889 * Create rundir from home path. This will create something like
3892 ret
= asprintf(&rundir
, DEFAULT_LTTNG_HOME_RUNDIR
, home_path
);
3898 ret
= create_lttng_rundir(rundir
);
3903 if (strlen(apps_unix_sock_path
) == 0) {
3904 snprintf(apps_unix_sock_path
, PATH_MAX
,
3905 DEFAULT_HOME_APPS_UNIX_SOCK
, home_path
);
3908 /* Set the cli tool unix socket path */
3909 if (strlen(client_unix_sock_path
) == 0) {
3910 snprintf(client_unix_sock_path
, PATH_MAX
,
3911 DEFAULT_HOME_CLIENT_UNIX_SOCK
, home_path
);
3914 /* Set global SHM for ust */
3915 if (strlen(wait_shm_path
) == 0) {
3916 snprintf(wait_shm_path
, PATH_MAX
,
3917 DEFAULT_HOME_APPS_WAIT_SHM_PATH
, geteuid());
3920 /* Set health check Unix path */
3921 if (strlen(health_unix_sock_path
) == 0) {
3922 snprintf(health_unix_sock_path
, sizeof(health_unix_sock_path
),
3923 DEFAULT_HOME_HEALTH_UNIX_SOCK
, home_path
);
3927 /* Set consumer initial state */
3928 kernel_consumerd_state
= CONSUMER_STOPPED
;
3929 ust_consumerd_state
= CONSUMER_STOPPED
;
3931 DBG("Client socket path %s", client_unix_sock_path
);
3932 DBG("Application socket path %s", apps_unix_sock_path
);
3933 DBG("LTTng run directory path: %s", rundir
);
3935 /* 32 bits consumerd path setup */
3936 snprintf(ustconsumer32_data
.err_unix_sock_path
, PATH_MAX
,
3937 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
, rundir
);
3938 snprintf(ustconsumer32_data
.cmd_unix_sock_path
, PATH_MAX
,
3939 DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
, rundir
);
3941 DBG2("UST consumer 32 bits err path: %s",
3942 ustconsumer32_data
.err_unix_sock_path
);
3943 DBG2("UST consumer 32 bits cmd path: %s",
3944 ustconsumer32_data
.cmd_unix_sock_path
);
3946 /* 64 bits consumerd path setup */
3947 snprintf(ustconsumer64_data
.err_unix_sock_path
, PATH_MAX
,
3948 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
, rundir
);
3949 snprintf(ustconsumer64_data
.cmd_unix_sock_path
, PATH_MAX
,
3950 DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
, rundir
);
3952 DBG2("UST consumer 64 bits err path: %s",
3953 ustconsumer64_data
.err_unix_sock_path
);
3954 DBG2("UST consumer 64 bits cmd path: %s",
3955 ustconsumer64_data
.cmd_unix_sock_path
);
3958 * See if daemon already exist.
3960 if ((ret
= check_existing_daemon()) < 0) {
3961 ERR("Already running daemon.\n");
3963 * We do not goto exit because we must not cleanup()
3964 * because a daemon is already running.
3970 * Init UST app hash table. Alloc hash table before this point since
3971 * cleanup() can get called after that point.
3975 /* After this point, we can safely call cleanup() with "goto exit" */
3978 * These actions must be executed as root. We do that *after* setting up
3979 * the sockets path because we MUST make the check for another daemon using
3980 * those paths *before* trying to set the kernel consumer sockets and init
3984 ret
= set_consumer_sockets(&kconsumer_data
, rundir
);
3989 /* Setup kernel tracer */
3990 if (!opt_no_kernel
) {
3991 init_kernel_tracer();
3994 /* Set ulimit for open files */
3997 /* init lttng_fd tracking must be done after set_ulimit. */
4000 ret
= set_consumer_sockets(&ustconsumer64_data
, rundir
);
4005 ret
= set_consumer_sockets(&ustconsumer32_data
, rundir
);
4010 if ((ret
= set_signal_handler()) < 0) {
4014 /* Setup the needed unix socket */
4015 if ((ret
= init_daemon_socket()) < 0) {
4019 /* Set credentials to socket */
4020 if (is_root
&& ((ret
= set_permissions(rundir
)) < 0)) {
4024 /* Get parent pid if -S, --sig-parent is specified. */
4025 if (opt_sig_parent
) {
4029 /* Setup the kernel pipe for waking up the kernel thread */
4030 if ((ret
= utils_create_pipe_cloexec(kernel_poll_pipe
)) < 0) {
4034 /* Setup the thread apps communication pipe. */
4035 if ((ret
= utils_create_pipe_cloexec(apps_cmd_pipe
)) < 0) {
4039 /* Init UST command queue. */
4040 cds_wfq_init(&ust_cmd_queue
.queue
);
4043 * Get session list pointer. This pointer MUST NOT be free(). This list is
4044 * statically declared in session.c
4046 session_list_ptr
= session_get_list();
4048 /* Set up max poll set size */
4049 lttng_poll_set_max_size();
4053 /* Init all health thread counters. */
4054 health_init(&health_thread_cmd
);
4055 health_init(&health_thread_kernel
);
4056 health_init(&health_thread_app_manage
);
4057 health_init(&health_thread_app_reg
);
4060 * Init health counters of the consumer thread. We do a quick hack here to
4061 * the state of the consumer health is fine even if the thread is not
4062 * started. Once the thread starts, the health state is updated with a poll
4063 * value to set a health code path. This is simply to ease our life and has
4064 * no cost what so ever.
4066 health_init(&kconsumer_data
.health
);
4067 health_poll_update(&kconsumer_data
.health
);
4068 health_init(&ustconsumer32_data
.health
);
4069 health_poll_update(&ustconsumer32_data
.health
);
4070 health_init(&ustconsumer64_data
.health
);
4071 health_poll_update(&ustconsumer64_data
.health
);
4073 /* Create thread to manage the client socket */
4074 ret
= pthread_create(&health_thread
, NULL
,
4075 thread_manage_health
, (void *) NULL
);
4077 PERROR("pthread_create health");
4081 /* Create thread to manage the client socket */
4082 ret
= pthread_create(&client_thread
, NULL
,
4083 thread_manage_clients
, (void *) NULL
);
4085 PERROR("pthread_create clients");
4089 /* Create thread to dispatch registration */
4090 ret
= pthread_create(&dispatch_thread
, NULL
,
4091 thread_dispatch_ust_registration
, (void *) NULL
);
4093 PERROR("pthread_create dispatch");
4097 /* Create thread to manage application registration. */
4098 ret
= pthread_create(®_apps_thread
, NULL
,
4099 thread_registration_apps
, (void *) NULL
);
4101 PERROR("pthread_create registration");
4105 /* Create thread to manage application socket */
4106 ret
= pthread_create(&apps_thread
, NULL
,
4107 thread_manage_apps
, (void *) NULL
);
4109 PERROR("pthread_create apps");
4113 /* Create kernel thread to manage kernel event */
4114 ret
= pthread_create(&kernel_thread
, NULL
,
4115 thread_manage_kernel
, (void *) NULL
);
4117 PERROR("pthread_create kernel");
4121 ret
= pthread_join(kernel_thread
, &status
);
4123 PERROR("pthread_join");
4124 goto error
; /* join error, exit without cleanup */
4128 ret
= pthread_join(apps_thread
, &status
);
4130 PERROR("pthread_join");
4131 goto error
; /* join error, exit without cleanup */
4135 ret
= pthread_join(reg_apps_thread
, &status
);
4137 PERROR("pthread_join");
4138 goto error
; /* join error, exit without cleanup */
4142 ret
= pthread_join(dispatch_thread
, &status
);
4144 PERROR("pthread_join");
4145 goto error
; /* join error, exit without cleanup */
4149 ret
= pthread_join(client_thread
, &status
);
4151 PERROR("pthread_join");
4152 goto error
; /* join error, exit without cleanup */
4155 ret
= join_consumer_thread(&kconsumer_data
);
4157 PERROR("join_consumer");
4158 goto error
; /* join error, exit without cleanup */
4161 ret
= join_consumer_thread(&ustconsumer32_data
);
4163 PERROR("join_consumer ust32");
4164 goto error
; /* join error, exit without cleanup */
4167 ret
= join_consumer_thread(&ustconsumer64_data
);
4169 PERROR("join_consumer ust64");
4170 goto error
; /* join error, exit without cleanup */
4174 ret
= pthread_join(health_thread
, &status
);
4176 PERROR("pthread_join health thread");
4177 goto error
; /* join error, exit without cleanup */
4183 * cleanup() is called when no other thread is running.
4185 rcu_thread_online();
4187 rcu_thread_offline();
4188 rcu_unregister_thread();