2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 #include <sys/mount.h>
31 #include <sys/resource.h>
32 #include <sys/socket.h>
34 #include <sys/types.h>
36 #include <urcu/uatomic.h>
40 #include <common/common.h>
41 #include <common/compat/socket.h>
42 #include <common/defaults.h>
43 #include <common/kernel-consumer/kernel-consumer.h>
44 #include <common/futex.h>
45 #include <common/relayd/relayd.h>
46 #include <common/utils.h>
48 #include "lttng-sessiond.h"
49 #include "buffer-registry.h"
56 #include "kernel-consumer.h"
60 #include "ust-consumer.h"
64 #include "testpoint.h"
65 #include "ust-thread.h"
67 #define CONSUMERD_FILE "lttng-consumerd"
70 const char default_tracing_group
[] = DEFAULT_TRACING_GROUP
;
73 const char *opt_tracing_group
;
74 static const char *opt_pidfile
;
75 static int opt_sig_parent
;
76 static int opt_verbose_consumer
;
77 static int opt_daemon
;
78 static int opt_no_kernel
;
79 static int is_root
; /* Set to 1 if the daemon is running as root */
80 static pid_t ppid
; /* Parent PID for --sig-parent option */
84 * Consumer daemon specific control data. Every value not initialized here is
85 * set to 0 by the static definition.
87 static struct consumer_data kconsumer_data
= {
88 .type
= LTTNG_CONSUMER_KERNEL
,
89 .err_unix_sock_path
= DEFAULT_KCONSUMERD_ERR_SOCK_PATH
,
90 .cmd_unix_sock_path
= DEFAULT_KCONSUMERD_CMD_SOCK_PATH
,
93 .metadata_sock
.fd
= -1,
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 .metadata_sock
.fd
= -1,
106 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
107 .lock
= PTHREAD_MUTEX_INITIALIZER
,
108 .cond
= PTHREAD_COND_INITIALIZER
,
109 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
111 static struct consumer_data ustconsumer32_data
= {
112 .type
= LTTNG_CONSUMER32_UST
,
113 .err_unix_sock_path
= DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
,
114 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
,
117 .metadata_sock
.fd
= -1,
118 .pid_mutex
= PTHREAD_MUTEX_INITIALIZER
,
119 .lock
= PTHREAD_MUTEX_INITIALIZER
,
120 .cond
= PTHREAD_COND_INITIALIZER
,
121 .cond_mutex
= PTHREAD_MUTEX_INITIALIZER
,
124 /* Shared between threads */
125 static int dispatch_thread_exit
;
127 /* Global application Unix socket path */
128 static char apps_unix_sock_path
[PATH_MAX
];
129 /* Global client Unix socket path */
130 static char client_unix_sock_path
[PATH_MAX
];
131 /* global wait shm path for UST */
132 static char wait_shm_path
[PATH_MAX
];
133 /* Global health check unix path */
134 static char health_unix_sock_path
[PATH_MAX
];
136 /* Sockets and FDs */
137 static int client_sock
= -1;
138 static int apps_sock
= -1;
139 int kernel_tracer_fd
= -1;
140 static int kernel_poll_pipe
[2] = { -1, -1 };
143 * Quit pipe for all threads. This permits a single cancellation point
144 * for all threads when receiving an event on the pipe.
146 static int thread_quit_pipe
[2] = { -1, -1 };
149 * This pipe is used to inform the thread managing application communication
150 * that a command is queued and ready to be processed.
152 static int apps_cmd_pipe
[2] = { -1, -1 };
154 int apps_cmd_notify_pipe
[2] = { -1, -1 };
156 /* Pthread, Mutexes and Semaphores */
157 static pthread_t apps_thread
;
158 static pthread_t apps_notify_thread
;
159 static pthread_t reg_apps_thread
;
160 static pthread_t client_thread
;
161 static pthread_t kernel_thread
;
162 static pthread_t dispatch_thread
;
163 static pthread_t health_thread
;
164 static pthread_t ht_cleanup_thread
;
167 * UST registration command queue. This queue is tied with a futex and uses a N
168 * wakers / 1 waiter implemented and detailed in futex.c/.h
170 * The thread_manage_apps and thread_dispatch_ust_registration interact with
171 * this queue and the wait/wake scheme.
173 static struct ust_cmd_queue ust_cmd_queue
;
176 * Pointer initialized before thread creation.
178 * This points to the tracing session list containing the session count and a
179 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
180 * MUST NOT be taken if you call a public function in session.c.
182 * The lock is nested inside the structure: session_list_ptr->lock. Please use
183 * session_lock_list and session_unlock_list for lock acquisition.
185 static struct ltt_session_list
*session_list_ptr
;
187 int ust_consumerd64_fd
= -1;
188 int ust_consumerd32_fd
= -1;
190 static const char *consumerd32_bin
= CONFIG_CONSUMERD32_BIN
;
191 static const char *consumerd64_bin
= CONFIG_CONSUMERD64_BIN
;
192 static const char *consumerd32_libdir
= CONFIG_CONSUMERD32_LIBDIR
;
193 static const char *consumerd64_libdir
= CONFIG_CONSUMERD64_LIBDIR
;
195 static const char *module_proc_lttng
= "/proc/lttng";
198 * Consumer daemon state which is changed when spawning it, killing it or in
199 * case of a fatal error.
201 enum consumerd_state
{
202 CONSUMER_STARTED
= 1,
203 CONSUMER_STOPPED
= 2,
208 * This consumer daemon state is used to validate if a client command will be
209 * able to reach the consumer. If not, the client is informed. For instance,
210 * doing a "lttng start" when the consumer state is set to ERROR will return an
211 * error to the client.
213 * The following example shows a possible race condition of this scheme:
215 * consumer thread error happens
217 * client cmd checks state -> still OK
218 * consumer thread exit, sets error
219 * client cmd try to talk to consumer
222 * However, since the consumer is a different daemon, we have no way of making
223 * sure the command will reach it safely even with this state flag. This is why
224 * we consider that up to the state validation during command processing, the
225 * command is safe. After that, we can not guarantee the correctness of the
226 * client request vis-a-vis the consumer.
228 static enum consumerd_state ust_consumerd_state
;
229 static enum consumerd_state kernel_consumerd_state
;
232 * Socket timeout for receiving and sending in seconds.
234 static int app_socket_timeout
;
236 /* Set in main() with the current page size. */
240 void setup_consumerd_path(void)
242 const char *bin
, *libdir
;
245 * Allow INSTALL_BIN_PATH to be used as a target path for the
246 * native architecture size consumer if CONFIG_CONSUMER*_PATH
247 * has not been defined.
249 #if (CAA_BITS_PER_LONG == 32)
250 if (!consumerd32_bin
[0]) {
251 consumerd32_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
253 if (!consumerd32_libdir
[0]) {
254 consumerd32_libdir
= INSTALL_LIB_PATH
;
256 #elif (CAA_BITS_PER_LONG == 64)
257 if (!consumerd64_bin
[0]) {
258 consumerd64_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
260 if (!consumerd64_libdir
[0]) {
261 consumerd64_libdir
= INSTALL_LIB_PATH
;
264 #error "Unknown bitness"
268 * runtime env. var. overrides the build default.
270 bin
= getenv("LTTNG_CONSUMERD32_BIN");
272 consumerd32_bin
= bin
;
274 bin
= getenv("LTTNG_CONSUMERD64_BIN");
276 consumerd64_bin
= bin
;
278 libdir
= getenv("LTTNG_CONSUMERD32_LIBDIR");
280 consumerd32_libdir
= libdir
;
282 libdir
= getenv("LTTNG_CONSUMERD64_LIBDIR");
284 consumerd64_libdir
= libdir
;
289 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
291 int sessiond_set_thread_pollset(struct lttng_poll_event
*events
, size_t size
)
297 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
303 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
| LPOLLERR
);
315 * Check if the thread quit pipe was triggered.
317 * Return 1 if it was triggered else 0;
319 int sessiond_check_thread_quit_pipe(int fd
, uint32_t events
)
321 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
329 * Return group ID of the tracing group or -1 if not found.
331 static gid_t
allowed_group(void)
335 if (opt_tracing_group
) {
336 grp
= getgrnam(opt_tracing_group
);
338 grp
= getgrnam(default_tracing_group
);
348 * Init thread quit pipe.
350 * Return -1 on error or 0 if all pipes are created.
352 static int init_thread_quit_pipe(void)
356 ret
= pipe(thread_quit_pipe
);
358 PERROR("thread quit pipe");
362 for (i
= 0; i
< 2; i
++) {
363 ret
= fcntl(thread_quit_pipe
[i
], F_SETFD
, FD_CLOEXEC
);
375 * Stop all threads by closing the thread quit pipe.
377 static void stop_threads(void)
381 /* Stopping all threads */
382 DBG("Terminating all threads");
383 ret
= notify_thread_pipe(thread_quit_pipe
[1]);
385 ERR("write error on thread quit pipe");
388 /* Dispatch thread */
389 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
390 futex_nto1_wake(&ust_cmd_queue
.futex
);
394 * Close every consumer sockets.
396 static void close_consumer_sockets(void)
400 if (kconsumer_data
.err_sock
>= 0) {
401 ret
= close(kconsumer_data
.err_sock
);
403 PERROR("kernel consumer err_sock close");
406 if (ustconsumer32_data
.err_sock
>= 0) {
407 ret
= close(ustconsumer32_data
.err_sock
);
409 PERROR("UST consumerd32 err_sock close");
412 if (ustconsumer64_data
.err_sock
>= 0) {
413 ret
= close(ustconsumer64_data
.err_sock
);
415 PERROR("UST consumerd64 err_sock close");
418 if (kconsumer_data
.cmd_sock
>= 0) {
419 ret
= close(kconsumer_data
.cmd_sock
);
421 PERROR("kernel consumer cmd_sock close");
424 if (ustconsumer32_data
.cmd_sock
>= 0) {
425 ret
= close(ustconsumer32_data
.cmd_sock
);
427 PERROR("UST consumerd32 cmd_sock close");
430 if (ustconsumer64_data
.cmd_sock
>= 0) {
431 ret
= close(ustconsumer64_data
.cmd_sock
);
433 PERROR("UST consumerd64 cmd_sock close");
441 static void cleanup(void)
445 struct ltt_session
*sess
, *stmp
;
449 /* First thing first, stop all threads */
450 utils_close_pipe(thread_quit_pipe
);
453 * If opt_pidfile is undefined, the default file will be wiped when
454 * removing the rundir.
457 ret
= remove(opt_pidfile
);
459 PERROR("remove pidfile %s", opt_pidfile
);
463 DBG("Removing %s directory", rundir
);
464 ret
= asprintf(&cmd
, "rm -rf %s", rundir
);
466 ERR("asprintf failed. Something is really wrong!");
469 /* Remove lttng run directory */
472 ERR("Unable to clean %s", rundir
);
477 DBG("Cleaning up all sessions");
479 /* Destroy session list mutex */
480 if (session_list_ptr
!= NULL
) {
481 pthread_mutex_destroy(&session_list_ptr
->lock
);
483 /* Cleanup ALL session */
484 cds_list_for_each_entry_safe(sess
, stmp
,
485 &session_list_ptr
->head
, list
) {
486 cmd_destroy_session(sess
, kernel_poll_pipe
[1]);
490 DBG("Closing all UST sockets");
491 ust_app_clean_list();
492 buffer_reg_destroy_registries();
494 if (is_root
&& !opt_no_kernel
) {
495 DBG2("Closing kernel fd");
496 if (kernel_tracer_fd
>= 0) {
497 ret
= close(kernel_tracer_fd
);
502 DBG("Unloading kernel modules");
503 modprobe_remove_lttng_all();
506 close_consumer_sockets();
509 DBG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm"
510 "Matthew, BEET driven development works!%c[%dm",
511 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
516 * Send data on a unix socket using the liblttsessiondcomm API.
518 * Return lttcomm error code.
520 static int send_unix_sock(int sock
, void *buf
, size_t len
)
522 /* Check valid length */
527 return lttcomm_send_unix_sock(sock
, buf
, len
);
531 * Free memory of a command context structure.
533 static void clean_command_ctx(struct command_ctx
**cmd_ctx
)
535 DBG("Clean command context structure");
537 if ((*cmd_ctx
)->llm
) {
538 free((*cmd_ctx
)->llm
);
540 if ((*cmd_ctx
)->lsm
) {
541 free((*cmd_ctx
)->lsm
);
549 * Notify UST applications using the shm mmap futex.
551 static int notify_ust_apps(int active
)
555 DBG("Notifying applications of session daemon state: %d", active
);
557 /* See shm.c for this call implying mmap, shm and futex calls */
558 wait_shm_mmap
= shm_ust_get_mmap(wait_shm_path
, is_root
);
559 if (wait_shm_mmap
== NULL
) {
563 /* Wake waiting process */
564 futex_wait_update((int32_t *) wait_shm_mmap
, active
);
566 /* Apps notified successfully */
574 * Setup the outgoing data buffer for the response (llm) by allocating the
575 * right amount of memory and copying the original information from the lsm
578 * Return total size of the buffer pointed by buf.
580 static int setup_lttng_msg(struct command_ctx
*cmd_ctx
, size_t size
)
586 cmd_ctx
->llm
= zmalloc(sizeof(struct lttcomm_lttng_msg
) + buf_size
);
587 if (cmd_ctx
->llm
== NULL
) {
593 /* Copy common data */
594 cmd_ctx
->llm
->cmd_type
= cmd_ctx
->lsm
->cmd_type
;
595 cmd_ctx
->llm
->pid
= cmd_ctx
->lsm
->domain
.attr
.pid
;
597 cmd_ctx
->llm
->data_size
= size
;
598 cmd_ctx
->lttng_msg_size
= sizeof(struct lttcomm_lttng_msg
) + buf_size
;
607 * Update the kernel poll set of all channel fd available over all tracing
608 * session. Add the wakeup pipe at the end of the set.
610 static int update_kernel_poll(struct lttng_poll_event
*events
)
613 struct ltt_session
*session
;
614 struct ltt_kernel_channel
*channel
;
616 DBG("Updating kernel poll set");
619 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
620 session_lock(session
);
621 if (session
->kernel_session
== NULL
) {
622 session_unlock(session
);
626 cds_list_for_each_entry(channel
,
627 &session
->kernel_session
->channel_list
.head
, list
) {
628 /* Add channel fd to the kernel poll set */
629 ret
= lttng_poll_add(events
, channel
->fd
, LPOLLIN
| LPOLLRDNORM
);
631 session_unlock(session
);
634 DBG("Channel fd %d added to kernel set", channel
->fd
);
636 session_unlock(session
);
638 session_unlock_list();
643 session_unlock_list();
648 * Find the channel fd from 'fd' over all tracing session. When found, check
649 * for new channel stream and send those stream fds to the kernel consumer.
651 * Useful for CPU hotplug feature.
653 static int update_kernel_stream(struct consumer_data
*consumer_data
, int fd
)
656 struct ltt_session
*session
;
657 struct ltt_kernel_session
*ksess
;
658 struct ltt_kernel_channel
*channel
;
660 DBG("Updating kernel streams for channel fd %d", fd
);
663 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
664 session_lock(session
);
665 if (session
->kernel_session
== NULL
) {
666 session_unlock(session
);
669 ksess
= session
->kernel_session
;
671 cds_list_for_each_entry(channel
, &ksess
->channel_list
.head
, list
) {
672 if (channel
->fd
== fd
) {
673 DBG("Channel found, updating kernel streams");
674 ret
= kernel_open_channel_stream(channel
);
680 * Have we already sent fds to the consumer? If yes, it means
681 * that tracing is started so it is safe to send our updated
684 if (ksess
->consumer_fds_sent
== 1 && ksess
->consumer
!= NULL
) {
685 struct lttng_ht_iter iter
;
686 struct consumer_socket
*socket
;
689 cds_lfht_for_each_entry(ksess
->consumer
->socks
->ht
,
690 &iter
.iter
, socket
, node
.node
) {
691 /* Code flow error */
692 assert(socket
->fd
>= 0);
694 pthread_mutex_lock(socket
->lock
);
695 ret
= kernel_consumer_send_channel_stream(socket
,
697 pthread_mutex_unlock(socket
->lock
);
708 session_unlock(session
);
710 session_unlock_list();
714 session_unlock(session
);
715 session_unlock_list();
720 * For each tracing session, update newly registered apps. The session list
721 * lock MUST be acquired before calling this.
723 static void update_ust_app(int app_sock
)
725 struct ltt_session
*sess
, *stmp
;
727 /* For all tracing session(s) */
728 cds_list_for_each_entry_safe(sess
, stmp
, &session_list_ptr
->head
, list
) {
730 if (sess
->ust_session
) {
731 ust_app_global_update(sess
->ust_session
, app_sock
);
733 session_unlock(sess
);
738 * This thread manage event coming from the kernel.
740 * Features supported in this thread:
743 static void *thread_manage_kernel(void *data
)
745 int ret
, i
, pollfd
, update_poll_flag
= 1, err
= -1;
746 uint32_t revents
, nb_fd
;
748 struct lttng_poll_event events
;
750 DBG("[thread] Thread manage kernel started");
752 health_register(HEALTH_TYPE_KERNEL
);
755 * This first step of the while is to clean this structure which could free
756 * non NULL pointers so initialize it before the loop.
758 lttng_poll_init(&events
);
760 if (testpoint(thread_manage_kernel
)) {
761 goto error_testpoint
;
764 health_code_update();
766 if (testpoint(thread_manage_kernel_before_loop
)) {
767 goto error_testpoint
;
771 health_code_update();
773 if (update_poll_flag
== 1) {
774 /* Clean events object. We are about to populate it again. */
775 lttng_poll_clean(&events
);
777 ret
= sessiond_set_thread_pollset(&events
, 2);
779 goto error_poll_create
;
782 ret
= lttng_poll_add(&events
, kernel_poll_pipe
[0], LPOLLIN
);
787 /* This will add the available kernel channel if any. */
788 ret
= update_kernel_poll(&events
);
792 update_poll_flag
= 0;
795 DBG("Thread kernel polling on %d fds", LTTNG_POLL_GETNB(&events
));
797 /* Poll infinite value of time */
800 ret
= lttng_poll_wait(&events
, -1);
804 * Restart interrupted system call.
806 if (errno
== EINTR
) {
810 } else if (ret
== 0) {
811 /* Should not happen since timeout is infinite */
812 ERR("Return value of poll is 0 with an infinite timeout.\n"
813 "This should not have happened! Continuing...");
819 for (i
= 0; i
< nb_fd
; i
++) {
820 /* Fetch once the poll data */
821 revents
= LTTNG_POLL_GETEV(&events
, i
);
822 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
824 health_code_update();
826 /* Thread quit pipe has been closed. Killing thread. */
827 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
833 /* Check for data on kernel pipe */
834 if (pollfd
== kernel_poll_pipe
[0] && (revents
& LPOLLIN
)) {
836 ret
= read(kernel_poll_pipe
[0], &tmp
, 1);
837 } while (ret
< 0 && errno
== EINTR
);
839 * Ret value is useless here, if this pipe gets any actions an
840 * update is required anyway.
842 update_poll_flag
= 1;
846 * New CPU detected by the kernel. Adding kernel stream to
847 * kernel session and updating the kernel consumer
849 if (revents
& LPOLLIN
) {
850 ret
= update_kernel_stream(&kconsumer_data
, pollfd
);
856 * TODO: We might want to handle the LPOLLERR | LPOLLHUP
857 * and unregister kernel stream at this point.
866 lttng_poll_clean(&events
);
869 utils_close_pipe(kernel_poll_pipe
);
870 kernel_poll_pipe
[0] = kernel_poll_pipe
[1] = -1;
873 ERR("Health error occurred in %s", __func__
);
874 WARN("Kernel thread died unexpectedly. "
875 "Kernel tracing can continue but CPU hotplug is disabled.");
878 DBG("Kernel thread dying");
883 * Signal pthread condition of the consumer data that the thread.
885 static void signal_consumer_condition(struct consumer_data
*data
, int state
)
887 pthread_mutex_lock(&data
->cond_mutex
);
890 * The state is set before signaling. It can be any value, it's the waiter
891 * job to correctly interpret this condition variable associated to the
892 * consumer pthread_cond.
894 * A value of 0 means that the corresponding thread of the consumer data
895 * was not started. 1 indicates that the thread has started and is ready
896 * for action. A negative value means that there was an error during the
899 data
->consumer_thread_is_ready
= state
;
900 (void) pthread_cond_signal(&data
->cond
);
902 pthread_mutex_unlock(&data
->cond_mutex
);
906 * This thread manage the consumer error sent back to the session daemon.
908 static void *thread_manage_consumer(void *data
)
910 int sock
= -1, i
, ret
, pollfd
, err
= -1;
911 uint32_t revents
, nb_fd
;
912 enum lttcomm_return_code code
;
913 struct lttng_poll_event events
;
914 struct consumer_data
*consumer_data
= data
;
916 DBG("[thread] Manage consumer started");
918 health_register(HEALTH_TYPE_CONSUMER
);
920 health_code_update();
923 * Pass 3 as size here for the thread quit pipe, consumerd_err_sock and the
924 * metadata_sock. Nothing more will be added to this poll set.
926 ret
= sessiond_set_thread_pollset(&events
, 3);
932 * The error socket here is already in a listening state which was done
933 * just before spawning this thread to avoid a race between the consumer
934 * daemon exec trying to connect and the listen() call.
936 ret
= lttng_poll_add(&events
, consumer_data
->err_sock
, LPOLLIN
| LPOLLRDHUP
);
941 health_code_update();
943 /* Infinite blocking call, waiting for transmission */
947 if (testpoint(thread_manage_consumer
)) {
951 ret
= lttng_poll_wait(&events
, -1);
955 * Restart interrupted system call.
957 if (errno
== EINTR
) {
965 for (i
= 0; i
< nb_fd
; i
++) {
966 /* Fetch once the poll data */
967 revents
= LTTNG_POLL_GETEV(&events
, i
);
968 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
970 health_code_update();
972 /* Thread quit pipe has been closed. Killing thread. */
973 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
979 /* Event on the registration socket */
980 if (pollfd
== consumer_data
->err_sock
) {
981 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
982 ERR("consumer err socket poll error");
988 sock
= lttcomm_accept_unix_sock(consumer_data
->err_sock
);
994 * Set the CLOEXEC flag. Return code is useless because either way, the
997 (void) utils_set_fd_cloexec(sock
);
999 health_code_update();
1001 DBG2("Receiving code from consumer err_sock");
1003 /* Getting status code from kconsumerd */
1004 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1005 sizeof(enum lttcomm_return_code
));
1010 health_code_update();
1012 if (code
== LTTCOMM_CONSUMERD_COMMAND_SOCK_READY
) {
1013 /* Connect both socket, command and metadata. */
1014 consumer_data
->cmd_sock
=
1015 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
1016 consumer_data
->metadata_sock
.fd
=
1017 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
1018 if (consumer_data
->cmd_sock
< 0 ||
1019 consumer_data
->metadata_sock
.fd
< 0) {
1020 PERROR("consumer connect cmd socket");
1021 /* On error, signal condition and quit. */
1022 signal_consumer_condition(consumer_data
, -1);
1025 /* Create metadata socket lock. */
1026 consumer_data
->metadata_sock
.lock
= zmalloc(sizeof(pthread_mutex_t
));
1027 if (consumer_data
->metadata_sock
.lock
== NULL
) {
1028 PERROR("zmalloc pthread mutex");
1032 pthread_mutex_init(consumer_data
->metadata_sock
.lock
, NULL
);
1034 signal_consumer_condition(consumer_data
, 1);
1035 DBG("Consumer command socket ready (fd: %d", consumer_data
->cmd_sock
);
1036 DBG("Consumer metadata socket ready (fd: %d)",
1037 consumer_data
->metadata_sock
.fd
);
1039 ERR("consumer error when waiting for SOCK_READY : %s",
1040 lttcomm_get_readable_code(-code
));
1044 /* Remove the consumerd error sock since we've established a connexion */
1045 ret
= lttng_poll_del(&events
, consumer_data
->err_sock
);
1050 /* Add new accepted error socket. */
1051 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLRDHUP
);
1056 /* Add metadata socket that is successfully connected. */
1057 ret
= lttng_poll_add(&events
, consumer_data
->metadata_sock
.fd
,
1058 LPOLLIN
| LPOLLRDHUP
);
1063 health_code_update();
1065 /* Infinite blocking call, waiting for transmission */
1068 health_poll_entry();
1069 ret
= lttng_poll_wait(&events
, -1);
1073 * Restart interrupted system call.
1075 if (errno
== EINTR
) {
1083 for (i
= 0; i
< nb_fd
; i
++) {
1084 /* Fetch once the poll data */
1085 revents
= LTTNG_POLL_GETEV(&events
, i
);
1086 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1088 health_code_update();
1090 /* Thread quit pipe has been closed. Killing thread. */
1091 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1097 if (pollfd
== sock
) {
1098 /* Event on the consumerd socket */
1099 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1100 ERR("consumer err socket second poll error");
1103 health_code_update();
1104 /* Wait for any kconsumerd error */
1105 ret
= lttcomm_recv_unix_sock(sock
, &code
,
1106 sizeof(enum lttcomm_return_code
));
1108 ERR("consumer closed the command socket");
1112 ERR("consumer return code : %s",
1113 lttcomm_get_readable_code(-code
));
1116 } else if (pollfd
== consumer_data
->metadata_sock
.fd
) {
1117 /* UST metadata requests */
1118 ret
= ust_consumer_metadata_request(
1119 &consumer_data
->metadata_sock
);
1121 ERR("Handling metadata request");
1126 ERR("Unknown pollfd");
1130 health_code_update();
1135 /* Immediately set the consumerd state to stopped */
1136 if (consumer_data
->type
== LTTNG_CONSUMER_KERNEL
) {
1137 uatomic_set(&kernel_consumerd_state
, CONSUMER_ERROR
);
1138 } else if (consumer_data
->type
== LTTNG_CONSUMER64_UST
||
1139 consumer_data
->type
== LTTNG_CONSUMER32_UST
) {
1140 uatomic_set(&ust_consumerd_state
, CONSUMER_ERROR
);
1142 /* Code flow error... */
1146 if (consumer_data
->err_sock
>= 0) {
1147 ret
= close(consumer_data
->err_sock
);
1151 consumer_data
->err_sock
= -1;
1153 if (consumer_data
->cmd_sock
>= 0) {
1154 ret
= close(consumer_data
->cmd_sock
);
1158 consumer_data
->cmd_sock
= -1;
1160 if (consumer_data
->metadata_sock
.fd
>= 0) {
1161 ret
= close(consumer_data
->metadata_sock
.fd
);
1166 /* Cleanup metadata socket mutex. */
1167 pthread_mutex_destroy(consumer_data
->metadata_sock
.lock
);
1168 free(consumer_data
->metadata_sock
.lock
);
1177 unlink(consumer_data
->err_unix_sock_path
);
1178 unlink(consumer_data
->cmd_unix_sock_path
);
1179 consumer_data
->pid
= 0;
1181 lttng_poll_clean(&events
);
1185 ERR("Health error occurred in %s", __func__
);
1187 health_unregister();
1188 DBG("consumer thread cleanup completed");
1194 * This thread manage application communication.
1196 static void *thread_manage_apps(void *data
)
1198 int i
, ret
, pollfd
, err
= -1;
1199 uint32_t revents
, nb_fd
;
1200 struct lttng_poll_event events
;
1202 DBG("[thread] Manage application started");
1204 rcu_register_thread();
1205 rcu_thread_online();
1207 health_register(HEALTH_TYPE_APP_MANAGE
);
1209 if (testpoint(thread_manage_apps
)) {
1210 goto error_testpoint
;
1213 health_code_update();
1215 ret
= sessiond_set_thread_pollset(&events
, 2);
1217 goto error_poll_create
;
1220 ret
= lttng_poll_add(&events
, apps_cmd_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
1225 if (testpoint(thread_manage_apps_before_loop
)) {
1229 health_code_update();
1232 DBG("Apps thread polling on %d fds", LTTNG_POLL_GETNB(&events
));
1234 /* Inifinite blocking call, waiting for transmission */
1236 health_poll_entry();
1237 ret
= lttng_poll_wait(&events
, -1);
1241 * Restart interrupted system call.
1243 if (errno
== EINTR
) {
1251 for (i
= 0; i
< nb_fd
; i
++) {
1252 /* Fetch once the poll data */
1253 revents
= LTTNG_POLL_GETEV(&events
, i
);
1254 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1256 health_code_update();
1258 /* Thread quit pipe has been closed. Killing thread. */
1259 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1265 /* Inspect the apps cmd pipe */
1266 if (pollfd
== apps_cmd_pipe
[0]) {
1267 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1268 ERR("Apps command pipe error");
1270 } else if (revents
& LPOLLIN
) {
1275 ret
= read(apps_cmd_pipe
[0], &sock
, sizeof(sock
));
1276 } while (ret
< 0 && errno
== EINTR
);
1277 if (ret
< 0 || ret
< sizeof(sock
)) {
1278 PERROR("read apps cmd pipe");
1282 health_code_update();
1285 * We only monitor the error events of the socket. This
1286 * thread does not handle any incoming data from UST
1289 ret
= lttng_poll_add(&events
, sock
,
1290 LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
);
1295 DBG("Apps with sock %d added to poll set", sock
);
1297 health_code_update();
1303 * At this point, we know that a registered application made
1304 * the event at poll_wait.
1306 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1307 /* Removing from the poll set */
1308 ret
= lttng_poll_del(&events
, pollfd
);
1313 /* Socket closed on remote end. */
1314 ust_app_unregister(pollfd
);
1319 health_code_update();
1325 lttng_poll_clean(&events
);
1328 utils_close_pipe(apps_cmd_pipe
);
1329 apps_cmd_pipe
[0] = apps_cmd_pipe
[1] = -1;
1332 * We don't clean the UST app hash table here since already registered
1333 * applications can still be controlled so let them be until the session
1334 * daemon dies or the applications stop.
1339 ERR("Health error occurred in %s", __func__
);
1341 health_unregister();
1342 DBG("Application communication apps thread cleanup complete");
1343 rcu_thread_offline();
1344 rcu_unregister_thread();
1349 * Send a socket to a thread This is called from the dispatch UST registration
1350 * thread once all sockets are set for the application.
1352 * The sock value can be invalid, we don't really care, the thread will handle
1353 * it and make the necessary cleanup if so.
1355 * On success, return 0 else a negative value being the errno message of the
1358 static int send_socket_to_thread(int fd
, int sock
)
1363 * It's possible that the FD is set as invalid with -1 concurrently just
1364 * before calling this function being a shutdown state of the thread.
1372 ret
= write(fd
, &sock
, sizeof(sock
));
1373 } while (ret
< 0 && errno
== EINTR
);
1374 if (ret
< 0 || ret
!= sizeof(sock
)) {
1375 PERROR("write apps pipe %d", fd
);
1382 /* All good. Don't send back the write positive ret value. */
1389 * Sanitize the wait queue of the dispatch registration thread meaning removing
1390 * invalid nodes from it. This is to avoid memory leaks for the case the UST
1391 * notify socket is never received.
1393 static void sanitize_wait_queue(struct ust_reg_wait_queue
*wait_queue
)
1395 int ret
, nb_fd
= 0, i
;
1396 unsigned int fd_added
= 0;
1397 struct lttng_poll_event events
;
1398 struct ust_reg_wait_node
*wait_node
= NULL
, *tmp_wait_node
;
1402 lttng_poll_init(&events
);
1404 /* Just skip everything for an empty queue. */
1405 if (!wait_queue
->count
) {
1409 ret
= lttng_poll_create(&events
, wait_queue
->count
, LTTNG_CLOEXEC
);
1414 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1415 &wait_queue
->head
, head
) {
1416 assert(wait_node
->app
);
1417 ret
= lttng_poll_add(&events
, wait_node
->app
->sock
,
1418 LPOLLHUP
| LPOLLERR
);
1431 * Poll but don't block so we can quickly identify the faulty events and
1432 * clean them afterwards from the wait queue.
1434 ret
= lttng_poll_wait(&events
, 0);
1440 for (i
= 0; i
< nb_fd
; i
++) {
1441 /* Get faulty FD. */
1442 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
1443 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1445 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1446 &wait_queue
->head
, head
) {
1447 if (pollfd
== wait_node
->app
->sock
&&
1448 (revents
& (LPOLLHUP
| LPOLLERR
))) {
1449 cds_list_del(&wait_node
->head
);
1450 wait_queue
->count
--;
1451 ust_app_destroy(wait_node
->app
);
1459 DBG("Wait queue sanitized, %d node were cleaned up", nb_fd
);
1463 lttng_poll_clean(&events
);
1467 lttng_poll_clean(&events
);
1469 ERR("Unable to sanitize wait queue");
1474 * Dispatch request from the registration threads to the application
1475 * communication thread.
1477 static void *thread_dispatch_ust_registration(void *data
)
1480 struct cds_wfq_node
*node
;
1481 struct ust_command
*ust_cmd
= NULL
;
1482 struct ust_reg_wait_node
*wait_node
= NULL
, *tmp_wait_node
;
1483 struct ust_reg_wait_queue wait_queue
= {
1487 health_register(HEALTH_TYPE_APP_REG_DISPATCH
);
1489 health_code_update();
1491 CDS_INIT_LIST_HEAD(&wait_queue
.head
);
1493 DBG("[thread] Dispatch UST command started");
1495 while (!CMM_LOAD_SHARED(dispatch_thread_exit
)) {
1496 health_code_update();
1498 /* Atomically prepare the queue futex */
1499 futex_nto1_prepare(&ust_cmd_queue
.futex
);
1502 struct ust_app
*app
= NULL
;
1506 * Make sure we don't have node(s) that have hung up before receiving
1507 * the notify socket. This is to clean the list in order to avoid
1508 * memory leaks from notify socket that are never seen.
1510 sanitize_wait_queue(&wait_queue
);
1512 health_code_update();
1513 /* Dequeue command for registration */
1514 node
= cds_wfq_dequeue_blocking(&ust_cmd_queue
.queue
);
1516 DBG("Woken up but nothing in the UST command queue");
1517 /* Continue thread execution */
1521 ust_cmd
= caa_container_of(node
, struct ust_command
, node
);
1523 DBG("Dispatching UST registration pid:%d ppid:%d uid:%d"
1524 " gid:%d sock:%d name:%s (version %d.%d)",
1525 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1526 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1527 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1528 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1530 if (ust_cmd
->reg_msg
.type
== USTCTL_SOCKET_CMD
) {
1531 wait_node
= zmalloc(sizeof(*wait_node
));
1533 PERROR("zmalloc wait_node dispatch");
1534 ret
= close(ust_cmd
->sock
);
1536 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1538 lttng_fd_put(1, LTTNG_FD_APPS
);
1542 CDS_INIT_LIST_HEAD(&wait_node
->head
);
1544 /* Create application object if socket is CMD. */
1545 wait_node
->app
= ust_app_create(&ust_cmd
->reg_msg
,
1547 if (!wait_node
->app
) {
1548 ret
= close(ust_cmd
->sock
);
1550 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1552 lttng_fd_put(1, LTTNG_FD_APPS
);
1558 * Add application to the wait queue so we can set the notify
1559 * socket before putting this object in the global ht.
1561 cds_list_add(&wait_node
->head
, &wait_queue
.head
);
1566 * We have to continue here since we don't have the notify
1567 * socket and the application MUST be added to the hash table
1568 * only at that moment.
1573 * Look for the application in the local wait queue and set the
1574 * notify socket if found.
1576 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1577 &wait_queue
.head
, head
) {
1578 health_code_update();
1579 if (wait_node
->app
->pid
== ust_cmd
->reg_msg
.pid
) {
1580 wait_node
->app
->notify_sock
= ust_cmd
->sock
;
1581 cds_list_del(&wait_node
->head
);
1583 app
= wait_node
->app
;
1585 DBG3("UST app notify socket %d is set", ust_cmd
->sock
);
1591 * With no application at this stage the received socket is
1592 * basically useless so close it before we free the cmd data
1593 * structure for good.
1596 ret
= close(ust_cmd
->sock
);
1598 PERROR("close ust sock dispatch %d", ust_cmd
->sock
);
1600 lttng_fd_put(1, LTTNG_FD_APPS
);
1607 * @session_lock_list
1609 * Lock the global session list so from the register up to the
1610 * registration done message, no thread can see the application
1611 * and change its state.
1613 session_lock_list();
1617 * Add application to the global hash table. This needs to be
1618 * done before the update to the UST registry can locate the
1623 /* Set app version. This call will print an error if needed. */
1624 (void) ust_app_version(app
);
1626 /* Send notify socket through the notify pipe. */
1627 ret
= send_socket_to_thread(apps_cmd_notify_pipe
[1],
1631 session_unlock_list();
1633 * No notify thread, stop the UST tracing. However, this is
1634 * not an internal error of the this thread thus setting
1635 * the health error code to a normal exit.
1642 * Update newly registered application with the tracing
1643 * registry info already enabled information.
1645 update_ust_app(app
->sock
);
1648 * Don't care about return value. Let the manage apps threads
1649 * handle app unregistration upon socket close.
1651 (void) ust_app_register_done(app
->sock
);
1654 * Even if the application socket has been closed, send the app
1655 * to the thread and unregistration will take place at that
1658 ret
= send_socket_to_thread(apps_cmd_pipe
[1], app
->sock
);
1661 session_unlock_list();
1663 * No apps. thread, stop the UST tracing. However, this is
1664 * not an internal error of the this thread thus setting
1665 * the health error code to a normal exit.
1672 session_unlock_list();
1674 } while (node
!= NULL
);
1676 health_poll_entry();
1677 /* Futex wait on queue. Blocking call on futex() */
1678 futex_nto1_wait(&ust_cmd_queue
.futex
);
1681 /* Normal exit, no error */
1685 /* Clean up wait queue. */
1686 cds_list_for_each_entry_safe(wait_node
, tmp_wait_node
,
1687 &wait_queue
.head
, head
) {
1688 cds_list_del(&wait_node
->head
);
1693 DBG("Dispatch thread dying");
1696 ERR("Health error occurred in %s", __func__
);
1698 health_unregister();
1703 * This thread manage application registration.
1705 static void *thread_registration_apps(void *data
)
1707 int sock
= -1, i
, ret
, pollfd
, err
= -1;
1708 uint32_t revents
, nb_fd
;
1709 struct lttng_poll_event events
;
1711 * Get allocated in this thread, enqueued to a global queue, dequeued and
1712 * freed in the manage apps thread.
1714 struct ust_command
*ust_cmd
= NULL
;
1716 DBG("[thread] Manage application registration started");
1718 health_register(HEALTH_TYPE_APP_REG
);
1720 if (testpoint(thread_registration_apps
)) {
1721 goto error_testpoint
;
1724 ret
= lttcomm_listen_unix_sock(apps_sock
);
1730 * Pass 2 as size here for the thread quit pipe and apps socket. Nothing
1731 * more will be added to this poll set.
1733 ret
= sessiond_set_thread_pollset(&events
, 2);
1735 goto error_create_poll
;
1738 /* Add the application registration socket */
1739 ret
= lttng_poll_add(&events
, apps_sock
, LPOLLIN
| LPOLLRDHUP
);
1741 goto error_poll_add
;
1744 /* Notify all applications to register */
1745 ret
= notify_ust_apps(1);
1747 ERR("Failed to notify applications or create the wait shared memory.\n"
1748 "Execution continues but there might be problem for already\n"
1749 "running applications that wishes to register.");
1753 DBG("Accepting application registration");
1755 /* Inifinite blocking call, waiting for transmission */
1757 health_poll_entry();
1758 ret
= lttng_poll_wait(&events
, -1);
1762 * Restart interrupted system call.
1764 if (errno
== EINTR
) {
1772 for (i
= 0; i
< nb_fd
; i
++) {
1773 health_code_update();
1775 /* Fetch once the poll data */
1776 revents
= LTTNG_POLL_GETEV(&events
, i
);
1777 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1779 /* Thread quit pipe has been closed. Killing thread. */
1780 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
1786 /* Event on the registration socket */
1787 if (pollfd
== apps_sock
) {
1788 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1789 ERR("Register apps socket poll error");
1791 } else if (revents
& LPOLLIN
) {
1792 sock
= lttcomm_accept_unix_sock(apps_sock
);
1798 * Set socket timeout for both receiving and ending.
1799 * app_socket_timeout is in seconds, whereas
1800 * lttcomm_setsockopt_rcv_timeout and
1801 * lttcomm_setsockopt_snd_timeout expect msec as
1804 (void) lttcomm_setsockopt_rcv_timeout(sock
,
1805 app_socket_timeout
* 1000);
1806 (void) lttcomm_setsockopt_snd_timeout(sock
,
1807 app_socket_timeout
* 1000);
1810 * Set the CLOEXEC flag. Return code is useless because
1811 * either way, the show must go on.
1813 (void) utils_set_fd_cloexec(sock
);
1815 /* Create UST registration command for enqueuing */
1816 ust_cmd
= zmalloc(sizeof(struct ust_command
));
1817 if (ust_cmd
== NULL
) {
1818 PERROR("ust command zmalloc");
1823 * Using message-based transmissions to ensure we don't
1824 * have to deal with partially received messages.
1826 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
1828 ERR("Exhausted file descriptors allowed for applications.");
1838 health_code_update();
1839 ret
= ust_app_recv_registration(sock
, &ust_cmd
->reg_msg
);
1842 /* Close socket of the application. */
1847 lttng_fd_put(LTTNG_FD_APPS
, 1);
1851 health_code_update();
1853 ust_cmd
->sock
= sock
;
1856 DBG("UST registration received with pid:%d ppid:%d uid:%d"
1857 " gid:%d sock:%d name:%s (version %d.%d)",
1858 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1859 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1860 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1861 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1864 * Lock free enqueue the registration request. The red pill
1865 * has been taken! This apps will be part of the *system*.
1867 cds_wfq_enqueue(&ust_cmd_queue
.queue
, &ust_cmd
->node
);
1870 * Wake the registration queue futex. Implicit memory
1871 * barrier with the exchange in cds_wfq_enqueue.
1873 futex_nto1_wake(&ust_cmd_queue
.futex
);
1883 ERR("Health error occurred in %s", __func__
);
1886 /* Notify that the registration thread is gone */
1889 if (apps_sock
>= 0) {
1890 ret
= close(apps_sock
);
1900 lttng_fd_put(LTTNG_FD_APPS
, 1);
1902 unlink(apps_unix_sock_path
);
1905 lttng_poll_clean(&events
);
1909 DBG("UST Registration thread cleanup complete");
1910 health_unregister();
1916 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
1917 * exec or it will fails.
1919 static int spawn_consumer_thread(struct consumer_data
*consumer_data
)
1922 struct timespec timeout
;
1924 /* Make sure we set the readiness flag to 0 because we are NOT ready */
1925 consumer_data
->consumer_thread_is_ready
= 0;
1927 /* Setup pthread condition */
1928 ret
= pthread_condattr_init(&consumer_data
->condattr
);
1931 PERROR("pthread_condattr_init consumer data");
1936 * Set the monotonic clock in order to make sure we DO NOT jump in time
1937 * between the clock_gettime() call and the timedwait call. See bug #324
1938 * for a more details and how we noticed it.
1940 ret
= pthread_condattr_setclock(&consumer_data
->condattr
, CLOCK_MONOTONIC
);
1943 PERROR("pthread_condattr_setclock consumer data");
1947 ret
= pthread_cond_init(&consumer_data
->cond
, &consumer_data
->condattr
);
1950 PERROR("pthread_cond_init consumer data");
1954 ret
= pthread_create(&consumer_data
->thread
, NULL
, thread_manage_consumer
,
1957 PERROR("pthread_create consumer");
1962 /* We are about to wait on a pthread condition */
1963 pthread_mutex_lock(&consumer_data
->cond_mutex
);
1965 /* Get time for sem_timedwait absolute timeout */
1966 clock_ret
= clock_gettime(CLOCK_MONOTONIC
, &timeout
);
1968 * Set the timeout for the condition timed wait even if the clock gettime
1969 * call fails since we might loop on that call and we want to avoid to
1970 * increment the timeout too many times.
1972 timeout
.tv_sec
+= DEFAULT_SEM_WAIT_TIMEOUT
;
1975 * The following loop COULD be skipped in some conditions so this is why we
1976 * set ret to 0 in order to make sure at least one round of the loop is
1982 * Loop until the condition is reached or when a timeout is reached. Note
1983 * that the pthread_cond_timedwait(P) man page specifies that EINTR can NOT
1984 * be returned but the pthread_cond(3), from the glibc-doc, says that it is
1985 * possible. This loop does not take any chances and works with both of
1988 while (!consumer_data
->consumer_thread_is_ready
&& ret
!= ETIMEDOUT
) {
1989 if (clock_ret
< 0) {
1990 PERROR("clock_gettime spawn consumer");
1991 /* Infinite wait for the consumerd thread to be ready */
1992 ret
= pthread_cond_wait(&consumer_data
->cond
,
1993 &consumer_data
->cond_mutex
);
1995 ret
= pthread_cond_timedwait(&consumer_data
->cond
,
1996 &consumer_data
->cond_mutex
, &timeout
);
2000 /* Release the pthread condition */
2001 pthread_mutex_unlock(&consumer_data
->cond_mutex
);
2005 if (ret
== ETIMEDOUT
) {
2007 * Call has timed out so we kill the kconsumerd_thread and return
2010 ERR("Condition timed out. The consumer thread was never ready."
2012 ret
= pthread_cancel(consumer_data
->thread
);
2014 PERROR("pthread_cancel consumer thread");
2017 PERROR("pthread_cond_wait failed consumer thread");
2022 pthread_mutex_lock(&consumer_data
->pid_mutex
);
2023 if (consumer_data
->pid
== 0) {
2024 ERR("Consumerd did not start");
2025 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2028 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2037 * Join consumer thread
2039 static int join_consumer_thread(struct consumer_data
*consumer_data
)
2043 /* Consumer pid must be a real one. */
2044 if (consumer_data
->pid
> 0) {
2046 ret
= kill(consumer_data
->pid
, SIGTERM
);
2048 ERR("Error killing consumer daemon");
2051 return pthread_join(consumer_data
->thread
, &status
);
2058 * Fork and exec a consumer daemon (consumerd).
2060 * Return pid if successful else -1.
2062 static pid_t
spawn_consumerd(struct consumer_data
*consumer_data
)
2066 const char *consumer_to_use
;
2067 const char *verbosity
;
2070 DBG("Spawning consumerd");
2077 if (opt_verbose_consumer
) {
2078 verbosity
= "--verbose";
2080 verbosity
= "--quiet";
2082 switch (consumer_data
->type
) {
2083 case LTTNG_CONSUMER_KERNEL
:
2085 * Find out which consumerd to execute. We will first try the
2086 * 64-bit path, then the sessiond's installation directory, and
2087 * fallback on the 32-bit one,
2089 DBG3("Looking for a kernel consumer at these locations:");
2090 DBG3(" 1) %s", consumerd64_bin
);
2091 DBG3(" 2) %s/%s", INSTALL_BIN_PATH
, CONSUMERD_FILE
);
2092 DBG3(" 3) %s", consumerd32_bin
);
2093 if (stat(consumerd64_bin
, &st
) == 0) {
2094 DBG3("Found location #1");
2095 consumer_to_use
= consumerd64_bin
;
2096 } else if (stat(INSTALL_BIN_PATH
"/" CONSUMERD_FILE
, &st
) == 0) {
2097 DBG3("Found location #2");
2098 consumer_to_use
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
2099 } else if (stat(consumerd32_bin
, &st
) == 0) {
2100 DBG3("Found location #3");
2101 consumer_to_use
= consumerd32_bin
;
2103 DBG("Could not find any valid consumerd executable");
2106 DBG("Using kernel consumer at: %s", consumer_to_use
);
2107 execl(consumer_to_use
,
2108 "lttng-consumerd", verbosity
, "-k",
2109 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2110 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2113 case LTTNG_CONSUMER64_UST
:
2115 char *tmpnew
= NULL
;
2117 if (consumerd64_libdir
[0] != '\0') {
2121 tmp
= getenv("LD_LIBRARY_PATH");
2125 tmplen
= strlen("LD_LIBRARY_PATH=")
2126 + strlen(consumerd64_libdir
) + 1 /* : */ + strlen(tmp
);
2127 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
2132 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
2133 strcat(tmpnew
, consumerd64_libdir
);
2134 if (tmp
[0] != '\0') {
2135 strcat(tmpnew
, ":");
2136 strcat(tmpnew
, tmp
);
2138 ret
= putenv(tmpnew
);
2145 DBG("Using 64-bit UST consumer at: %s", consumerd64_bin
);
2146 ret
= execl(consumerd64_bin
, "lttng-consumerd", verbosity
, "-u",
2147 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2148 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2150 if (consumerd64_libdir
[0] != '\0') {
2158 case LTTNG_CONSUMER32_UST
:
2160 char *tmpnew
= NULL
;
2162 if (consumerd32_libdir
[0] != '\0') {
2166 tmp
= getenv("LD_LIBRARY_PATH");
2170 tmplen
= strlen("LD_LIBRARY_PATH=")
2171 + strlen(consumerd32_libdir
) + 1 /* : */ + strlen(tmp
);
2172 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
2177 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
2178 strcat(tmpnew
, consumerd32_libdir
);
2179 if (tmp
[0] != '\0') {
2180 strcat(tmpnew
, ":");
2181 strcat(tmpnew
, tmp
);
2183 ret
= putenv(tmpnew
);
2190 DBG("Using 32-bit UST consumer at: %s", consumerd32_bin
);
2191 ret
= execl(consumerd32_bin
, "lttng-consumerd", verbosity
, "-u",
2192 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
2193 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
2195 if (consumerd32_libdir
[0] != '\0') {
2204 PERROR("unknown consumer type");
2208 PERROR("kernel start consumer exec");
2211 } else if (pid
> 0) {
2214 PERROR("start consumer fork");
2222 * Spawn the consumerd daemon and session daemon thread.
2224 static int start_consumerd(struct consumer_data
*consumer_data
)
2229 * Set the listen() state on the socket since there is a possible race
2230 * between the exec() of the consumer daemon and this call if place in the
2231 * consumer thread. See bug #366 for more details.
2233 ret
= lttcomm_listen_unix_sock(consumer_data
->err_sock
);
2238 pthread_mutex_lock(&consumer_data
->pid_mutex
);
2239 if (consumer_data
->pid
!= 0) {
2240 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2244 ret
= spawn_consumerd(consumer_data
);
2246 ERR("Spawning consumerd failed");
2247 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2251 /* Setting up the consumer_data pid */
2252 consumer_data
->pid
= ret
;
2253 DBG2("Consumer pid %d", consumer_data
->pid
);
2254 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
2256 DBG2("Spawning consumer control thread");
2257 ret
= spawn_consumer_thread(consumer_data
);
2259 ERR("Fatal error spawning consumer control thread");
2267 /* Cleanup already created sockets on error. */
2268 if (consumer_data
->err_sock
>= 0) {
2271 err
= close(consumer_data
->err_sock
);
2273 PERROR("close consumer data error socket");
2280 * Compute health status of each consumer. If one of them is zero (bad
2281 * state), we return 0.
2283 static int check_consumer_health(void)
2287 ret
= health_check_state(HEALTH_TYPE_CONSUMER
);
2289 DBG3("Health consumer check %d", ret
);
2295 * Setup necessary data for kernel tracer action.
2297 static int init_kernel_tracer(void)
2301 /* Modprobe lttng kernel modules */
2302 ret
= modprobe_lttng_control();
2307 /* Open debugfs lttng */
2308 kernel_tracer_fd
= open(module_proc_lttng
, O_RDWR
);
2309 if (kernel_tracer_fd
< 0) {
2310 DBG("Failed to open %s", module_proc_lttng
);
2315 /* Validate kernel version */
2316 ret
= kernel_validate_version(kernel_tracer_fd
);
2321 ret
= modprobe_lttng_data();
2326 DBG("Kernel tracer fd %d", kernel_tracer_fd
);
2330 modprobe_remove_lttng_control();
2331 ret
= close(kernel_tracer_fd
);
2335 kernel_tracer_fd
= -1;
2336 return LTTNG_ERR_KERN_VERSION
;
2339 ret
= close(kernel_tracer_fd
);
2345 modprobe_remove_lttng_control();
2348 WARN("No kernel tracer available");
2349 kernel_tracer_fd
= -1;
2351 return LTTNG_ERR_NEED_ROOT_SESSIOND
;
2353 return LTTNG_ERR_KERN_NA
;
2359 * Copy consumer output from the tracing session to the domain session. The
2360 * function also applies the right modification on a per domain basis for the
2361 * trace files destination directory.
2363 * Should *NOT* be called with RCU read-side lock held.
2365 static int copy_session_consumer(int domain
, struct ltt_session
*session
)
2368 const char *dir_name
;
2369 struct consumer_output
*consumer
;
2372 assert(session
->consumer
);
2375 case LTTNG_DOMAIN_KERNEL
:
2376 DBG3("Copying tracing session consumer output in kernel session");
2378 * XXX: We should audit the session creation and what this function
2379 * does "extra" in order to avoid a destroy since this function is used
2380 * in the domain session creation (kernel and ust) only. Same for UST
2383 if (session
->kernel_session
->consumer
) {
2384 consumer_destroy_output(session
->kernel_session
->consumer
);
2386 session
->kernel_session
->consumer
=
2387 consumer_copy_output(session
->consumer
);
2388 /* Ease our life a bit for the next part */
2389 consumer
= session
->kernel_session
->consumer
;
2390 dir_name
= DEFAULT_KERNEL_TRACE_DIR
;
2392 case LTTNG_DOMAIN_UST
:
2393 DBG3("Copying tracing session consumer output in UST session");
2394 if (session
->ust_session
->consumer
) {
2395 consumer_destroy_output(session
->ust_session
->consumer
);
2397 session
->ust_session
->consumer
=
2398 consumer_copy_output(session
->consumer
);
2399 /* Ease our life a bit for the next part */
2400 consumer
= session
->ust_session
->consumer
;
2401 dir_name
= DEFAULT_UST_TRACE_DIR
;
2404 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2408 /* Append correct directory to subdir */
2409 strncat(consumer
->subdir
, dir_name
,
2410 sizeof(consumer
->subdir
) - strlen(consumer
->subdir
) - 1);
2411 DBG3("Copy session consumer subdir %s", consumer
->subdir
);
2420 * Create an UST session and add it to the session ust list.
2422 * Should *NOT* be called with RCU read-side lock held.
2424 static int create_ust_session(struct ltt_session
*session
,
2425 struct lttng_domain
*domain
)
2428 struct ltt_ust_session
*lus
= NULL
;
2432 assert(session
->consumer
);
2434 switch (domain
->type
) {
2435 case LTTNG_DOMAIN_UST
:
2438 ERR("Unknown UST domain on create session %d", domain
->type
);
2439 ret
= LTTNG_ERR_UNKNOWN_DOMAIN
;
2443 DBG("Creating UST session");
2445 lus
= trace_ust_create_session(session
->id
);
2447 ret
= LTTNG_ERR_UST_SESS_FAIL
;
2451 lus
->uid
= session
->uid
;
2452 lus
->gid
= session
->gid
;
2453 session
->ust_session
= lus
;
2455 /* Copy session output to the newly created UST session */
2456 ret
= copy_session_consumer(domain
->type
, session
);
2457 if (ret
!= LTTNG_OK
) {
2465 session
->ust_session
= NULL
;
2470 * Create a kernel tracer session then create the default channel.
2472 static int create_kernel_session(struct ltt_session
*session
)
2476 DBG("Creating kernel session");
2478 ret
= kernel_create_session(session
, kernel_tracer_fd
);
2480 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
2484 /* Code flow safety */
2485 assert(session
->kernel_session
);
2487 /* Copy session output to the newly created Kernel session */
2488 ret
= copy_session_consumer(LTTNG_DOMAIN_KERNEL
, session
);
2489 if (ret
!= LTTNG_OK
) {
2493 /* Create directory(ies) on local filesystem. */
2494 if (session
->kernel_session
->consumer
->type
== CONSUMER_DST_LOCAL
&&
2495 strlen(session
->kernel_session
->consumer
->dst
.trace_path
) > 0) {
2496 ret
= run_as_mkdir_recursive(
2497 session
->kernel_session
->consumer
->dst
.trace_path
,
2498 S_IRWXU
| S_IRWXG
, session
->uid
, session
->gid
);
2500 if (ret
!= -EEXIST
) {
2501 ERR("Trace directory creation error");
2507 session
->kernel_session
->uid
= session
->uid
;
2508 session
->kernel_session
->gid
= session
->gid
;
2513 trace_kernel_destroy_session(session
->kernel_session
);
2514 session
->kernel_session
= NULL
;
2519 * Count number of session permitted by uid/gid.
2521 static unsigned int lttng_sessions_count(uid_t uid
, gid_t gid
)
2524 struct ltt_session
*session
;
2526 DBG("Counting number of available session for UID %d GID %d",
2528 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
2530 * Only list the sessions the user can control.
2532 if (!session_access_ok(session
, uid
, gid
)) {
2541 * Process the command requested by the lttng client within the command
2542 * context structure. This function make sure that the return structure (llm)
2543 * is set and ready for transmission before returning.
2545 * Return any error encountered or 0 for success.
2547 * "sock" is only used for special-case var. len data.
2549 * Should *NOT* be called with RCU read-side lock held.
2551 static int process_client_msg(struct command_ctx
*cmd_ctx
, int sock
,
2555 int need_tracing_session
= 1;
2558 DBG("Processing client command %d", cmd_ctx
->lsm
->cmd_type
);
2562 switch (cmd_ctx
->lsm
->cmd_type
) {
2563 case LTTNG_CREATE_SESSION
:
2564 case LTTNG_DESTROY_SESSION
:
2565 case LTTNG_LIST_SESSIONS
:
2566 case LTTNG_LIST_DOMAINS
:
2567 case LTTNG_START_TRACE
:
2568 case LTTNG_STOP_TRACE
:
2569 case LTTNG_DATA_PENDING
:
2576 if (opt_no_kernel
&& need_domain
2577 && cmd_ctx
->lsm
->domain
.type
== LTTNG_DOMAIN_KERNEL
) {
2579 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
2581 ret
= LTTNG_ERR_KERN_NA
;
2586 /* Deny register consumer if we already have a spawned consumer. */
2587 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_REGISTER_CONSUMER
) {
2588 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
2589 if (kconsumer_data
.pid
> 0) {
2590 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2591 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2594 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2598 * Check for command that don't needs to allocate a returned payload. We do
2599 * this here so we don't have to make the call for no payload at each
2602 switch(cmd_ctx
->lsm
->cmd_type
) {
2603 case LTTNG_LIST_SESSIONS
:
2604 case LTTNG_LIST_TRACEPOINTS
:
2605 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2606 case LTTNG_LIST_DOMAINS
:
2607 case LTTNG_LIST_CHANNELS
:
2608 case LTTNG_LIST_EVENTS
:
2611 /* Setup lttng message with no payload */
2612 ret
= setup_lttng_msg(cmd_ctx
, 0);
2614 /* This label does not try to unlock the session */
2615 goto init_setup_error
;
2619 /* Commands that DO NOT need a session. */
2620 switch (cmd_ctx
->lsm
->cmd_type
) {
2621 case LTTNG_CREATE_SESSION
:
2622 case LTTNG_CALIBRATE
:
2623 case LTTNG_LIST_SESSIONS
:
2624 case LTTNG_LIST_TRACEPOINTS
:
2625 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2626 need_tracing_session
= 0;
2629 DBG("Getting session %s by name", cmd_ctx
->lsm
->session
.name
);
2631 * We keep the session list lock across _all_ commands
2632 * for now, because the per-session lock does not
2633 * handle teardown properly.
2635 session_lock_list();
2636 cmd_ctx
->session
= session_find_by_name(cmd_ctx
->lsm
->session
.name
);
2637 if (cmd_ctx
->session
== NULL
) {
2638 ret
= LTTNG_ERR_SESS_NOT_FOUND
;
2641 /* Acquire lock for the session */
2642 session_lock(cmd_ctx
->session
);
2652 * Check domain type for specific "pre-action".
2654 switch (cmd_ctx
->lsm
->domain
.type
) {
2655 case LTTNG_DOMAIN_KERNEL
:
2657 ret
= LTTNG_ERR_NEED_ROOT_SESSIOND
;
2661 /* Kernel tracer check */
2662 if (kernel_tracer_fd
== -1) {
2663 /* Basically, load kernel tracer modules */
2664 ret
= init_kernel_tracer();
2670 /* Consumer is in an ERROR state. Report back to client */
2671 if (uatomic_read(&kernel_consumerd_state
) == CONSUMER_ERROR
) {
2672 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
2676 /* Need a session for kernel command */
2677 if (need_tracing_session
) {
2678 if (cmd_ctx
->session
->kernel_session
== NULL
) {
2679 ret
= create_kernel_session(cmd_ctx
->session
);
2681 ret
= LTTNG_ERR_KERN_SESS_FAIL
;
2686 /* Start the kernel consumer daemon */
2687 pthread_mutex_lock(&kconsumer_data
.pid_mutex
);
2688 if (kconsumer_data
.pid
== 0 &&
2689 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2690 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2691 ret
= start_consumerd(&kconsumer_data
);
2693 ret
= LTTNG_ERR_KERN_CONSUMER_FAIL
;
2696 uatomic_set(&kernel_consumerd_state
, CONSUMER_STARTED
);
2698 pthread_mutex_unlock(&kconsumer_data
.pid_mutex
);
2702 * The consumer was just spawned so we need to add the socket to
2703 * the consumer output of the session if exist.
2705 ret
= consumer_create_socket(&kconsumer_data
,
2706 cmd_ctx
->session
->kernel_session
->consumer
);
2713 case LTTNG_DOMAIN_UST
:
2715 if (!ust_app_supported()) {
2716 ret
= LTTNG_ERR_NO_UST
;
2719 /* Consumer is in an ERROR state. Report back to client */
2720 if (uatomic_read(&ust_consumerd_state
) == CONSUMER_ERROR
) {
2721 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
2725 if (need_tracing_session
) {
2726 /* Create UST session if none exist. */
2727 if (cmd_ctx
->session
->ust_session
== NULL
) {
2728 ret
= create_ust_session(cmd_ctx
->session
,
2729 &cmd_ctx
->lsm
->domain
);
2730 if (ret
!= LTTNG_OK
) {
2735 /* Start the UST consumer daemons */
2737 pthread_mutex_lock(&ustconsumer64_data
.pid_mutex
);
2738 if (consumerd64_bin
[0] != '\0' &&
2739 ustconsumer64_data
.pid
== 0 &&
2740 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2741 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
2742 ret
= start_consumerd(&ustconsumer64_data
);
2744 ret
= LTTNG_ERR_UST_CONSUMER64_FAIL
;
2745 uatomic_set(&ust_consumerd64_fd
, -EINVAL
);
2749 uatomic_set(&ust_consumerd64_fd
, ustconsumer64_data
.cmd_sock
);
2750 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
2752 pthread_mutex_unlock(&ustconsumer64_data
.pid_mutex
);
2756 * Setup socket for consumer 64 bit. No need for atomic access
2757 * since it was set above and can ONLY be set in this thread.
2759 ret
= consumer_create_socket(&ustconsumer64_data
,
2760 cmd_ctx
->session
->ust_session
->consumer
);
2766 if (consumerd32_bin
[0] != '\0' &&
2767 ustconsumer32_data
.pid
== 0 &&
2768 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2769 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
2770 ret
= start_consumerd(&ustconsumer32_data
);
2772 ret
= LTTNG_ERR_UST_CONSUMER32_FAIL
;
2773 uatomic_set(&ust_consumerd32_fd
, -EINVAL
);
2777 uatomic_set(&ust_consumerd32_fd
, ustconsumer32_data
.cmd_sock
);
2778 uatomic_set(&ust_consumerd_state
, CONSUMER_STARTED
);
2780 pthread_mutex_unlock(&ustconsumer32_data
.pid_mutex
);
2784 * Setup socket for consumer 64 bit. No need for atomic access
2785 * since it was set above and can ONLY be set in this thread.
2787 ret
= consumer_create_socket(&ustconsumer32_data
,
2788 cmd_ctx
->session
->ust_session
->consumer
);
2800 /* Validate consumer daemon state when start/stop trace command */
2801 if (cmd_ctx
->lsm
->cmd_type
== LTTNG_START_TRACE
||
2802 cmd_ctx
->lsm
->cmd_type
== LTTNG_STOP_TRACE
) {
2803 switch (cmd_ctx
->lsm
->domain
.type
) {
2804 case LTTNG_DOMAIN_UST
:
2805 if (uatomic_read(&ust_consumerd_state
) != CONSUMER_STARTED
) {
2806 ret
= LTTNG_ERR_NO_USTCONSUMERD
;
2810 case LTTNG_DOMAIN_KERNEL
:
2811 if (uatomic_read(&kernel_consumerd_state
) != CONSUMER_STARTED
) {
2812 ret
= LTTNG_ERR_NO_KERNCONSUMERD
;
2820 * Check that the UID or GID match that of the tracing session.
2821 * The root user can interact with all sessions.
2823 if (need_tracing_session
) {
2824 if (!session_access_ok(cmd_ctx
->session
,
2825 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
2826 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
))) {
2827 ret
= LTTNG_ERR_EPERM
;
2833 * Send relayd information to consumer as soon as we have a domain and a
2836 if (cmd_ctx
->session
&& need_domain
) {
2838 * Setup relayd if not done yet. If the relayd information was already
2839 * sent to the consumer, this call will gracefully return.
2841 ret
= cmd_setup_relayd(cmd_ctx
->session
);
2842 if (ret
!= LTTNG_OK
) {
2847 /* Process by command type */
2848 switch (cmd_ctx
->lsm
->cmd_type
) {
2849 case LTTNG_ADD_CONTEXT
:
2851 ret
= cmd_add_context(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2852 cmd_ctx
->lsm
->u
.context
.channel_name
,
2853 &cmd_ctx
->lsm
->u
.context
.ctx
, kernel_poll_pipe
[1]);
2856 case LTTNG_DISABLE_CHANNEL
:
2858 ret
= cmd_disable_channel(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2859 cmd_ctx
->lsm
->u
.disable
.channel_name
);
2862 case LTTNG_DISABLE_EVENT
:
2864 ret
= cmd_disable_event(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2865 cmd_ctx
->lsm
->u
.disable
.channel_name
,
2866 cmd_ctx
->lsm
->u
.disable
.name
);
2869 case LTTNG_DISABLE_ALL_EVENT
:
2871 DBG("Disabling all events");
2873 ret
= cmd_disable_event_all(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2874 cmd_ctx
->lsm
->u
.disable
.channel_name
);
2877 case LTTNG_ENABLE_CHANNEL
:
2879 ret
= cmd_enable_channel(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
2880 &cmd_ctx
->lsm
->u
.channel
.chan
, kernel_poll_pipe
[1]);
2883 case LTTNG_ENABLE_EVENT
:
2885 ret
= cmd_enable_event(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
2886 cmd_ctx
->lsm
->u
.enable
.channel_name
,
2887 &cmd_ctx
->lsm
->u
.enable
.event
, NULL
, kernel_poll_pipe
[1]);
2890 case LTTNG_ENABLE_ALL_EVENT
:
2892 DBG("Enabling all events");
2894 ret
= cmd_enable_event_all(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
2895 cmd_ctx
->lsm
->u
.enable
.channel_name
,
2896 cmd_ctx
->lsm
->u
.enable
.event
.type
, NULL
, kernel_poll_pipe
[1]);
2899 case LTTNG_LIST_TRACEPOINTS
:
2901 struct lttng_event
*events
;
2904 nb_events
= cmd_list_tracepoints(cmd_ctx
->lsm
->domain
.type
, &events
);
2905 if (nb_events
< 0) {
2906 /* Return value is a negative lttng_error_code. */
2912 * Setup lttng message with payload size set to the event list size in
2913 * bytes and then copy list into the llm payload.
2915 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_event
) * nb_events
);
2921 /* Copy event list into message payload */
2922 memcpy(cmd_ctx
->llm
->payload
, events
,
2923 sizeof(struct lttng_event
) * nb_events
);
2930 case LTTNG_LIST_TRACEPOINT_FIELDS
:
2932 struct lttng_event_field
*fields
;
2935 nb_fields
= cmd_list_tracepoint_fields(cmd_ctx
->lsm
->domain
.type
,
2937 if (nb_fields
< 0) {
2938 /* Return value is a negative lttng_error_code. */
2944 * Setup lttng message with payload size set to the event list size in
2945 * bytes and then copy list into the llm payload.
2947 ret
= setup_lttng_msg(cmd_ctx
,
2948 sizeof(struct lttng_event_field
) * nb_fields
);
2954 /* Copy event list into message payload */
2955 memcpy(cmd_ctx
->llm
->payload
, fields
,
2956 sizeof(struct lttng_event_field
) * nb_fields
);
2963 case LTTNG_SET_CONSUMER_URI
:
2966 struct lttng_uri
*uris
;
2968 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
2969 len
= nb_uri
* sizeof(struct lttng_uri
);
2972 ret
= LTTNG_ERR_INVALID
;
2976 uris
= zmalloc(len
);
2978 ret
= LTTNG_ERR_FATAL
;
2982 /* Receive variable len data */
2983 DBG("Receiving %zu URI(s) from client ...", nb_uri
);
2984 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
2986 DBG("No URIs received from client... continuing");
2988 ret
= LTTNG_ERR_SESSION_FAIL
;
2993 ret
= cmd_set_consumer_uri(cmd_ctx
->lsm
->domain
.type
, cmd_ctx
->session
,
2995 if (ret
!= LTTNG_OK
) {
3001 * XXX: 0 means that this URI should be applied on the session. Should
3002 * be a DOMAIN enuam.
3004 if (cmd_ctx
->lsm
->domain
.type
== 0) {
3005 /* Add the URI for the UST session if a consumer is present. */
3006 if (cmd_ctx
->session
->ust_session
&&
3007 cmd_ctx
->session
->ust_session
->consumer
) {
3008 ret
= cmd_set_consumer_uri(LTTNG_DOMAIN_UST
, cmd_ctx
->session
,
3010 } else if (cmd_ctx
->session
->kernel_session
&&
3011 cmd_ctx
->session
->kernel_session
->consumer
) {
3012 ret
= cmd_set_consumer_uri(LTTNG_DOMAIN_KERNEL
,
3013 cmd_ctx
->session
, nb_uri
, uris
);
3021 case LTTNG_START_TRACE
:
3023 ret
= cmd_start_trace(cmd_ctx
->session
);
3026 case LTTNG_STOP_TRACE
:
3028 ret
= cmd_stop_trace(cmd_ctx
->session
);
3031 case LTTNG_CREATE_SESSION
:
3034 struct lttng_uri
*uris
= NULL
;
3036 nb_uri
= cmd_ctx
->lsm
->u
.uri
.size
;
3037 len
= nb_uri
* sizeof(struct lttng_uri
);
3040 uris
= zmalloc(len
);
3042 ret
= LTTNG_ERR_FATAL
;
3046 /* Receive variable len data */
3047 DBG("Waiting for %zu URIs from client ...", nb_uri
);
3048 ret
= lttcomm_recv_unix_sock(sock
, uris
, len
);
3050 DBG("No URIs received from client... continuing");
3052 ret
= LTTNG_ERR_SESSION_FAIL
;
3057 if (nb_uri
== 1 && uris
[0].dtype
!= LTTNG_DST_PATH
) {
3058 DBG("Creating session with ONE network URI is a bad call");
3059 ret
= LTTNG_ERR_SESSION_FAIL
;
3065 ret
= cmd_create_session_uri(cmd_ctx
->lsm
->session
.name
, uris
, nb_uri
,
3072 case LTTNG_DESTROY_SESSION
:
3074 ret
= cmd_destroy_session(cmd_ctx
->session
, kernel_poll_pipe
[1]);
3076 /* Set session to NULL so we do not unlock it after free. */
3077 cmd_ctx
->session
= NULL
;
3080 case LTTNG_LIST_DOMAINS
:
3083 struct lttng_domain
*domains
;
3085 nb_dom
= cmd_list_domains(cmd_ctx
->session
, &domains
);
3087 /* Return value is a negative lttng_error_code. */
3092 ret
= setup_lttng_msg(cmd_ctx
, nb_dom
* sizeof(struct lttng_domain
));
3098 /* Copy event list into message payload */
3099 memcpy(cmd_ctx
->llm
->payload
, domains
,
3100 nb_dom
* sizeof(struct lttng_domain
));
3107 case LTTNG_LIST_CHANNELS
:
3110 struct lttng_channel
*channels
;
3112 nb_chan
= cmd_list_channels(cmd_ctx
->lsm
->domain
.type
,
3113 cmd_ctx
->session
, &channels
);
3115 /* Return value is a negative lttng_error_code. */
3120 ret
= setup_lttng_msg(cmd_ctx
, nb_chan
* sizeof(struct lttng_channel
));
3126 /* Copy event list into message payload */
3127 memcpy(cmd_ctx
->llm
->payload
, channels
,
3128 nb_chan
* sizeof(struct lttng_channel
));
3135 case LTTNG_LIST_EVENTS
:
3138 struct lttng_event
*events
= NULL
;
3140 nb_event
= cmd_list_events(cmd_ctx
->lsm
->domain
.type
, cmd_ctx
->session
,
3141 cmd_ctx
->lsm
->u
.list
.channel_name
, &events
);
3143 /* Return value is a negative lttng_error_code. */
3148 ret
= setup_lttng_msg(cmd_ctx
, nb_event
* sizeof(struct lttng_event
));
3154 /* Copy event list into message payload */
3155 memcpy(cmd_ctx
->llm
->payload
, events
,
3156 nb_event
* sizeof(struct lttng_event
));
3163 case LTTNG_LIST_SESSIONS
:
3165 unsigned int nr_sessions
;
3167 session_lock_list();
3168 nr_sessions
= lttng_sessions_count(
3169 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
3170 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
3172 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_session
) * nr_sessions
);
3174 session_unlock_list();
3178 /* Filled the session array */
3179 cmd_list_lttng_sessions((struct lttng_session
*)(cmd_ctx
->llm
->payload
),
3180 LTTNG_SOCK_GET_UID_CRED(&cmd_ctx
->creds
),
3181 LTTNG_SOCK_GET_GID_CRED(&cmd_ctx
->creds
));
3183 session_unlock_list();
3188 case LTTNG_CALIBRATE
:
3190 ret
= cmd_calibrate(cmd_ctx
->lsm
->domain
.type
,
3191 &cmd_ctx
->lsm
->u
.calibrate
);
3194 case LTTNG_REGISTER_CONSUMER
:
3196 struct consumer_data
*cdata
;
3198 switch (cmd_ctx
->lsm
->domain
.type
) {
3199 case LTTNG_DOMAIN_KERNEL
:
3200 cdata
= &kconsumer_data
;
3203 ret
= LTTNG_ERR_UND
;
3207 ret
= cmd_register_consumer(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
3208 cmd_ctx
->lsm
->u
.reg
.path
, cdata
);
3211 case LTTNG_ENABLE_EVENT_WITH_FILTER
:
3213 struct lttng_filter_bytecode
*bytecode
;
3215 if (cmd_ctx
->lsm
->u
.enable
.bytecode_len
> LTTNG_FILTER_MAX_LEN
) {
3216 ret
= LTTNG_ERR_FILTER_INVAL
;
3219 if (cmd_ctx
->lsm
->u
.enable
.bytecode_len
== 0) {
3220 ret
= LTTNG_ERR_FILTER_INVAL
;
3223 bytecode
= zmalloc(cmd_ctx
->lsm
->u
.enable
.bytecode_len
);
3225 ret
= LTTNG_ERR_FILTER_NOMEM
;
3228 /* Receive var. len. data */
3229 DBG("Receiving var len data from client ...");
3230 ret
= lttcomm_recv_unix_sock(sock
, bytecode
,
3231 cmd_ctx
->lsm
->u
.enable
.bytecode_len
);
3233 DBG("Nothing recv() from client var len data... continuing");
3235 ret
= LTTNG_ERR_FILTER_INVAL
;
3239 if (bytecode
->len
+ sizeof(*bytecode
)
3240 != cmd_ctx
->lsm
->u
.enable
.bytecode_len
) {
3242 ret
= LTTNG_ERR_FILTER_INVAL
;
3246 ret
= cmd_enable_event(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
3247 cmd_ctx
->lsm
->u
.enable
.channel_name
,
3248 &cmd_ctx
->lsm
->u
.enable
.event
, bytecode
, kernel_poll_pipe
[1]);
3251 case LTTNG_DATA_PENDING
:
3253 ret
= cmd_data_pending(cmd_ctx
->session
);
3257 ret
= LTTNG_ERR_UND
;
3262 if (cmd_ctx
->llm
== NULL
) {
3263 DBG("Missing llm structure. Allocating one.");
3264 if (setup_lttng_msg(cmd_ctx
, 0) < 0) {
3268 /* Set return code */
3269 cmd_ctx
->llm
->ret_code
= ret
;
3271 if (cmd_ctx
->session
) {
3272 session_unlock(cmd_ctx
->session
);
3274 if (need_tracing_session
) {
3275 session_unlock_list();
3282 * Thread managing health check socket.
3284 static void *thread_manage_health(void *data
)
3286 int sock
= -1, new_sock
= -1, ret
, i
, pollfd
, err
= -1;
3287 uint32_t revents
, nb_fd
;
3288 struct lttng_poll_event events
;
3289 struct lttcomm_health_msg msg
;
3290 struct lttcomm_health_data reply
;
3292 DBG("[thread] Manage health check started");
3294 rcu_register_thread();
3296 /* We might hit an error path before this is created. */
3297 lttng_poll_init(&events
);
3299 /* Create unix socket */
3300 sock
= lttcomm_create_unix_sock(health_unix_sock_path
);
3302 ERR("Unable to create health check Unix socket");
3308 * Set the CLOEXEC flag. Return code is useless because either way, the
3311 (void) utils_set_fd_cloexec(sock
);
3313 ret
= lttcomm_listen_unix_sock(sock
);
3319 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
3320 * more will be added to this poll set.
3322 ret
= sessiond_set_thread_pollset(&events
, 2);
3327 /* Add the application registration socket */
3328 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLPRI
);
3334 DBG("Health check ready");
3336 /* Inifinite blocking call, waiting for transmission */
3338 ret
= lttng_poll_wait(&events
, -1);
3341 * Restart interrupted system call.
3343 if (errno
== EINTR
) {
3351 for (i
= 0; i
< nb_fd
; i
++) {
3352 /* Fetch once the poll data */
3353 revents
= LTTNG_POLL_GETEV(&events
, i
);
3354 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3356 /* Thread quit pipe has been closed. Killing thread. */
3357 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
3363 /* Event on the registration socket */
3364 if (pollfd
== sock
) {
3365 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3366 ERR("Health socket poll error");
3372 new_sock
= lttcomm_accept_unix_sock(sock
);
3378 * Set the CLOEXEC flag. Return code is useless because either way, the
3381 (void) utils_set_fd_cloexec(new_sock
);
3383 DBG("Receiving data from client for health...");
3384 ret
= lttcomm_recv_unix_sock(new_sock
, (void *)&msg
, sizeof(msg
));
3386 DBG("Nothing recv() from client... continuing");
3387 ret
= close(new_sock
);
3395 rcu_thread_online();
3397 switch (msg
.component
) {
3398 case LTTNG_HEALTH_CMD
:
3399 reply
.ret_code
= health_check_state(HEALTH_TYPE_CMD
);
3401 case LTTNG_HEALTH_APP_MANAGE
:
3402 reply
.ret_code
= health_check_state(HEALTH_TYPE_APP_MANAGE
);
3404 case LTTNG_HEALTH_APP_REG
:
3405 reply
.ret_code
= health_check_state(HEALTH_TYPE_APP_REG
);
3407 case LTTNG_HEALTH_KERNEL
:
3408 reply
.ret_code
= health_check_state(HEALTH_TYPE_KERNEL
);
3410 case LTTNG_HEALTH_CONSUMER
:
3411 reply
.ret_code
= check_consumer_health();
3413 case LTTNG_HEALTH_HT_CLEANUP
:
3414 reply
.ret_code
= health_check_state(HEALTH_TYPE_HT_CLEANUP
);
3416 case LTTNG_HEALTH_APP_MANAGE_NOTIFY
:
3417 reply
.ret_code
= health_check_state(HEALTH_TYPE_APP_MANAGE_NOTIFY
);
3419 case LTTNG_HEALTH_APP_REG_DISPATCH
:
3420 reply
.ret_code
= health_check_state(HEALTH_TYPE_APP_REG_DISPATCH
);
3422 case LTTNG_HEALTH_ALL
:
3424 health_check_state(HEALTH_TYPE_APP_MANAGE
) &&
3425 health_check_state(HEALTH_TYPE_APP_REG
) &&
3426 health_check_state(HEALTH_TYPE_CMD
) &&
3427 health_check_state(HEALTH_TYPE_KERNEL
) &&
3428 check_consumer_health() &&
3429 health_check_state(HEALTH_TYPE_HT_CLEANUP
) &&
3430 health_check_state(HEALTH_TYPE_APP_MANAGE_NOTIFY
) &&
3431 health_check_state(HEALTH_TYPE_APP_REG_DISPATCH
);
3434 reply
.ret_code
= LTTNG_ERR_UND
;
3439 * Flip ret value since 0 is a success and 1 indicates a bad health for
3440 * the client where in the sessiond it is the opposite. Again, this is
3441 * just to make things easier for us poor developer which enjoy a lot
3444 if (reply
.ret_code
== 0 || reply
.ret_code
== 1) {
3445 reply
.ret_code
= !reply
.ret_code
;
3448 DBG2("Health check return value %d", reply
.ret_code
);
3450 ret
= send_unix_sock(new_sock
, (void *) &reply
, sizeof(reply
));
3452 ERR("Failed to send health data back to client");
3455 /* End of transmission */
3456 ret
= close(new_sock
);
3466 ERR("Health error occurred in %s", __func__
);
3468 DBG("Health check thread dying");
3469 unlink(health_unix_sock_path
);
3477 lttng_poll_clean(&events
);
3479 rcu_unregister_thread();
3484 * This thread manage all clients request using the unix client socket for
3487 static void *thread_manage_clients(void *data
)
3489 int sock
= -1, ret
, i
, pollfd
, err
= -1;
3491 uint32_t revents
, nb_fd
;
3492 struct command_ctx
*cmd_ctx
= NULL
;
3493 struct lttng_poll_event events
;
3495 DBG("[thread] Manage client started");
3497 rcu_register_thread();
3499 health_register(HEALTH_TYPE_CMD
);
3501 if (testpoint(thread_manage_clients
)) {
3502 goto error_testpoint
;
3505 health_code_update();
3507 ret
= lttcomm_listen_unix_sock(client_sock
);
3513 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
3514 * more will be added to this poll set.
3516 ret
= sessiond_set_thread_pollset(&events
, 2);
3518 goto error_create_poll
;
3521 /* Add the application registration socket */
3522 ret
= lttng_poll_add(&events
, client_sock
, LPOLLIN
| LPOLLPRI
);
3528 * Notify parent pid that we are ready to accept command for client side.
3530 if (opt_sig_parent
) {
3531 kill(ppid
, SIGUSR1
);
3534 if (testpoint(thread_manage_clients_before_loop
)) {
3538 health_code_update();
3541 DBG("Accepting client command ...");
3543 /* Inifinite blocking call, waiting for transmission */
3545 health_poll_entry();
3546 ret
= lttng_poll_wait(&events
, -1);
3550 * Restart interrupted system call.
3552 if (errno
== EINTR
) {
3560 for (i
= 0; i
< nb_fd
; i
++) {
3561 /* Fetch once the poll data */
3562 revents
= LTTNG_POLL_GETEV(&events
, i
);
3563 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3565 health_code_update();
3567 /* Thread quit pipe has been closed. Killing thread. */
3568 ret
= sessiond_check_thread_quit_pipe(pollfd
, revents
);
3574 /* Event on the registration socket */
3575 if (pollfd
== client_sock
) {
3576 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3577 ERR("Client socket poll error");
3583 DBG("Wait for client response");
3585 health_code_update();
3587 sock
= lttcomm_accept_unix_sock(client_sock
);
3593 * Set the CLOEXEC flag. Return code is useless because either way, the
3596 (void) utils_set_fd_cloexec(sock
);
3598 /* Set socket option for credentials retrieval */
3599 ret
= lttcomm_setsockopt_creds_unix_sock(sock
);
3604 /* Allocate context command to process the client request */
3605 cmd_ctx
= zmalloc(sizeof(struct command_ctx
));
3606 if (cmd_ctx
== NULL
) {
3607 PERROR("zmalloc cmd_ctx");
3611 /* Allocate data buffer for reception */
3612 cmd_ctx
->lsm
= zmalloc(sizeof(struct lttcomm_session_msg
));
3613 if (cmd_ctx
->lsm
== NULL
) {
3614 PERROR("zmalloc cmd_ctx->lsm");
3618 cmd_ctx
->llm
= NULL
;
3619 cmd_ctx
->session
= NULL
;
3621 health_code_update();
3624 * Data is received from the lttng client. The struct
3625 * lttcomm_session_msg (lsm) contains the command and data request of
3628 DBG("Receiving data from client ...");
3629 ret
= lttcomm_recv_creds_unix_sock(sock
, cmd_ctx
->lsm
,
3630 sizeof(struct lttcomm_session_msg
), &cmd_ctx
->creds
);
3632 DBG("Nothing recv() from client... continuing");
3638 clean_command_ctx(&cmd_ctx
);
3642 health_code_update();
3644 // TODO: Validate cmd_ctx including sanity check for
3645 // security purpose.
3647 rcu_thread_online();
3649 * This function dispatch the work to the kernel or userspace tracer
3650 * libs and fill the lttcomm_lttng_msg data structure of all the needed
3651 * informations for the client. The command context struct contains
3652 * everything this function may needs.
3654 ret
= process_client_msg(cmd_ctx
, sock
, &sock_error
);
3655 rcu_thread_offline();
3663 * TODO: Inform client somehow of the fatal error. At
3664 * this point, ret < 0 means that a zmalloc failed
3665 * (ENOMEM). Error detected but still accept
3666 * command, unless a socket error has been
3669 clean_command_ctx(&cmd_ctx
);
3673 health_code_update();
3675 DBG("Sending response (size: %d, retcode: %s)",
3676 cmd_ctx
->lttng_msg_size
,
3677 lttng_strerror(-cmd_ctx
->llm
->ret_code
));
3678 ret
= send_unix_sock(sock
, cmd_ctx
->llm
, cmd_ctx
->lttng_msg_size
);
3680 ERR("Failed to send data back to client");
3683 /* End of transmission */
3690 clean_command_ctx(&cmd_ctx
);
3692 health_code_update();
3704 lttng_poll_clean(&events
);
3705 clean_command_ctx(&cmd_ctx
);
3710 unlink(client_unix_sock_path
);
3711 if (client_sock
>= 0) {
3712 ret
= close(client_sock
);
3720 ERR("Health error occurred in %s", __func__
);
3723 health_unregister();
3725 DBG("Client thread dying");
3727 rcu_unregister_thread();
3733 * usage function on stderr
3735 static void usage(void)
3737 fprintf(stderr
, "Usage: %s OPTIONS\n\nOptions:\n", progname
);
3738 fprintf(stderr
, " -h, --help Display this usage.\n");
3739 fprintf(stderr
, " -c, --client-sock PATH Specify path for the client unix socket\n");
3740 fprintf(stderr
, " -a, --apps-sock PATH Specify path for apps unix socket\n");
3741 fprintf(stderr
, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
3742 fprintf(stderr
, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
3743 fprintf(stderr
, " --ustconsumerd32-err-sock PATH Specify path for the 32-bit UST consumer error socket\n");
3744 fprintf(stderr
, " --ustconsumerd64-err-sock PATH Specify path for the 64-bit UST consumer error socket\n");
3745 fprintf(stderr
, " --ustconsumerd32-cmd-sock PATH Specify path for the 32-bit UST consumer command socket\n");
3746 fprintf(stderr
, " --ustconsumerd64-cmd-sock PATH Specify path for the 64-bit UST consumer command socket\n");
3747 fprintf(stderr
, " --consumerd32-path PATH Specify path for the 32-bit UST consumer daemon binary\n");
3748 fprintf(stderr
, " --consumerd32-libdir PATH Specify path for the 32-bit UST consumer daemon libraries\n");
3749 fprintf(stderr
, " --consumerd64-path PATH Specify path for the 64-bit UST consumer daemon binary\n");
3750 fprintf(stderr
, " --consumerd64-libdir PATH Specify path for the 64-bit UST consumer daemon libraries\n");
3751 fprintf(stderr
, " -d, --daemonize Start as a daemon.\n");
3752 fprintf(stderr
, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
3753 fprintf(stderr
, " -V, --version Show version number.\n");
3754 fprintf(stderr
, " -S, --sig-parent Send SIGCHLD to parent pid to notify readiness.\n");
3755 fprintf(stderr
, " -q, --quiet No output at all.\n");
3756 fprintf(stderr
, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
3757 fprintf(stderr
, " -p, --pidfile FILE Write a pid to FILE name overriding the default value.\n");
3758 fprintf(stderr
, " --verbose-consumer Verbose mode for consumer. Activate DBG() macro.\n");
3759 fprintf(stderr
, " --no-kernel Disable kernel tracer\n");
3763 * daemon argument parsing
3765 static int parse_args(int argc
, char **argv
)
3769 static struct option long_options
[] = {
3770 { "client-sock", 1, 0, 'c' },
3771 { "apps-sock", 1, 0, 'a' },
3772 { "kconsumerd-cmd-sock", 1, 0, 'C' },
3773 { "kconsumerd-err-sock", 1, 0, 'E' },
3774 { "ustconsumerd32-cmd-sock", 1, 0, 'G' },
3775 { "ustconsumerd32-err-sock", 1, 0, 'H' },
3776 { "ustconsumerd64-cmd-sock", 1, 0, 'D' },
3777 { "ustconsumerd64-err-sock", 1, 0, 'F' },
3778 { "consumerd32-path", 1, 0, 'u' },
3779 { "consumerd32-libdir", 1, 0, 'U' },
3780 { "consumerd64-path", 1, 0, 't' },
3781 { "consumerd64-libdir", 1, 0, 'T' },
3782 { "daemonize", 0, 0, 'd' },
3783 { "sig-parent", 0, 0, 'S' },
3784 { "help", 0, 0, 'h' },
3785 { "group", 1, 0, 'g' },
3786 { "version", 0, 0, 'V' },
3787 { "quiet", 0, 0, 'q' },
3788 { "verbose", 0, 0, 'v' },
3789 { "verbose-consumer", 0, 0, 'Z' },
3790 { "no-kernel", 0, 0, 'N' },
3791 { "pidfile", 1, 0, 'p' },
3796 int option_index
= 0;
3797 c
= getopt_long(argc
, argv
, "dhqvVSN" "a:c:g:s:C:E:D:F:Z:u:t:p:",
3798 long_options
, &option_index
);
3805 fprintf(stderr
, "option %s", long_options
[option_index
].name
);
3807 fprintf(stderr
, " with arg %s\n", optarg
);
3811 snprintf(client_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3814 snprintf(apps_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3820 opt_tracing_group
= optarg
;
3826 fprintf(stdout
, "%s\n", VERSION
);
3832 snprintf(kconsumer_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3835 snprintf(kconsumer_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3838 snprintf(ustconsumer64_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3841 snprintf(ustconsumer64_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3844 snprintf(ustconsumer32_data
.err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3847 snprintf(ustconsumer32_data
.cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3853 lttng_opt_quiet
= 1;
3856 /* Verbose level can increase using multiple -v */
3857 lttng_opt_verbose
+= 1;
3860 opt_verbose_consumer
+= 1;
3863 consumerd32_bin
= optarg
;
3866 consumerd32_libdir
= optarg
;
3869 consumerd64_bin
= optarg
;
3872 consumerd64_libdir
= optarg
;
3875 opt_pidfile
= optarg
;
3878 /* Unknown option or other error.
3879 * Error is printed by getopt, just return */
3888 * Creates the two needed socket by the daemon.
3889 * apps_sock - The communication socket for all UST apps.
3890 * client_sock - The communication of the cli tool (lttng).
3892 static int init_daemon_socket(void)
3897 old_umask
= umask(0);
3899 /* Create client tool unix socket */
3900 client_sock
= lttcomm_create_unix_sock(client_unix_sock_path
);
3901 if (client_sock
< 0) {
3902 ERR("Create unix sock failed: %s", client_unix_sock_path
);
3907 /* Set the cloexec flag */
3908 ret
= utils_set_fd_cloexec(client_sock
);
3910 ERR("Unable to set CLOEXEC flag to the client Unix socket (fd: %d). "
3911 "Continuing but note that the consumer daemon will have a "
3912 "reference to this socket on exec()", client_sock
);
3915 /* File permission MUST be 660 */
3916 ret
= chmod(client_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
3918 ERR("Set file permissions failed: %s", client_unix_sock_path
);
3923 /* Create the application unix socket */
3924 apps_sock
= lttcomm_create_unix_sock(apps_unix_sock_path
);
3925 if (apps_sock
< 0) {
3926 ERR("Create unix sock failed: %s", apps_unix_sock_path
);
3931 /* Set the cloexec flag */
3932 ret
= utils_set_fd_cloexec(apps_sock
);
3934 ERR("Unable to set CLOEXEC flag to the app Unix socket (fd: %d). "
3935 "Continuing but note that the consumer daemon will have a "
3936 "reference to this socket on exec()", apps_sock
);
3939 /* File permission MUST be 666 */
3940 ret
= chmod(apps_unix_sock_path
,
3941 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IROTH
| S_IWOTH
);
3943 ERR("Set file permissions failed: %s", apps_unix_sock_path
);
3948 DBG3("Session daemon client socket %d and application socket %d created",
3949 client_sock
, apps_sock
);
3957 * Check if the global socket is available, and if a daemon is answering at the
3958 * other side. If yes, error is returned.
3960 static int check_existing_daemon(void)
3962 /* Is there anybody out there ? */
3963 if (lttng_session_daemon_alive()) {
3971 * Set the tracing group gid onto the client socket.
3973 * Race window between mkdir and chown is OK because we are going from more
3974 * permissive (root.root) to less permissive (root.tracing).
3976 static int set_permissions(char *rundir
)
3981 ret
= allowed_group();
3983 WARN("No tracing group detected");
3984 /* Setting gid to 0 if no tracing group is found */
3990 /* Set lttng run dir */
3991 ret
= chown(rundir
, 0, gid
);
3993 ERR("Unable to set group on %s", rundir
);
3997 /* Ensure all applications and tracing group can search the run dir */
3998 ret
= chmod(rundir
, S_IRWXU
| S_IXGRP
| S_IXOTH
);
4000 ERR("Unable to set permissions on %s", rundir
);
4004 /* lttng client socket path */
4005 ret
= chown(client_unix_sock_path
, 0, gid
);
4007 ERR("Unable to set group on %s", client_unix_sock_path
);
4011 /* kconsumer error socket path */
4012 ret
= chown(kconsumer_data
.err_unix_sock_path
, 0, gid
);
4014 ERR("Unable to set group on %s", kconsumer_data
.err_unix_sock_path
);
4018 /* 64-bit ustconsumer error socket path */
4019 ret
= chown(ustconsumer64_data
.err_unix_sock_path
, 0, gid
);
4021 ERR("Unable to set group on %s", ustconsumer64_data
.err_unix_sock_path
);
4025 /* 32-bit ustconsumer compat32 error socket path */
4026 ret
= chown(ustconsumer32_data
.err_unix_sock_path
, 0, gid
);
4028 ERR("Unable to set group on %s", ustconsumer32_data
.err_unix_sock_path
);
4032 DBG("All permissions are set");
4038 * Create the lttng run directory needed for all global sockets and pipe.
4040 static int create_lttng_rundir(const char *rundir
)
4044 DBG3("Creating LTTng run directory: %s", rundir
);
4046 ret
= mkdir(rundir
, S_IRWXU
);
4048 if (errno
!= EEXIST
) {
4049 ERR("Unable to create %s", rundir
);
4061 * Setup sockets and directory needed by the kconsumerd communication with the
4064 static int set_consumer_sockets(struct consumer_data
*consumer_data
,
4068 char path
[PATH_MAX
];
4070 switch (consumer_data
->type
) {
4071 case LTTNG_CONSUMER_KERNEL
:
4072 snprintf(path
, PATH_MAX
, DEFAULT_KCONSUMERD_PATH
, rundir
);
4074 case LTTNG_CONSUMER64_UST
:
4075 snprintf(path
, PATH_MAX
, DEFAULT_USTCONSUMERD64_PATH
, rundir
);
4077 case LTTNG_CONSUMER32_UST
:
4078 snprintf(path
, PATH_MAX
, DEFAULT_USTCONSUMERD32_PATH
, rundir
);
4081 ERR("Consumer type unknown");
4086 DBG2("Creating consumer directory: %s", path
);
4088 ret
= mkdir(path
, S_IRWXU
);
4090 if (errno
!= EEXIST
) {
4092 ERR("Failed to create %s", path
);
4098 /* Create the kconsumerd error unix socket */
4099 consumer_data
->err_sock
=
4100 lttcomm_create_unix_sock(consumer_data
->err_unix_sock_path
);
4101 if (consumer_data
->err_sock
< 0) {
4102 ERR("Create unix sock failed: %s", consumer_data
->err_unix_sock_path
);
4108 * Set the CLOEXEC flag. Return code is useless because either way, the
4111 ret
= utils_set_fd_cloexec(consumer_data
->err_sock
);
4113 PERROR("utils_set_fd_cloexec");
4114 /* continue anyway */
4117 /* File permission MUST be 660 */
4118 ret
= chmod(consumer_data
->err_unix_sock_path
,
4119 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
4121 ERR("Set file permissions failed: %s", consumer_data
->err_unix_sock_path
);
4131 * Signal handler for the daemon
4133 * Simply stop all worker threads, leaving main() return gracefully after
4134 * joining all threads and calling cleanup().
4136 static void sighandler(int sig
)
4140 DBG("SIGPIPE caught");
4143 DBG("SIGINT caught");
4147 DBG("SIGTERM caught");
4156 * Setup signal handler for :
4157 * SIGINT, SIGTERM, SIGPIPE
4159 static int set_signal_handler(void)
4162 struct sigaction sa
;
4165 if ((ret
= sigemptyset(&sigset
)) < 0) {
4166 PERROR("sigemptyset");
4170 sa
.sa_handler
= sighandler
;
4171 sa
.sa_mask
= sigset
;
4173 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
4174 PERROR("sigaction");
4178 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
4179 PERROR("sigaction");
4183 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
4184 PERROR("sigaction");
4188 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
4194 * Set open files limit to unlimited. This daemon can open a large number of
4195 * file descriptors in order to consumer multiple kernel traces.
4197 static void set_ulimit(void)
4202 /* The kernel does not allowed an infinite limit for open files */
4203 lim
.rlim_cur
= 65535;
4204 lim
.rlim_max
= 65535;
4206 ret
= setrlimit(RLIMIT_NOFILE
, &lim
);
4208 PERROR("failed to set open files limit");
4213 * Write pidfile using the rundir and opt_pidfile.
4215 static void write_pidfile(void)
4218 char pidfile_path
[PATH_MAX
];
4223 strncpy(pidfile_path
, opt_pidfile
, sizeof(pidfile_path
));
4225 /* Build pidfile path from rundir and opt_pidfile. */
4226 ret
= snprintf(pidfile_path
, sizeof(pidfile_path
), "%s/"
4227 DEFAULT_LTTNG_SESSIOND_PIDFILE
, rundir
);
4229 PERROR("snprintf pidfile path");
4235 * Create pid file in rundir. Return value is of no importance. The
4236 * execution will continue even though we are not able to write the file.
4238 (void) utils_create_pid_file(getpid(), pidfile_path
);
4247 int main(int argc
, char **argv
)
4251 const char *home_path
, *env_app_timeout
;
4253 init_kernel_workarounds();
4255 rcu_register_thread();
4257 setup_consumerd_path();
4259 page_size
= sysconf(_SC_PAGESIZE
);
4260 if (page_size
< 0) {
4261 PERROR("sysconf _SC_PAGESIZE");
4262 page_size
= LONG_MAX
;
4263 WARN("Fallback page size to %ld", page_size
);
4266 /* Parse arguments */
4268 if ((ret
= parse_args(argc
, argv
)) < 0) {
4278 * child: setsid, close FD 0, 1, 2, chdir /
4279 * parent: exit (if fork is successful)
4287 * We are in the child. Make sure all other file
4288 * descriptors are closed, in case we are called with
4289 * more opened file descriptors than the standard ones.
4291 for (i
= 3; i
< sysconf(_SC_OPEN_MAX
); i
++) {
4296 /* Create thread quit pipe */
4297 if ((ret
= init_thread_quit_pipe()) < 0) {
4301 /* Check if daemon is UID = 0 */
4302 is_root
= !getuid();
4305 rundir
= strdup(DEFAULT_LTTNG_RUNDIR
);
4307 /* Create global run dir with root access */
4308 ret
= create_lttng_rundir(rundir
);
4313 if (strlen(apps_unix_sock_path
) == 0) {
4314 snprintf(apps_unix_sock_path
, PATH_MAX
,
4315 DEFAULT_GLOBAL_APPS_UNIX_SOCK
);
4318 if (strlen(client_unix_sock_path
) == 0) {
4319 snprintf(client_unix_sock_path
, PATH_MAX
,
4320 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK
);
4323 /* Set global SHM for ust */
4324 if (strlen(wait_shm_path
) == 0) {
4325 snprintf(wait_shm_path
, PATH_MAX
,
4326 DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH
);
4329 if (strlen(health_unix_sock_path
) == 0) {
4330 snprintf(health_unix_sock_path
, sizeof(health_unix_sock_path
),
4331 DEFAULT_GLOBAL_HEALTH_UNIX_SOCK
);
4334 /* Setup kernel consumerd path */
4335 snprintf(kconsumer_data
.err_unix_sock_path
, PATH_MAX
,
4336 DEFAULT_KCONSUMERD_ERR_SOCK_PATH
, rundir
);
4337 snprintf(kconsumer_data
.cmd_unix_sock_path
, PATH_MAX
,
4338 DEFAULT_KCONSUMERD_CMD_SOCK_PATH
, rundir
);
4340 DBG2("Kernel consumer err path: %s",
4341 kconsumer_data
.err_unix_sock_path
);
4342 DBG2("Kernel consumer cmd path: %s",
4343 kconsumer_data
.cmd_unix_sock_path
);
4345 home_path
= utils_get_home_dir();
4346 if (home_path
== NULL
) {
4347 /* TODO: Add --socket PATH option */
4348 ERR("Can't get HOME directory for sockets creation.");
4354 * Create rundir from home path. This will create something like
4357 ret
= asprintf(&rundir
, DEFAULT_LTTNG_HOME_RUNDIR
, home_path
);
4363 ret
= create_lttng_rundir(rundir
);
4368 if (strlen(apps_unix_sock_path
) == 0) {
4369 snprintf(apps_unix_sock_path
, PATH_MAX
,
4370 DEFAULT_HOME_APPS_UNIX_SOCK
, home_path
);
4373 /* Set the cli tool unix socket path */
4374 if (strlen(client_unix_sock_path
) == 0) {
4375 snprintf(client_unix_sock_path
, PATH_MAX
,
4376 DEFAULT_HOME_CLIENT_UNIX_SOCK
, home_path
);
4379 /* Set global SHM for ust */
4380 if (strlen(wait_shm_path
) == 0) {
4381 snprintf(wait_shm_path
, PATH_MAX
,
4382 DEFAULT_HOME_APPS_WAIT_SHM_PATH
, getuid());
4385 /* Set health check Unix path */
4386 if (strlen(health_unix_sock_path
) == 0) {
4387 snprintf(health_unix_sock_path
, sizeof(health_unix_sock_path
),
4388 DEFAULT_HOME_HEALTH_UNIX_SOCK
, home_path
);
4392 /* Set consumer initial state */
4393 kernel_consumerd_state
= CONSUMER_STOPPED
;
4394 ust_consumerd_state
= CONSUMER_STOPPED
;
4396 DBG("Client socket path %s", client_unix_sock_path
);
4397 DBG("Application socket path %s", apps_unix_sock_path
);
4398 DBG("Application wait path %s", wait_shm_path
);
4399 DBG("LTTng run directory path: %s", rundir
);
4401 /* 32 bits consumerd path setup */
4402 snprintf(ustconsumer32_data
.err_unix_sock_path
, PATH_MAX
,
4403 DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
, rundir
);
4404 snprintf(ustconsumer32_data
.cmd_unix_sock_path
, PATH_MAX
,
4405 DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
, rundir
);
4407 DBG2("UST consumer 32 bits err path: %s",
4408 ustconsumer32_data
.err_unix_sock_path
);
4409 DBG2("UST consumer 32 bits cmd path: %s",
4410 ustconsumer32_data
.cmd_unix_sock_path
);
4412 /* 64 bits consumerd path setup */
4413 snprintf(ustconsumer64_data
.err_unix_sock_path
, PATH_MAX
,
4414 DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
, rundir
);
4415 snprintf(ustconsumer64_data
.cmd_unix_sock_path
, PATH_MAX
,
4416 DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
, rundir
);
4418 DBG2("UST consumer 64 bits err path: %s",
4419 ustconsumer64_data
.err_unix_sock_path
);
4420 DBG2("UST consumer 64 bits cmd path: %s",
4421 ustconsumer64_data
.cmd_unix_sock_path
);
4424 * See if daemon already exist.
4426 if ((ret
= check_existing_daemon()) < 0) {
4427 ERR("Already running daemon.\n");
4429 * We do not goto exit because we must not cleanup()
4430 * because a daemon is already running.
4436 * Init UST app hash table. Alloc hash table before this point since
4437 * cleanup() can get called after that point.
4441 /* After this point, we can safely call cleanup() with "goto exit" */
4444 * These actions must be executed as root. We do that *after* setting up
4445 * the sockets path because we MUST make the check for another daemon using
4446 * those paths *before* trying to set the kernel consumer sockets and init
4450 ret
= set_consumer_sockets(&kconsumer_data
, rundir
);
4455 /* Setup kernel tracer */
4456 if (!opt_no_kernel
) {
4457 init_kernel_tracer();
4460 /* Set ulimit for open files */
4463 /* init lttng_fd tracking must be done after set_ulimit. */
4466 ret
= set_consumer_sockets(&ustconsumer64_data
, rundir
);
4471 ret
= set_consumer_sockets(&ustconsumer32_data
, rundir
);
4476 if ((ret
= set_signal_handler()) < 0) {
4480 /* Setup the needed unix socket */
4481 if ((ret
= init_daemon_socket()) < 0) {
4485 /* Set credentials to socket */
4486 if (is_root
&& ((ret
= set_permissions(rundir
)) < 0)) {
4490 /* Get parent pid if -S, --sig-parent is specified. */
4491 if (opt_sig_parent
) {
4495 /* Setup the kernel pipe for waking up the kernel thread */
4496 if (is_root
&& !opt_no_kernel
) {
4497 if ((ret
= utils_create_pipe_cloexec(kernel_poll_pipe
)) < 0) {
4502 /* Setup the thread ht_cleanup communication pipe. */
4503 if (utils_create_pipe_cloexec(ht_cleanup_pipe
) < 0) {
4507 /* Setup the thread apps communication pipe. */
4508 if ((ret
= utils_create_pipe_cloexec(apps_cmd_pipe
)) < 0) {
4512 /* Setup the thread apps notify communication pipe. */
4513 if (utils_create_pipe_cloexec(apps_cmd_notify_pipe
) < 0) {
4517 /* Initialize global buffer per UID and PID registry. */
4518 buffer_reg_init_uid_registry();
4519 buffer_reg_init_pid_registry();
4521 /* Init UST command queue. */
4522 cds_wfq_init(&ust_cmd_queue
.queue
);
4525 * Get session list pointer. This pointer MUST NOT be free(). This list is
4526 * statically declared in session.c
4528 session_list_ptr
= session_get_list();
4530 /* Set up max poll set size */
4531 lttng_poll_set_max_size();
4535 /* Check for the application socket timeout env variable. */
4536 env_app_timeout
= getenv(DEFAULT_APP_SOCKET_TIMEOUT_ENV
);
4537 if (env_app_timeout
) {
4538 app_socket_timeout
= atoi(env_app_timeout
);
4540 app_socket_timeout
= DEFAULT_APP_SOCKET_RW_TIMEOUT
;
4545 /* This is to get the TCP timeout value. */
4546 lttcomm_inet_init();
4549 * Initialize the health check subsystem. This call should set the
4550 * appropriate time values.
4554 /* Create thread to manage the client socket */
4555 ret
= pthread_create(&ht_cleanup_thread
, NULL
,
4556 thread_ht_cleanup
, (void *) NULL
);
4558 PERROR("pthread_create ht_cleanup");
4559 goto exit_ht_cleanup
;
4562 /* Create thread to manage the client socket */
4563 ret
= pthread_create(&health_thread
, NULL
,
4564 thread_manage_health
, (void *) NULL
);
4566 PERROR("pthread_create health");
4570 /* Create thread to manage the client socket */
4571 ret
= pthread_create(&client_thread
, NULL
,
4572 thread_manage_clients
, (void *) NULL
);
4574 PERROR("pthread_create clients");
4578 /* Create thread to dispatch registration */
4579 ret
= pthread_create(&dispatch_thread
, NULL
,
4580 thread_dispatch_ust_registration
, (void *) NULL
);
4582 PERROR("pthread_create dispatch");
4586 /* Create thread to manage application registration. */
4587 ret
= pthread_create(®_apps_thread
, NULL
,
4588 thread_registration_apps
, (void *) NULL
);
4590 PERROR("pthread_create registration");
4594 /* Create thread to manage application socket */
4595 ret
= pthread_create(&apps_thread
, NULL
,
4596 thread_manage_apps
, (void *) NULL
);
4598 PERROR("pthread_create apps");
4602 /* Create thread to manage application notify socket */
4603 ret
= pthread_create(&apps_notify_thread
, NULL
,
4604 ust_thread_manage_notify
, (void *) NULL
);
4606 PERROR("pthread_create apps");
4610 /* Don't start this thread if kernel tracing is not requested nor root */
4611 if (is_root
&& !opt_no_kernel
) {
4612 /* Create kernel thread to manage kernel event */
4613 ret
= pthread_create(&kernel_thread
, NULL
,
4614 thread_manage_kernel
, (void *) NULL
);
4616 PERROR("pthread_create kernel");
4620 ret
= pthread_join(kernel_thread
, &status
);
4622 PERROR("pthread_join");
4623 goto error
; /* join error, exit without cleanup */
4628 ret
= pthread_join(apps_thread
, &status
);
4630 PERROR("pthread_join");
4631 goto error
; /* join error, exit without cleanup */
4635 ret
= pthread_join(reg_apps_thread
, &status
);
4637 PERROR("pthread_join");
4638 goto error
; /* join error, exit without cleanup */
4642 ret
= pthread_join(dispatch_thread
, &status
);
4644 PERROR("pthread_join");
4645 goto error
; /* join error, exit without cleanup */
4649 ret
= pthread_join(client_thread
, &status
);
4651 PERROR("pthread_join");
4652 goto error
; /* join error, exit without cleanup */
4655 ret
= join_consumer_thread(&kconsumer_data
);
4657 PERROR("join_consumer");
4658 goto error
; /* join error, exit without cleanup */
4661 ret
= join_consumer_thread(&ustconsumer32_data
);
4663 PERROR("join_consumer ust32");
4664 goto error
; /* join error, exit without cleanup */
4667 ret
= join_consumer_thread(&ustconsumer64_data
);
4669 PERROR("join_consumer ust64");
4670 goto error
; /* join error, exit without cleanup */
4674 ret
= pthread_join(health_thread
, &status
);
4676 PERROR("pthread_join health thread");
4677 goto error
; /* join error, exit without cleanup */
4681 ret
= pthread_join(ht_cleanup_thread
, &status
);
4683 PERROR("pthread_join ht cleanup thread");
4684 goto error
; /* join error, exit without cleanup */
4689 * cleanup() is called when no other thread is running.
4691 rcu_thread_online();
4693 rcu_thread_offline();
4694 rcu_unregister_thread();