2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; only version 2
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
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 #include <semaphore.h>
32 #include <sys/mount.h>
34 #include <sys/socket.h>
36 #include <sys/types.h>
38 #include <sys/resource.h>
41 #include <urcu/list.h> /* URCU list library (-lurcu) */
42 #include <lttng/lttng.h>
44 #include "liblttsessiondcomm.h"
45 #include "ltt-sessiond.h"
47 #include "kernel-ctl.h"
50 #include "traceable-app.h"
51 #include "lttng-kconsumerd.h"
55 const char default_home_dir
[] = DEFAULT_HOME_DIR
;
56 const char default_tracing_group
[] = LTTNG_DEFAULT_TRACING_GROUP
;
57 const char default_ust_sock_dir
[] = DEFAULT_UST_SOCK_DIR
;
58 const char default_global_apps_pipe
[] = DEFAULT_GLOBAL_APPS_PIPE
;
61 int opt_verbose
; /* Not static for lttngerr.h */
62 int opt_quiet
; /* Not static for lttngerr.h */
65 const char *opt_tracing_group
;
66 static int opt_sig_parent
;
67 static int opt_daemon
;
68 static int is_root
; /* Set to 1 if the daemon is running as root */
69 static pid_t ppid
; /* Parent PID for --sig-parent option */
70 static pid_t kconsumerd_pid
;
71 static struct pollfd
*kernel_pollfd
;
73 static char apps_unix_sock_path
[PATH_MAX
]; /* Global application Unix socket path */
74 static char client_unix_sock_path
[PATH_MAX
]; /* Global client Unix socket path */
75 static char kconsumerd_err_unix_sock_path
[PATH_MAX
]; /* kconsumerd error Unix socket path */
76 static char kconsumerd_cmd_unix_sock_path
[PATH_MAX
]; /* kconsumerd command Unix socket path */
79 static int client_sock
;
81 static int kconsumerd_err_sock
;
82 static int kconsumerd_cmd_sock
;
83 static int kernel_tracer_fd
;
84 static int kernel_poll_pipe
[2];
87 * Quit pipe for all threads. This permits a single cancellation point
88 * for all threads when receiving an event on the pipe.
90 static int thread_quit_pipe
[2];
92 /* Pthread, Mutexes and Semaphores */
93 static pthread_t kconsumerd_thread
;
94 static pthread_t apps_thread
;
95 static pthread_t client_thread
;
96 static pthread_t kernel_thread
;
97 static sem_t kconsumerd_sem
;
99 static pthread_mutex_t kconsumerd_pid_mutex
; /* Mutex to control kconsumerd pid assignation */
102 * Pointer initialized before thread creation.
104 * This points to the tracing session list containing the session count and a
105 * mutex lock. The lock MUST be taken if you iterate over the list. The lock
106 * MUST NOT be taken if you call a public function in session.c.
108 * The lock is nested inside the structure: session_list_ptr->lock. Please use
109 * lock_session_list and unlock_session_list for lock acquisition.
111 static struct ltt_session_list
*session_list_ptr
;
116 * Return -1 on error or 0 if all pipes are created.
118 static int init_thread_quit_pipe(void)
122 ret
= pipe2(thread_quit_pipe
, O_CLOEXEC
);
124 perror("thread quit pipe");
133 * Complete teardown of a kernel session. This free all data structure related
134 * to a kernel session and update counter.
136 static void teardown_kernel_session(struct ltt_session
*session
)
138 if (session
->kernel_session
!= NULL
) {
139 DBG("Tearing down kernel session");
140 trace_destroy_kernel_session(session
->kernel_session
);
141 /* Extra precaution */
142 session
->kernel_session
= NULL
;
149 static void cleanup()
153 struct ltt_session
*sess
, *stmp
;
158 MSG("\n%c[%d;%dm*** assert failed *** ==> %c[%dm%c[%d;%dm"
159 "Matthew, BEET driven development works!%c[%dm",
160 27, 1, 31, 27, 0, 27, 1, 33, 27, 0);
163 /* Stopping all threads */
164 DBG("Terminating all threads");
165 close(thread_quit_pipe
[0]);
166 close(thread_quit_pipe
[1]);
168 DBG("Removing %s directory", LTTNG_RUNDIR
);
169 ret
= asprintf(&cmd
, "rm -rf " LTTNG_RUNDIR
);
171 ERR("asprintf failed. Something is really wrong!");
174 /* Remove lttng run directory */
177 ERR("Unable to clean " LTTNG_RUNDIR
);
180 DBG("Cleaning up all session");
182 /* Destroy session list mutex */
183 if (session_list_ptr
!= NULL
) {
184 pthread_mutex_destroy(&session_list_ptr
->lock
);
186 /* Cleanup ALL session */
187 cds_list_for_each_entry_safe(sess
, stmp
, &session_list_ptr
->head
, list
) {
188 teardown_kernel_session(sess
);
189 // TODO complete session cleanup (including UST)
193 pthread_mutex_destroy(&kconsumerd_pid_mutex
);
195 DBG("Closing kernel fd");
196 close(kernel_tracer_fd
);
200 * Send data on a unix socket using the liblttsessiondcomm API.
202 * Return lttcomm error code.
204 static int send_unix_sock(int sock
, void *buf
, size_t len
)
206 /* Check valid length */
211 return lttcomm_send_unix_sock(sock
, buf
, len
);
215 * Free memory of a command context structure.
217 static void clean_command_ctx(struct command_ctx
**cmd_ctx
)
219 DBG("Clean command context structure");
221 if ((*cmd_ctx
)->llm
) {
222 free((*cmd_ctx
)->llm
);
224 if ((*cmd_ctx
)->lsm
) {
225 free((*cmd_ctx
)->lsm
);
233 * Send all stream fds of kernel channel to the consumer.
235 static int send_kconsumerd_channel_fds(int sock
, struct ltt_kernel_channel
*channel
)
239 struct ltt_kernel_stream
*stream
;
240 struct lttcomm_kconsumerd_header lkh
;
241 struct lttcomm_kconsumerd_msg lkm
;
243 DBG("Sending fds of channel %s to kernel consumer", channel
->channel
->name
);
245 nb_fd
= channel
->stream_count
;
248 lkh
.payload_size
= nb_fd
* sizeof(struct lttcomm_kconsumerd_msg
);
249 lkh
.cmd_type
= ADD_STREAM
;
251 DBG("Sending kconsumerd header");
253 ret
= lttcomm_send_unix_sock(sock
, &lkh
, sizeof(struct lttcomm_kconsumerd_header
));
255 perror("send kconsumerd header");
259 cds_list_for_each_entry(stream
, &channel
->stream_list
.head
, list
) {
260 if (stream
->fd
!= 0) {
262 lkm
.state
= stream
->state
;
263 lkm
.max_sb_size
= channel
->channel
->attr
.subbuf_size
;
264 strncpy(lkm
.path_name
, stream
->pathname
, PATH_MAX
);
266 DBG("Sending fd %d to kconsumerd", lkm
.fd
);
268 ret
= lttcomm_send_fds_unix_sock(sock
, &lkm
, &lkm
.fd
, 1, sizeof(lkm
));
270 perror("send kconsumerd fd");
276 DBG("Kconsumerd channel fds sent");
285 * Send all stream fds of the kernel session to the consumer.
287 static int send_kconsumerd_fds(int sock
, struct ltt_kernel_session
*session
)
290 struct ltt_kernel_channel
*chan
;
291 struct lttcomm_kconsumerd_header lkh
;
292 struct lttcomm_kconsumerd_msg lkm
;
295 lkh
.payload_size
= sizeof(struct lttcomm_kconsumerd_msg
);
296 lkh
.cmd_type
= ADD_STREAM
;
298 DBG("Sending kconsumerd header for metadata");
300 ret
= lttcomm_send_unix_sock(sock
, &lkh
, sizeof(struct lttcomm_kconsumerd_header
));
302 perror("send kconsumerd header");
306 DBG("Sending metadata stream fd");
308 if (session
->metadata_stream_fd
!= 0) {
309 /* Send metadata stream fd first */
310 lkm
.fd
= session
->metadata_stream_fd
;
311 lkm
.state
= ACTIVE_FD
;
312 lkm
.max_sb_size
= session
->metadata
->conf
->attr
.subbuf_size
;
313 strncpy(lkm
.path_name
, session
->metadata
->pathname
, PATH_MAX
);
315 ret
= lttcomm_send_fds_unix_sock(sock
, &lkm
, &lkm
.fd
, 1, sizeof(lkm
));
317 perror("send kconsumerd fd");
322 cds_list_for_each_entry(chan
, &session
->channel_list
.head
, list
) {
323 ret
= send_kconsumerd_channel_fds(sock
, chan
);
329 DBG("Kconsumerd fds (metadata and channel streams) sent");
339 * Return a socket connected to the libust communication socket of the
340 * application identified by the pid.
342 * If the pid is not found in the traceable list, return -1 to indicate error.
344 static int ust_connect_app(pid_t pid
)
347 struct ltt_traceable_app
*lta
;
349 DBG("Connect to application pid %d", pid
);
351 lta
= find_app_by_pid(pid
);
354 DBG("Application pid %d not found", pid
);
358 sock
= ustctl_connect_pid(lta
->pid
);
360 ERR("Fail connecting to the PID %d", pid
);
365 #endif /* DISABLED */
368 * Notify apps by writing 42 to a named pipe using name. Every applications
369 * waiting for a ltt-sessiond will be notified and re-register automatically to
370 * the session daemon.
372 * Return open or write error value.
374 static int notify_apps(const char *name
)
379 DBG("Notify the global application pipe");
381 /* Try opening the global pipe */
382 fd
= open(name
, O_WRONLY
);
387 /* Notify by writing on the pipe */
388 ret
= write(fd
, "42", 2);
398 * Setup the outgoing data buffer for the response (llm) by allocating the
399 * right amount of memory and copying the original information from the lsm
402 * Return total size of the buffer pointed by buf.
404 static int setup_lttng_msg(struct command_ctx
*cmd_ctx
, size_t size
)
410 cmd_ctx
->llm
= malloc(sizeof(struct lttcomm_lttng_msg
) + buf_size
);
411 if (cmd_ctx
->llm
== NULL
) {
417 /* Copy common data */
418 cmd_ctx
->llm
->cmd_type
= cmd_ctx
->lsm
->cmd_type
;
419 cmd_ctx
->llm
->pid
= cmd_ctx
->lsm
->domain
.attr
.pid
;
421 cmd_ctx
->llm
->data_size
= size
;
422 cmd_ctx
->lttng_msg_size
= sizeof(struct lttcomm_lttng_msg
) + buf_size
;
431 * Update the kernel pollfd set of all channel fd available over all tracing
432 * session. Add the wakeup pipe at the end of the set.
434 static int update_kernel_pollfd(void)
438 * The wakup pipe and the quit pipe are needed so the number of fds starts
439 * at 2 for those pipes.
441 unsigned int nb_fd
= 2;
442 struct ltt_session
*session
;
443 struct ltt_kernel_channel
*channel
;
445 DBG("Updating kernel_pollfd");
447 /* Get the number of channel of all kernel session */
449 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
450 lock_session(session
);
451 if (session
->kernel_session
== NULL
) {
452 unlock_session(session
);
455 nb_fd
+= session
->kernel_session
->channel_count
;
456 unlock_session(session
);
459 DBG("Resizing kernel_pollfd to size %d", nb_fd
);
461 kernel_pollfd
= realloc(kernel_pollfd
, nb_fd
* sizeof(struct pollfd
));
462 if (kernel_pollfd
== NULL
) {
463 perror("malloc kernel_pollfd");
467 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
468 lock_session(session
);
469 if (session
->kernel_session
== NULL
) {
470 unlock_session(session
);
474 ERR("To much channel for kernel_pollfd size");
475 unlock_session(session
);
478 cds_list_for_each_entry(channel
, &session
->kernel_session
->channel_list
.head
, list
) {
479 kernel_pollfd
[i
].fd
= channel
->fd
;
480 kernel_pollfd
[i
].events
= POLLIN
| POLLRDNORM
;
483 unlock_session(session
);
485 unlock_session_list();
487 /* Adding wake up pipe */
488 kernel_pollfd
[nb_fd
- 2].fd
= kernel_poll_pipe
[0];
489 kernel_pollfd
[nb_fd
- 2].events
= POLLIN
;
491 /* Adding the quit pipe */
492 kernel_pollfd
[nb_fd
- 1].fd
= thread_quit_pipe
[0];
497 unlock_session_list();
502 * Find the channel fd from 'fd' over all tracing session. When found, check
503 * for new channel stream and send those stream fds to the kernel consumer.
505 * Useful for CPU hotplug feature.
507 static int update_kernel_stream(int fd
)
510 struct ltt_session
*session
;
511 struct ltt_kernel_channel
*channel
;
513 DBG("Updating kernel streams for channel fd %d", fd
);
516 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
517 lock_session(session
);
518 if (session
->kernel_session
== NULL
) {
519 unlock_session(session
);
522 cds_list_for_each_entry(channel
, &session
->kernel_session
->channel_list
.head
, list
) {
523 if (channel
->fd
== fd
) {
524 DBG("Channel found, updating kernel streams");
525 ret
= kernel_open_channel_stream(channel
);
530 * Have we already sent fds to the consumer? If yes, it means that
531 * tracing is started so it is safe to send our updated stream fds.
533 if (session
->kernel_session
->kconsumer_fds_sent
== 1) {
534 ret
= send_kconsumerd_channel_fds(kconsumerd_cmd_sock
, channel
);
542 unlock_session(session
);
546 unlock_session_list();
548 unlock_session(session
);
554 * This thread manage event coming from the kernel.
556 * Features supported in this thread:
559 static void *thread_manage_kernel(void *data
)
561 int ret
, i
, nb_fd
= 0;
563 int update_poll_flag
= 1;
565 DBG("Thread manage kernel started");
568 if (update_poll_flag
== 1) {
569 nb_fd
= update_kernel_pollfd();
573 update_poll_flag
= 0;
576 DBG("Polling on %d fds", nb_fd
);
578 /* Poll infinite value of time */
579 ret
= poll(kernel_pollfd
, nb_fd
, -1);
581 perror("poll kernel thread");
583 } else if (ret
== 0) {
584 /* Should not happen since timeout is infinite */
588 /* Thread quit pipe has been closed. Killing thread. */
589 if (kernel_pollfd
[nb_fd
- 1].revents
== POLLNVAL
) {
593 DBG("Kernel poll event triggered");
596 * Check if the wake up pipe was triggered. If so, the kernel_pollfd
599 switch (kernel_pollfd
[nb_fd
- 2].revents
) {
601 ret
= read(kernel_poll_pipe
[0], &tmp
, 1);
602 update_poll_flag
= 1;
610 for (i
= 0; i
< nb_fd
; i
++) {
611 switch (kernel_pollfd
[i
].revents
) {
613 * New CPU detected by the kernel. Adding kernel stream to kernel
614 * session and updating the kernel consumer
616 case POLLIN
| POLLRDNORM
:
617 ret
= update_kernel_stream(kernel_pollfd
[i
].fd
);
627 DBG("Kernel thread dying");
632 close(kernel_poll_pipe
[0]);
633 close(kernel_poll_pipe
[1]);
638 * This thread manage the kconsumerd error sent back to the session daemon.
640 static void *thread_manage_kconsumerd(void *data
)
643 enum lttcomm_return_code code
;
644 struct pollfd pollfd
[2];
646 DBG("[thread] Manage kconsumerd started");
648 ret
= lttcomm_listen_unix_sock(kconsumerd_err_sock
);
653 /* First fd is always the quit pipe */
654 pollfd
[0].fd
= thread_quit_pipe
[0];
657 pollfd
[1].fd
= kconsumerd_err_sock
;
658 pollfd
[1].events
= POLLIN
;
660 /* Inifinite blocking call, waiting for transmission */
661 ret
= poll(pollfd
, 2, -1);
663 perror("poll kconsumerd thread");
667 /* Thread quit pipe has been closed. Killing thread. */
668 if (pollfd
[0].revents
== POLLNVAL
) {
670 } else if (pollfd
[1].revents
== POLLERR
) {
671 ERR("Kconsumerd err socket poll error");
675 sock
= lttcomm_accept_unix_sock(kconsumerd_err_sock
);
680 /* Getting status code from kconsumerd */
681 ret
= lttcomm_recv_unix_sock(sock
, &code
, sizeof(enum lttcomm_return_code
));
686 if (code
== KCONSUMERD_COMMAND_SOCK_READY
) {
687 kconsumerd_cmd_sock
= lttcomm_connect_unix_sock(kconsumerd_cmd_unix_sock_path
);
688 if (kconsumerd_cmd_sock
< 0) {
689 sem_post(&kconsumerd_sem
);
690 perror("kconsumerd connect");
693 /* Signal condition to tell that the kconsumerd is ready */
694 sem_post(&kconsumerd_sem
);
695 DBG("Kconsumerd command socket ready");
697 DBG("Kconsumerd error when waiting for SOCK_READY : %s",
698 lttcomm_get_readable_code(-code
));
702 /* Wait for any kconsumerd error */
703 ret
= lttcomm_recv_unix_sock(sock
, &code
, sizeof(enum lttcomm_return_code
));
705 ERR("Kconsumerd closed the command socket");
709 ERR("Kconsumerd return code : %s", lttcomm_get_readable_code(-code
));
712 DBG("Kconsumerd thread dying");
713 if (kconsumerd_err_sock
) {
714 close(kconsumerd_err_sock
);
716 if (kconsumerd_cmd_sock
) {
717 close(kconsumerd_cmd_sock
);
723 unlink(kconsumerd_err_unix_sock_path
);
724 unlink(kconsumerd_cmd_unix_sock_path
);
731 * This thread manage the application socket communication
733 static void *thread_manage_apps(void *data
)
736 struct pollfd pollfd
[2];
738 /* TODO: Something more elegant is needed but fine for now */
739 /* FIXME: change all types to either uint8_t, uint32_t, uint64_t
740 * for 32-bit vs 64-bit compat processes. */
741 /* replicate in ust with version number */
743 int reg
; /* 1:register, 0:unregister */
748 DBG("[thread] Manage apps started");
750 ret
= lttcomm_listen_unix_sock(apps_sock
);
755 /* First fd is always the quit pipe */
756 pollfd
[0].fd
= thread_quit_pipe
[0];
759 pollfd
[1].fd
= apps_sock
;
760 pollfd
[1].events
= POLLIN
;
762 /* Notify all applications to register */
763 notify_apps(default_global_apps_pipe
);
766 DBG("Accepting application registration");
768 /* Inifinite blocking call, waiting for transmission */
769 ret
= poll(pollfd
, 2, -1);
771 perror("poll apps thread");
775 /* Thread quit pipe has been closed. Killing thread. */
776 if (pollfd
[0].revents
== POLLNVAL
) {
778 } else if (pollfd
[1].revents
== POLLERR
) {
779 ERR("Apps socket poll error");
783 sock
= lttcomm_accept_unix_sock(apps_sock
);
789 * Basic recv here to handle the very simple data
790 * that the libust send to register (reg_msg).
792 ret
= recv(sock
, ®_msg
, sizeof(reg_msg
), 0);
798 /* Add application to the global traceable list */
799 if (reg_msg
.reg
== 1) {
801 ret
= register_traceable_app(reg_msg
.pid
, reg_msg
.uid
);
803 /* register_traceable_app only return an error with
804 * ENOMEM. At this point, we better stop everything.
810 unregister_traceable_app(reg_msg
.pid
);
815 DBG("Apps thread dying");
823 unlink(apps_unix_sock_path
);
828 * Start the thread_manage_kconsumerd. This must be done after a kconsumerd
829 * exec or it will fails.
831 static int spawn_kconsumerd_thread(void)
835 /* Setup semaphore */
836 sem_init(&kconsumerd_sem
, 0, 0);
838 ret
= pthread_create(&kconsumerd_thread
, NULL
, thread_manage_kconsumerd
, (void *) NULL
);
840 perror("pthread_create kconsumerd");
844 /* Wait for the kconsumerd thread to be ready */
845 sem_wait(&kconsumerd_sem
);
847 if (kconsumerd_pid
== 0) {
848 ERR("Kconsumerd did not start");
855 ret
= LTTCOMM_KERN_CONSUMER_FAIL
;
860 * Fork and exec a kernel consumer daemon (kconsumerd).
862 * Return pid if successful else -1.
864 static pid_t
spawn_kconsumerd(void)
868 const char *verbosity
;
870 DBG("Spawning kconsumerd");
877 if (opt_verbose
> 1) {
878 verbosity
= "--verbose";
880 verbosity
= "--quiet";
882 execl(INSTALL_BIN_PATH
"/ltt-kconsumerd", "ltt-kconsumerd", verbosity
, NULL
);
884 perror("kernel start consumer exec");
887 } else if (pid
> 0) {
891 perror("kernel start consumer fork");
901 * Spawn the kconsumerd daemon and session daemon thread.
903 static int start_kconsumerd(void)
907 pthread_mutex_lock(&kconsumerd_pid_mutex
);
908 if (kconsumerd_pid
!= 0) {
909 pthread_mutex_unlock(&kconsumerd_pid_mutex
);
913 ret
= spawn_kconsumerd();
915 ERR("Spawning kconsumerd failed");
916 ret
= LTTCOMM_KERN_CONSUMER_FAIL
;
917 pthread_mutex_unlock(&kconsumerd_pid_mutex
);
921 /* Setting up the global kconsumerd_pid */
922 kconsumerd_pid
= ret
;
923 pthread_mutex_unlock(&kconsumerd_pid_mutex
);
925 DBG("Kconsumerd pid %d", ret
);
927 DBG("Spawning kconsumerd thread");
928 ret
= spawn_kconsumerd_thread();
930 ERR("Fatal error spawning kconsumerd thread");
942 * modprobe_kernel_modules
944 static int modprobe_kernel_modules(void)
949 while (kernel_modules_list
[i
] != NULL
) {
950 ret
= snprintf(modprobe
, sizeof(modprobe
), "/sbin/modprobe %s",
951 kernel_modules_list
[i
]);
953 perror("snprintf modprobe");
956 ret
= system(modprobe
);
958 ERR("Unable to load module %s", kernel_modules_list
[i
]);
960 DBG("Modprobe successfully %s", kernel_modules_list
[i
]);
971 static int mount_debugfs(char *path
)
974 char *type
= "debugfs";
976 ret
= mkdir_recursive(path
, S_IRWXU
| S_IRWXG
);
981 ret
= mount(type
, path
, type
, 0, NULL
);
983 perror("mount debugfs");
987 DBG("Mounted debugfs successfully at %s", path
);
994 * Setup necessary data for kernel tracer action.
996 static void init_kernel_tracer(void)
999 char *proc_mounts
= "/proc/mounts";
1001 char *debugfs_path
= NULL
, *lttng_path
;
1004 /* Detect debugfs */
1005 fp
= fopen(proc_mounts
, "r");
1007 ERR("Unable to probe %s", proc_mounts
);
1011 while (fgets(line
, sizeof(line
), fp
) != NULL
) {
1012 if (strstr(line
, "debugfs") != NULL
) {
1013 /* Remove first string */
1015 /* Dup string here so we can reuse line later on */
1016 debugfs_path
= strdup(strtok(NULL
, " "));
1017 DBG("Got debugfs path : %s", debugfs_path
);
1024 /* Mount debugfs if needded */
1025 if (debugfs_path
== NULL
) {
1026 ret
= asprintf(&debugfs_path
, "/mnt/debugfs");
1028 perror("asprintf debugfs path");
1031 ret
= mount_debugfs(debugfs_path
);
1037 /* Modprobe lttng kernel modules */
1038 ret
= modprobe_kernel_modules();
1043 /* Setup lttng kernel path */
1044 ret
= asprintf(<tng_path
, "%s/lttng", debugfs_path
);
1046 perror("asprintf lttng path");
1050 /* Open debugfs lttng */
1051 kernel_tracer_fd
= open(lttng_path
, O_RDWR
);
1052 if (kernel_tracer_fd
< 0) {
1053 DBG("Failed to open %s", lttng_path
);
1059 DBG("Kernel tracer fd %d", kernel_tracer_fd
);
1069 WARN("No kernel tracer available");
1070 kernel_tracer_fd
= 0;
1075 * Start tracing by creating trace directory and sending FDs to the kernel
1078 static int start_kernel_trace(struct ltt_kernel_session
*session
)
1082 if (session
->kconsumer_fds_sent
== 0) {
1083 ret
= send_kconsumerd_fds(kconsumerd_cmd_sock
, session
);
1085 ERR("Send kconsumerd fds failed");
1086 ret
= LTTCOMM_KERN_CONSUMER_FAIL
;
1090 session
->kconsumer_fds_sent
= 1;
1098 * Notify kernel thread to update it's pollfd.
1100 static int notify_kernel_pollfd(void)
1104 /* Inform kernel thread of the new kernel channel */
1105 ret
= write(kernel_poll_pipe
[1], "!", 1);
1107 perror("write kernel poll pipe");
1114 * Allocate a channel structure and fill it.
1116 static struct lttng_channel
*init_default_channel(char *name
)
1118 struct lttng_channel
*chan
;
1120 chan
= malloc(sizeof(struct lttng_channel
));
1122 perror("init channel malloc");
1126 if (snprintf(chan
->name
, NAME_MAX
, "%s", name
) < 0) {
1127 perror("snprintf channel name");
1131 chan
->attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
1132 chan
->attr
.subbuf_size
= DEFAULT_CHANNEL_SUBBUF_SIZE
;
1133 chan
->attr
.num_subbuf
= DEFAULT_CHANNEL_SUBBUF_NUM
;
1134 chan
->attr
.switch_timer_interval
= DEFAULT_CHANNEL_SWITCH_TIMER
;
1135 chan
->attr
.read_timer_interval
= DEFAULT_CHANNEL_READ_TIMER
;
1136 chan
->attr
.output
= DEFAULT_KERNEL_CHANNEL_OUTPUT
;
1143 * Create a kernel tracer session then create the default channel.
1145 static int create_kernel_session(struct ltt_session
*session
)
1149 DBG("Creating kernel session");
1151 ret
= kernel_create_session(session
, kernel_tracer_fd
);
1153 ret
= LTTCOMM_KERN_SESS_FAIL
;
1157 ret
= mkdir_recursive(session
->path
, S_IRWXU
| S_IRWXG
);
1159 if (ret
!= EEXIST
) {
1160 ERR("Trace directory creation error");
1170 * Using the session list, filled a lttng_session array to send back to the
1171 * client for session listing.
1173 * The session list lock MUST be acquired before calling this function. Use
1174 * lock_session_list() and unlock_session_list().
1176 static void list_lttng_sessions(struct lttng_session
*sessions
)
1179 struct ltt_session
*session
;
1181 DBG("Getting all available session");
1183 * Iterate over session list and append data after the control struct in
1186 cds_list_for_each_entry(session
, &session_list_ptr
->head
, list
) {
1187 strncpy(sessions
[i
].path
, session
->path
, PATH_MAX
);
1188 strncpy(sessions
[i
].name
, session
->name
, NAME_MAX
);
1194 * Fill lttng_channel array of all channels.
1196 static void list_lttng_channels(struct ltt_session
*session
,
1197 struct lttng_channel
*channels
)
1200 struct ltt_kernel_channel
*kchan
;
1202 DBG("Listing channels for session %s", session
->name
);
1204 /* Kernel channels */
1205 if (session
->kernel_session
!= NULL
) {
1206 cds_list_for_each_entry(kchan
, &session
->kernel_session
->channel_list
.head
, list
) {
1207 /* Copy lttng_channel struct to array */
1208 memcpy(&channels
[i
], kchan
->channel
, sizeof(struct lttng_channel
));
1209 channels
[i
].enabled
= kchan
->enabled
;
1214 /* TODO: Missing UST listing */
1218 * Fill lttng_event array of all events in the channel.
1220 static void list_lttng_events(struct ltt_kernel_channel
*kchan
,
1221 struct lttng_event
*events
)
1224 * TODO: This is ONLY kernel. Need UST support.
1227 struct ltt_kernel_event
*event
;
1229 DBG("Listing events for channel %s", kchan
->channel
->name
);
1231 /* Kernel channels */
1232 cds_list_for_each_entry(event
, &kchan
->events_list
.head
, list
) {
1233 strncpy(events
[i
].name
, event
->event
->name
, LTTNG_SYMBOL_NAME_LEN
);
1234 events
[i
].enabled
= event
->enabled
;
1235 switch (event
->event
->instrumentation
) {
1236 case LTTNG_KERNEL_TRACEPOINT
:
1237 events
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
1239 case LTTNG_KERNEL_KPROBE
:
1240 case LTTNG_KERNEL_KRETPROBE
:
1241 events
[i
].type
= LTTNG_EVENT_PROBE
;
1242 memcpy(&events
[i
].attr
.probe
, &event
->event
->u
.kprobe
,
1243 sizeof(struct lttng_kernel_kprobe
));
1245 case LTTNG_KERNEL_FUNCTION
:
1246 events
[i
].type
= LTTNG_EVENT_FUNCTION
;
1247 memcpy(&events
[i
].attr
.ftrace
, &event
->event
->u
.ftrace
,
1248 sizeof(struct lttng_kernel_function
));
1256 * Process the command requested by the lttng client within the command
1257 * context structure. This function make sure that the return structure (llm)
1258 * is set and ready for transmission before returning.
1260 * Return any error encountered or 0 for success.
1262 static int process_client_msg(struct command_ctx
*cmd_ctx
)
1264 int ret
= LTTCOMM_OK
;
1266 DBG("Processing client command %d", cmd_ctx
->lsm
->cmd_type
);
1268 /* Listing commands don't need a session */
1269 switch (cmd_ctx
->lsm
->cmd_type
) {
1270 case LTTNG_CREATE_SESSION
:
1271 case LTTNG_LIST_SESSIONS
:
1272 case LTTNG_KERNEL_LIST_EVENTS
:
1275 DBG("Getting session %s by name", cmd_ctx
->lsm
->session_name
);
1276 cmd_ctx
->session
= find_session_by_name(cmd_ctx
->lsm
->session_name
);
1277 if (cmd_ctx
->session
== NULL
) {
1278 /* If session name not found */
1279 if (cmd_ctx
->lsm
->session_name
!= NULL
) {
1280 ret
= LTTCOMM_SESS_NOT_FOUND
;
1281 } else { /* If no session name specified */
1282 ret
= LTTCOMM_SELECT_SESS
;
1286 /* Acquire lock for the session */
1287 lock_session(cmd_ctx
->session
);
1293 * Check kernel command for kernel session.
1295 switch (cmd_ctx
->lsm
->cmd_type
) {
1296 case LTTNG_KERNEL_ADD_CONTEXT
:
1297 case LTTNG_KERNEL_DISABLE_ALL_EVENT
:
1298 case LTTNG_KERNEL_DISABLE_CHANNEL
:
1299 case LTTNG_KERNEL_DISABLE_EVENT
:
1300 case LTTNG_KERNEL_ENABLE_ALL_EVENT
:
1301 case LTTNG_KERNEL_ENABLE_CHANNEL
:
1302 case LTTNG_KERNEL_ENABLE_EVENT
:
1303 case LTTNG_KERNEL_LIST_EVENTS
:
1304 /* Kernel tracer check */
1305 if (kernel_tracer_fd
== 0) {
1306 init_kernel_tracer();
1307 if (kernel_tracer_fd
== 0) {
1308 ret
= LTTCOMM_KERN_NA
;
1313 /* Need a session for kernel command */
1314 if (cmd_ctx
->lsm
->cmd_type
!= LTTNG_KERNEL_LIST_EVENTS
&&
1315 cmd_ctx
->session
->kernel_session
== NULL
) {
1317 ret
= create_kernel_session(cmd_ctx
->session
);
1319 ret
= LTTCOMM_KERN_SESS_FAIL
;
1323 /* Start the kernel consumer daemon */
1324 if (kconsumerd_pid
== 0) {
1325 ret
= start_kconsumerd();
1334 /* Connect to ust apps if available pid */
1335 if (cmd_ctx
->lsm
->pid
> 0) {
1336 /* Connect to app using ustctl API */
1337 cmd_ctx
->ust_sock
= ust_connect_app(cmd_ctx
->lsm
->pid
);
1338 if (cmd_ctx
->ust_sock
< 0) {
1339 ret
= LTTCOMM_NO_TRACEABLE
;
1343 #endif /* DISABLED */
1345 /* Process by command type */
1346 switch (cmd_ctx
->lsm
->cmd_type
) {
1347 case LTTNG_KERNEL_ADD_CONTEXT
:
1349 int found
= 0, no_event
= 0;
1350 struct ltt_kernel_channel
*chan
;
1351 struct ltt_kernel_event
*event
;
1352 struct lttng_kernel_context ctx
;
1354 /* Setup lttng message with no payload */
1355 ret
= setup_lttng_msg(cmd_ctx
, 0);
1360 /* Check if event name is given */
1361 if (strlen(cmd_ctx
->lsm
->u
.context
.event_name
) == 0) {
1365 /* Create Kernel context */
1366 ctx
.ctx
= cmd_ctx
->lsm
->u
.context
.ctx
.ctx
;
1367 ctx
.u
.perf_counter
.type
= cmd_ctx
->lsm
->u
.context
.ctx
.u
.perf_counter
.type
;
1368 ctx
.u
.perf_counter
.config
= cmd_ctx
->lsm
->u
.context
.ctx
.u
.perf_counter
.config
;
1369 strncpy(ctx
.u
.perf_counter
.name
,
1370 cmd_ctx
->lsm
->u
.context
.ctx
.u
.perf_counter
.name
,
1371 sizeof(ctx
.u
.perf_counter
.name
));
1373 if (strlen(cmd_ctx
->lsm
->u
.context
.channel_name
) == 0) {
1374 /* Go over all channels */
1375 DBG("Adding context to all channels");
1376 cds_list_for_each_entry(chan
,
1377 &cmd_ctx
->session
->kernel_session
->channel_list
.head
, list
) {
1379 ret
= kernel_add_channel_context(chan
, &ctx
);
1381 ret
= LTTCOMM_KERN_CONTEXT_FAIL
;
1385 event
= get_kernel_event_by_name(cmd_ctx
->lsm
->u
.context
.event_name
, chan
);
1386 if (event
!= NULL
) {
1387 ret
= kernel_add_event_context(event
, &ctx
);
1389 ret
= LTTCOMM_KERN_CONTEXT_FAIL
;
1398 chan
= get_kernel_channel_by_name(cmd_ctx
->lsm
->u
.context
.channel_name
,
1399 cmd_ctx
->session
->kernel_session
);
1401 ret
= LTTCOMM_KERN_CHAN_NOT_FOUND
;
1406 ret
= kernel_add_channel_context(chan
, &ctx
);
1408 ret
= LTTCOMM_KERN_CONTEXT_FAIL
;
1412 event
= get_kernel_event_by_name(cmd_ctx
->lsm
->u
.context
.event_name
, chan
);
1413 if (event
!= NULL
) {
1414 ret
= kernel_add_event_context(event
, &ctx
);
1416 ret
= LTTCOMM_KERN_CONTEXT_FAIL
;
1423 if (!found
&& !no_event
) {
1424 ret
= LTTCOMM_NO_EVENT
;
1431 case LTTNG_KERNEL_DISABLE_CHANNEL
:
1433 struct ltt_kernel_channel
*chan
;
1435 /* Setup lttng message with no payload */
1436 ret
= setup_lttng_msg(cmd_ctx
, 0);
1441 chan
= get_kernel_channel_by_name(cmd_ctx
->lsm
->u
.disable
.channel_name
,
1442 cmd_ctx
->session
->kernel_session
);
1444 ret
= LTTCOMM_KERN_CHAN_NOT_FOUND
;
1446 } else if (chan
->enabled
== 1) {
1447 ret
= kernel_disable_channel(chan
);
1449 if (ret
!= EEXIST
) {
1450 ret
= LTTCOMM_KERN_CHAN_DISABLE_FAIL
;
1456 kernel_wait_quiescent(kernel_tracer_fd
);
1460 case LTTNG_KERNEL_DISABLE_EVENT
:
1462 struct ltt_kernel_channel
*chan
;
1463 struct ltt_kernel_event
*ev
;
1465 /* Setup lttng message with no payload */
1466 ret
= setup_lttng_msg(cmd_ctx
, 0);
1471 chan
= get_kernel_channel_by_name(cmd_ctx
->lsm
->u
.disable
.channel_name
,
1472 cmd_ctx
->session
->kernel_session
);
1474 ret
= LTTCOMM_KERN_CHAN_NOT_FOUND
;
1478 ev
= get_kernel_event_by_name(cmd_ctx
->lsm
->u
.disable
.name
, chan
);
1480 DBG("Disabling kernel event %s for channel %s.",
1481 cmd_ctx
->lsm
->u
.disable
.name
, cmd_ctx
->lsm
->u
.disable
.channel_name
);
1482 ret
= kernel_disable_event(ev
);
1484 ret
= LTTCOMM_KERN_ENABLE_FAIL
;
1489 kernel_wait_quiescent(kernel_tracer_fd
);
1493 case LTTNG_KERNEL_DISABLE_ALL_EVENT
:
1495 struct ltt_kernel_channel
*chan
;
1496 struct ltt_kernel_event
*ev
;
1498 /* Setup lttng message with no payload */
1499 ret
= setup_lttng_msg(cmd_ctx
, 0);
1504 DBG("Disabling all enabled kernel events");
1506 chan
= get_kernel_channel_by_name(cmd_ctx
->lsm
->u
.disable
.channel_name
,
1507 cmd_ctx
->session
->kernel_session
);
1509 ret
= LTTCOMM_KERN_CHAN_NOT_FOUND
;
1513 /* For each event in the kernel session */
1514 cds_list_for_each_entry(ev
, &chan
->events_list
.head
, list
) {
1515 DBG("Disabling kernel event %s for channel %s.",
1516 ev
->event
->name
, cmd_ctx
->lsm
->u
.disable
.channel_name
);
1517 ret
= kernel_disable_event(ev
);
1523 /* Quiescent wait after event disable */
1524 kernel_wait_quiescent(kernel_tracer_fd
);
1528 case LTTNG_KERNEL_ENABLE_CHANNEL
:
1530 struct ltt_kernel_channel
*chan
;
1532 /* Setup lttng message with no payload */
1533 ret
= setup_lttng_msg(cmd_ctx
, 0);
1538 chan
= get_kernel_channel_by_name(cmd_ctx
->lsm
->u
.enable
.channel_name
,
1539 cmd_ctx
->session
->kernel_session
);
1541 /* Channel not found, creating it */
1542 DBG("Creating kernel channel");
1544 ret
= kernel_create_channel(cmd_ctx
->session
->kernel_session
,
1545 &cmd_ctx
->lsm
->u
.channel
.chan
, cmd_ctx
->session
->path
);
1547 ret
= LTTCOMM_KERN_CHAN_FAIL
;
1551 /* Notify kernel thread that there is a new channel */
1552 ret
= notify_kernel_pollfd();
1554 ret
= LTTCOMM_FATAL
;
1557 } else if (chan
->enabled
== 0) {
1558 ret
= kernel_enable_channel(chan
);
1560 if (ret
!= EEXIST
) {
1561 ret
= LTTCOMM_KERN_CHAN_ENABLE_FAIL
;
1567 kernel_wait_quiescent(kernel_tracer_fd
);
1571 case LTTNG_KERNEL_ENABLE_EVENT
:
1574 struct ltt_kernel_channel
*kchan
;
1575 struct ltt_kernel_event
*ev
;
1576 struct lttng_channel
*chan
;
1578 /* Setup lttng message with no payload */
1579 ret
= setup_lttng_msg(cmd_ctx
, 0);
1584 channel_name
= cmd_ctx
->lsm
->u
.enable
.channel_name
;
1587 kchan
= get_kernel_channel_by_name(channel_name
,
1588 cmd_ctx
->session
->kernel_session
);
1589 if (kchan
== NULL
) {
1590 DBG("Channel not found. Creating channel %s", channel_name
);
1592 chan
= init_default_channel(channel_name
);
1594 ret
= LTTCOMM_FATAL
;
1598 ret
= kernel_create_channel(cmd_ctx
->session
->kernel_session
,
1599 chan
, cmd_ctx
->session
->path
);
1601 ret
= LTTCOMM_KERN_CHAN_FAIL
;
1605 } while (kchan
== NULL
);
1607 ev
= get_kernel_event_by_name(cmd_ctx
->lsm
->u
.enable
.event
.name
, kchan
);
1609 DBG("Creating kernel event %s for channel %s.",
1610 cmd_ctx
->lsm
->u
.enable
.event
.name
, channel_name
);
1611 ret
= kernel_create_event(&cmd_ctx
->lsm
->u
.enable
.event
, kchan
);
1613 DBG("Enabling kernel event %s for channel %s.",
1614 cmd_ctx
->lsm
->u
.enable
.event
.name
, channel_name
);
1615 ret
= kernel_enable_event(ev
);
1616 if (ret
== -EEXIST
) {
1617 ret
= LTTCOMM_KERN_EVENT_EXIST
;
1623 ret
= LTTCOMM_KERN_ENABLE_FAIL
;
1627 kernel_wait_quiescent(kernel_tracer_fd
);
1631 case LTTNG_KERNEL_ENABLE_ALL_EVENT
:
1635 struct ltt_kernel_channel
*kchan
;
1636 struct ltt_kernel_event
*ev
;
1637 struct lttng_event
*event_list
;
1638 struct lttng_channel
*chan
;
1640 /* Setup lttng message with no payload */
1641 ret
= setup_lttng_msg(cmd_ctx
, 0);
1646 DBG("Enabling all kernel event");
1648 channel_name
= cmd_ctx
->lsm
->u
.enable
.channel_name
;
1651 kchan
= get_kernel_channel_by_name(channel_name
,
1652 cmd_ctx
->session
->kernel_session
);
1653 if (kchan
== NULL
) {
1654 DBG("Channel not found. Creating channel %s", channel_name
);
1656 chan
= init_default_channel(channel_name
);
1658 ret
= LTTCOMM_FATAL
;
1662 ret
= kernel_create_channel(cmd_ctx
->session
->kernel_session
,
1663 chan
, cmd_ctx
->session
->path
);
1665 ret
= LTTCOMM_KERN_CHAN_FAIL
;
1669 } while (kchan
== NULL
);
1671 /* For each event in the kernel session */
1672 cds_list_for_each_entry(ev
, &kchan
->events_list
.head
, list
) {
1673 DBG("Enabling kernel event %s for channel %s.",
1674 ev
->event
->name
, channel_name
);
1675 ret
= kernel_enable_event(ev
);
1681 size
= kernel_list_events(kernel_tracer_fd
, &event_list
);
1683 ret
= LTTCOMM_KERN_LIST_FAIL
;
1687 for (i
= 0; i
< size
; i
++) {
1688 ev
= get_kernel_event_by_name(event_list
[i
].name
, kchan
);
1690 /* Default event type for enable all */
1691 event_list
[i
].type
= LTTNG_EVENT_TRACEPOINT
;
1692 /* Enable each single tracepoint event */
1693 ret
= kernel_create_event(&event_list
[i
], kchan
);
1695 /* Ignore error here and continue */
1702 /* Quiescent wait after event enable */
1703 kernel_wait_quiescent(kernel_tracer_fd
);
1707 case LTTNG_KERNEL_LIST_EVENTS
:
1709 struct lttng_event
*events
;
1712 DBG("Listing kernel events");
1714 size
= kernel_list_events(kernel_tracer_fd
, &events
);
1716 ret
= LTTCOMM_KERN_LIST_FAIL
;
1721 * Setup lttng message with payload size set to the event list size in
1722 * bytes and then copy list into the llm payload.
1724 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_event
) * size
);
1729 /* Copy event list into message payload */
1730 memcpy(cmd_ctx
->llm
->payload
, events
,
1731 sizeof(struct lttng_event
) * size
);
1738 case LTTNG_START_TRACE
:
1740 struct ltt_kernel_channel
*chan
;
1742 /* Setup lttng message with no payload */
1743 ret
= setup_lttng_msg(cmd_ctx
, 0);
1748 /* Kernel tracing */
1749 if (cmd_ctx
->session
->kernel_session
!= NULL
) {
1750 if (cmd_ctx
->session
->kernel_session
->metadata
== NULL
) {
1751 DBG("Open kernel metadata");
1752 ret
= kernel_open_metadata(cmd_ctx
->session
->kernel_session
,
1753 cmd_ctx
->session
->path
);
1755 ret
= LTTCOMM_KERN_META_FAIL
;
1760 if (cmd_ctx
->session
->kernel_session
->metadata_stream_fd
== 0) {
1761 DBG("Opening kernel metadata stream");
1762 if (cmd_ctx
->session
->kernel_session
->metadata_stream_fd
== 0) {
1763 ret
= kernel_open_metadata_stream(cmd_ctx
->session
->kernel_session
);
1765 ERR("Kernel create metadata stream failed");
1766 ret
= LTTCOMM_KERN_STREAM_FAIL
;
1772 /* For each channel */
1773 cds_list_for_each_entry(chan
, &cmd_ctx
->session
->kernel_session
->channel_list
.head
, list
) {
1774 if (chan
->stream_count
== 0) {
1775 ret
= kernel_open_channel_stream(chan
);
1777 ERR("Kernel create channel stream failed");
1778 ret
= LTTCOMM_KERN_STREAM_FAIL
;
1781 /* Update the stream global counter */
1782 cmd_ctx
->session
->kernel_session
->stream_count_global
+= ret
;
1786 DBG("Start kernel tracing");
1787 ret
= kernel_start_session(cmd_ctx
->session
->kernel_session
);
1789 ERR("Kernel start session failed");
1790 ret
= LTTCOMM_KERN_START_FAIL
;
1794 ret
= start_kernel_trace(cmd_ctx
->session
->kernel_session
);
1796 ret
= LTTCOMM_KERN_START_FAIL
;
1800 /* Quiescent wait after starting trace */
1801 kernel_wait_quiescent(kernel_tracer_fd
);
1804 /* TODO: Start all UST traces */
1809 case LTTNG_STOP_TRACE
:
1811 struct ltt_kernel_channel
*chan
;
1812 /* Setup lttng message with no payload */
1813 ret
= setup_lttng_msg(cmd_ctx
, 0);
1819 if (cmd_ctx
->session
->kernel_session
!= NULL
) {
1820 DBG("Stop kernel tracing");
1822 ret
= kernel_metadata_flush_buffer(cmd_ctx
->session
->kernel_session
->metadata_stream_fd
);
1824 ERR("Kernel metadata flush failed");
1827 cds_list_for_each_entry(chan
, &cmd_ctx
->session
->kernel_session
->channel_list
.head
, list
) {
1828 ret
= kernel_flush_buffer(chan
);
1830 ERR("Kernel flush buffer error");
1834 ret
= kernel_stop_session(cmd_ctx
->session
->kernel_session
);
1836 ERR("Kernel stop session failed");
1837 ret
= LTTCOMM_KERN_STOP_FAIL
;
1841 /* Quiescent wait after stopping trace */
1842 kernel_wait_quiescent(kernel_tracer_fd
);
1845 /* TODO : User-space tracer */
1850 case LTTNG_CREATE_SESSION
:
1852 /* Setup lttng message with no payload */
1853 ret
= setup_lttng_msg(cmd_ctx
, 0);
1858 ret
= create_session(cmd_ctx
->lsm
->session_name
, cmd_ctx
->lsm
->path
);
1860 if (ret
== -EEXIST
) {
1861 ret
= LTTCOMM_EXIST_SESS
;
1863 ret
= LTTCOMM_FATAL
;
1871 case LTTNG_DESTROY_SESSION
:
1873 /* Setup lttng message with no payload */
1874 ret
= setup_lttng_msg(cmd_ctx
, 0);
1879 /* Clean kernel session teardown */
1880 teardown_kernel_session(cmd_ctx
->session
);
1882 ret
= destroy_session(cmd_ctx
->lsm
->session_name
);
1884 ret
= LTTCOMM_FATAL
;
1889 * Must notify the kernel thread here to update it's pollfd in order to
1890 * remove the channel(s)' fd just destroyed.
1892 ret
= notify_kernel_pollfd();
1894 ret
= LTTCOMM_FATAL
;
1902 case UST_CREATE_TRACE:
1904 ret = setup_lttng_msg(cmd_ctx, 0);
1909 ret = ust_create_trace(cmd_ctx);
1915 case UST_START_TRACE:
1917 ret = setup_lttng_msg(cmd_ctx, 0);
1922 ret = ust_start_trace(cmd_ctx);
1928 case UST_STOP_TRACE:
1930 ret = setup_lttng_msg(cmd_ctx, 0);
1935 ret = ust_stop_trace(cmd_ctx);
1942 case LTTNG_LIST_DOMAINS
:
1946 if (cmd_ctx
->session
->kernel_session
!= NULL
) {
1950 nb_dom
+= cmd_ctx
->session
->ust_trace_count
;
1952 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_domain
) * nb_dom
);
1957 ((struct lttng_domain
*)(cmd_ctx
->llm
->payload
))[0].type
=
1958 LTTNG_DOMAIN_KERNEL
;
1960 /* TODO: User-space tracer domain support */
1964 case LTTNG_LIST_CHANNELS
:
1967 * TODO: Only kernel channels are listed here. UST listing
1968 * is needed on lttng-ust 2.0 release.
1971 if (cmd_ctx
->session
->kernel_session
!= NULL
) {
1972 nb_chan
+= cmd_ctx
->session
->kernel_session
->channel_count
;
1975 ret
= setup_lttng_msg(cmd_ctx
,
1976 sizeof(struct lttng_channel
) * nb_chan
);
1981 list_lttng_channels(cmd_ctx
->session
,
1982 (struct lttng_channel
*)(cmd_ctx
->llm
->payload
));
1987 case LTTNG_LIST_EVENTS
:
1990 * TODO: Only kernel events are listed here. UST listing
1991 * is needed on lttng-ust 2.0 release.
1993 size_t nb_event
= 0;
1994 struct ltt_kernel_channel
*kchan
= NULL
;
1996 if (cmd_ctx
->session
->kernel_session
!= NULL
) {
1997 kchan
= get_kernel_channel_by_name(cmd_ctx
->lsm
->u
.list
.channel_name
,
1998 cmd_ctx
->session
->kernel_session
);
1999 if (kchan
== NULL
) {
2000 ret
= LTTCOMM_KERN_CHAN_NOT_FOUND
;
2003 nb_event
+= kchan
->event_count
;
2006 ret
= setup_lttng_msg(cmd_ctx
,
2007 sizeof(struct lttng_event
) * nb_event
);
2012 DBG("Listing events (%ld events)", nb_event
);
2014 list_lttng_events(kchan
,
2015 (struct lttng_event
*)(cmd_ctx
->llm
->payload
));
2020 case LTTNG_LIST_SESSIONS
:
2022 lock_session_list();
2024 if (session_list_ptr
->count
== 0) {
2025 ret
= LTTCOMM_NO_SESSION
;
2026 unlock_session_list();
2030 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_session
) *
2031 session_list_ptr
->count
);
2033 unlock_session_list();
2037 /* Filled the session array */
2038 list_lttng_sessions((struct lttng_session
*)(cmd_ctx
->llm
->payload
));
2040 unlock_session_list();
2046 /* Undefined command */
2047 ret
= setup_lttng_msg(cmd_ctx
, 0);
2056 /* Set return code */
2057 cmd_ctx
->llm
->ret_code
= ret
;
2059 if (cmd_ctx
->session
) {
2060 unlock_session(cmd_ctx
->session
);
2066 if (cmd_ctx
->llm
== NULL
) {
2067 DBG("Missing llm structure. Allocating one.");
2068 if (setup_lttng_msg(cmd_ctx
, 0) < 0) {
2072 /* Notify client of error */
2073 cmd_ctx
->llm
->ret_code
= ret
;
2076 if (cmd_ctx
->session
) {
2077 unlock_session(cmd_ctx
->session
);
2083 * This thread manage all clients request using the unix client socket for
2086 static void *thread_manage_clients(void *data
)
2089 struct command_ctx
*cmd_ctx
= NULL
;
2090 struct pollfd pollfd
[2];
2092 DBG("[thread] Manage client started");
2094 ret
= lttcomm_listen_unix_sock(client_sock
);
2099 /* First fd is always the quit pipe */
2100 pollfd
[0].fd
= thread_quit_pipe
[0];
2103 pollfd
[1].fd
= client_sock
;
2104 pollfd
[1].events
= POLLIN
;
2106 /* Notify parent pid that we are ready
2107 * to accept command for client side.
2109 if (opt_sig_parent
) {
2110 kill(ppid
, SIGCHLD
);
2114 DBG("Accepting client command ...");
2116 /* Inifinite blocking call, waiting for transmission */
2117 ret
= poll(pollfd
, 2, -1);
2119 perror("poll client thread");
2123 /* Thread quit pipe has been closed. Killing thread. */
2124 if (pollfd
[0].revents
== POLLNVAL
) {
2126 } else if (pollfd
[1].revents
== POLLERR
) {
2127 ERR("Client socket poll error");
2131 sock
= lttcomm_accept_unix_sock(client_sock
);
2136 /* Allocate context command to process the client request */
2137 cmd_ctx
= malloc(sizeof(struct command_ctx
));
2139 /* Allocate data buffer for reception */
2140 cmd_ctx
->lsm
= malloc(sizeof(struct lttcomm_session_msg
));
2141 cmd_ctx
->llm
= NULL
;
2142 cmd_ctx
->session
= NULL
;
2145 * Data is received from the lttng client. The struct
2146 * lttcomm_session_msg (lsm) contains the command and data request of
2149 DBG("Receiving data from client ...");
2150 ret
= lttcomm_recv_unix_sock(sock
, cmd_ctx
->lsm
, sizeof(struct lttcomm_session_msg
));
2155 // TODO: Validate cmd_ctx including sanity check for security purpose.
2158 * This function dispatch the work to the kernel or userspace tracer
2159 * libs and fill the lttcomm_lttng_msg data structure of all the needed
2160 * informations for the client. The command context struct contains
2161 * everything this function may needs.
2163 ret
= process_client_msg(cmd_ctx
);
2165 /* TODO: Inform client somehow of the fatal error. At this point,
2166 * ret < 0 means that a malloc failed (ENOMEM). */
2167 /* Error detected but still accept command */
2168 clean_command_ctx(&cmd_ctx
);
2172 DBG("Sending response (size: %d, retcode: %d)",
2173 cmd_ctx
->lttng_msg_size
, cmd_ctx
->llm
->ret_code
);
2174 ret
= send_unix_sock(sock
, cmd_ctx
->llm
, cmd_ctx
->lttng_msg_size
);
2176 ERR("Failed to send data back to client");
2179 clean_command_ctx(&cmd_ctx
);
2181 /* End of transmission */
2186 DBG("Client thread dying");
2194 unlink(client_unix_sock_path
);
2196 clean_command_ctx(&cmd_ctx
);
2202 * usage function on stderr
2204 static void usage(void)
2206 fprintf(stderr
, "Usage: %s OPTIONS\n\nOptions:\n", progname
);
2207 fprintf(stderr
, " -h, --help Display this usage.\n");
2208 fprintf(stderr
, " -c, --client-sock PATH Specify path for the client unix socket\n");
2209 fprintf(stderr
, " -a, --apps-sock PATH Specify path for apps unix socket\n");
2210 fprintf(stderr
, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
2211 fprintf(stderr
, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
2212 fprintf(stderr
, " -d, --daemonize Start as a daemon.\n");
2213 fprintf(stderr
, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
2214 fprintf(stderr
, " -V, --version Show version number.\n");
2215 fprintf(stderr
, " -S, --sig-parent Send SIGCHLD to parent pid to notify readiness.\n");
2216 fprintf(stderr
, " -q, --quiet No output at all.\n");
2217 fprintf(stderr
, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
2221 * daemon argument parsing
2223 static int parse_args(int argc
, char **argv
)
2227 static struct option long_options
[] = {
2228 { "client-sock", 1, 0, 'c' },
2229 { "apps-sock", 1, 0, 'a' },
2230 { "kconsumerd-cmd-sock", 1, 0, 0 },
2231 { "kconsumerd-err-sock", 1, 0, 0 },
2232 { "daemonize", 0, 0, 'd' },
2233 { "sig-parent", 0, 0, 'S' },
2234 { "help", 0, 0, 'h' },
2235 { "group", 1, 0, 'g' },
2236 { "version", 0, 0, 'V' },
2237 { "quiet", 0, 0, 'q' },
2238 { "verbose", 0, 0, 'v' },
2243 int option_index
= 0;
2244 c
= getopt_long(argc
, argv
, "dhqvVS" "a:c:g:s:E:C:", long_options
, &option_index
);
2251 fprintf(stderr
, "option %s", long_options
[option_index
].name
);
2253 fprintf(stderr
, " with arg %s\n", optarg
);
2257 snprintf(client_unix_sock_path
, PATH_MAX
, "%s", optarg
);
2260 snprintf(apps_unix_sock_path
, PATH_MAX
, "%s", optarg
);
2266 opt_tracing_group
= strdup(optarg
);
2272 fprintf(stdout
, "%s\n", VERSION
);
2278 snprintf(kconsumerd_err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
2281 snprintf(kconsumerd_cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
2287 /* Verbose level can increase using multiple -v */
2291 /* Unknown option or other error.
2292 * Error is printed by getopt, just return */
2301 * Creates the two needed socket by the daemon.
2302 * apps_sock - The communication socket for all UST apps.
2303 * client_sock - The communication of the cli tool (lttng).
2305 static int init_daemon_socket()
2310 old_umask
= umask(0);
2312 /* Create client tool unix socket */
2313 client_sock
= lttcomm_create_unix_sock(client_unix_sock_path
);
2314 if (client_sock
< 0) {
2315 ERR("Create unix sock failed: %s", client_unix_sock_path
);
2320 /* File permission MUST be 660 */
2321 ret
= chmod(client_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
2323 ERR("Set file permissions failed: %s", client_unix_sock_path
);
2328 /* Create the application unix socket */
2329 apps_sock
= lttcomm_create_unix_sock(apps_unix_sock_path
);
2330 if (apps_sock
< 0) {
2331 ERR("Create unix sock failed: %s", apps_unix_sock_path
);
2336 /* File permission MUST be 666 */
2337 ret
= chmod(apps_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IROTH
| S_IWOTH
);
2339 ERR("Set file permissions failed: %s", apps_unix_sock_path
);
2350 * Check if the global socket is available. If yes, error is returned.
2352 static int check_existing_daemon()
2356 ret
= access(client_unix_sock_path
, F_OK
);
2358 ret
= access(apps_unix_sock_path
, F_OK
);
2365 * Set the tracing group gid onto the client socket.
2367 * Race window between mkdir and chown is OK because we are going from more
2368 * permissive (root.root) to les permissive (root.tracing).
2370 static int set_permissions(void)
2375 /* Decide which group name to use */
2376 (opt_tracing_group
!= NULL
) ?
2377 (grp
= getgrnam(opt_tracing_group
)) :
2378 (grp
= getgrnam(default_tracing_group
));
2382 WARN("No tracing group detected");
2385 ERR("Missing tracing group. Aborting execution.");
2391 /* Set lttng run dir */
2392 ret
= chown(LTTNG_RUNDIR
, 0, grp
->gr_gid
);
2394 ERR("Unable to set group on " LTTNG_RUNDIR
);
2398 /* lttng client socket path */
2399 ret
= chown(client_unix_sock_path
, 0, grp
->gr_gid
);
2401 ERR("Unable to set group on %s", client_unix_sock_path
);
2405 /* kconsumerd error socket path */
2406 ret
= chown(kconsumerd_err_unix_sock_path
, 0, grp
->gr_gid
);
2408 ERR("Unable to set group on %s", kconsumerd_err_unix_sock_path
);
2412 DBG("All permissions are set");
2419 * Create the pipe used to wake up the kernel thread.
2421 static int create_kernel_poll_pipe(void)
2423 return pipe2(kernel_poll_pipe
, O_CLOEXEC
);
2427 * Create the lttng run directory needed for all global sockets and pipe.
2429 static int create_lttng_rundir(void)
2433 ret
= mkdir(LTTNG_RUNDIR
, S_IRWXU
| S_IRWXG
);
2435 if (errno
!= EEXIST
) {
2436 ERR("Unable to create " LTTNG_RUNDIR
);
2448 * Setup sockets and directory needed by the kconsumerd communication with the
2451 static int set_kconsumerd_sockets(void)
2455 if (strlen(kconsumerd_err_unix_sock_path
) == 0) {
2456 snprintf(kconsumerd_err_unix_sock_path
, PATH_MAX
, KCONSUMERD_ERR_SOCK_PATH
);
2459 if (strlen(kconsumerd_cmd_unix_sock_path
) == 0) {
2460 snprintf(kconsumerd_cmd_unix_sock_path
, PATH_MAX
, KCONSUMERD_CMD_SOCK_PATH
);
2463 ret
= mkdir(KCONSUMERD_PATH
, S_IRWXU
| S_IRWXG
);
2465 if (errno
!= EEXIST
) {
2466 ERR("Failed to create " KCONSUMERD_PATH
);
2472 /* Create the kconsumerd error unix socket */
2473 kconsumerd_err_sock
= lttcomm_create_unix_sock(kconsumerd_err_unix_sock_path
);
2474 if (kconsumerd_err_sock
< 0) {
2475 ERR("Create unix sock failed: %s", kconsumerd_err_unix_sock_path
);
2480 /* File permission MUST be 660 */
2481 ret
= chmod(kconsumerd_err_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
2483 ERR("Set file permissions failed: %s", kconsumerd_err_unix_sock_path
);
2493 * Signal handler for the daemon
2495 static void sighandler(int sig
)
2499 DBG("SIGPIPE catched");
2502 DBG("SIGINT catched");
2506 DBG("SIGTERM catched");
2517 * Setup signal handler for :
2518 * SIGINT, SIGTERM, SIGPIPE
2520 static int set_signal_handler(void)
2523 struct sigaction sa
;
2526 if ((ret
= sigemptyset(&sigset
)) < 0) {
2527 perror("sigemptyset");
2531 sa
.sa_handler
= sighandler
;
2532 sa
.sa_mask
= sigset
;
2534 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
2535 perror("sigaction");
2539 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
2540 perror("sigaction");
2544 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
2545 perror("sigaction");
2549 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
2555 * Set open files limit to unlimited. This daemon can open a large number of
2556 * file descriptors in order to consumer multiple kernel traces.
2558 static void set_ulimit(void)
2563 /* The kernel does not allowed an infinite limit for open files */
2564 lim
.rlim_cur
= 65535;
2565 lim
.rlim_max
= 65535;
2567 ret
= setrlimit(RLIMIT_NOFILE
, &lim
);
2569 perror("failed to set open files limit");
2576 int main(int argc
, char **argv
)
2580 const char *home_path
;
2582 /* Create thread quit pipe */
2583 if (init_thread_quit_pipe() < 0) {
2587 /* Parse arguments */
2589 if ((ret
= parse_args(argc
, argv
) < 0)) {
2602 /* Check if daemon is UID = 0 */
2603 is_root
= !getuid();
2606 ret
= create_lttng_rundir();
2611 if (strlen(apps_unix_sock_path
) == 0) {
2612 snprintf(apps_unix_sock_path
, PATH_MAX
,
2613 DEFAULT_GLOBAL_APPS_UNIX_SOCK
);
2616 if (strlen(client_unix_sock_path
) == 0) {
2617 snprintf(client_unix_sock_path
, PATH_MAX
,
2618 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK
);
2621 home_path
= get_home_dir();
2622 if (home_path
== NULL
) {
2623 /* TODO: Add --socket PATH option */
2624 ERR("Can't get HOME directory for sockets creation.");
2628 if (strlen(apps_unix_sock_path
) == 0) {
2629 snprintf(apps_unix_sock_path
, PATH_MAX
,
2630 DEFAULT_HOME_APPS_UNIX_SOCK
, home_path
);
2633 /* Set the cli tool unix socket path */
2634 if (strlen(client_unix_sock_path
) == 0) {
2635 snprintf(client_unix_sock_path
, PATH_MAX
,
2636 DEFAULT_HOME_CLIENT_UNIX_SOCK
, home_path
);
2640 DBG("Client socket path %s", client_unix_sock_path
);
2641 DBG("Application socket path %s", apps_unix_sock_path
);
2644 * See if daemon already exist. If any of the two socket needed by the
2645 * daemon are present, this test fails. However, if the daemon is killed
2646 * with a SIGKILL, those unix socket must be unlinked by hand.
2648 if ((ret
= check_existing_daemon()) == 0) {
2649 ERR("Already running daemon.\n");
2651 * We do not goto error because we must not cleanup() because a daemon
2652 * is already running.
2657 /* After this point, we can safely call cleanup() so goto error is used */
2660 * These actions must be executed as root. We do that *after* setting up
2661 * the sockets path because we MUST make the check for another daemon using
2662 * those paths *before* trying to set the kernel consumer sockets and init
2666 ret
= set_kconsumerd_sockets();
2671 /* Setup kernel tracer */
2672 init_kernel_tracer();
2674 /* Set ulimit for open files */
2678 if (set_signal_handler() < 0) {
2682 /* Setup the needed unix socket */
2683 if (init_daemon_socket() < 0) {
2687 /* Set credentials to socket */
2688 if (is_root
&& (set_permissions() < 0)) {
2692 /* Get parent pid if -S, --sig-parent is specified. */
2693 if (opt_sig_parent
) {
2697 /* Setup the kernel pipe for waking up the kernel thread */
2698 if (create_kernel_poll_pipe() < 0) {
2703 * Get session list pointer. This pointer MUST NOT be free().
2704 * This list is statically declared in session.c
2706 session_list_ptr
= get_session_list();
2709 /* Create thread to manage the client socket */
2710 ret
= pthread_create(&client_thread
, NULL
, thread_manage_clients
, (void *) NULL
);
2712 perror("pthread_create");
2716 /* Create thread to manage application socket */
2717 ret
= pthread_create(&apps_thread
, NULL
, thread_manage_apps
, (void *) NULL
);
2719 perror("pthread_create");
2723 /* Create kernel thread to manage kernel event */
2724 ret
= pthread_create(&kernel_thread
, NULL
, thread_manage_kernel
, (void *) NULL
);
2726 perror("pthread_create");
2730 ret
= pthread_join(client_thread
, &status
);
2732 perror("pthread_join");