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 it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation; only version 2 of the License.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307, USA.
25 #include <semaphore.h>
31 #include <sys/mount.h>
32 #include <sys/resource.h>
33 #include <sys/socket.h>
35 #include <sys/types.h>
37 #include <urcu/futex.h>
40 #include <ltt-kconsumerd.h>
41 #include <lttng-sessiond-comm.h>
42 #include <lttng/lttng-kconsumerd.h>
46 #include "compat/poll.h"
50 #include "kernel-ctl.h"
51 #include "ltt-sessiond.h"
59 const char default_home_dir
[] = DEFAULT_HOME_DIR
;
60 const char default_tracing_group
[] = LTTNG_DEFAULT_TRACING_GROUP
;
61 const char default_ust_sock_dir
[] = DEFAULT_UST_SOCK_DIR
;
62 const char default_global_apps_pipe
[] = DEFAULT_GLOBAL_APPS_PIPE
;
65 int opt_verbose
; /* Not static for lttngerr.h */
66 int opt_verbose_kconsumerd
; /* Not static for lttngerr.h */
67 int opt_quiet
; /* Not static for lttngerr.h */
70 const char *opt_tracing_group
;
71 static int opt_sig_parent
;
72 static int opt_daemon
;
73 static int is_root
; /* Set to 1 if the daemon is running as root */
74 static pid_t ppid
; /* Parent PID for --sig-parent option */
75 static pid_t kconsumerd_pid
;
76 static int dispatch_thread_exit
;
78 /* Global application Unix socket path */
79 static char apps_unix_sock_path
[PATH_MAX
];
80 /* Global client Unix socket path */
81 static char client_unix_sock_path
[PATH_MAX
];
82 /* kconsumerd error and command Unix socket path */
83 static char kconsumerd_err_unix_sock_path
[PATH_MAX
];
84 static char kconsumerd_cmd_unix_sock_path
[PATH_MAX
];
85 /* global wait shm path for UST */
86 static char wait_shm_path
[PATH_MAX
];
89 static int client_sock
;
91 static int kconsumerd_err_sock
;
92 static int kconsumerd_cmd_sock
;
93 static int kernel_tracer_fd
;
94 static int kernel_poll_pipe
[2];
97 * Quit pipe for all threads. This permits a single cancellation point
98 * for all threads when receiving an event on the pipe.
100 static int thread_quit_pipe
[2];
103 * This pipe is used to inform the thread managing application communication
104 * that a command is queued and ready to be processed.
106 static int apps_cmd_pipe
[2];
108 /* Pthread, Mutexes and Semaphores */
109 static pthread_t kconsumerd_thread
;
110 static pthread_t apps_thread
;
111 static pthread_t reg_apps_thread
;
112 static pthread_t client_thread
;
113 static pthread_t kernel_thread
;
114 static pthread_t dispatch_thread
;
115 static sem_t kconsumerd_sem
;
118 /* Mutex to control kconsumerd pid assignation */
119 static pthread_mutex_t kconsumerd_pid_mutex
;
122 * UST registration command queue. This queue is tied with a futex and uses a N
123 * wakers / 1 waiter implemented and detailed in futex.c/.h
125 * The thread_manage_apps and thread_dispatch_ust_registration interact with
126 * this queue and the wait/wake scheme.
128 static struct ust_cmd_queue ust_cmd_queue
;
131 * Pointer initialized before thread creation.
133 * This points to the tracing session list containing the session count and a
134 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
135 * MUST NOT be taken if you call a public function in session.c.
137 * The lock is nested inside the structure: session_list_ptr->lock. Please use
138 * session_lock_list and session_unlock_list for lock acquisition.
140 static struct ltt_session_list
*session_list_ptr
;
143 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
145 static int create_thread_poll_set(struct lttng_poll_event
*events
,
150 if (events
== NULL
|| size
== 0) {
155 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
161 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
);
173 * Check if the thread quit pipe was triggered.
175 * Return 1 if it was triggered else 0;
177 static int check_thread_quit_pipe(int fd
, uint32_t events
)
179 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
187 * Remove modules in reverse load order.
189 static int modprobe_remove_kernel_modules(void)
194 for (i
= ARRAY_SIZE(kernel_modules_list
) - 1; i
>= 0; i
--) {
195 ret
= snprintf(modprobe
, sizeof(modprobe
),
196 "/sbin/modprobe --remove --quiet %s",
197 kernel_modules_list
[i
].name
);
199 perror("snprintf modprobe --remove");
202 modprobe
[sizeof(modprobe
) - 1] = '\0';
203 ret
= system(modprobe
);
205 ERR("Unable to launch modprobe --remove for module %s",
206 kernel_modules_list
[i
].name
);
207 } else if (kernel_modules_list
[i
].required
208 && WEXITSTATUS(ret
) != 0) {
209 ERR("Unable to remove module %s",
210 kernel_modules_list
[i
].name
);
212 DBG("Modprobe removal successful %s",
213 kernel_modules_list
[i
].name
);
222 * Return group ID of the tracing group or -1 if not found.
224 static gid_t
allowed_group(void)
228 if (opt_tracing_group
) {
229 grp
= getgrnam(opt_tracing_group
);
231 grp
= getgrnam(default_tracing_group
);
241 * Init thread quit pipe.
243 * Return -1 on error or 0 if all pipes are created.
245 static int init_thread_quit_pipe(void)
249 ret
= pipe2(thread_quit_pipe
, O_CLOEXEC
);
251 perror("thread quit pipe");
260 * Complete teardown of a kernel session. This free all data structure related
261 * to a kernel session and update counter.
263 static void teardown_kernel_session(struct ltt_session
*session
)
265 if (session
->kernel_session
!= NULL
) {
266 DBG("Tearing down kernel session");
269 * If a custom kernel consumer was registered, close the socket before
270 * tearing down the complete kernel session structure
272 if (session
->kernel_session
->consumer_fd
!= kconsumerd_cmd_sock
) {
273 lttcomm_close_unix_sock(session
->kernel_session
->consumer_fd
);
276 trace_kernel_destroy_session(session
->kernel_session
);
277 /* Extra precaution */
278 session
->kernel_session
= NULL
;
283 * Stop all threads by closing the thread quit pipe.
285 static void stop_threads(void)
289 /* Stopping all threads */
290 DBG("Terminating all threads");
291 ret
= notify_thread_pipe(thread_quit_pipe
[1]);
293 ERR("write error on thread quit pipe");
296 /* Dispatch thread */
297 dispatch_thread_exit
= 1;
298 futex_nto1_wake(&ust_cmd_queue
.futex
);
304 static void cleanup(void)
308 struct ltt_session
*sess
, *stmp
;
313 MSG("%c[%d;%dm*** assert failed *** ==> %c[%dm%c[%d;%dm"
314 "Matthew, BEET driven development works!%c[%dm",
315 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
319 DBG("Removing %s directory", LTTNG_RUNDIR
);
320 ret
= asprintf(&cmd
, "rm -rf " LTTNG_RUNDIR
);
322 ERR("asprintf failed. Something is really wrong!");
325 /* Remove lttng run directory */
328 ERR("Unable to clean " LTTNG_RUNDIR
);
332 DBG("Cleaning up all session");
334 /* Destroy session list mutex */
335 if (session_list_ptr
!= NULL
) {
336 pthread_mutex_destroy(&session_list_ptr
->lock
);
338 /* Cleanup ALL session */
339 cds_list_for_each_entry_safe(sess
, stmp
,
340 &session_list_ptr
->head
, list
) {
341 teardown_kernel_session(sess
);
342 // TODO complete session cleanup (including UST)
346 DBG("Closing all UST sockets");
347 ust_app_clean_list();
349 pthread_mutex_destroy(&kconsumerd_pid_mutex
);
351 DBG("Closing kernel fd");
352 close(kernel_tracer_fd
);
355 DBG("Unloading kernel modules");
356 modprobe_remove_kernel_modules();
359 close(thread_quit_pipe
[0]);
360 close(thread_quit_pipe
[1]);
364 * Send data on a unix socket using the liblttsessiondcomm API.
366 * Return lttcomm error code.
368 static int send_unix_sock(int sock
, void *buf
, size_t len
)
370 /* Check valid length */
375 return lttcomm_send_unix_sock(sock
, buf
, len
);
379 * Free memory of a command context structure.
381 static void clean_command_ctx(struct command_ctx
**cmd_ctx
)
383 DBG("Clean command context structure");
385 if ((*cmd_ctx
)->llm
) {
386 free((*cmd_ctx
)->llm
);
388 if ((*cmd_ctx
)->lsm
) {
389 free((*cmd_ctx
)->lsm
);
397 * Send all stream fds of kernel channel to the consumer.
399 static int send_kconsumerd_channel_fds(int sock
,
400 struct ltt_kernel_channel
*channel
)
404 struct ltt_kernel_stream
*stream
;
405 struct lttcomm_kconsumerd_header lkh
;
406 struct lttcomm_kconsumerd_msg lkm
;
408 DBG("Sending fds of channel %s to kernel consumer",
409 channel
->channel
->name
);
411 nb_fd
= channel
->stream_count
;
414 lkh
.payload_size
= nb_fd
* sizeof(struct lttcomm_kconsumerd_msg
);
415 lkh
.cmd_type
= ADD_STREAM
;
417 DBG("Sending kconsumerd header");
419 ret
= lttcomm_send_unix_sock(sock
, &lkh
,
420 sizeof(struct lttcomm_kconsumerd_header
));
422 perror("send kconsumerd header");
426 cds_list_for_each_entry(stream
, &channel
->stream_list
.head
, list
) {
427 if (stream
->fd
!= 0) {
429 lkm
.state
= stream
->state
;
430 lkm
.max_sb_size
= channel
->channel
->attr
.subbuf_size
;
431 lkm
.output
= channel
->channel
->attr
.output
;
432 strncpy(lkm
.path_name
, stream
->pathname
, PATH_MAX
);
433 lkm
.path_name
[PATH_MAX
- 1] = '\0';
435 DBG("Sending fd %d to kconsumerd", lkm
.fd
);
437 ret
= lttcomm_send_fds_unix_sock(sock
, &lkm
,
438 &lkm
.fd
, 1, sizeof(lkm
));
440 perror("send kconsumerd fd");
446 DBG("Kconsumerd channel fds sent");
455 * Send all stream fds of the kernel session to the consumer.
457 static int send_kconsumerd_fds(struct ltt_kernel_session
*session
)
460 struct ltt_kernel_channel
*chan
;
461 struct lttcomm_kconsumerd_header lkh
;
462 struct lttcomm_kconsumerd_msg lkm
;
465 lkh
.payload_size
= sizeof(struct lttcomm_kconsumerd_msg
);
466 lkh
.cmd_type
= ADD_STREAM
;
468 DBG("Sending kconsumerd header for metadata");
470 ret
= lttcomm_send_unix_sock(session
->consumer_fd
, &lkh
,
471 sizeof(struct lttcomm_kconsumerd_header
));
473 perror("send kconsumerd header");
477 DBG("Sending metadata stream fd");
479 /* Extra protection. It's NOT suppose to be set to 0 at this point */
480 if (session
->consumer_fd
== 0) {
481 session
->consumer_fd
= kconsumerd_cmd_sock
;
484 if (session
->metadata_stream_fd
!= 0) {
485 /* Send metadata stream fd first */
486 lkm
.fd
= session
->metadata_stream_fd
;
487 lkm
.state
= ACTIVE_FD
;
488 lkm
.max_sb_size
= session
->metadata
->conf
->attr
.subbuf_size
;
489 lkm
.output
= DEFAULT_KERNEL_CHANNEL_OUTPUT
;
490 strncpy(lkm
.path_name
, session
->metadata
->pathname
, PATH_MAX
);
491 lkm
.path_name
[PATH_MAX
- 1] = '\0';
493 ret
= lttcomm_send_fds_unix_sock(session
->consumer_fd
, &lkm
,
494 &lkm
.fd
, 1, sizeof(lkm
));
496 perror("send kconsumerd fd");
501 cds_list_for_each_entry(chan
, &session
->channel_list
.head
, list
) {
502 ret
= send_kconsumerd_channel_fds(session
->consumer_fd
, chan
);
508 DBG("Kconsumerd fds (metadata and channel streams) sent");
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
= malloc(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(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 0 but this is an extra security check */
638 if (session
->kernel_session
->consumer_fd
== 0) {
639 session
->kernel_session
->consumer_fd
= kconsumerd_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
->kconsumer_fds_sent
== 1) {
657 ret
= send_kconsumerd_channel_fds(
658 session
->kernel_session
->consumer_fd
, channel
);
666 session_unlock(session
);
668 session_unlock_list();
672 session_unlock(session
);
673 session_unlock_list();
678 * This thread manage event coming from the kernel.
680 * Features supported in this thread:
683 static void *thread_manage_kernel(void *data
)
685 int ret
, i
, pollfd
, update_poll_flag
= 1;
686 uint32_t revents
, nb_fd
;
688 struct lttng_poll_event events
;
690 DBG("Thread manage kernel started");
692 ret
= create_thread_poll_set(&events
, 2);
697 ret
= lttng_poll_add(&events
, kernel_poll_pipe
[0], LPOLLIN
);
703 if (update_poll_flag
== 1) {
704 ret
= update_kernel_poll(&events
);
708 update_poll_flag
= 0;
711 nb_fd
= LTTNG_POLL_GETNB(&events
);
713 DBG("Thread kernel polling on %d fds", nb_fd
);
715 /* Zeroed the poll events */
716 lttng_poll_reset(&events
);
718 /* Poll infinite value of time */
719 ret
= lttng_poll_wait(&events
, -1);
722 } else if (ret
== 0) {
723 /* Should not happen since timeout is infinite */
724 ERR("Return value of poll is 0 with an infinite timeout.\n"
725 "This should not have happened! Continuing...");
729 for (i
= 0; i
< nb_fd
; i
++) {
730 /* Fetch once the poll data */
731 revents
= LTTNG_POLL_GETEV(&events
, i
);
732 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
734 /* Thread quit pipe has been closed. Killing thread. */
735 ret
= check_thread_quit_pipe(pollfd
, revents
);
740 /* Check for data on kernel pipe */
741 if (pollfd
== kernel_poll_pipe
[0] && (revents
& LPOLLIN
)) {
742 ret
= read(kernel_poll_pipe
[0], &tmp
, 1);
743 update_poll_flag
= 1;
747 * New CPU detected by the kernel. Adding kernel stream to
748 * kernel session and updating the kernel consumer
750 if (revents
& LPOLLIN
) {
751 ret
= update_kernel_stream(pollfd
);
757 * TODO: We might want to handle the LPOLLERR | LPOLLHUP
758 * and unregister kernel stream at this point.
766 DBG("Kernel thread dying");
767 close(kernel_poll_pipe
[0]);
768 close(kernel_poll_pipe
[1]);
770 lttng_poll_clean(&events
);
776 * This thread manage the kconsumerd error sent back to the session daemon.
778 static void *thread_manage_kconsumerd(void *data
)
780 int sock
= 0, i
, ret
, pollfd
;
781 uint32_t revents
, nb_fd
;
782 enum lttcomm_return_code code
;
783 struct lttng_poll_event events
;
785 DBG("[thread] Manage kconsumerd started");
787 ret
= lttcomm_listen_unix_sock(kconsumerd_err_sock
);
793 * Pass 2 as size here for the thread quit pipe and kconsumerd_err_sock.
794 * Nothing more will be added to this poll set.
796 ret
= create_thread_poll_set(&events
, 2);
801 ret
= lttng_poll_add(&events
, kconsumerd_err_sock
, LPOLLIN
| LPOLLRDHUP
);
806 nb_fd
= LTTNG_POLL_GETNB(&events
);
808 /* Inifinite blocking call, waiting for transmission */
809 ret
= lttng_poll_wait(&events
, -1);
814 for (i
= 0; i
< nb_fd
; i
++) {
815 /* Fetch once the poll data */
816 revents
= LTTNG_POLL_GETEV(&events
, i
);
817 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
819 /* Thread quit pipe has been closed. Killing thread. */
820 ret
= check_thread_quit_pipe(pollfd
, revents
);
825 /* Event on the registration socket */
826 if (pollfd
== kconsumerd_err_sock
) {
827 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
828 ERR("Kconsumerd err socket poll error");
834 sock
= lttcomm_accept_unix_sock(kconsumerd_err_sock
);
839 /* Getting status code from kconsumerd */
840 ret
= lttcomm_recv_unix_sock(sock
, &code
,
841 sizeof(enum lttcomm_return_code
));
846 if (code
== KCONSUMERD_COMMAND_SOCK_READY
) {
847 kconsumerd_cmd_sock
=
848 lttcomm_connect_unix_sock(kconsumerd_cmd_unix_sock_path
);
849 if (kconsumerd_cmd_sock
< 0) {
850 sem_post(&kconsumerd_sem
);
851 perror("kconsumerd connect");
854 /* Signal condition to tell that the kconsumerd is ready */
855 sem_post(&kconsumerd_sem
);
856 DBG("Kconsumerd command socket ready");
858 DBG("Kconsumerd error when waiting for SOCK_READY : %s",
859 lttcomm_get_readable_code(-code
));
863 /* Remove the kconsumerd error sock since we've established a connexion */
864 ret
= lttng_poll_del(&events
, kconsumerd_err_sock
);
869 ret
= lttng_poll_add(&events
, sock
, LPOLLIN
| LPOLLRDHUP
);
874 /* Update number of fd */
875 nb_fd
= LTTNG_POLL_GETNB(&events
);
877 /* Inifinite blocking call, waiting for transmission */
878 ret
= lttng_poll_wait(&events
, -1);
883 for (i
= 0; i
< nb_fd
; i
++) {
884 /* Fetch once the poll data */
885 revents
= LTTNG_POLL_GETEV(&events
, i
);
886 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
888 /* Thread quit pipe has been closed. Killing thread. */
889 ret
= check_thread_quit_pipe(pollfd
, revents
);
894 /* Event on the kconsumerd socket */
895 if (pollfd
== sock
) {
896 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
897 ERR("Kconsumerd err socket second poll error");
903 /* Wait for any kconsumerd error */
904 ret
= lttcomm_recv_unix_sock(sock
, &code
,
905 sizeof(enum lttcomm_return_code
));
907 ERR("Kconsumerd closed the command socket");
911 ERR("Kconsumerd return code : %s", lttcomm_get_readable_code(-code
));
914 DBG("Kconsumerd thread dying");
915 close(kconsumerd_err_sock
);
916 close(kconsumerd_cmd_sock
);
919 unlink(kconsumerd_err_unix_sock_path
);
920 unlink(kconsumerd_cmd_unix_sock_path
);
923 lttng_poll_clean(&events
);
929 * This thread manage application communication.
931 static void *thread_manage_apps(void *data
)
934 uint32_t revents
, nb_fd
;
935 struct ust_command ust_cmd
;
936 struct lttng_poll_event events
;
938 DBG("[thread] Manage application started");
940 ret
= create_thread_poll_set(&events
, 2);
945 ret
= lttng_poll_add(&events
, apps_cmd_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
951 /* Zeroed the events structure */
952 lttng_poll_reset(&events
);
954 nb_fd
= LTTNG_POLL_GETNB(&events
);
956 DBG("Apps thread polling on %d fds", nb_fd
);
958 /* Inifinite blocking call, waiting for transmission */
959 ret
= lttng_poll_wait(&events
, -1);
964 for (i
= 0; i
< nb_fd
; i
++) {
965 /* Fetch once the poll data */
966 revents
= LTTNG_POLL_GETEV(&events
, i
);
967 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
969 /* Thread quit pipe has been closed. Killing thread. */
970 ret
= check_thread_quit_pipe(pollfd
, revents
);
975 /* Inspect the apps cmd pipe */
976 if (pollfd
== apps_cmd_pipe
[0]) {
977 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
978 ERR("Apps command pipe error");
980 } else if (revents
& LPOLLIN
) {
982 ret
= read(apps_cmd_pipe
[0], &ust_cmd
, sizeof(ust_cmd
));
983 if (ret
< 0 || ret
< sizeof(ust_cmd
)) {
984 perror("read apps cmd pipe");
988 /* Register applicaton to the session daemon */
989 ret
= ust_app_register(&ust_cmd
.reg_msg
,
992 /* Only critical ENOMEM error can be returned here */
996 ret
= ustctl_register_done(ust_cmd
.sock
);
999 * If the registration is not possible, we simply
1000 * unregister the apps and continue
1002 ust_app_unregister(ust_cmd
.sock
);
1005 * We just need here to monitor the close of the UST
1006 * socket and poll set monitor those by default.
1008 ret
= lttng_poll_add(&events
, ust_cmd
.sock
, 0);
1013 DBG("Apps with sock %d added to poll set",
1020 * At this point, we know that a registered application made
1021 * the event at poll_wait.
1023 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1024 /* Removing from the poll set */
1025 ret
= lttng_poll_del(&events
, pollfd
);
1031 ust_app_unregister(pollfd
);
1039 DBG("Application communication apps dying");
1040 close(apps_cmd_pipe
[0]);
1041 close(apps_cmd_pipe
[1]);
1043 lttng_poll_clean(&events
);
1049 * Dispatch request from the registration threads to the application
1050 * communication thread.
1052 static void *thread_dispatch_ust_registration(void *data
)
1055 struct cds_wfq_node
*node
;
1056 struct ust_command
*ust_cmd
= NULL
;
1058 DBG("[thread] Dispatch UST command started");
1060 while (!dispatch_thread_exit
) {
1061 /* Atomically prepare the queue futex */
1062 futex_nto1_prepare(&ust_cmd_queue
.futex
);
1065 /* Dequeue command for registration */
1066 node
= cds_wfq_dequeue_blocking(&ust_cmd_queue
.queue
);
1068 DBG("Waked up but nothing in the UST command queue");
1069 /* Continue thread execution */
1073 ust_cmd
= caa_container_of(node
, struct ust_command
, node
);
1075 DBG("Dispatching UST registration pid:%d ppid:%d uid:%d"
1076 " gid:%d sock:%d name:%s (version %d.%d)",
1077 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1078 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1079 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1080 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1082 * Inform apps thread of the new application registration. This
1083 * call is blocking so we can be assured that the data will be read
1084 * at some point in time or wait to the end of the world :)
1086 ret
= write(apps_cmd_pipe
[1], ust_cmd
,
1087 sizeof(struct ust_command
));
1089 perror("write apps cmd pipe");
1090 if (errno
== EBADF
) {
1092 * We can't inform the application thread to process
1093 * registration. We will exit or else application
1094 * registration will not occur and tracing will never
1101 } while (node
!= NULL
);
1103 /* Futex wait on queue. Blocking call on futex() */
1104 futex_nto1_wait(&ust_cmd_queue
.futex
);
1108 DBG("Dispatch thread dying");
1113 * This thread manage application registration.
1115 static void *thread_registration_apps(void *data
)
1117 int sock
= 0, i
, ret
, pollfd
;
1118 uint32_t revents
, nb_fd
;
1119 struct lttng_poll_event events
;
1121 * Get allocated in this thread, enqueued to a global queue, dequeued and
1122 * freed in the manage apps thread.
1124 struct ust_command
*ust_cmd
= NULL
;
1126 DBG("[thread] Manage application registration started");
1128 ret
= lttcomm_listen_unix_sock(apps_sock
);
1134 * Pass 2 as size here for the thread quit pipe and apps socket. Nothing
1135 * more will be added to this poll set.
1137 ret
= create_thread_poll_set(&events
, 2);
1142 /* Add the application registration socket */
1143 ret
= lttng_poll_add(&events
, apps_sock
, LPOLLIN
| LPOLLRDHUP
);
1148 /* Notify all applications to register */
1149 ret
= notify_ust_apps(1);
1151 ERR("Failed to notify applications or create the wait shared memory.\n"
1152 "Execution continues but there might be problem for already\n"
1153 "running applications that wishes to register.");
1157 DBG("Accepting application registration");
1159 nb_fd
= LTTNG_POLL_GETNB(&events
);
1161 /* Inifinite blocking call, waiting for transmission */
1162 ret
= lttng_poll_wait(&events
, -1);
1167 for (i
= 0; i
< nb_fd
; i
++) {
1168 /* Fetch once the poll data */
1169 revents
= LTTNG_POLL_GETEV(&events
, i
);
1170 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1172 /* Thread quit pipe has been closed. Killing thread. */
1173 ret
= check_thread_quit_pipe(pollfd
, revents
);
1178 /* Event on the registration socket */
1179 if (pollfd
== apps_sock
) {
1180 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1181 ERR("Register apps socket poll error");
1183 } else if (revents
& LPOLLIN
) {
1184 sock
= lttcomm_accept_unix_sock(apps_sock
);
1189 /* Create UST registration command for enqueuing */
1190 ust_cmd
= malloc(sizeof(struct ust_command
));
1191 if (ust_cmd
== NULL
) {
1192 perror("ust command malloc");
1197 * Using message-based transmissions to ensure we don't
1198 * have to deal with partially received messages.
1200 ret
= lttcomm_recv_unix_sock(sock
, &ust_cmd
->reg_msg
,
1201 sizeof(struct ust_register_msg
));
1202 if (ret
< 0 || ret
< sizeof(struct ust_register_msg
)) {
1204 perror("lttcomm_recv_unix_sock register apps");
1206 ERR("Wrong size received on apps register");
1213 ust_cmd
->sock
= sock
;
1215 DBG("UST registration received with pid:%d ppid:%d uid:%d"
1216 " gid:%d sock:%d name:%s (version %d.%d)",
1217 ust_cmd
->reg_msg
.pid
, ust_cmd
->reg_msg
.ppid
,
1218 ust_cmd
->reg_msg
.uid
, ust_cmd
->reg_msg
.gid
,
1219 ust_cmd
->sock
, ust_cmd
->reg_msg
.name
,
1220 ust_cmd
->reg_msg
.major
, ust_cmd
->reg_msg
.minor
);
1223 * Lock free enqueue the registration request. The red pill
1224 * has been taken! This apps will be part of the *system*.
1226 cds_wfq_enqueue(&ust_cmd_queue
.queue
, &ust_cmd
->node
);
1229 * Wake the registration queue futex. Implicit memory
1230 * barrier with the exchange in cds_wfq_enqueue.
1232 futex_nto1_wake(&ust_cmd_queue
.futex
);
1239 DBG("UST Registration thread dying");
1241 /* Notify that the registration thread is gone */
1246 unlink(apps_unix_sock_path
);
1248 lttng_poll_clean(&events
);
1254 * Start the thread_manage_kconsumerd. This must be done after a kconsumerd
1255 * exec or it will fails.
1257 static int spawn_kconsumerd_thread(void)
1261 /* Setup semaphore */
1262 sem_init(&kconsumerd_sem
, 0, 0);
1264 ret
= pthread_create(&kconsumerd_thread
, NULL
,
1265 thread_manage_kconsumerd
, (void *) NULL
);
1267 perror("pthread_create kconsumerd");
1271 /* Wait for the kconsumerd thread to be ready */
1272 sem_wait(&kconsumerd_sem
);
1274 if (kconsumerd_pid
== 0) {
1275 ERR("Kconsumerd did not start");
1282 ret
= LTTCOMM_KERN_CONSUMER_FAIL
;
1287 * Join kernel consumer thread
1289 static int join_kconsumerd_thread(void)
1294 if (kconsumerd_pid
!= 0) {
1295 ret
= kill(kconsumerd_pid
, SIGTERM
);
1297 ERR("Error killing kconsumerd");
1300 return pthread_join(kconsumerd_thread
, &status
);
1307 * Fork and exec a kernel consumer daemon (kconsumerd).
1309 * Return pid if successful else -1.
1311 static pid_t
spawn_kconsumerd(void)
1315 const char *verbosity
;
1317 DBG("Spawning kconsumerd");
1324 if (opt_verbose
> 1 || opt_verbose_kconsumerd
) {
1325 verbosity
= "--verbose";
1327 verbosity
= "--quiet";
1329 execl(INSTALL_BIN_PATH
"/ltt-kconsumerd",
1330 "ltt-kconsumerd", verbosity
, NULL
);
1332 perror("kernel start consumer exec");
1335 } else if (pid
> 0) {
1339 perror("kernel start consumer fork");
1349 * Spawn the kconsumerd daemon and session daemon thread.
1351 static int start_kconsumerd(void)
1355 pthread_mutex_lock(&kconsumerd_pid_mutex
);
1356 if (kconsumerd_pid
!= 0) {
1357 pthread_mutex_unlock(&kconsumerd_pid_mutex
);
1361 ret
= spawn_kconsumerd();
1363 ERR("Spawning kconsumerd failed");
1364 ret
= LTTCOMM_KERN_CONSUMER_FAIL
;
1365 pthread_mutex_unlock(&kconsumerd_pid_mutex
);
1369 /* Setting up the global kconsumerd_pid */
1370 kconsumerd_pid
= ret
;
1371 pthread_mutex_unlock(&kconsumerd_pid_mutex
);
1373 DBG("Kconsumerd pid %d", ret
);
1375 DBG("Spawning kconsumerd thread");
1376 ret
= spawn_kconsumerd_thread();
1378 ERR("Fatal error spawning kconsumerd thread");
1390 * modprobe_kernel_modules
1392 static int modprobe_kernel_modules(void)
1397 for (i
= 0; i
< ARRAY_SIZE(kernel_modules_list
); i
++) {
1398 ret
= snprintf(modprobe
, sizeof(modprobe
),
1399 "/sbin/modprobe %s%s",
1400 kernel_modules_list
[i
].required
? "" : "--quiet ",
1401 kernel_modules_list
[i
].name
);
1403 perror("snprintf modprobe");
1406 modprobe
[sizeof(modprobe
) - 1] = '\0';
1407 ret
= system(modprobe
);
1409 ERR("Unable to launch modprobe for module %s",
1410 kernel_modules_list
[i
].name
);
1411 } else if (kernel_modules_list
[i
].required
1412 && WEXITSTATUS(ret
) != 0) {
1413 ERR("Unable to load module %s",
1414 kernel_modules_list
[i
].name
);
1416 DBG("Modprobe successfully %s",
1417 kernel_modules_list
[i
].name
);
1428 static int mount_debugfs(char *path
)
1431 char *type
= "debugfs";
1433 ret
= mkdir_recursive(path
, S_IRWXU
| S_IRWXG
, geteuid(), getegid());
1435 PERROR("Cannot create debugfs path");
1439 ret
= mount(type
, path
, type
, 0, NULL
);
1441 PERROR("Cannot mount debugfs");
1445 DBG("Mounted debugfs successfully at %s", path
);
1452 * Setup necessary data for kernel tracer action.
1454 static void init_kernel_tracer(void)
1457 char *proc_mounts
= "/proc/mounts";
1459 char *debugfs_path
= NULL
, *lttng_path
= NULL
;
1462 /* Detect debugfs */
1463 fp
= fopen(proc_mounts
, "r");
1465 ERR("Unable to probe %s", proc_mounts
);
1469 while (fgets(line
, sizeof(line
), fp
) != NULL
) {
1470 if (strstr(line
, "debugfs") != NULL
) {
1471 /* Remove first string */
1473 /* Dup string here so we can reuse line later on */
1474 debugfs_path
= strdup(strtok(NULL
, " "));
1475 DBG("Got debugfs path : %s", debugfs_path
);
1482 /* Mount debugfs if needded */
1483 if (debugfs_path
== NULL
) {
1484 ret
= asprintf(&debugfs_path
, "/mnt/debugfs");
1486 perror("asprintf debugfs path");
1489 ret
= mount_debugfs(debugfs_path
);
1491 perror("Cannot mount debugfs");
1496 /* Modprobe lttng kernel modules */
1497 ret
= modprobe_kernel_modules();
1502 /* Setup lttng kernel path */
1503 ret
= asprintf(<tng_path
, "%s/lttng", debugfs_path
);
1505 perror("asprintf lttng path");
1509 /* Open debugfs lttng */
1510 kernel_tracer_fd
= open(lttng_path
, O_RDWR
);
1511 if (kernel_tracer_fd
< 0) {
1512 DBG("Failed to open %s", lttng_path
);
1518 DBG("Kernel tracer fd %d", kernel_tracer_fd
);
1528 WARN("No kernel tracer available");
1529 kernel_tracer_fd
= 0;
1534 * Init tracing by creating trace directory and sending fds kernel consumer.
1536 static int init_kernel_tracing(struct ltt_kernel_session
*session
)
1540 if (session
->kconsumer_fds_sent
== 0) {
1542 * Assign default kernel consumer socket if no consumer assigned to the
1543 * kernel session. At this point, it's NOT suppose to be 0 but this is
1544 * an extra security check.
1546 if (session
->consumer_fd
== 0) {
1547 session
->consumer_fd
= kconsumerd_cmd_sock
;
1550 ret
= send_kconsumerd_fds(session
);
1552 ret
= LTTCOMM_KERN_CONSUMER_FAIL
;
1556 session
->kconsumer_fds_sent
= 1;
1564 * Create an UST session and add it to the session ust list.
1566 static int create_ust_session(struct ltt_session
*session
,
1567 struct lttng_domain
*domain
)
1570 struct ltt_ust_session
*lus
;
1571 struct ust_app
*app
;
1573 switch (domain
->type
) {
1574 case LTTNG_DOMAIN_UST_PID
:
1575 app
= ust_app_get_by_pid(domain
->attr
.pid
);
1577 ret
= LTTCOMM_APP_NOT_FOUND
;
1585 DBG("Creating UST session");
1587 lus
= trace_ust_create_session(session
->path
, domain
->attr
.pid
, domain
);
1589 ret
= LTTCOMM_UST_SESS_FAIL
;
1593 ret
= mkdir_recursive(lus
->path
, S_IRWXU
| S_IRWXG
,
1594 geteuid(), allowed_group());
1596 if (ret
!= -EEXIST
) {
1597 ERR("Trace directory creation error");
1598 ret
= LTTCOMM_UST_SESS_FAIL
;
1603 /* Create session on the UST tracer */
1604 ret
= ustctl_create_session(app
->sock
, lus
);
1606 ret
= LTTCOMM_UST_SESS_FAIL
;
1610 cds_list_add(&lus
->list
, &session
->ust_session_list
.head
);
1611 session
->ust_session_list
.count
++;
1621 * Create a kernel tracer session then create the default channel.
1623 static int create_kernel_session(struct ltt_session
*session
)
1627 DBG("Creating kernel session");
1629 ret
= kernel_create_session(session
, kernel_tracer_fd
);
1631 ret
= LTTCOMM_KERN_SESS_FAIL
;
1635 /* Set kernel consumer socket fd */
1636 if (kconsumerd_cmd_sock
) {
1637 session
->kernel_session
->consumer_fd
= kconsumerd_cmd_sock
;
1640 ret
= mkdir_recursive(session
->kernel_session
->trace_path
,
1641 S_IRWXU
| S_IRWXG
, geteuid(), allowed_group());
1643 if (ret
!= -EEXIST
) {
1644 ERR("Trace directory creation error");
1654 * Using the session list, filled a lttng_session array to send back to the
1655 * client for session listing.
1657 * The session list lock MUST be acquired before calling this function. Use
1658 * session_lock_list() and session_unlock_list().
1660 static void list_lttng_sessions(struct lttng_session
*sessions
)
1663 struct ltt_session
*session
;
1665 DBG("Getting all available session");
1667 * Iterate over session list and append data after the control struct in
1670 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
1671 strncpy(sessions
[i
].path
, session
->path
, PATH_MAX
);
1672 sessions
[i
].path
[PATH_MAX
- 1] = '\0';
1673 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
1674 sessions
[i
].name
[NAME_MAX
- 1] = '\0';
1680 * Fill lttng_channel array of all channels.
1682 static void list_lttng_channels(struct ltt_session
*session
,
1683 struct lttng_channel
*channels
)
1686 struct ltt_kernel_channel
*kchan
;
1688 DBG("Listing channels for session %s", session
->name
);
1690 /* Kernel channels */
1691 if (session
->kernel_session
!= NULL
) {
1692 cds_list_for_each_entry(kchan
,
1693 &session
->kernel_session
->channel_list
.head
, list
) {
1694 /* Copy lttng_channel struct to array */
1695 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
1696 channels
[i
].enabled
= kchan
->enabled
;
1701 /* TODO: Missing UST listing */
1705 * Fill lttng_event array of all events in the channel.
1707 static void list_lttng_events(struct ltt_kernel_channel
*kchan
,
1708 struct lttng_event
*events
)
1711 * TODO: This is ONLY kernel. Need UST support.
1714 struct ltt_kernel_event
*event
;
1716 DBG("Listing events for channel %s", kchan
->channel
->name
);
1718 /* Kernel channels */
1719 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
1720 strncpy(events
[i
].name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
);
1721 events
[i
].name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
1722 events
[i
].enabled
= event
->enabled
;
1723 switch (event
->event
->instrumentation
) {
1724 case LTTNG_KERNEL_TRACEPOINT
:
1725 events
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
1727 case LTTNG_KERNEL_KPROBE
:
1728 case LTTNG_KERNEL_KRETPROBE
:
1729 events
[i
].type
= LTTNG_EVENT_PROBE
;
1730 memcpy(&events
[i
].attr
.probe
, &event
->event
->u
.kprobe
,
1731 sizeof(struct lttng_kernel_kprobe
));
1733 case LTTNG_KERNEL_FUNCTION
:
1734 events
[i
].type
= LTTNG_EVENT_FUNCTION
;
1735 memcpy(&events
[i
].attr
.ftrace
, &event
->event
->u
.ftrace
,
1736 sizeof(struct lttng_kernel_function
));
1738 case LTTNG_KERNEL_NOOP
:
1739 events
[i
].type
= LTTNG_EVENT_NOOP
;
1741 case LTTNG_KERNEL_SYSCALL
:
1742 events
[i
].type
= LTTNG_EVENT_SYSCALL
;
1744 case LTTNG_KERNEL_ALL
:
1753 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
1755 static int cmd_disable_channel(struct ltt_session
*session
,
1756 int domain
, char *channel_name
)
1761 case LTTNG_DOMAIN_KERNEL
:
1762 ret
= channel_kernel_disable(session
->kernel_session
,
1764 if (ret
!= LTTCOMM_OK
) {
1768 kernel_wait_quiescent(kernel_tracer_fd
);
1770 case LTTNG_DOMAIN_UST_PID
:
1773 ret
= LTTCOMM_UNKNOWN_DOMAIN
;
1784 * Copy channel from attributes and set it in the application channel list.
1786 static int copy_ust_channel_to_app(struct ltt_ust_session
*usess
,
1787 struct lttng_channel
*attr
, struct ust_app
*app
)
1790 struct ltt_ust_channel
*uchan
, *new_chan
;
1792 uchan
= trace_ust_get_channel_by_name(attr
->name
, usess
);
1793 if (uchan
== NULL
) {
1794 ret
= LTTCOMM_FATAL
;
1798 new_chan
= trace_ust_create_channel(attr
, usess
->path
);
1799 if (new_chan
== NULL
) {
1800 PERROR("malloc ltt_ust_channel");
1801 ret
= LTTCOMM_FATAL
;
1805 ret
= channel_ust_copy(new_chan
, uchan
);
1807 ret
= LTTCOMM_FATAL
;
1811 /* Add channel to the ust app channel list */
1812 cds_list_add(&new_chan
->list
, &app
->channels
.head
);
1813 app
->channels
.count
++;
1820 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
1822 static int cmd_enable_channel(struct ltt_session
*session
,
1823 struct lttng_domain
*domain
, struct lttng_channel
*attr
)
1827 switch (domain
->type
) {
1828 case LTTNG_DOMAIN_KERNEL
:
1830 struct ltt_kernel_channel
*kchan
;
1832 kchan
= trace_kernel_get_channel_by_name(attr
->name
,
1833 session
->kernel_session
);
1834 if (kchan
== NULL
) {
1835 ret
= channel_kernel_create(session
->kernel_session
,
1836 attr
, kernel_poll_pipe
[1]);
1838 ret
= channel_kernel_enable(session
->kernel_session
, kchan
);
1841 if (ret
!= LTTCOMM_OK
) {
1845 kernel_wait_quiescent(kernel_tracer_fd
);
1848 case LTTNG_DOMAIN_UST_PID
:
1851 struct ltt_ust_channel
*uchan
;
1852 struct ltt_ust_session
*usess
;
1853 struct ust_app
*app
;
1855 usess
= trace_ust_get_session_by_pid(&session
->ust_session_list
,
1857 if (usess
== NULL
) {
1858 ret
= LTTCOMM_UST_CHAN_NOT_FOUND
;
1862 app
= ust_app_get_by_pid(domain
->attr
.pid
);
1864 ret
= LTTCOMM_APP_NOT_FOUND
;
1869 uchan
= trace_ust_get_channel_by_name(attr
->name
, usess
);
1870 if (uchan
== NULL
) {
1871 ret
= channel_ust_create(usess
, attr
, sock
);
1873 ret
= channel_ust_enable(usess
, uchan
, sock
);
1876 if (ret
!= LTTCOMM_OK
) {
1880 ret
= copy_ust_channel_to_app(usess
, attr
, app
);
1881 if (ret
!= LTTCOMM_OK
) {
1885 DBG("UST channel %s created for app sock %d with pid %d",
1886 attr
->name
, app
->sock
, domain
->attr
.pid
);
1890 ret
= LTTCOMM_UNKNOWN_DOMAIN
;
1901 * Command LTTNG_DISABLE_EVENT processed by the client thread.
1903 static int cmd_disable_event(struct ltt_session
*session
, int domain
,
1904 char *channel_name
, char *event_name
)
1907 struct ltt_kernel_channel
*kchan
;
1910 case LTTNG_DOMAIN_KERNEL
:
1911 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1912 session
->kernel_session
);
1913 if (kchan
== NULL
) {
1914 ret
= LTTCOMM_KERN_CHAN_NOT_FOUND
;
1918 ret
= event_kernel_disable_tracepoint(session
->kernel_session
, kchan
, event_name
);
1919 if (ret
!= LTTCOMM_OK
) {
1923 kernel_wait_quiescent(kernel_tracer_fd
);
1926 /* TODO: Userspace tracing */
1927 ret
= LTTCOMM_NOT_IMPLEMENTED
;
1938 * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread.
1940 static int cmd_disable_event_all(struct ltt_session
*session
, int domain
,
1944 struct ltt_kernel_channel
*kchan
;
1947 case LTTNG_DOMAIN_KERNEL
:
1948 kchan
= trace_kernel_get_channel_by_name(channel_name
,
1949 session
->kernel_session
);
1950 if (kchan
== NULL
) {
1951 ret
= LTTCOMM_KERN_CHAN_NOT_FOUND
;
1955 ret
= event_kernel_disable_all(session
->kernel_session
, kchan
);
1956 if (ret
!= LTTCOMM_OK
) {
1960 kernel_wait_quiescent(kernel_tracer_fd
);
1963 /* TODO: Userspace tracing */
1964 ret
= LTTCOMM_NOT_IMPLEMENTED
;
1975 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1977 static int cmd_add_context(struct ltt_session
*session
, int domain
,
1978 char *channel_name
, char *event_name
, struct lttng_event_context
*ctx
)
1983 case LTTNG_DOMAIN_KERNEL
:
1984 /* Add kernel context to kernel tracer */
1985 ret
= context_kernel_add(session
->kernel_session
, ctx
,
1986 event_name
, channel_name
);
1987 if (ret
!= LTTCOMM_OK
) {
1993 /* TODO: Userspace tracing */
1994 ret
= LTTCOMM_NOT_IMPLEMENTED
;
2005 * Command LTTNG_ENABLE_EVENT processed by the client thread.
2007 static int cmd_enable_event(struct ltt_session
*session
, int domain
,
2008 char *channel_name
, struct lttng_event
*event
)
2011 struct ltt_kernel_channel
*kchan
;
2014 case LTTNG_DOMAIN_KERNEL
:
2015 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2016 session
->kernel_session
);
2017 if (kchan
== NULL
) {
2018 /* This call will notify the kernel thread */
2019 ret
= channel_kernel_create(session
->kernel_session
,
2020 NULL
, kernel_poll_pipe
[1]);
2021 if (ret
!= LTTCOMM_OK
) {
2026 /* Get the newly created kernel channel pointer */
2027 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2028 session
->kernel_session
);
2029 if (kchan
== NULL
) {
2030 /* This sould not happen... */
2031 ret
= LTTCOMM_FATAL
;
2035 ret
= event_kernel_enable_tracepoint(session
->kernel_session
, kchan
, event
);
2036 if (ret
!= LTTCOMM_OK
) {
2040 kernel_wait_quiescent(kernel_tracer_fd
);
2043 /* TODO: Userspace tracing */
2044 ret
= LTTCOMM_NOT_IMPLEMENTED
;
2055 * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread.
2057 static int cmd_enable_event_all(struct ltt_session
*session
, int domain
,
2058 char *channel_name
, int event_type
)
2061 struct ltt_kernel_channel
*kchan
;
2064 case LTTNG_DOMAIN_KERNEL
:
2065 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2066 session
->kernel_session
);
2067 if (kchan
== NULL
) {
2068 /* This call will notify the kernel thread */
2069 ret
= channel_kernel_create(session
->kernel_session
, NULL
,
2070 kernel_poll_pipe
[1]);
2071 if (ret
!= LTTCOMM_OK
) {
2076 /* Get the newly created kernel channel pointer */
2077 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2078 session
->kernel_session
);
2079 if (kchan
== NULL
) {
2080 /* This sould not happen... */
2081 ret
= LTTCOMM_FATAL
;
2085 switch (event_type
) {
2086 case LTTNG_KERNEL_SYSCALL
:
2087 ret
= event_kernel_enable_all_syscalls(session
->kernel_session
,
2088 kchan
, kernel_tracer_fd
);
2090 case LTTNG_KERNEL_TRACEPOINT
:
2092 * This call enables all LTTNG_KERNEL_TRACEPOINTS and
2093 * events already registered to the channel.
2095 ret
= event_kernel_enable_all_tracepoints(session
->kernel_session
,
2096 kchan
, kernel_tracer_fd
);
2098 case LTTNG_KERNEL_ALL
:
2099 /* Enable syscalls and tracepoints */
2100 ret
= event_kernel_enable_all(session
->kernel_session
,
2101 kchan
, kernel_tracer_fd
);
2104 ret
= LTTCOMM_KERN_ENABLE_FAIL
;
2107 if (ret
!= LTTCOMM_OK
) {
2111 kernel_wait_quiescent(kernel_tracer_fd
);
2114 /* TODO: Userspace tracing */
2115 ret
= LTTCOMM_NOT_IMPLEMENTED
;
2126 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
2128 static ssize_t
cmd_list_tracepoints(int domain
, struct lttng_event
**events
)
2131 ssize_t nb_events
= 0;
2134 case LTTNG_DOMAIN_KERNEL
:
2135 nb_events
= kernel_list_events(kernel_tracer_fd
, events
);
2136 if (nb_events
< 0) {
2137 ret
= LTTCOMM_KERN_LIST_FAIL
;
2142 /* TODO: Userspace listing */
2143 ret
= LTTCOMM_NOT_IMPLEMENTED
;
2150 /* Return negative value to differentiate return code */
2155 * Command LTTNG_START_TRACE processed by the client thread.
2157 static int cmd_start_trace(struct ltt_session
*session
)
2160 struct ltt_kernel_channel
*kchan
;
2161 struct ltt_kernel_session
*ksession
;
2164 ksession
= session
->kernel_session
;
2166 /* Kernel tracing */
2167 if (ksession
!= NULL
) {
2168 /* Open kernel metadata */
2169 if (ksession
->metadata
== NULL
) {
2170 ret
= kernel_open_metadata(ksession
, ksession
->trace_path
);
2172 ret
= LTTCOMM_KERN_META_FAIL
;
2177 /* Open kernel metadata stream */
2178 if (ksession
->metadata_stream_fd
== 0) {
2179 ret
= kernel_open_metadata_stream(ksession
);
2181 ERR("Kernel create metadata stream failed");
2182 ret
= LTTCOMM_KERN_STREAM_FAIL
;
2187 /* For each channel */
2188 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
2189 if (kchan
->stream_count
== 0) {
2190 ret
= kernel_open_channel_stream(kchan
);
2192 ret
= LTTCOMM_KERN_STREAM_FAIL
;
2195 /* Update the stream global counter */
2196 ksession
->stream_count_global
+= ret
;
2200 /* Setup kernel consumer socket and send fds to it */
2201 ret
= init_kernel_tracing(ksession
);
2203 ret
= LTTCOMM_KERN_START_FAIL
;
2207 /* This start the kernel tracing */
2208 ret
= kernel_start_session(ksession
);
2210 ret
= LTTCOMM_KERN_START_FAIL
;
2214 /* Quiescent wait after starting trace */
2215 kernel_wait_quiescent(kernel_tracer_fd
);
2218 /* TODO: Start all UST traces */
2227 * Command LTTNG_STOP_TRACE processed by the client thread.
2229 static int cmd_stop_trace(struct ltt_session
*session
)
2232 struct ltt_kernel_channel
*kchan
;
2233 struct ltt_kernel_session
*ksession
;
2236 ksession
= session
->kernel_session
;
2239 if (ksession
!= NULL
) {
2240 DBG("Stop kernel tracing");
2242 /* Flush all buffers before stopping */
2243 ret
= kernel_metadata_flush_buffer(ksession
->metadata_stream_fd
);
2245 ERR("Kernel metadata flush failed");
2248 cds_list_for_each_entry(kchan
, &ksession
->channel_list
.head
, list
) {
2249 ret
= kernel_flush_buffer(kchan
);
2251 ERR("Kernel flush buffer error");
2255 ret
= kernel_stop_session(ksession
);
2257 ret
= LTTCOMM_KERN_STOP_FAIL
;
2261 kernel_wait_quiescent(kernel_tracer_fd
);
2264 /* TODO : User-space tracer */
2273 * Command LTTNG_CREATE_SESSION processed by the client thread.
2275 static int cmd_create_session(char *name
, char *path
)
2279 ret
= session_create(name
, path
);
2280 if (ret
!= LTTCOMM_OK
) {
2291 * Command LTTNG_DESTROY_SESSION processed by the client thread.
2293 static int cmd_destroy_session(struct ltt_session
*session
, char *name
)
2297 /* Clean kernel session teardown */
2298 teardown_kernel_session(session
);
2301 * Must notify the kernel thread here to update it's poll setin order
2302 * to remove the channel(s)' fd just destroyed.
2304 ret
= notify_thread_pipe(kernel_poll_pipe
[1]);
2306 perror("write kernel poll pipe");
2309 ret
= session_destroy(name
);
2315 * Command LTTNG_CALIBRATE processed by the client thread.
2317 static int cmd_calibrate(int domain
, struct lttng_calibrate
*calibrate
)
2322 case LTTNG_DOMAIN_KERNEL
:
2324 struct lttng_kernel_calibrate kcalibrate
;
2326 kcalibrate
.type
= calibrate
->type
;
2327 ret
= kernel_calibrate(kernel_tracer_fd
, &kcalibrate
);
2329 ret
= LTTCOMM_KERN_ENABLE_FAIL
;
2335 /* TODO: Userspace tracing */
2336 ret
= LTTCOMM_NOT_IMPLEMENTED
;
2347 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
2349 static int cmd_register_consumer(struct ltt_session
*session
, int domain
,
2355 case LTTNG_DOMAIN_KERNEL
:
2356 /* Can't register a consumer if there is already one */
2357 if (session
->kernel_session
->consumer_fd
!= 0) {
2358 ret
= LTTCOMM_KERN_CONSUMER_FAIL
;
2362 sock
= lttcomm_connect_unix_sock(sock_path
);
2364 ret
= LTTCOMM_CONNECT_FAIL
;
2368 session
->kernel_session
->consumer_fd
= sock
;
2371 /* TODO: Userspace tracing */
2372 ret
= LTTCOMM_NOT_IMPLEMENTED
;
2383 * Command LTTNG_LIST_DOMAINS processed by the client thread.
2385 static ssize_t
cmd_list_domains(struct ltt_session
*session
,
2386 struct lttng_domain
**domains
)
2391 if (session
->kernel_session
!= NULL
) {
2395 nb_dom
+= session
->ust_session_list
.count
;
2397 *domains
= malloc(nb_dom
* sizeof(struct lttng_domain
));
2398 if (*domains
== NULL
) {
2399 ret
= -LTTCOMM_FATAL
;
2403 (*domains
)[0].type
= LTTNG_DOMAIN_KERNEL
;
2405 /* TODO: User-space tracer domain support */
2414 * Command LTTNG_LIST_CHANNELS processed by the client thread.
2416 static ssize_t
cmd_list_channels(struct ltt_session
*session
,
2417 struct lttng_channel
**channels
)
2420 ssize_t nb_chan
= 0;
2422 if (session
->kernel_session
!= NULL
) {
2423 nb_chan
+= session
->kernel_session
->channel_count
;
2426 *channels
= malloc(nb_chan
* sizeof(struct lttng_channel
));
2427 if (*channels
== NULL
) {
2428 ret
= -LTTCOMM_FATAL
;
2432 list_lttng_channels(session
, *channels
);
2441 * Command LTTNG_LIST_EVENTS processed by the client thread.
2443 static ssize_t
cmd_list_events(struct ltt_session
*session
,
2444 char *channel_name
, struct lttng_event
**events
)
2447 ssize_t nb_event
= 0;
2448 struct ltt_kernel_channel
*kchan
= NULL
;
2450 if (session
->kernel_session
!= NULL
) {
2451 kchan
= trace_kernel_get_channel_by_name(channel_name
,
2452 session
->kernel_session
);
2453 if (kchan
== NULL
) {
2454 ret
= -LTTCOMM_KERN_CHAN_NOT_FOUND
;
2457 nb_event
+= kchan
->event_count
;
2460 *events
= malloc(nb_event
* sizeof(struct lttng_event
));
2461 if (*events
== NULL
) {
2462 ret
= -LTTCOMM_FATAL
;
2466 list_lttng_events(kchan
, *events
);
2468 /* TODO: User-space tracer support */
2477 * Process the command requested by the lttng client within the command
2478 * context structure. This function make sure that the return structure (llm)
2479 * is set and ready for transmission before returning.
2481 * Return any error encountered or 0 for success.
2483 static int process_client_msg(struct command_ctx
*cmd_ctx
)
2485 int ret
= LTTCOMM_OK
;
2486 int need_tracing_session
= 1;
2488 DBG("Processing client command %d", cmd_ctx
->lsm
->cmd_type
);
2491 * Check for command that don't needs to allocate a returned payload. We do
2492 * this here so we don't have to make the call for no payload at each
2495 switch(cmd_ctx
->lsm
->cmd_type
) {
2496 case LTTNG_LIST_SESSIONS
:
2497 case LTTNG_LIST_TRACEPOINTS
:
2498 case LTTNG_LIST_DOMAINS
:
2499 case LTTNG_LIST_CHANNELS
:
2500 case LTTNG_LIST_EVENTS
:
2503 /* Setup lttng message with no payload */
2504 ret
= setup_lttng_msg(cmd_ctx
, 0);
2506 /* This label does not try to unlock the session */
2507 goto init_setup_error
;
2511 /* Commands that DO NOT need a session. */
2512 switch (cmd_ctx
->lsm
->cmd_type
) {
2513 case LTTNG_CALIBRATE
:
2514 case LTTNG_CREATE_SESSION
:
2515 case LTTNG_LIST_SESSIONS
:
2516 case LTTNG_LIST_TRACEPOINTS
:
2517 need_tracing_session
= 0;
2520 DBG("Getting session %s by name", cmd_ctx
->lsm
->session
.name
);
2521 cmd_ctx
->session
= session_find_by_name(cmd_ctx
->lsm
->session
.name
);
2522 if (cmd_ctx
->session
== NULL
) {
2523 if (cmd_ctx
->lsm
->session
.name
!= NULL
) {
2524 ret
= LTTCOMM_SESS_NOT_FOUND
;
2526 /* If no session name specified */
2527 ret
= LTTCOMM_SELECT_SESS
;
2531 /* Acquire lock for the session */
2532 session_lock(cmd_ctx
->session
);
2538 * Check domain type for specific "pre-action".
2540 switch (cmd_ctx
->lsm
->domain
.type
) {
2541 case LTTNG_DOMAIN_KERNEL
:
2542 /* Kernel tracer check */
2543 if (kernel_tracer_fd
== 0) {
2544 /* Basically, load kernel tracer modules */
2545 init_kernel_tracer();
2546 if (kernel_tracer_fd
== 0) {
2547 ret
= LTTCOMM_KERN_NA
;
2552 /* Need a session for kernel command */
2553 if (need_tracing_session
) {
2554 if (cmd_ctx
->session
->kernel_session
== NULL
) {
2555 ret
= create_kernel_session(cmd_ctx
->session
);
2557 ret
= LTTCOMM_KERN_SESS_FAIL
;
2562 /* Start the kernel consumer daemon */
2563 if (kconsumerd_pid
== 0 &&
2564 cmd_ctx
->lsm
->cmd_type
!= LTTNG_REGISTER_CONSUMER
) {
2565 ret
= start_kconsumerd();
2567 ret
= LTTCOMM_KERN_CONSUMER_FAIL
;
2573 case LTTNG_DOMAIN_UST_PID
:
2575 struct ltt_ust_session
*usess
;
2577 if (need_tracing_session
) {
2578 usess
= trace_ust_get_session_by_pid(
2579 &cmd_ctx
->session
->ust_session_list
,
2580 cmd_ctx
->lsm
->domain
.attr
.pid
);
2581 if (usess
== NULL
) {
2582 ret
= create_ust_session(cmd_ctx
->session
,
2583 &cmd_ctx
->lsm
->domain
);
2584 if (ret
!= LTTCOMM_OK
) {
2592 /* TODO Userspace tracer */
2596 /* Process by command type */
2597 switch (cmd_ctx
->lsm
->cmd_type
) {
2598 case LTTNG_ADD_CONTEXT
:
2600 ret
= cmd_add_context(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2601 cmd_ctx
->lsm
->u
.context
.channel_name
,
2602 cmd_ctx
->lsm
->u
.context
.event_name
,
2603 &cmd_ctx
->lsm
->u
.context
.ctx
);
2606 case LTTNG_DISABLE_CHANNEL
:
2608 ret
= cmd_disable_channel(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2609 cmd_ctx
->lsm
->u
.disable
.channel_name
);
2612 case LTTNG_DISABLE_EVENT
:
2614 ret
= cmd_disable_event(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2615 cmd_ctx
->lsm
->u
.disable
.channel_name
,
2616 cmd_ctx
->lsm
->u
.disable
.name
);
2620 case LTTNG_DISABLE_ALL_EVENT
:
2622 DBG("Disabling all kernel event");
2624 ret
= cmd_disable_event_all(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2625 cmd_ctx
->lsm
->u
.disable
.channel_name
);
2628 case LTTNG_ENABLE_CHANNEL
:
2630 ret
= cmd_enable_channel(cmd_ctx
->session
, &cmd_ctx
->lsm
->domain
,
2631 &cmd_ctx
->lsm
->u
.channel
.chan
);
2634 case LTTNG_ENABLE_EVENT
:
2636 ret
= cmd_enable_event(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2637 cmd_ctx
->lsm
->u
.enable
.channel_name
,
2638 &cmd_ctx
->lsm
->u
.enable
.event
);
2641 case LTTNG_ENABLE_ALL_EVENT
:
2643 DBG("Enabling all kernel event");
2645 ret
= cmd_enable_event_all(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2646 cmd_ctx
->lsm
->u
.enable
.channel_name
,
2647 cmd_ctx
->lsm
->u
.enable
.event
.type
);
2650 case LTTNG_LIST_TRACEPOINTS
:
2652 struct lttng_event
*events
;
2655 nb_events
= cmd_list_tracepoints(cmd_ctx
->lsm
->domain
.type
, &events
);
2656 if (nb_events
< 0) {
2662 * Setup lttng message with payload size set to the event list size in
2663 * bytes and then copy list into the llm payload.
2665 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_event
) * nb_events
);
2671 /* Copy event list into message payload */
2672 memcpy(cmd_ctx
->llm
->payload
, events
,
2673 sizeof(struct lttng_event
) * nb_events
);
2680 case LTTNG_START_TRACE
:
2682 ret
= cmd_start_trace(cmd_ctx
->session
);
2685 case LTTNG_STOP_TRACE
:
2687 ret
= cmd_stop_trace(cmd_ctx
->session
);
2690 case LTTNG_CREATE_SESSION
:
2692 ret
= cmd_create_session(cmd_ctx
->lsm
->session
.name
,
2693 cmd_ctx
->lsm
->session
.path
);
2696 case LTTNG_DESTROY_SESSION
:
2698 ret
= cmd_destroy_session(cmd_ctx
->session
,
2699 cmd_ctx
->lsm
->session
.name
);
2702 case LTTNG_LIST_DOMAINS
:
2705 struct lttng_domain
*domains
;
2707 nb_dom
= cmd_list_domains(cmd_ctx
->session
, &domains
);
2713 ret
= setup_lttng_msg(cmd_ctx
, nb_dom
* sizeof(struct lttng_domain
));
2718 /* Copy event list into message payload */
2719 memcpy(cmd_ctx
->llm
->payload
, domains
,
2720 nb_dom
* sizeof(struct lttng_domain
));
2727 case LTTNG_LIST_CHANNELS
:
2730 struct lttng_channel
*channels
;
2732 nb_chan
= cmd_list_channels(cmd_ctx
->session
, &channels
);
2738 ret
= setup_lttng_msg(cmd_ctx
, nb_chan
* sizeof(struct lttng_channel
));
2743 /* Copy event list into message payload */
2744 memcpy(cmd_ctx
->llm
->payload
, channels
,
2745 nb_chan
* sizeof(struct lttng_channel
));
2752 case LTTNG_LIST_EVENTS
:
2755 struct lttng_event
*events
= NULL
;
2757 nb_event
= cmd_list_events(cmd_ctx
->session
,
2758 cmd_ctx
->lsm
->u
.list
.channel_name
, &events
);
2764 ret
= setup_lttng_msg(cmd_ctx
, nb_event
* sizeof(struct lttng_event
));
2769 /* Copy event list into message payload */
2770 memcpy(cmd_ctx
->llm
->payload
, events
,
2771 nb_event
* sizeof(struct lttng_event
));
2778 case LTTNG_LIST_SESSIONS
:
2780 session_lock_list();
2782 if (session_list_ptr
->count
== 0) {
2783 ret
= LTTCOMM_NO_SESSION
;
2784 session_unlock_list();
2788 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_session
) *
2789 session_list_ptr
->count
);
2791 session_unlock_list();
2795 /* Filled the session array */
2796 list_lttng_sessions((struct lttng_session
*)(cmd_ctx
->llm
->payload
));
2798 session_unlock_list();
2803 case LTTNG_CALIBRATE
:
2805 ret
= cmd_calibrate(cmd_ctx
->lsm
->domain
.type
,
2806 &cmd_ctx
->lsm
->u
.calibrate
);
2809 case LTTNG_REGISTER_CONSUMER
:
2811 ret
= cmd_register_consumer(cmd_ctx
->session
, cmd_ctx
->lsm
->domain
.type
,
2812 cmd_ctx
->lsm
->u
.reg
.path
);
2821 if (cmd_ctx
->llm
== NULL
) {
2822 DBG("Missing llm structure. Allocating one.");
2823 if (setup_lttng_msg(cmd_ctx
, 0) < 0) {
2827 /* Set return code */
2828 cmd_ctx
->llm
->ret_code
= ret
;
2830 if (cmd_ctx
->session
) {
2831 session_unlock(cmd_ctx
->session
);
2838 * This thread manage all clients request using the unix client socket for
2841 static void *thread_manage_clients(void *data
)
2843 int sock
= 0, ret
, i
, pollfd
;
2844 uint32_t revents
, nb_fd
;
2845 struct command_ctx
*cmd_ctx
= NULL
;
2846 struct lttng_poll_event events
;
2848 DBG("[thread] Manage client started");
2850 ret
= lttcomm_listen_unix_sock(client_sock
);
2856 * Pass 2 as size here for the thread quit pipe and client_sock. Nothing
2857 * more will be added to this poll set.
2859 ret
= create_thread_poll_set(&events
, 2);
2864 /* Add the application registration socket */
2865 ret
= lttng_poll_add(&events
, client_sock
, LPOLLIN
| LPOLLPRI
);
2871 * Notify parent pid that we are ready to accept command for client side.
2873 if (opt_sig_parent
) {
2874 kill(ppid
, SIGCHLD
);
2878 DBG("Accepting client command ...");
2880 nb_fd
= LTTNG_POLL_GETNB(&events
);
2882 /* Inifinite blocking call, waiting for transmission */
2883 ret
= lttng_poll_wait(&events
, -1);
2888 for (i
= 0; i
< nb_fd
; i
++) {
2889 /* Fetch once the poll data */
2890 revents
= LTTNG_POLL_GETEV(&events
, i
);
2891 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
2893 /* Thread quit pipe has been closed. Killing thread. */
2894 ret
= check_thread_quit_pipe(pollfd
, revents
);
2899 /* Event on the registration socket */
2900 if (pollfd
== client_sock
) {
2901 if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
2902 ERR("Client socket poll error");
2908 DBG("Wait for client response");
2910 sock
= lttcomm_accept_unix_sock(client_sock
);
2915 /* Allocate context command to process the client request */
2916 cmd_ctx
= malloc(sizeof(struct command_ctx
));
2917 if (cmd_ctx
== NULL
) {
2918 perror("malloc cmd_ctx");
2922 /* Allocate data buffer for reception */
2923 cmd_ctx
->lsm
= malloc(sizeof(struct lttcomm_session_msg
));
2924 if (cmd_ctx
->lsm
== NULL
) {
2925 perror("malloc cmd_ctx->lsm");
2929 cmd_ctx
->llm
= NULL
;
2930 cmd_ctx
->session
= NULL
;
2933 * Data is received from the lttng client. The struct
2934 * lttcomm_session_msg (lsm) contains the command and data request of
2937 DBG("Receiving data from client ...");
2938 ret
= lttcomm_recv_unix_sock(sock
, cmd_ctx
->lsm
,
2939 sizeof(struct lttcomm_session_msg
));
2941 DBG("Nothing recv() from client... continuing");
2947 // TODO: Validate cmd_ctx including sanity check for
2948 // security purpose.
2951 * This function dispatch the work to the kernel or userspace tracer
2952 * libs and fill the lttcomm_lttng_msg data structure of all the needed
2953 * informations for the client. The command context struct contains
2954 * everything this function may needs.
2956 ret
= process_client_msg(cmd_ctx
);
2959 * TODO: Inform client somehow of the fatal error. At
2960 * this point, ret < 0 means that a malloc failed
2961 * (ENOMEM). Error detected but still accept command.
2963 clean_command_ctx(&cmd_ctx
);
2967 DBG("Sending response (size: %d, retcode: %s)",
2968 cmd_ctx
->lttng_msg_size
,
2969 lttng_get_readable_code(-cmd_ctx
->llm
->ret_code
));
2970 ret
= send_unix_sock(sock
, cmd_ctx
->llm
, cmd_ctx
->lttng_msg_size
);
2972 ERR("Failed to send data back to client");
2975 clean_command_ctx(&cmd_ctx
);
2977 /* End of transmission */
2982 DBG("Client thread dying");
2983 unlink(client_unix_sock_path
);
2987 lttng_poll_clean(&events
);
2988 clean_command_ctx(&cmd_ctx
);
2994 * usage function on stderr
2996 static void usage(void)
2998 fprintf(stderr
, "Usage: %s OPTIONS\n\nOptions:\n", progname
);
2999 fprintf(stderr
, " -h, --help Display this usage.\n");
3000 fprintf(stderr
, " -c, --client-sock PATH Specify path for the client unix socket\n");
3001 fprintf(stderr
, " -a, --apps-sock PATH Specify path for apps unix socket\n");
3002 fprintf(stderr
, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
3003 fprintf(stderr
, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
3004 fprintf(stderr
, " -d, --daemonize Start as a daemon.\n");
3005 fprintf(stderr
, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
3006 fprintf(stderr
, " -V, --version Show version number.\n");
3007 fprintf(stderr
, " -S, --sig-parent Send SIGCHLD to parent pid to notify readiness.\n");
3008 fprintf(stderr
, " -q, --quiet No output at all.\n");
3009 fprintf(stderr
, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
3010 fprintf(stderr
, " --verbose-kconsumerd Verbose mode for kconsumerd. Activate DBG() macro.\n");
3014 * daemon argument parsing
3016 static int parse_args(int argc
, char **argv
)
3020 static struct option long_options
[] = {
3021 { "client-sock", 1, 0, 'c' },
3022 { "apps-sock", 1, 0, 'a' },
3023 { "kconsumerd-cmd-sock", 1, 0, 0 },
3024 { "kconsumerd-err-sock", 1, 0, 0 },
3025 { "daemonize", 0, 0, 'd' },
3026 { "sig-parent", 0, 0, 'S' },
3027 { "help", 0, 0, 'h' },
3028 { "group", 1, 0, 'g' },
3029 { "version", 0, 0, 'V' },
3030 { "quiet", 0, 0, 'q' },
3031 { "verbose", 0, 0, 'v' },
3032 { "verbose-kconsumerd", 0, 0, 'Z' },
3037 int option_index
= 0;
3038 c
= getopt_long(argc
, argv
, "dhqvVS" "a:c:g:s:E:C:Z",
3039 long_options
, &option_index
);
3046 fprintf(stderr
, "option %s", long_options
[option_index
].name
);
3048 fprintf(stderr
, " with arg %s\n", optarg
);
3052 snprintf(client_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3055 snprintf(apps_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3061 opt_tracing_group
= strdup(optarg
);
3067 fprintf(stdout
, "%s\n", VERSION
);
3073 snprintf(kconsumerd_err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3076 snprintf(kconsumerd_cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
3082 /* Verbose level can increase using multiple -v */
3086 opt_verbose_kconsumerd
+= 1;
3089 /* Unknown option or other error.
3090 * Error is printed by getopt, just return */
3099 * Creates the two needed socket by the daemon.
3100 * apps_sock - The communication socket for all UST apps.
3101 * client_sock - The communication of the cli tool (lttng).
3103 static int init_daemon_socket(void)
3108 old_umask
= umask(0);
3110 /* Create client tool unix socket */
3111 client_sock
= lttcomm_create_unix_sock(client_unix_sock_path
);
3112 if (client_sock
< 0) {
3113 ERR("Create unix sock failed: %s", client_unix_sock_path
);
3118 /* File permission MUST be 660 */
3119 ret
= chmod(client_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
3121 ERR("Set file permissions failed: %s", client_unix_sock_path
);
3126 /* Create the application unix socket */
3127 apps_sock
= lttcomm_create_unix_sock(apps_unix_sock_path
);
3128 if (apps_sock
< 0) {
3129 ERR("Create unix sock failed: %s", apps_unix_sock_path
);
3134 /* File permission MUST be 666 */
3135 ret
= chmod(apps_unix_sock_path
,
3136 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IROTH
| S_IWOTH
);
3138 ERR("Set file permissions failed: %s", apps_unix_sock_path
);
3149 * Check if the global socket is available, and if a daemon is answering at the
3150 * other side. If yes, error is returned.
3152 static int check_existing_daemon(void)
3154 if (access(client_unix_sock_path
, F_OK
) < 0 &&
3155 access(apps_unix_sock_path
, F_OK
) < 0) {
3159 /* Is there anybody out there ? */
3160 if (lttng_session_daemon_alive()) {
3168 * Set the tracing group gid onto the client socket.
3170 * Race window between mkdir and chown is OK because we are going from more
3171 * permissive (root.root) to les permissive (root.tracing).
3173 static int set_permissions(void)
3178 gid
= allowed_group();
3181 WARN("No tracing group detected");
3184 ERR("Missing tracing group. Aborting execution.");
3190 /* Set lttng run dir */
3191 ret
= chown(LTTNG_RUNDIR
, 0, gid
);
3193 ERR("Unable to set group on " LTTNG_RUNDIR
);
3197 /* lttng client socket path */
3198 ret
= chown(client_unix_sock_path
, 0, gid
);
3200 ERR("Unable to set group on %s", client_unix_sock_path
);
3204 /* kconsumerd error socket path */
3205 ret
= chown(kconsumerd_err_unix_sock_path
, 0, gid
);
3207 ERR("Unable to set group on %s", kconsumerd_err_unix_sock_path
);
3211 DBG("All permissions are set");
3218 * Create the pipe used to wake up the kernel thread.
3220 static int create_kernel_poll_pipe(void)
3222 return pipe2(kernel_poll_pipe
, O_CLOEXEC
);
3226 * Create the application command pipe to wake thread_manage_apps.
3228 static int create_apps_cmd_pipe(void)
3230 return pipe2(apps_cmd_pipe
, O_CLOEXEC
);
3234 * Create the lttng run directory needed for all global sockets and pipe.
3236 static int create_lttng_rundir(void)
3240 ret
= mkdir(LTTNG_RUNDIR
, S_IRWXU
| S_IRWXG
);
3242 if (errno
!= EEXIST
) {
3243 ERR("Unable to create " LTTNG_RUNDIR
);
3255 * Setup sockets and directory needed by the kconsumerd communication with the
3258 static int set_kconsumerd_sockets(void)
3262 if (strlen(kconsumerd_err_unix_sock_path
) == 0) {
3263 snprintf(kconsumerd_err_unix_sock_path
, PATH_MAX
,
3264 KCONSUMERD_ERR_SOCK_PATH
);
3267 if (strlen(kconsumerd_cmd_unix_sock_path
) == 0) {
3268 snprintf(kconsumerd_cmd_unix_sock_path
, PATH_MAX
,
3269 KCONSUMERD_CMD_SOCK_PATH
);
3272 ret
= mkdir(KCONSUMERD_PATH
, S_IRWXU
| S_IRWXG
);
3274 if (errno
!= EEXIST
) {
3275 ERR("Failed to create " KCONSUMERD_PATH
);
3281 /* Create the kconsumerd error unix socket */
3282 kconsumerd_err_sock
=
3283 lttcomm_create_unix_sock(kconsumerd_err_unix_sock_path
);
3284 if (kconsumerd_err_sock
< 0) {
3285 ERR("Create unix sock failed: %s", kconsumerd_err_unix_sock_path
);
3290 /* File permission MUST be 660 */
3291 ret
= chmod(kconsumerd_err_unix_sock_path
,
3292 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
3294 ERR("Set file permissions failed: %s", kconsumerd_err_unix_sock_path
);
3304 * Signal handler for the daemon
3306 * Simply stop all worker threads, leaving main() return gracefully after
3307 * joining all threads and calling cleanup().
3309 static void sighandler(int sig
)
3313 DBG("SIGPIPE catched");
3316 DBG("SIGINT catched");
3320 DBG("SIGTERM catched");
3329 * Setup signal handler for :
3330 * SIGINT, SIGTERM, SIGPIPE
3332 static int set_signal_handler(void)
3335 struct sigaction sa
;
3338 if ((ret
= sigemptyset(&sigset
)) < 0) {
3339 perror("sigemptyset");
3343 sa
.sa_handler
= sighandler
;
3344 sa
.sa_mask
= sigset
;
3346 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
3347 perror("sigaction");
3351 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
3352 perror("sigaction");
3356 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
3357 perror("sigaction");
3361 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
3367 * Set open files limit to unlimited. This daemon can open a large number of
3368 * file descriptors in order to consumer multiple kernel traces.
3370 static void set_ulimit(void)
3375 /* The kernel does not allowed an infinite limit for open files */
3376 lim
.rlim_cur
= 65535;
3377 lim
.rlim_max
= 65535;
3379 ret
= setrlimit(RLIMIT_NOFILE
, &lim
);
3381 perror("failed to set open files limit");