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.
24 #include <semaphore.h>
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/poll.h>
42 #include <common/compat/socket.h>
43 #include <common/defaults.h>
44 #include <common/kernel-consumer/kernel-consumer.h>
45 #include <common/futex.h>
46 #include <common/relayd/relayd.h>
48 #include "lttng-sessiond.h"
54 #include "kernel-consumer.h"
58 #include "ust-consumer.h"
63 #define CONSUMERD_FILE "lttng-consumerd"
66 const char default_home_dir
[] = DEFAULT_HOME_DIR
;
67 const char default_tracing_group
[] = DEFAULT_TRACING_GROUP
;
68 const char default_ust_sock_dir
[] = DEFAULT_UST_SOCK_DIR
;
69 const char default_global_apps_pipe
[] = DEFAULT_GLOBAL_APPS_PIPE
;
72 const char *opt_tracing_group
;
73 static int opt_sig_parent
;
74 static int opt_verbose_consumer
;
75 static int opt_daemon
;
76 static int opt_no_kernel
;
77 static int is_root
; /* Set to 1 if the daemon is running as root */
78 static pid_t ppid
; /* Parent PID for --sig-parent option */
81 /* Consumer daemon specific control data */
82 static struct consumer_data kconsumer_data
= {
83 .type
= LTTNG_CONSUMER_KERNEL
,
84 .err_unix_sock_path
= DEFAULT_KCONSUMERD_ERR_SOCK_PATH
,
85 .cmd_unix_sock_path
= DEFAULT_KCONSUMERD_CMD_SOCK_PATH
,
89 static struct consumer_data ustconsumer64_data
= {
90 .type
= LTTNG_CONSUMER64_UST
,
91 .err_unix_sock_path
= DEFAULT_USTCONSUMERD64_ERR_SOCK_PATH
,
92 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD64_CMD_SOCK_PATH
,
96 static struct consumer_data ustconsumer32_data
= {
97 .type
= LTTNG_CONSUMER32_UST
,
98 .err_unix_sock_path
= DEFAULT_USTCONSUMERD32_ERR_SOCK_PATH
,
99 .cmd_unix_sock_path
= DEFAULT_USTCONSUMERD32_CMD_SOCK_PATH
,
104 static int dispatch_thread_exit
;
106 /* Global application Unix socket path */
107 static char apps_unix_sock_path
[PATH_MAX
];
108 /* Global client Unix socket path */
109 static char client_unix_sock_path
[PATH_MAX
];
110 /* global wait shm path for UST */
111 static char wait_shm_path
[PATH_MAX
];
113 /* Sockets and FDs */
114 static int client_sock
= -1;
115 static int apps_sock
= -1;
116 static int kernel_tracer_fd
= -1;
117 static int kernel_poll_pipe
[2] = { -1, -1 };
120 * Quit pipe for all threads. This permits a single cancellation point
121 * for all threads when receiving an event on the pipe.
123 static int thread_quit_pipe
[2] = { -1, -1 };
126 * This pipe is used to inform the thread managing application communication
127 * that a command is queued and ready to be processed.
129 static int apps_cmd_pipe
[2] = { -1, -1 };
131 /* Pthread, Mutexes and Semaphores */
132 static pthread_t apps_thread
;
133 static pthread_t reg_apps_thread
;
134 static pthread_t client_thread
;
135 static pthread_t kernel_thread
;
136 static pthread_t dispatch_thread
;
139 * UST registration command queue. This queue is tied with a futex and uses a N
140 * wakers / 1 waiter implemented and detailed in futex.c/.h
142 * The thread_manage_apps and thread_dispatch_ust_registration interact with
143 * this queue and the wait/wake scheme.
145 static struct ust_cmd_queue ust_cmd_queue
;
148 * Pointer initialized before thread creation.
150 * This points to the tracing session list containing the session count and a
151 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
152 * MUST NOT be taken if you call a public function in session.c.
154 * The lock is nested inside the structure: session_list_ptr->lock. Please use
155 * session_lock_list and session_unlock_list for lock acquisition.
157 static struct ltt_session_list
*session_list_ptr
;
159 int ust_consumerd64_fd
= -1;
160 int ust_consumerd32_fd
= -1;
162 static const char *consumerd32_bin
= CONFIG_CONSUMERD32_BIN
;
163 static const char *consumerd64_bin
= CONFIG_CONSUMERD64_BIN
;
164 static const char *consumerd32_libdir
= CONFIG_CONSUMERD32_LIBDIR
;
165 static const char *consumerd64_libdir
= CONFIG_CONSUMERD64_LIBDIR
;
168 * Consumer daemon state which is changed when spawning it, killing it or in
169 * case of a fatal error.
171 enum consumerd_state
{
172 CONSUMER_STARTED
= 1,
173 CONSUMER_STOPPED
= 2,
178 * This consumer daemon state is used to validate if a client command will be
179 * able to reach the consumer. If not, the client is informed. For instance,
180 * doing a "lttng start" when the consumer state is set to ERROR will return an
181 * error to the client.
183 * The following example shows a possible race condition of this scheme:
185 * consumer thread error happens
187 * client cmd checks state -> still OK
188 * consumer thread exit, sets error
189 * client cmd try to talk to consumer
192 * However, since the consumer is a different daemon, we have no way of making
193 * sure the command will reach it safely even with this state flag. This is why
194 * we consider that up to the state validation during command processing, the
195 * command is safe. After that, we can not guarantee the correctness of the
196 * client request vis-a-vis the consumer.
198 static enum consumerd_state ust_consumerd_state
;
199 static enum consumerd_state kernel_consumerd_state
;
202 * Used to keep a unique index for each relayd socket created where this value
203 * is associated with streams on the consumer so it can match the right relayd
206 * This value should be incremented atomically for safety purposes and future
207 * possible concurrent access.
209 static unsigned int relayd_net_seq_idx
;
212 void setup_consumerd_path(void)
214 const char *bin
, *libdir
;
217 * Allow INSTALL_BIN_PATH to be used as a target path for the
218 * native architecture size consumer if CONFIG_CONSUMER*_PATH
219 * has not been defined.
221 #if (CAA_BITS_PER_LONG == 32)
222 if (!consumerd32_bin
[0]) {
223 consumerd32_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
225 if (!consumerd32_libdir
[0]) {
226 consumerd32_libdir
= INSTALL_LIB_PATH
;
228 #elif (CAA_BITS_PER_LONG == 64)
229 if (!consumerd64_bin
[0]) {
230 consumerd64_bin
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
232 if (!consumerd64_libdir
[0]) {
233 consumerd64_libdir
= INSTALL_LIB_PATH
;
236 #error "Unknown bitness"
240 * runtime env. var. overrides the build default.
242 bin
= getenv("LTTNG_CONSUMERD32_BIN");
244 consumerd32_bin
= bin
;
246 bin
= getenv("LTTNG_CONSUMERD64_BIN");
248 consumerd64_bin
= bin
;
250 libdir
= getenv("LTTNG_CONSUMERD32_LIBDIR");
252 consumerd32_libdir
= libdir
;
254 libdir
= getenv("LTTNG_CONSUMERD64_LIBDIR");
256 consumerd64_libdir
= libdir
;
261 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
263 static int create_thread_poll_set(struct lttng_poll_event
*events
,
268 if (events
== NULL
|| size
== 0) {
273 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
279 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
);
291 * Check if the thread quit pipe was triggered.
293 * Return 1 if it was triggered else 0;
295 static int check_thread_quit_pipe(int fd
, uint32_t events
)
297 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
305 * Return group ID of the tracing group or -1 if not found.
307 static gid_t
allowed_group(void)
311 if (opt_tracing_group
) {
312 grp
= getgrnam(opt_tracing_group
);
314 grp
= getgrnam(default_tracing_group
);
324 * Init thread quit pipe.
326 * Return -1 on error or 0 if all pipes are created.
328 static int init_thread_quit_pipe(void)
332 ret
= pipe(thread_quit_pipe
);
334 PERROR("thread quit pipe");
338 for (i
= 0; i
< 2; i
++) {
339 ret
= fcntl(thread_quit_pipe
[i
], F_SETFD
, FD_CLOEXEC
);
351 * Complete teardown of a kernel session. This free all data structure related
352 * to a kernel session and update counter.
354 static void teardown_kernel_session(struct ltt_session
*session
)
356 if (!session
->kernel_session
) {
357 DBG3("No kernel session when tearing down session");
361 DBG("Tearing down kernel session");
364 * If a custom kernel consumer was registered, close the socket before
365 * tearing down the complete kernel session structure
367 if (kconsumer_data
.cmd_sock
>= 0 &&
368 session
->kernel_session
->consumer_fd
!= kconsumer_data
.cmd_sock
) {
369 lttcomm_close_unix_sock(session
->kernel_session
->consumer_fd
);
372 trace_kernel_destroy_session(session
->kernel_session
);
376 * Complete teardown of all UST sessions. This will free everything on his path
377 * and destroy the core essence of all ust sessions :)
379 static void teardown_ust_session(struct ltt_session
*session
)
383 if (!session
->ust_session
) {
384 DBG3("No UST session when tearing down session");
388 DBG("Tearing down UST session(s)");
390 ret
= ust_app_destroy_trace_all(session
->ust_session
);
392 ERR("Error in ust_app_destroy_trace_all");
395 trace_ust_destroy_session(session
->ust_session
);
399 * Stop all threads by closing the thread quit pipe.
401 static void stop_threads(void)
405 /* Stopping all threads */
406 DBG("Terminating all threads");
407 ret
= notify_thread_pipe(thread_quit_pipe
[1]);
409 ERR("write error on thread quit pipe");
412 /* Dispatch thread */
413 dispatch_thread_exit
= 1;
414 futex_nto1_wake(&ust_cmd_queue
.futex
);
420 static void cleanup(void)
424 struct ltt_session
*sess
, *stmp
;
428 DBG("Removing %s directory", rundir
);
429 ret
= asprintf(&cmd
, "rm -rf %s", rundir
);
431 ERR("asprintf failed. Something is really wrong!");
434 /* Remove lttng run directory */
437 ERR("Unable to clean %s", rundir
);
441 DBG("Cleaning up all sessions");
443 /* Destroy session list mutex */
444 if (session_list_ptr
!= NULL
) {
445 pthread_mutex_destroy(&session_list_ptr
->lock
);
447 /* Cleanup ALL session */
448 cds_list_for_each_entry_safe(sess
, stmp
,
449 &session_list_ptr
->head
, list
) {
450 teardown_kernel_session(sess
);
451 teardown_ust_session(sess
);
456 DBG("Closing all UST sockets");
457 ust_app_clean_list();
459 pthread_mutex_destroy(&kconsumer_data
.pid_mutex
);
461 if (is_root
&& !opt_no_kernel
) {
462 DBG2("Closing kernel fd");
463 if (kernel_tracer_fd
>= 0) {
464 ret
= close(kernel_tracer_fd
);
469 DBG("Unloading kernel modules");
470 modprobe_remove_lttng_all();
472 utils_close_pipe(kernel_poll_pipe
);
473 utils_close_pipe(thread_quit_pipe
);
474 utils_close_pipe(apps_cmd_pipe
);
477 DBG("%c[%d;%dm*** assert failed :-) *** ==> %c[%dm%c[%d;%dm"
478 "Matthew, BEET driven development works!%c[%dm",
479 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
484 * Send data on a unix socket using the liblttsessiondcomm API.
486 * Return lttcomm error code.
488 static int send_unix_sock(int sock
, void *buf
, size_t len
)
490 /* Check valid length */
495 return lttcomm_send_unix_sock(sock
, buf
, len
);
499 * Free memory of a command context structure.
501 static void clean_command_ctx(struct command_ctx
**cmd_ctx
)
503 DBG("Clean command context structure");
505 if ((*cmd_ctx
)->llm
) {
506 free((*cmd_ctx
)->llm
);
508 if ((*cmd_ctx
)->lsm
) {
509 free((*cmd_ctx
)->lsm
);
517 * Notify UST applications using the shm mmap futex.
519 static int notify_ust_apps(int active
)
523 DBG("Notifying applications of session daemon state: %d", active
);
525 /* See shm.c for this call implying mmap, shm and futex calls */
526 wait_shm_mmap
= shm_ust_get_mmap(wait_shm_path
, is_root
);
527 if (wait_shm_mmap
== NULL
) {
531 /* Wake waiting process */
532 futex_wait_update((int32_t *) wait_shm_mmap
, active
);
534 /* Apps notified successfully */
542 * Setup the outgoing data buffer for the response (llm) by allocating the
543 * right amount of memory and copying the original information from the lsm
546 * Return total size of the buffer pointed by buf.
548 static int setup_lttng_msg(struct command_ctx
*cmd_ctx
, size_t size
)
554 cmd_ctx
->llm
= zmalloc(sizeof(struct lttcomm_lttng_msg
) + buf_size
);
555 if (cmd_ctx
->llm
== NULL
) {
561 /* Copy common data */
562 cmd_ctx
->llm
->cmd_type
= cmd_ctx
->lsm
->cmd_type
;
563 cmd_ctx
->llm
->pid
= cmd_ctx
->lsm
->domain
.attr
.pid
;
565 cmd_ctx
->llm
->data_size
= size
;
566 cmd_ctx
->lttng_msg_size
= sizeof(struct lttcomm_lttng_msg
) + buf_size
;
575 * Update the kernel poll set of all channel fd available over all tracing
576 * session. Add the wakeup pipe at the end of the set.
578 static int update_kernel_poll(struct lttng_poll_event
*events
)
581 struct ltt_session
*session
;
582 struct ltt_kernel_channel
*channel
;
584 DBG("Updating kernel poll set");
587 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
588 session_lock(session
);
589 if (session
->kernel_session
== NULL
) {
590 session_unlock(session
);
594 cds_list_for_each_entry(channel
,
595 &session
->kernel_session
->channel_list
.head
, list
) {
596 /* Add channel fd to the kernel poll set */
597 ret
= lttng_poll_add(events
, channel
->fd
, LPOLLIN
| LPOLLRDNORM
);
599 session_unlock(session
);
602 DBG("Channel fd %d added to kernel set", channel
->fd
);
604 session_unlock(session
);
606 session_unlock_list();
611 session_unlock_list();
616 * Find the channel fd from 'fd' over all tracing session. When found, check
617 * for new channel stream and send those stream fds to the kernel consumer.
619 * Useful for CPU hotplug feature.
621 static int update_kernel_stream(struct consumer_data
*consumer_data
, int fd
)
624 struct ltt_session
*session
;
625 struct ltt_kernel_channel
*channel
;
627 DBG("Updating kernel streams for channel fd %d", fd
);
630 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
631 session_lock(session
);
632 if (session
->kernel_session
== NULL
) {
633 session_unlock(session
);
637 /* This is not suppose to be -1 but this is an extra security check */
638 if (session
->kernel_session
->consumer_fd
< 0) {
639 session
->kernel_session
->consumer_fd
= consumer_data
->cmd_sock
;
642 cds_list_for_each_entry(channel
,
643 &session
->kernel_session
->channel_list
.head
, list
) {
644 if (channel
->fd
== fd
) {
645 DBG("Channel found, updating kernel streams");
646 ret
= kernel_open_channel_stream(channel
);
652 * Have we already sent fds to the consumer? If yes, it means
653 * that tracing is started so it is safe to send our updated
656 if (session
->kernel_session
->consumer_fds_sent
== 1 &&
657 session
->kernel_session
->consumer
!= NULL
) {
658 ret
= kernel_consumer_send_channel_stream(
659 session
->kernel_session
->consumer_fd
, channel
,
660 session
->kernel_session
);
668 session_unlock(session
);
670 session_unlock_list();
674 session_unlock(session
);
675 session_unlock_list();
680 * For each tracing session, update newly registered apps.
682 static void update_ust_app(int app_sock
)
684 struct ltt_session
*sess
, *stmp
;
688 /* For all tracing session(s) */
689 cds_list_for_each_entry_safe(sess
, stmp
, &session_list_ptr
->head
, list
) {
691 if (sess
->ust_session
) {
692 ust_app_global_update(sess
->ust_session
, app_sock
);
694 session_unlock(sess
);
697 session_unlock_list();
701 * This thread manage event coming from the kernel.
703 * Features supported in this thread:
706 static void *thread_manage_kernel(void *data
)
708 int ret
, i
, pollfd
, update_poll_flag
= 1;
709 uint32_t revents
, nb_fd
;
711 struct lttng_poll_event events
;
713 DBG("Thread manage kernel started");
715 ret
= create_thread_poll_set(&events
, 2);
717 goto error_poll_create
;
720 ret
= lttng_poll_add(&events
, kernel_poll_pipe
[0], LPOLLIN
);
726 if (update_poll_flag
== 1) {
728 * Reset number of fd in the poll set. Always 2 since there is the thread
729 * quit pipe and the kernel pipe.
733 ret
= update_kernel_poll(&events
);
737 update_poll_flag
= 0;
740 nb_fd
= LTTNG_POLL_GETNB(&events
);
742 DBG("Thread kernel polling on %d fds", nb_fd
);
744 /* Zeroed the poll events */
745 lttng_poll_reset(&events
);
747 /* Poll infinite value of time */
749 ret
= lttng_poll_wait(&events
, -1);
752 * Restart interrupted system call.
754 if (errno
== EINTR
) {
758 } else if (ret
== 0) {
759 /* Should not happen since timeout is infinite */
760 ERR("Return value of poll is 0 with an infinite timeout.\n"
761 "This should not have happened! Continuing...");
765 for (i
= 0; i
< nb_fd
; i
++) {
766 /* Fetch once the poll data */
767 revents
= LTTNG_POLL_GETEV(&events
, i
);
768 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
770 /* Thread quit pipe has been closed. Killing thread. */
771 ret
= check_thread_quit_pipe(pollfd
, revents
);
776 /* Check for data on kernel pipe */
777 if (pollfd
== kernel_poll_pipe
[0] && (revents
& LPOLLIN
)) {
778 ret
= read(kernel_poll_pipe
[0], &tmp
, 1);
779 update_poll_flag
= 1;
783 * New CPU detected by the kernel. Adding kernel stream to
784 * kernel session and updating the kernel consumer
786 if (revents
& LPOLLIN
) {
787 ret
= update_kernel_stream(&kconsumer_data
, pollfd
);
793 * TODO: We might want to handle the LPOLLERR | LPOLLHUP
794 * and unregister kernel stream at this point.
802 lttng_poll_clean(&events
);
804 DBG("Kernel thread dying");
809 * This thread manage the consumer error sent back to the session daemon.
811 static void *thread_manage_consumer(void *data
)
813 int sock
= -1, i
, ret
, pollfd
;
814 uint32_t revents
, nb_fd
;
815 enum lttcomm_return_code code
;
816 struct lttng_poll_event events
;
817 struct consumer_data
*consumer_data
= data
;
819 DBG("[thread] Manage consumer started");
821 ret
= lttcomm_listen_unix_sock(consumer_data
->err_sock
);
827 * Pass 2 as size here for the thread quit pipe and kconsumerd_err_sock.
828 * Nothing more will be added to this poll set.
830 ret
= create_thread_poll_set(&events
, 2);
835 ret
= lttng_poll_add(&events
, consumer_data
->err_sock
, LPOLLIN
| LPOLLRDHUP
);
840 nb_fd
= LTTNG_POLL_GETNB(&events
);
842 /* Inifinite blocking call, waiting for transmission */
844 ret
= lttng_poll_wait(&events
, -1);
847 * Restart interrupted system call.
849 if (errno
== EINTR
) {
855 for (i
= 0; i
< nb_fd
; i
++) {
856 /* Fetch once the poll data */
857 revents
= LTTNG_POLL_GETEV(&events
, i
);
858 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
860 /* Thread quit pipe has been closed. Killing thread. */
861 ret
= check_thread_quit_pipe(pollfd
, revents
);
866 /* Event on the registration socket */
867 if (pollfd
== consumer_data
->err_sock
) {
868 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
869 ERR("consumer err socket poll error");
875 sock
= lttcomm_accept_unix_sock(consumer_data
->err_sock
);
880 DBG2("Receiving code from consumer err_sock");
882 /* Getting status code from kconsumerd */
883 ret
= lttcomm_recv_unix_sock(sock
, &code
,
884 sizeof(enum lttcomm_return_code
));
889 if (code
== CONSUMERD_COMMAND_SOCK_READY
) {
890 consumer_data
->cmd_sock
=
891 lttcomm_connect_unix_sock(consumer_data
->cmd_unix_sock_path
);
892 if (consumer_data
->cmd_sock
< 0) {
893 sem_post(&consumer_data
->sem
);
894 PERROR("consumer connect");
897 /* Signal condition to tell that the kconsumerd is ready */
898 sem_post(&consumer_data
->sem
);
899 DBG("consumer command socket ready");
901 ERR("consumer error when waiting for SOCK_READY : %s",
902 lttcomm_get_readable_code(-code
));
906 /* Remove the kconsumerd error sock since we've established a connexion */
907 ret
= lttng_poll_del(&events
, consumer_data
->err_sock
);
912 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLRDHUP
);
917 /* Update number of fd */
918 nb_fd
= LTTNG_POLL_GETNB(&events
);
920 /* Inifinite blocking call, waiting for transmission */
922 ret
= lttng_poll_wait(&events
, -1);
925 * Restart interrupted system call.
927 if (errno
== EINTR
) {
933 for (i
= 0; i
< nb_fd
; i
++) {
934 /* Fetch once the poll data */
935 revents
= LTTNG_POLL_GETEV(&events
, i
);
936 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
938 /* Thread quit pipe has been closed. Killing thread. */
939 ret
= check_thread_quit_pipe(pollfd
, revents
);
944 /* Event on the kconsumerd socket */
945 if (pollfd
== sock
) {
946 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
947 ERR("consumer err socket second poll error");
953 /* Wait for any kconsumerd error */
954 ret
= lttcomm_recv_unix_sock(sock
, &code
,
955 sizeof(enum lttcomm_return_code
));
957 ERR("consumer closed the command socket");
961 ERR("consumer return code : %s", lttcomm_get_readable_code(-code
));
964 /* Immediately set the consumerd state to stopped */
965 if (consumer_data
->type
== LTTNG_CONSUMER_KERNEL
) {
966 uatomic_set(&kernel_consumerd_state
, CONSUMER_ERROR
);
967 } else if (consumer_data
->type
== LTTNG_CONSUMER64_UST
||
968 consumer_data
->type
== LTTNG_CONSUMER32_UST
) {
969 uatomic_set(&ust_consumerd_state
, CONSUMER_ERROR
);
971 /* Code flow error... */
975 if (consumer_data
->err_sock
>= 0) {
976 ret
= close(consumer_data
->err_sock
);
981 if (consumer_data
->cmd_sock
>= 0) {
982 ret
= close(consumer_data
->cmd_sock
);
994 unlink(consumer_data
->err_unix_sock_path
);
995 unlink(consumer_data
->cmd_unix_sock_path
);
996 consumer_data
->pid
= 0;
998 lttng_poll_clean(&events
);
1001 DBG("consumer thread cleanup completed");
1007 * This thread manage application communication.
1009 static void *thread_manage_apps(void *data
)
1012 uint32_t revents
, nb_fd
;
1013 struct ust_command ust_cmd
;
1014 struct lttng_poll_event events
;
1016 DBG("[thread] Manage application started");
1018 rcu_register_thread();
1019 rcu_thread_online();
1021 ret
= create_thread_poll_set(&events
, 2);
1023 goto error_poll_create
;
1026 ret
= lttng_poll_add(&events
, apps_cmd_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
1032 /* Zeroed the events structure */
1033 lttng_poll_reset(&events
);
1035 nb_fd
= LTTNG_POLL_GETNB(&events
);
1037 DBG("Apps thread polling on %d fds", nb_fd
);
1039 /* Inifinite blocking call, waiting for transmission */
1041 ret
= lttng_poll_wait(&events
, -1);
1044 * Restart interrupted system call.
1046 if (errno
== EINTR
) {
1052 for (i
= 0; i
< nb_fd
; i
++) {
1053 /* Fetch once the poll data */
1054 revents
= LTTNG_POLL_GETEV(&events
, i
);
1055 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1057 /* Thread quit pipe has been closed. Killing thread. */
1058 ret
= check_thread_quit_pipe(pollfd
, revents
);
1063 /* Inspect the apps cmd pipe */
1064 if (pollfd
== apps_cmd_pipe
[0]) {
1065 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1066 ERR("Apps command pipe error");
1068 } else if (revents
& LPOLLIN
) {
1070 ret
= read(apps_cmd_pipe
[0], &ust_cmd
, sizeof(ust_cmd
));
1071 if (ret
< 0 || ret
< sizeof(ust_cmd
)) {
1072 PERROR("read apps cmd pipe");
1076 /* Register applicaton to the session daemon */
1077 ret
= ust_app_register(&ust_cmd
.reg_msg
,
1079 if (ret
== -ENOMEM
) {
1081 } else if (ret
< 0) {
1086 * Validate UST version compatibility.
1088 ret
= ust_app_validate_version(ust_cmd
.sock
);
1091 * Add channel(s) and event(s) to newly registered apps
1092 * from lttng global UST domain.
1094 update_ust_app(ust_cmd
.sock
);
1097 ret
= ust_app_register_done(ust_cmd
.sock
);
1100 * If the registration is not possible, we simply
1101 * unregister the apps and continue
1103 ust_app_unregister(ust_cmd
.sock
);
1106 * We just need here to monitor the close of the UST
1107 * socket and poll set monitor those by default.
1108 * Listen on POLLIN (even if we never expect any
1109 * data) to ensure that hangup wakes us.
1111 ret
= lttng_poll_add(&events
, ust_cmd
.sock
, LPOLLIN
);
1116 DBG("Apps with sock %d added to poll set",
1124 * At this point, we know that a registered application made
1125 * the event at poll_wait.
1127 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1128 /* Removing from the poll set */
1129 ret
= lttng_poll_del(&events
, pollfd
);
1134 /* Socket closed on remote end. */
1135 ust_app_unregister(pollfd
);
1143 lttng_poll_clean(&events
);
1145 DBG("Application communication apps thread cleanup complete");
1146 rcu_thread_offline();
1147 rcu_unregister_thread();
1152 * Dispatch request from the registration threads to the application
1153 * communication thread.
1155 static void *thread_dispatch_ust_registration(void *data
)
1158 struct cds_wfq_node
*node
;
1159 struct ust_command
*ust_cmd
= NULL
;
1161 DBG("[thread] Dispatch UST command started");
1163 while (!dispatch_thread_exit
) {
1164 /* Atomically prepare the queue futex */
1165 futex_nto1_prepare(&ust_cmd_queue
.futex
);
1168 /* Dequeue command for registration */
1169 node
= cds_wfq_dequeue_blocking(&ust_cmd_queue
.queue
);
1171 DBG("Woken up but nothing in the UST command queue");
1172 /* Continue thread execution */
1176 ust_cmd
= caa_container_of(node
, struct ust_command
, node
);
1178 DBG("Dispatching UST registration pid:%d ppid:%d uid:%d"
1179 " gid:%d sock:%d name:%s (version %d.%d)",
1180 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1181 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1182 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1183 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1185 * Inform apps thread of the new application registration. This
1186 * call is blocking so we can be assured that the data will be read
1187 * at some point in time or wait to the end of the world :)
1189 ret
= write(apps_cmd_pipe
[1], ust_cmd
,
1190 sizeof(struct ust_command
));
1192 PERROR("write apps cmd pipe");
1193 if (errno
== EBADF
) {
1195 * We can't inform the application thread to process
1196 * registration. We will exit or else application
1197 * registration will not occur and tracing will never
1204 } while (node
!= NULL
);
1206 /* Futex wait on queue. Blocking call on futex() */
1207 futex_nto1_wait(&ust_cmd_queue
.futex
);
1211 DBG("Dispatch thread dying");
1216 * This thread manage application registration.
1218 static void *thread_registration_apps(void *data
)
1220 int sock
= -1, i
, ret
, pollfd
;
1221 uint32_t revents
, nb_fd
;
1222 struct lttng_poll_event events
;
1224 * Get allocated in this thread, enqueued to a global queue, dequeued and
1225 * freed in the manage apps thread.
1227 struct ust_command
*ust_cmd
= NULL
;
1229 DBG("[thread] Manage application registration started");
1231 ret
= lttcomm_listen_unix_sock(apps_sock
);
1237 * Pass 2 as size here for the thread quit pipe and apps socket. Nothing
1238 * more will be added to this poll set.
1240 ret
= create_thread_poll_set(&events
, 2);
1242 goto error_create_poll
;
1245 /* Add the application registration socket */
1246 ret
= lttng_poll_add(&events
, apps_sock
, LPOLLIN
| LPOLLRDHUP
);
1248 goto error_poll_add
;
1251 /* Notify all applications to register */
1252 ret
= notify_ust_apps(1);
1254 ERR("Failed to notify applications or create the wait shared memory.\n"
1255 "Execution continues but there might be problem for already\n"
1256 "running applications that wishes to register.");
1260 DBG("Accepting application registration");
1262 nb_fd
= LTTNG_POLL_GETNB(&events
);
1264 /* Inifinite blocking call, waiting for transmission */
1266 ret
= lttng_poll_wait(&events
, -1);
1269 * Restart interrupted system call.
1271 if (errno
== EINTR
) {
1277 for (i
= 0; i
< nb_fd
; i
++) {
1278 /* Fetch once the poll data */
1279 revents
= LTTNG_POLL_GETEV(&events
, i
);
1280 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1282 /* Thread quit pipe has been closed. Killing thread. */
1283 ret
= check_thread_quit_pipe(pollfd
, revents
);
1288 /* Event on the registration socket */
1289 if (pollfd
== apps_sock
) {
1290 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1291 ERR("Register apps socket poll error");
1293 } else if (revents
& LPOLLIN
) {
1294 sock
= lttcomm_accept_unix_sock(apps_sock
);
1299 /* Create UST registration command for enqueuing */
1300 ust_cmd
= zmalloc(sizeof(struct ust_command
));
1301 if (ust_cmd
== NULL
) {
1302 PERROR("ust command zmalloc");
1307 * Using message-based transmissions to ensure we don't
1308 * have to deal with partially received messages.
1310 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
1312 ERR("Exhausted file descriptors allowed for applications.");
1321 ret
= lttcomm_recv_unix_sock(sock
, &ust_cmd
->reg_msg
,
1322 sizeof(struct ust_register_msg
));
1323 if (ret
< 0 || ret
< sizeof(struct ust_register_msg
)) {
1325 PERROR("lttcomm_recv_unix_sock register apps");
1327 ERR("Wrong size received on apps register");
1334 lttng_fd_put(LTTNG_FD_APPS
, 1);
1339 ust_cmd
->sock
= sock
;
1342 DBG("UST registration received with pid:%d ppid:%d uid:%d"
1343 " gid:%d sock:%d name:%s (version %d.%d)",
1344 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1345 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1346 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1347 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1350 * Lock free enqueue the registration request. The red pill
1351 * has been taken! This apps will be part of the *system*.
1353 cds_wfq_enqueue(&ust_cmd_queue
.queue
, &ust_cmd
->node
);
1356 * Wake the registration queue futex. Implicit memory
1357 * barrier with the exchange in cds_wfq_enqueue.
1359 futex_nto1_wake(&ust_cmd_queue
.futex
);
1366 /* Notify that the registration thread is gone */
1369 if (apps_sock
>= 0) {
1370 ret
= close(apps_sock
);
1380 lttng_fd_put(LTTNG_FD_APPS
, 1);
1382 unlink(apps_unix_sock_path
);
1385 lttng_poll_clean(&events
);
1388 DBG("UST Registration thread cleanup complete");
1394 * Start the thread_manage_consumer. This must be done after a lttng-consumerd
1395 * exec or it will fails.
1397 static int spawn_consumer_thread(struct consumer_data
*consumer_data
)
1400 struct timespec timeout
;
1402 timeout
.tv_sec
= DEFAULT_SEM_WAIT_TIMEOUT
;
1403 timeout
.tv_nsec
= 0;
1405 /* Setup semaphore */
1406 ret
= sem_init(&consumer_data
->sem
, 0, 0);
1408 PERROR("sem_init consumer semaphore");
1412 ret
= pthread_create(&consumer_data
->thread
, NULL
,
1413 thread_manage_consumer
, consumer_data
);
1415 PERROR("pthread_create consumer");
1420 /* Get time for sem_timedwait absolute timeout */
1421 ret
= clock_gettime(CLOCK_REALTIME
, &timeout
);
1423 PERROR("clock_gettime spawn consumer");
1424 /* Infinite wait for the kconsumerd thread to be ready */
1425 ret
= sem_wait(&consumer_data
->sem
);
1427 /* Normal timeout if the gettime was successful */
1428 timeout
.tv_sec
+= DEFAULT_SEM_WAIT_TIMEOUT
;
1429 ret
= sem_timedwait(&consumer_data
->sem
, &timeout
);
1433 if (errno
== ETIMEDOUT
) {
1435 * Call has timed out so we kill the kconsumerd_thread and return
1438 ERR("The consumer thread was never ready. Killing it");
1439 ret
= pthread_cancel(consumer_data
->thread
);
1441 PERROR("pthread_cancel consumer thread");
1444 PERROR("semaphore wait failed consumer thread");
1449 pthread_mutex_lock(&consumer_data
->pid_mutex
);
1450 if (consumer_data
->pid
== 0) {
1451 ERR("Kconsumerd did not start");
1452 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
1455 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
1464 * Join consumer thread
1466 static int join_consumer_thread(struct consumer_data
*consumer_data
)
1471 if (consumer_data
->pid
!= 0) {
1472 ret
= kill(consumer_data
->pid
, SIGTERM
);
1474 ERR("Error killing consumer daemon");
1477 return pthread_join(consumer_data
->thread
, &status
);
1484 * Fork and exec a consumer daemon (consumerd).
1486 * Return pid if successful else -1.
1488 static pid_t
spawn_consumerd(struct consumer_data
*consumer_data
)
1492 const char *consumer_to_use
;
1493 const char *verbosity
;
1496 DBG("Spawning consumerd");
1503 if (opt_verbose_consumer
) {
1504 verbosity
= "--verbose";
1506 verbosity
= "--quiet";
1508 switch (consumer_data
->type
) {
1509 case LTTNG_CONSUMER_KERNEL
:
1511 * Find out which consumerd to execute. We will first try the
1512 * 64-bit path, then the sessiond's installation directory, and
1513 * fallback on the 32-bit one,
1515 DBG3("Looking for a kernel consumer at these locations:");
1516 DBG3(" 1) %s", consumerd64_bin
);
1517 DBG3(" 2) %s/%s", INSTALL_BIN_PATH
, CONSUMERD_FILE
);
1518 DBG3(" 3) %s", consumerd32_bin
);
1519 if (stat(consumerd64_bin
, &st
) == 0) {
1520 DBG3("Found location #1");
1521 consumer_to_use
= consumerd64_bin
;
1522 } else if (stat(INSTALL_BIN_PATH
"/" CONSUMERD_FILE
, &st
) == 0) {
1523 DBG3("Found location #2");
1524 consumer_to_use
= INSTALL_BIN_PATH
"/" CONSUMERD_FILE
;
1525 } else if (stat(consumerd32_bin
, &st
) == 0) {
1526 DBG3("Found location #3");
1527 consumer_to_use
= consumerd32_bin
;
1529 DBG("Could not find any valid consumerd executable");
1532 DBG("Using kernel consumer at: %s", consumer_to_use
);
1533 execl(consumer_to_use
,
1534 "lttng-consumerd", verbosity
, "-k",
1535 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
1536 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
1539 case LTTNG_CONSUMER64_UST
:
1541 char *tmpnew
= NULL
;
1543 if (consumerd64_libdir
[0] != '\0') {
1547 tmp
= getenv("LD_LIBRARY_PATH");
1551 tmplen
= strlen("LD_LIBRARY_PATH=")
1552 + strlen(consumerd64_libdir
) + 1 /* : */ + strlen(tmp
);
1553 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
1558 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
1559 strcat(tmpnew
, consumerd64_libdir
);
1560 if (tmp
[0] != '\0') {
1561 strcat(tmpnew
, ":");
1562 strcat(tmpnew
, tmp
);
1564 ret
= putenv(tmpnew
);
1570 DBG("Using 64-bit UST consumer at: %s", consumerd64_bin
);
1571 ret
= execl(consumerd64_bin
, "lttng-consumerd", verbosity
, "-u",
1572 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
1573 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
1575 if (consumerd64_libdir
[0] != '\0') {
1583 case LTTNG_CONSUMER32_UST
:
1585 char *tmpnew
= NULL
;
1587 if (consumerd32_libdir
[0] != '\0') {
1591 tmp
= getenv("LD_LIBRARY_PATH");
1595 tmplen
= strlen("LD_LIBRARY_PATH=")
1596 + strlen(consumerd32_libdir
) + 1 /* : */ + strlen(tmp
);
1597 tmpnew
= zmalloc(tmplen
+ 1 /* \0 */);
1602 strcpy(tmpnew
, "LD_LIBRARY_PATH=");
1603 strcat(tmpnew
, consumerd32_libdir
);
1604 if (tmp
[0] != '\0') {
1605 strcat(tmpnew
, ":");
1606 strcat(tmpnew
, tmp
);
1608 ret
= putenv(tmpnew
);
1614 DBG("Using 32-bit UST consumer at: %s", consumerd32_bin
);
1615 ret
= execl(consumerd32_bin
, "lttng-consumerd", verbosity
, "-u",
1616 "--consumerd-cmd-sock", consumer_data
->cmd_unix_sock_path
,
1617 "--consumerd-err-sock", consumer_data
->err_unix_sock_path
,
1619 if (consumerd32_libdir
[0] != '\0') {
1628 PERROR("unknown consumer type");
1632 PERROR("kernel start consumer exec");
1635 } else if (pid
> 0) {
1638 PERROR("start consumer fork");
1646 * Spawn the consumerd daemon and session daemon thread.
1648 static int start_consumerd(struct consumer_data
*consumer_data
)
1652 pthread_mutex_lock(&consumer_data
->pid_mutex
);
1653 if (consumer_data
->pid
!= 0) {
1654 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
1658 ret
= spawn_consumerd(consumer_data
);
1660 ERR("Spawning consumerd failed");
1661 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
1665 /* Setting up the consumer_data pid */
1666 consumer_data
->pid
= ret
;
1667 DBG2("Consumer pid %d", consumer_data
->pid
);
1668 pthread_mutex_unlock(&consumer_data
->pid_mutex
);
1670 DBG2("Spawning consumer control thread");
1671 ret
= spawn_consumer_thread(consumer_data
);
1673 ERR("Fatal error spawning consumer control thread");
1685 * Check version of the lttng-modules.
1687 static int validate_lttng_modules_version(void)
1689 return kernel_validate_version(kernel_tracer_fd
);
1693 * Setup necessary data for kernel tracer action.
1695 static int init_kernel_tracer(void)
1699 /* Modprobe lttng kernel modules */
1700 ret
= modprobe_lttng_control();
1705 /* Open debugfs lttng */
1706 kernel_tracer_fd
= open(module_proc_lttng
, O_RDWR
);
1707 if (kernel_tracer_fd
< 0) {
1708 DBG("Failed to open %s", module_proc_lttng
);
1713 /* Validate kernel version */
1714 ret
= validate_lttng_modules_version();
1719 ret
= modprobe_lttng_data();
1724 DBG("Kernel tracer fd %d", kernel_tracer_fd
);
1728 modprobe_remove_lttng_control();
1729 ret
= close(kernel_tracer_fd
);
1733 kernel_tracer_fd
= -1;
1734 return LTTCOMM_KERN_VERSION
;
1737 ret
= close(kernel_tracer_fd
);
1743 modprobe_remove_lttng_control();
1746 WARN("No kernel tracer available");
1747 kernel_tracer_fd
= -1;
1749 return LTTCOMM_NEED_ROOT_SESSIOND
;
1751 return LTTCOMM_KERN_NA
;
1756 * Init tracing by creating trace directory and sending fds kernel consumer.
1758 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
1762 if (session
->consumer_fds_sent
== 0 && session
->consumer
!= NULL
) {
1764 * Assign default kernel consumer socket if no consumer assigned to the
1765 * kernel session. At this point, it's NOT supposed to be -1 but this is
1766 * an extra security check.
1768 if (session
->consumer_fd
< 0) {
1769 session
->consumer_fd
= kconsumer_data
.cmd_sock
;
1772 ret
= kernel_consumer_send_session(session
->consumer_fd
, session
);
1774 ret
= LTTCOMM_KERN_CONSUMER_FAIL
;
1784 * Create a socket to the relayd using the URI.
1786 * On success, the relayd_sock pointer is set to the created socket.
1787 * Else, it is untouched and an lttcomm error code is returned.
1789 static int create_connect_relayd(struct consumer_output
*output
,
1790 const char *session_name
, struct lttng_uri
*uri
,
1791 struct lttcomm_sock
**relayd_sock
)
1794 struct lttcomm_sock
*sock
;
1796 /* Create socket object from URI */
1797 sock
= lttcomm_alloc_sock_from_uri(uri
);
1799 ret
= LTTCOMM_FATAL
;
1803 ret
= lttcomm_create_sock(sock
);
1805 ret
= LTTCOMM_FATAL
;
1809 /* Connect to relayd so we can proceed with a session creation. */
1810 ret
= relayd_connect(sock
);
1812 ERR("Unable to reach lttng-relayd");
1813 ret
= LTTCOMM_RELAYD_SESSION_FAIL
;
1817 /* Create socket for control stream. */
1818 if (uri
->stype
== LTTNG_STREAM_CONTROL
) {
1819 DBG3("Creating relayd stream socket from URI");
1821 /* Check relayd version */
1822 ret
= relayd_version_check(sock
, LTTNG_UST_COMM_MAJOR
, 0);
1824 ret
= LTTCOMM_RELAYD_VERSION_FAIL
;
1827 } else if (uri
->stype
== LTTNG_STREAM_DATA
) {
1828 DBG3("Creating relayd data socket from URI");
1830 /* Command is not valid */
1831 ERR("Relayd invalid stream type: %d", uri
->stype
);
1832 ret
= LTTCOMM_INVALID
;
1836 *relayd_sock
= sock
;
1842 (void) relayd_close(sock
);
1846 lttcomm_destroy_sock(sock
);
1853 * Connect to the relayd using URI and send the socket to the right consumer.
1855 static int send_socket_relayd_consumer(int domain
, struct ltt_session
*session
,
1856 struct lttng_uri
*relayd_uri
, struct consumer_output
*consumer
,
1860 struct lttcomm_sock
*sock
= NULL
;
1862 /* Set the network sequence index if not set. */
1863 if (consumer
->net_seq_index
== -1) {
1865 * Increment net_seq_idx because we are about to transfer the
1866 * new relayd socket to the consumer.
1868 uatomic_inc(&relayd_net_seq_idx
);
1869 /* Assign unique key so the consumer can match streams */
1870 consumer
->net_seq_index
= uatomic_read(&relayd_net_seq_idx
);
1873 /* Connect to relayd and make version check if uri is the control. */
1874 ret
= create_connect_relayd(consumer
, session
->name
, relayd_uri
, &sock
);
1875 if (ret
!= LTTCOMM_OK
) {
1879 /* If the control socket is connected, network session is ready */
1880 if (relayd_uri
->stype
== LTTNG_STREAM_CONTROL
) {
1881 session
->net_handle
= 1;
1885 case LTTNG_DOMAIN_KERNEL
:
1886 /* Send relayd socket to consumer. */
1887 ret
= kernel_consumer_send_relayd_socket(consumer_fd
, sock
,
1888 consumer
, relayd_uri
->stype
);
1890 ret
= LTTCOMM_ENABLE_CONSUMER_FAIL
;
1894 case LTTNG_DOMAIN_UST
:
1895 /* Send relayd socket to consumer. */
1896 ret
= ust_consumer_send_relayd_socket(consumer_fd
, sock
,
1897 consumer
, relayd_uri
->stype
);
1899 ret
= LTTCOMM_ENABLE_CONSUMER_FAIL
;
1908 * Close socket which was dup on the consumer side. The session daemon does
1909 * NOT keep track of the relayd socket(s) once transfer to the consumer.
1914 (void) relayd_close(sock
);
1915 lttcomm_destroy_sock(sock
);
1922 * Send both relayd sockets to a specific consumer and domain. This is a
1923 * helper function to facilitate sending the information to the consumer for a
1926 static int send_sockets_relayd_consumer(int domain
,
1927 struct ltt_session
*session
, struct consumer_output
*consumer
, int fd
)
1931 /* Sending control relayd socket. */
1932 ret
= send_socket_relayd_consumer(domain
, session
,
1933 &consumer
->dst
.net
.control
, consumer
, fd
);
1934 if (ret
!= LTTCOMM_OK
) {
1938 /* Sending data relayd socket. */
1939 ret
= send_socket_relayd_consumer(domain
, session
,
1940 &consumer
->dst
.net
.data
, consumer
, fd
);
1941 if (ret
!= LTTCOMM_OK
) {
1950 * Setup relayd connections for a tracing session. First creates the socket to
1951 * the relayd and send them to the right domain consumer. Consumer type MUST be
1954 static int setup_relayd(struct ltt_session
*session
)
1956 int ret
= LTTCOMM_OK
;
1957 struct ltt_ust_session
*usess
;
1958 struct ltt_kernel_session
*ksess
;
1962 usess
= session
->ust_session
;
1963 ksess
= session
->kernel_session
;
1965 DBG2("Setting relayd for session %s", session
->name
);
1967 if (usess
&& usess
->consumer
->sock
== -1 &&
1968 usess
->consumer
->type
== CONSUMER_DST_NET
&&
1969 usess
->consumer
->enabled
) {
1970 /* Setup relayd for 64 bits consumer */
1971 if (ust_consumerd64_fd
>= 0) {
1972 send_sockets_relayd_consumer(LTTNG_DOMAIN_UST
, session
,
1973 usess
->consumer
, ust_consumerd64_fd
);
1974 if (ret
!= LTTCOMM_OK
) {
1979 /* Setup relayd for 32 bits consumer */
1980 if (ust_consumerd32_fd
>= 0) {
1981 send_sockets_relayd_consumer(LTTNG_DOMAIN_UST
, session
,
1982 usess
->consumer
, ust_consumerd32_fd
);
1983 if (ret
!= LTTCOMM_OK
) {
1987 } else if (ksess
&& ksess
->consumer
->sock
== -1 &&
1988 ksess
->consumer
->type
== CONSUMER_DST_NET
&&
1989 ksess
->consumer
->enabled
) {
1990 send_sockets_relayd_consumer(LTTNG_DOMAIN_KERNEL
, session
,
1991 ksess
->consumer
, ksess
->consumer_fd
);
1992 if (ret
!= LTTCOMM_OK
) {
2002 * Copy consumer output from the tracing session to the domain session. The
2003 * function also applies the right modification on a per domain basis for the
2004 * trace files destination directory.
2006 static int copy_session_consumer(int domain
, struct ltt_session
*session
)
2009 const char *dir_name
;
2010 struct consumer_output
*consumer
;
2013 case LTTNG_DOMAIN_KERNEL
:
2014 DBG3("Copying tracing session consumer output in kernel session");
2015 session
->kernel_session
->consumer
=
2016 consumer_copy_output(session
->consumer
);
2017 /* Ease our life a bit for the next part */
2018 consumer
= session
->kernel_session
->consumer
;
2019 dir_name
= DEFAULT_KERNEL_TRACE_DIR
;
2021 case LTTNG_DOMAIN_UST
:
2022 DBG3("Copying tracing session consumer output in UST session");
2023 session
->ust_session
->consumer
=
2024 consumer_copy_output(session
->consumer
);
2025 /* Ease our life a bit for the next part */
2026 consumer
= session
->ust_session
->consumer
;
2027 dir_name
= DEFAULT_UST_TRACE_DIR
;
2030 ret
= LTTCOMM_UNKNOWN_DOMAIN
;
2034 /* Append correct directory to subdir */
2035 strncat(consumer
->subdir
, dir_name
, sizeof(consumer
->subdir
));
2036 DBG3("Copy session consumer subdir %s", consumer
->subdir
);
2038 /* Add default trace directory name */
2039 if (consumer
->type
== CONSUMER_DST_LOCAL
) {
2040 strncat(consumer
->dst
.trace_path
, dir_name
,
2041 sizeof(consumer
->dst
.trace_path
));
2051 * Create an UST session and add it to the session ust list.
2053 static int create_ust_session(struct ltt_session
*session
,
2054 struct lttng_domain
*domain
)
2057 struct ltt_ust_session
*lus
= NULL
;
2060 assert(session
->consumer
);
2062 switch (domain
->type
) {
2063 case LTTNG_DOMAIN_UST
:
2066 ERR("Unknown UST domain on create session %d", domain
->type
);
2067 ret
= LTTCOMM_UNKNOWN_DOMAIN
;
2071 DBG("Creating UST session");
2073 lus
= trace_ust_create_session(session
->path
, session
->id
, domain
);
2075 ret
= LTTCOMM_UST_SESS_FAIL
;
2079 if (session
->consumer
->type
== CONSUMER_DST_LOCAL
) {
2080 ret
= run_as_mkdir_recursive(lus
->pathname
, S_IRWXU
| S_IRWXG
,
2081 session
->uid
, session
->gid
);
2083 if (ret
!= -EEXIST
) {
2084 ERR("Trace directory creation error");
2085 ret
= LTTCOMM_UST_SESS_FAIL
;
2091 lus
->uid
= session
->uid
;
2092 lus
->gid
= session
->gid
;
2093 session
->ust_session
= lus
;
2095 /* Copy session output to the newly created UST session */
2096 ret
= copy_session_consumer(domain
->type
, session
);
2097 if (ret
!= LTTCOMM_OK
) {
2105 session
->ust_session
= NULL
;
2110 * Create a kernel tracer session then create the default channel.
2112 static int create_kernel_session(struct ltt_session
*session
)
2116 DBG("Creating kernel session");
2118 ret
= kernel_create_session(session
, kernel_tracer_fd
);
2120 ret
= LTTCOMM_KERN_SESS_FAIL
;
2124 /* Set kernel consumer socket fd */
2125 if (kconsumer_data
.cmd_sock
>= 0) {
2126 session
->kernel_session
->consumer_fd
= kconsumer_data
.cmd_sock
;
2129 /* Copy session output to the newly created Kernel session */
2130 ret
= copy_session_consumer(LTTNG_DOMAIN_KERNEL
, session
);
2131 if (ret
!= LTTCOMM_OK
) {
2135 /* Create directory(ies) on local filesystem. */
2136 if (session
->consumer
->type
== CONSUMER_DST_LOCAL
) {
2137 ret
= run_as_mkdir_recursive(
2138 session
->kernel_session
->consumer
->dst
.trace_path
,
2139 S_IRWXU
| S_IRWXG
, session
->uid
, session
->gid
);
2141 if (ret
!= -EEXIST
) {
2142 ERR("Trace directory creation error");
2148 session
->kernel_session
->uid
= session
->uid
;
2149 session
->kernel_session
->gid
= session
->gid
;
2154 trace_kernel_destroy_session(session
->kernel_session
);
2155 session
->kernel_session
= NULL
;
2160 * Check if the UID or GID match the session. Root user has access to all
2163 static int session_access_ok(struct ltt_session
*session
, uid_t uid
, gid_t gid
)
2165 if (uid
!= session
->uid
&& gid
!= session
->gid
&& uid
!= 0) {
2173 * Count number of session permitted by uid/gid.
2175 static unsigned int lttng_sessions_count(uid_t uid
, gid_t gid
)
2178 struct ltt_session
*session
;
2180 DBG("Counting number of available session for UID %d GID %d",
2182 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
2184 * Only list the sessions the user can control.
2186 if (!session_access_ok(session
, uid
, gid
)) {
2195 * Using the session list, filled a lttng_session array to send back to the
2196 * client for session listing.
2198 * The session list lock MUST be acquired before calling this function. Use
2199 * session_lock_list() and session_unlock_list().
2201 static void list_lttng_sessions(struct lttng_session
*sessions
, uid_t uid
,
2205 struct ltt_session
*session
;
2207 DBG("Getting all available session for UID %d GID %d",
2210 * Iterate over session list and append data after the control struct in
2213 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
2215 * Only list the sessions the user can control.
2217 if (!session_access_ok(session
, uid
, gid
)) {
2220 strncpy(sessions
[i
].path
, session
->path
, PATH_MAX
);
2221 sessions
[i
].path
[PATH_MAX
- 1] = '\0';
2222 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
2223 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
2224 sessions
[i
].enabled
= session
->enabled
;
2230 * Fill lttng_channel array of all channels.
2232 static void list_lttng_channels(int domain
, struct ltt_session
*session
,
2233 struct lttng_channel
*channels
)
2236 struct ltt_kernel_channel
*kchan
;
2238 DBG("Listing channels for session %s", session
->name
);
2241 case LTTNG_DOMAIN_KERNEL
:
2242 /* Kernel channels */
2243 if (session
->kernel_session
!= NULL
) {
2244 cds_list_for_each_entry(kchan
,
2245 &session
->kernel_session
->channel_list
.head
, list
) {
2246 /* Copy lttng_channel struct to array */
2247 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
2248 channels
[i
].enabled
= kchan
->enabled
;
2253 case LTTNG_DOMAIN_UST
:
2255 struct lttng_ht_iter iter
;
2256 struct ltt_ust_channel
*uchan
;
2258 cds_lfht_for_each_entry(session
->ust_session
->domain_global
.channels
->ht
,
2259 &iter
.iter
, uchan
, node
.node
) {
2260 strncpy(channels
[i
].name
, uchan
->name
, LTTNG_SYMBOL_NAME_LEN
);
2261 channels
[i
].attr
.overwrite
= uchan
->attr
.overwrite
;
2262 channels
[i
].attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
2263 channels
[i
].attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
2264 channels
[i
].attr
.switch_timer_interval
=
2265 uchan
->attr
.switch_timer_interval
;
2266 channels
[i
].attr
.read_timer_interval
=
2267 uchan
->attr
.read_timer_interval
;
2268 channels
[i
].enabled
= uchan
->enabled
;
2269 switch (uchan
->attr
.output
) {
2270 case LTTNG_UST_MMAP
:
2272 channels
[i
].attr
.output
= LTTNG_EVENT_MMAP
;
2285 * Create a list of ust global domain events.
2287 static int list_lttng_ust_global_events(char *channel_name
,
2288 struct ltt_ust_domain_global
*ust_global
, struct lttng_event
**events
)
2291 unsigned int nb_event
= 0;
2292 struct lttng_ht_iter iter
;
2293 struct lttng_ht_node_str
*node
;
2294 struct ltt_ust_channel
*uchan
;
2295 struct ltt_ust_event
*uevent
;
2296 struct lttng_event
*tmp
;
2298 DBG("Listing UST global events for channel %s", channel_name
);
2302 lttng_ht_lookup(ust_global
->channels
, (void *)channel_name
, &iter
);
2303 node
= lttng_ht_iter_get_node_str(&iter
);
2305 ret
= -LTTCOMM_UST_CHAN_NOT_FOUND
;
2309 uchan
= caa_container_of(&node
->node
, struct ltt_ust_channel
, node
.node
);
2311 nb_event
+= lttng_ht_get_count(uchan
->events
);
2313 if (nb_event
== 0) {
2318 DBG3("Listing UST global %d events", nb_event
);
2320 tmp
= zmalloc(nb_event
* sizeof(struct lttng_event
));
2322 ret
= -LTTCOMM_FATAL
;
2326 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
2327 strncpy(tmp
[i
].name
, uevent
->attr
.name
, LTTNG_SYMBOL_NAME_LEN
);
2328 tmp
[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
2329 tmp
[i
].enabled
= uevent
->enabled
;
2330 switch (uevent
->attr
.instrumentation
) {
2331 case LTTNG_UST_TRACEPOINT
:
2332 tmp
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
2334 case LTTNG_UST_PROBE
:
2335 tmp
[i
].type
= LTTNG_EVENT_PROBE
;
2337 case LTTNG_UST_FUNCTION
:
2338 tmp
[i
].type
= LTTNG_EVENT_FUNCTION
;
2341 tmp
[i
].loglevel
= uevent
->attr
.loglevel
;
2342 switch (uevent
->attr
.loglevel_type
) {
2343 case LTTNG_UST_LOGLEVEL_ALL
:
2344 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_ALL
;
2346 case LTTNG_UST_LOGLEVEL_RANGE
:
2347 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_RANGE
;
2349 case LTTNG_UST_LOGLEVEL_SINGLE
:
2350 tmp
[i
].loglevel_type
= LTTNG_EVENT_LOGLEVEL_SINGLE
;
2365 * Fill lttng_event array of all kernel events in the channel.
2367 static int list_lttng_kernel_events(char *channel_name
,
2368 struct ltt_kernel_session
*kernel_session
, struct lttng_event
**events
)
2371 unsigned int nb_event
;
2372 struct ltt_kernel_event
*event
;
2373 struct ltt_kernel_channel
*kchan
;
2375 kchan
= trace_kernel_get_channel_by_name(channel_name
, kernel_session
);
2376 if (kchan
== NULL
) {
2377 ret
= LTTCOMM_KERN_CHAN_NOT_FOUND
;
2381 nb_event
= kchan
->event_count
;
2383 DBG("Listing events for channel %s", kchan
->channel
->name
);
2385 if (nb_event
== 0) {
2390 *events
= zmalloc(nb_event
* sizeof(struct lttng_event
));
2391 if (*events
== NULL
) {
2392 ret
= LTTCOMM_FATAL
;
2396 /* Kernel channels */
2397 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
2398 strncpy((*events
)[i
].name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
);
2399 (*events
)[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
2400 (*events
)[i
].enabled
= event
->enabled
;
2401 switch (event
->event
->instrumentation
) {
2402 case LTTNG_KERNEL_TRACEPOINT
:
2403 (*events
)[i
].type
= LTTNG_EVENT_TRACEPOINT
;
2405 case LTTNG_KERNEL_KPROBE
:
2406 case LTTNG_KERNEL_KRETPROBE
:
2407 (*events
)[i
].type
= LTTNG_EVENT_PROBE
;
2408 memcpy(&(*events
)[i
].attr
.probe
, &event
->event
->u
.kprobe
,
2409 sizeof(struct lttng_kernel_kprobe
));
2411 case LTTNG_KERNEL_FUNCTION
:
2412 (*events
)[i
].type
= LTTNG_EVENT_FUNCTION
;
2413 memcpy(&((*events
)[i
].attr
.ftrace
), &event
->event
->u
.ftrace
,
2414 sizeof(struct lttng_kernel_function
));
2416 case LTTNG_KERNEL_NOOP
:
2417 (*events
)[i
].type
= LTTNG_EVENT_NOOP
;
2419 case LTTNG_KERNEL_SYSCALL
:
2420 (*events
)[i
].type
= LTTNG_EVENT_SYSCALL
;
2422 case LTTNG_KERNEL_ALL
:
2436 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
2438 static int cmd_disable_channel(struct ltt_session
*session
,
2439 int domain
, char *channel_name
)
2442 struct ltt_ust_session
*usess
;
2444 usess
= session
->ust_session
;
2447 case LTTNG_DOMAIN_KERNEL
:
2449 ret
= channel_kernel_disable(session
->kernel_session
,
2451 if (ret
!= LTTCOMM_OK
) {
2455 kernel_wait_quiescent(kernel_tracer_fd
);
2458 case LTTNG_DOMAIN_UST
:
2460 struct ltt_ust_channel
*uchan
;
2461 struct lttng_ht
*chan_ht
;
2463 chan_ht
= usess
->domain_global
.channels
;
2465 uchan
= trace_ust_find_channel_by_name(chan_ht
, channel_name
);
2466 if (uchan
== NULL
) {
2467 ret
= LTTCOMM_UST_CHAN_NOT_FOUND
;
2471 ret
= channel_ust_disable(usess
, domain
, uchan
);
2472 if (ret
!= LTTCOMM_OK
) {
2478 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
2479 case LTTNG_DOMAIN_UST_EXEC_NAME
:
2480 case LTTNG_DOMAIN_UST_PID
:
2483 ret
= LTTCOMM_UNKNOWN_DOMAIN
;
2494 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
2496 static int cmd_enable_channel(struct ltt_session
*session
,
2497 int domain
, struct lttng_channel
*attr
)
2500 struct ltt_ust_session
*usess
= session
->ust_session
;
2501 struct lttng_ht
*chan_ht
;
2503 DBG("Enabling channel %s for session %s", attr
->name
, session
->name
);
2506 case LTTNG_DOMAIN_KERNEL
:
2508 struct ltt_kernel_channel
*kchan
;
2510 kchan
= trace_kernel_get_channel_by_name(attr
->name
,
2511 session
->kernel_session
);
2512 if (kchan
== NULL
) {
2513 ret
= channel_kernel_create(session
->kernel_session
,
2514 attr
, kernel_poll_pipe
[1]);
2516 ret
= channel_kernel_enable(session
->kernel_session
, kchan
);
2519 if (ret
!= LTTCOMM_OK
) {
2523 kernel_wait_quiescent(kernel_tracer_fd
);
2526 case LTTNG_DOMAIN_UST
:
2528 struct ltt_ust_channel
*uchan
;
2530 chan_ht
= usess
->domain_global
.channels
;
2532 uchan
= trace_ust_find_channel_by_name(chan_ht
, attr
->name
);
2533 if (uchan
== NULL
) {
2534 ret
= channel_ust_create(usess
, domain
, attr
);
2536 ret
= channel_ust_enable(usess
, domain
, uchan
);
2541 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
2542 case LTTNG_DOMAIN_UST_EXEC_NAME
:
2543 case LTTNG_DOMAIN_UST_PID
:
2546 ret
= LTTCOMM_UNKNOWN_DOMAIN
;
2555 * Command LTTNG_DISABLE_EVENT processed by the client thread.
2557 static int cmd_disable_event(struct ltt_session
*session
, int domain
,
2558 char *channel_name
, char *event_name
)
2563 case LTTNG_DOMAIN_KERNEL
:
2565 struct ltt_kernel_channel
*kchan
;
2566 struct ltt_kernel_session
*ksess
;
2568 ksess
= session
->kernel_session
;
2570 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
2571 if (kchan
== NULL
) {
2572 ret
= LTTCOMM_KERN_CHAN_NOT_FOUND
;
2576 ret
= event_kernel_disable_tracepoint(ksess
, kchan
, event_name
);
2577 if (ret
!= LTTCOMM_OK
) {
2581 kernel_wait_quiescent(kernel_tracer_fd
);
2584 case LTTNG_DOMAIN_UST
:
2586 struct ltt_ust_channel
*uchan
;
2587 struct ltt_ust_session
*usess
;
2589 usess
= session
->ust_session
;
2591 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
2593 if (uchan
== NULL
) {
2594 ret
= LTTCOMM_UST_CHAN_NOT_FOUND
;
2598 ret
= event_ust_disable_tracepoint(usess
, domain
, uchan
, event_name
);
2599 if (ret
!= LTTCOMM_OK
) {
2603 DBG3("Disable UST event %s in channel %s completed", event_name
,
2608 case LTTNG_DOMAIN_UST_EXEC_NAME
:
2609 case LTTNG_DOMAIN_UST_PID
:
2610 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
2624 * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread.
2626 static int cmd_disable_event_all(struct ltt_session
*session
, int domain
,
2632 case LTTNG_DOMAIN_KERNEL
:
2634 struct ltt_kernel_session
*ksess
;
2635 struct ltt_kernel_channel
*kchan
;
2637 ksess
= session
->kernel_session
;
2639 kchan
= trace_kernel_get_channel_by_name(channel_name
, ksess
);
2640 if (kchan
== NULL
) {
2641 ret
= LTTCOMM_KERN_CHAN_NOT_FOUND
;
2645 ret
= event_kernel_disable_all(ksess
, kchan
);
2646 if (ret
!= LTTCOMM_OK
) {
2650 kernel_wait_quiescent(kernel_tracer_fd
);
2653 case LTTNG_DOMAIN_UST
:
2655 struct ltt_ust_session
*usess
;
2656 struct ltt_ust_channel
*uchan
;
2658 usess
= session
->ust_session
;
2660 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
2662 if (uchan
== NULL
) {
2663 ret
= LTTCOMM_UST_CHAN_NOT_FOUND
;
2667 ret
= event_ust_disable_all_tracepoints(usess
, domain
, uchan
);
2672 DBG3("Disable all UST events in channel %s completed", channel_name
);
2677 case LTTNG_DOMAIN_UST_EXEC_NAME
:
2678 case LTTNG_DOMAIN_UST_PID
:
2679 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
2693 * Command LTTNG_ADD_CONTEXT processed by the client thread.
2695 static int cmd_add_context(struct ltt_session
*session
, int domain
,
2696 char *channel_name
, char *event_name
, struct lttng_event_context
*ctx
)
2701 case LTTNG_DOMAIN_KERNEL
:
2702 /* Add kernel context to kernel tracer */
2703 ret
= context_kernel_add(session
->kernel_session
, ctx
,
2704 event_name
, channel_name
);
2705 if (ret
!= LTTCOMM_OK
) {
2709 case LTTNG_DOMAIN_UST
:
2711 struct ltt_ust_session
*usess
= session
->ust_session
;
2713 ret
= context_ust_add(usess
, domain
, ctx
, event_name
, channel_name
);
2714 if (ret
!= LTTCOMM_OK
) {
2720 case LTTNG_DOMAIN_UST_EXEC_NAME
:
2721 case LTTNG_DOMAIN_UST_PID
:
2722 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
2736 * Command LTTNG_SET_FILTER processed by the client thread.
2738 static int cmd_set_filter(struct ltt_session
*session
, int domain
,
2739 char *channel_name
, char *event_name
,
2740 struct lttng_filter_bytecode
*bytecode
)
2745 case LTTNG_DOMAIN_KERNEL
:
2746 ret
= LTTCOMM_FATAL
;
2748 case LTTNG_DOMAIN_UST
:
2750 struct ltt_ust_session
*usess
= session
->ust_session
;
2752 ret
= filter_ust_set(usess
, domain
, bytecode
, event_name
, channel_name
);
2753 if (ret
!= LTTCOMM_OK
) {
2759 case LTTNG_DOMAIN_UST_EXEC_NAME
:
2760 case LTTNG_DOMAIN_UST_PID
:
2761 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
2776 * Command LTTNG_ENABLE_EVENT processed by the client thread.
2778 static int cmd_enable_event(struct ltt_session
*session
, int domain
,
2779 char *channel_name
, struct lttng_event
*event
)
2782 struct lttng_channel
*attr
;
2783 struct ltt_ust_session
*usess
= session
->ust_session
;
2786 case LTTNG_DOMAIN_KERNEL
:
2788 struct ltt_kernel_channel
*kchan
;
2790 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2791 session
->kernel_session
);
2792 if (kchan
== NULL
) {
2793 attr
= channel_new_default_attr(domain
);
2795 ret
= LTTCOMM_FATAL
;
2798 snprintf(attr
->name
, NAME_MAX
, "%s", channel_name
);
2800 /* This call will notify the kernel thread */
2801 ret
= channel_kernel_create(session
->kernel_session
,
2802 attr
, kernel_poll_pipe
[1]);
2803 if (ret
!= LTTCOMM_OK
) {
2810 /* Get the newly created kernel channel pointer */
2811 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2812 session
->kernel_session
);
2813 if (kchan
== NULL
) {
2814 /* This sould not happen... */
2815 ret
= LTTCOMM_FATAL
;
2819 ret
= event_kernel_enable_tracepoint(session
->kernel_session
, kchan
,
2821 if (ret
!= LTTCOMM_OK
) {
2825 kernel_wait_quiescent(kernel_tracer_fd
);
2828 case LTTNG_DOMAIN_UST
:
2830 struct lttng_channel
*attr
;
2831 struct ltt_ust_channel
*uchan
;
2833 /* Get channel from global UST domain */
2834 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
2836 if (uchan
== NULL
) {
2837 /* Create default channel */
2838 attr
= channel_new_default_attr(domain
);
2840 ret
= LTTCOMM_FATAL
;
2843 snprintf(attr
->name
, NAME_MAX
, "%s", channel_name
);
2844 attr
->name
[NAME_MAX
- 1] = '\0';
2846 ret
= channel_ust_create(usess
, domain
, attr
);
2847 if (ret
!= LTTCOMM_OK
) {
2853 /* Get the newly created channel reference back */
2854 uchan
= trace_ust_find_channel_by_name(
2855 usess
->domain_global
.channels
, channel_name
);
2856 if (uchan
== NULL
) {
2857 /* Something is really wrong */
2858 ret
= LTTCOMM_FATAL
;
2863 /* At this point, the session and channel exist on the tracer */
2864 ret
= event_ust_enable_tracepoint(usess
, domain
, uchan
, event
);
2865 if (ret
!= LTTCOMM_OK
) {
2871 case LTTNG_DOMAIN_UST_EXEC_NAME
:
2872 case LTTNG_DOMAIN_UST_PID
:
2873 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
2887 * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread.
2889 static int cmd_enable_event_all(struct ltt_session
*session
, int domain
,
2890 char *channel_name
, int event_type
)
2893 struct ltt_kernel_channel
*kchan
;
2896 case LTTNG_DOMAIN_KERNEL
:
2897 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2898 session
->kernel_session
);
2899 if (kchan
== NULL
) {
2900 /* This call will notify the kernel thread */
2901 ret
= channel_kernel_create(session
->kernel_session
, NULL
,
2902 kernel_poll_pipe
[1]);
2903 if (ret
!= LTTCOMM_OK
) {
2907 /* Get the newly created kernel channel pointer */
2908 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2909 session
->kernel_session
);
2910 if (kchan
== NULL
) {
2911 /* This sould not happen... */
2912 ret
= LTTCOMM_FATAL
;
2918 switch (event_type
) {
2919 case LTTNG_EVENT_SYSCALL
:
2920 ret
= event_kernel_enable_all_syscalls(session
->kernel_session
,
2921 kchan
, kernel_tracer_fd
);
2923 case LTTNG_EVENT_TRACEPOINT
:
2925 * This call enables all LTTNG_KERNEL_TRACEPOINTS and
2926 * events already registered to the channel.
2928 ret
= event_kernel_enable_all_tracepoints(session
->kernel_session
,
2929 kchan
, kernel_tracer_fd
);
2931 case LTTNG_EVENT_ALL
:
2932 /* Enable syscalls and tracepoints */
2933 ret
= event_kernel_enable_all(session
->kernel_session
,
2934 kchan
, kernel_tracer_fd
);
2937 ret
= LTTCOMM_KERN_ENABLE_FAIL
;
2941 /* Manage return value */
2942 if (ret
!= LTTCOMM_OK
) {
2946 kernel_wait_quiescent(kernel_tracer_fd
);
2948 case LTTNG_DOMAIN_UST
:
2950 struct lttng_channel
*attr
;
2951 struct ltt_ust_channel
*uchan
;
2952 struct ltt_ust_session
*usess
= session
->ust_session
;
2954 /* Get channel from global UST domain */
2955 uchan
= trace_ust_find_channel_by_name(usess
->domain_global
.channels
,
2957 if (uchan
== NULL
) {
2958 /* Create default channel */
2959 attr
= channel_new_default_attr(domain
);
2961 ret
= LTTCOMM_FATAL
;
2964 snprintf(attr
->name
, NAME_MAX
, "%s", channel_name
);
2965 attr
->name
[NAME_MAX
- 1] = '\0';
2967 /* Use the internal command enable channel */
2968 ret
= channel_ust_create(usess
, domain
, attr
);
2969 if (ret
!= LTTCOMM_OK
) {
2975 /* Get the newly created channel reference back */
2976 uchan
= trace_ust_find_channel_by_name(
2977 usess
->domain_global
.channels
, channel_name
);
2978 if (uchan
== NULL
) {
2979 /* Something is really wrong */
2980 ret
= LTTCOMM_FATAL
;
2985 /* At this point, the session and channel exist on the tracer */
2987 switch (event_type
) {
2988 case LTTNG_EVENT_ALL
:
2989 case LTTNG_EVENT_TRACEPOINT
:
2990 ret
= event_ust_enable_all_tracepoints(usess
, domain
, uchan
);
2991 if (ret
!= LTTCOMM_OK
) {
2996 ret
= LTTCOMM_UST_ENABLE_FAIL
;
3000 /* Manage return value */
3001 if (ret
!= LTTCOMM_OK
) {
3008 case LTTNG_DOMAIN_UST_EXEC_NAME
:
3009 case LTTNG_DOMAIN_UST_PID
:
3010 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN
:
3024 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
3026 static ssize_t
cmd_list_tracepoints(int domain
, struct lttng_event
**events
)
3029 ssize_t nb_events
= 0;
3032 case LTTNG_DOMAIN_KERNEL
:
3033 nb_events
= kernel_list_events(kernel_tracer_fd
, events
);
3034 if (nb_events
< 0) {
3035 ret
= LTTCOMM_KERN_LIST_FAIL
;
3039 case LTTNG_DOMAIN_UST
:
3040 nb_events
= ust_app_list_events(events
);
3041 if (nb_events
< 0) {
3042 ret
= LTTCOMM_UST_LIST_FAIL
;
3054 /* Return negative value to differentiate return code */
3059 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
3061 static ssize_t
cmd_list_tracepoint_fields(int domain
,
3062 struct lttng_event_field
**fields
)
3065 ssize_t nb_fields
= 0;
3068 case LTTNG_DOMAIN_UST
:
3069 nb_fields
= ust_app_list_event_fields(fields
);
3070 if (nb_fields
< 0) {
3071 ret
= LTTCOMM_UST_LIST_FAIL
;
3075 case LTTNG_DOMAIN_KERNEL
:
3076 default: /* fall-through */
3084 /* Return negative value to differentiate return code */
3089 * Command LTTNG_START_TRACE processed by the client thread.
3091 static int cmd_start_trace(struct ltt_session
*session
)
3094 struct ltt_kernel_session
*ksession
;
3095 struct ltt_ust_session
*usess
;
3096 struct ltt_kernel_channel
*kchan
;
3098 /* Ease our life a bit ;) */
3099 ksession
= session
->kernel_session
;
3100 usess
= session
->ust_session
;
3102 if (session
->enabled
) {
3103 /* Already started. */
3104 ret
= LTTCOMM_TRACE_ALREADY_STARTED
;
3108 session
->enabled
= 1;
3110 ret
= setup_relayd(session
);
3111 if (ret
!= LTTCOMM_OK
) {
3112 ERR("Error setting up relayd for session %s", session
->name
);
3116 /* Kernel tracing */
3117 if (ksession
!= NULL
) {
3118 /* Open kernel metadata */
3119 if (ksession
->metadata
== NULL
) {
3120 ret
= kernel_open_metadata(ksession
,
3121 ksession
->consumer
->dst
.trace_path
);
3123 ret
= LTTCOMM_KERN_META_FAIL
;
3128 /* Open kernel metadata stream */
3129 if (ksession
->metadata_stream_fd
< 0) {
3130 ret
= kernel_open_metadata_stream(ksession
);
3132 ERR("Kernel create metadata stream failed");
3133 ret
= LTTCOMM_KERN_STREAM_FAIL
;
3138 /* For each channel */
3139 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
3140 if (kchan
->stream_count
== 0) {
3141 ret
= kernel_open_channel_stream(kchan
);
3143 ret
= LTTCOMM_KERN_STREAM_FAIL
;
3146 /* Update the stream global counter */
3147 ksession
->stream_count_global
+= ret
;
3151 /* Setup kernel consumer socket and send fds to it */
3152 ret
= init_kernel_tracing(ksession
);
3154 ret
= LTTCOMM_KERN_START_FAIL
;
3158 /* This start the kernel tracing */
3159 ret
= kernel_start_session(ksession
);
3161 ret
= LTTCOMM_KERN_START_FAIL
;
3165 /* Quiescent wait after starting trace */
3166 kernel_wait_quiescent(kernel_tracer_fd
);
3169 /* Flag session that trace should start automatically */
3171 usess
->start_trace
= 1;
3173 ret
= ust_app_start_trace_all(usess
);
3175 ret
= LTTCOMM_UST_START_FAIL
;
3187 * Command LTTNG_STOP_TRACE processed by the client thread.
3189 static int cmd_stop_trace(struct ltt_session
*session
)
3192 struct ltt_kernel_channel
*kchan
;
3193 struct ltt_kernel_session
*ksession
;
3194 struct ltt_ust_session
*usess
;
3197 ksession
= session
->kernel_session
;
3198 usess
= session
->ust_session
;
3200 if (!session
->enabled
) {
3201 ret
= LTTCOMM_TRACE_ALREADY_STOPPED
;
3205 session
->enabled
= 0;
3208 if (ksession
!= NULL
) {
3209 DBG("Stop kernel tracing");
3211 /* Flush metadata if exist */
3212 if (ksession
->metadata_stream_fd
>= 0) {
3213 ret
= kernel_metadata_flush_buffer(ksession
->metadata_stream_fd
);
3215 ERR("Kernel metadata flush failed");
3219 /* Flush all buffers before stopping */
3220 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
3221 ret
= kernel_flush_buffer(kchan
);
3223 ERR("Kernel flush buffer error");
3227 ret
= kernel_stop_session(ksession
);
3229 ret
= LTTCOMM_KERN_STOP_FAIL
;
3233 kernel_wait_quiescent(kernel_tracer_fd
);
3237 usess
->start_trace
= 0;
3239 ret
= ust_app_stop_trace_all(usess
);
3241 ret
= LTTCOMM_UST_STOP_FAIL
;
3253 * Command LTTNG_CREATE_SESSION_URI processed by the client thread.
3255 static int cmd_create_session_uri(char *name
, struct lttng_uri
*ctrl_uri
,
3256 struct lttng_uri
*data_uri
, unsigned int enable_consumer
,
3257 lttng_sock_cred
*creds
)
3261 struct ltt_session
*session
;
3262 struct consumer_output
*consumer
;
3264 /* Verify if the session already exist */
3265 session
= session_find_by_name(name
);
3266 if (session
!= NULL
) {
3267 ret
= LTTCOMM_EXIST_SESS
;
3271 /* TODO: validate URIs */
3273 /* Create default consumer output */
3274 consumer
= consumer_create_output(CONSUMER_DST_LOCAL