2 DBG("Creating kernel event %s for channel %s.",
3 cmd_ctx->lsm->u.enable.event.name, cmd_ctx->lsm->u.enable.channel_name);
5 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 #include <semaphore.h>
35 #include <sys/socket.h>
37 #include <sys/types.h>
39 #include <sys/resource.h>
42 #include <urcu/list.h> /* URCU list library (-lurcu) */
43 #include <lttng/lttng.h>
45 #include "liblttsessiondcomm.h"
46 #include "ltt-sessiond.h"
48 #include "kernel-ctl.h"
51 #include "traceable-app.h"
52 #include "lttng-kconsumerd.h"
53 #include "libustctl.h"
57 * teardown: signal SIGTERM handler -> write into pipe. Threads waits
58 * with epoll on pipe and on other pipes/sockets for commands. Main
59 * simply waits on pthread join.
63 const char default_home_dir
[] = DEFAULT_HOME_DIR
;
64 const char default_tracing_group
[] = LTTNG_DEFAULT_TRACING_GROUP
;
65 const char default_ust_sock_dir
[] = DEFAULT_UST_SOCK_DIR
;
66 const char default_global_apps_pipe
[] = DEFAULT_GLOBAL_APPS_PIPE
;
69 int opt_verbose
; /* Not static for lttngerr.h */
70 int opt_quiet
; /* Not static for lttngerr.h */
72 const char *opt_tracing_group
;
73 static int opt_sig_parent
;
74 static int opt_daemon
;
75 static int is_root
; /* Set to 1 if the daemon is running as root */
76 static pid_t ppid
; /* Parent PID for --sig-parent option */
77 static pid_t kconsumerd_pid
;
79 static char apps_unix_sock_path
[PATH_MAX
]; /* Global application Unix socket path */
80 static char client_unix_sock_path
[PATH_MAX
]; /* Global client Unix socket path */
81 static char kconsumerd_err_unix_sock_path
[PATH_MAX
]; /* kconsumerd error Unix socket path */
82 static char kconsumerd_cmd_unix_sock_path
[PATH_MAX
]; /* kconsumerd command Unix socket path */
85 static int client_sock
;
87 static int kconsumerd_err_sock
;
88 static int kconsumerd_cmd_sock
;
89 static int kernel_tracer_fd
;
91 /* Pthread, Mutexes and Semaphores */
92 static pthread_t kconsumerd_thread
;
93 static pthread_t apps_thread
;
94 static pthread_t client_thread
;
95 static sem_t kconsumerd_sem
;
97 static pthread_mutex_t kconsumerd_pid_mutex
; /* Mutex to control kconsumerd pid assignation */
100 * teardown_kernel_session
102 * Complete teardown of a kernel session. This free all data structure
103 * related to a kernel session and update counter.
105 static void teardown_kernel_session(struct ltt_session
*session
)
107 if (session
->kernel_session
!= NULL
) {
108 DBG("Tearing down kernel session");
109 trace_destroy_kernel_session(session
->kernel_session
);
110 /* Extra precaution */
111 session
->kernel_session
= NULL
;
112 /* Decrement session count */
113 session
->kern_session_count
--;
120 * Cleanup the daemon on exit
122 static void cleanup()
126 struct ltt_session
*sess
;
131 MSG("\n%c[%d;%dm*** assert failed *** ==> %c[%dm", 27,1,31,27,0);
132 MSG("%c[%d;%dmMatthew, BEET driven development works!%c[%dm",27,1,33,27,0);
135 /* Stopping all threads */
136 DBG("Terminating all threads");
137 pthread_cancel(client_thread
);
138 pthread_cancel(apps_thread
);
139 if (kconsumerd_pid
!= 0) {
140 pthread_cancel(kconsumerd_thread
);
143 DBG("Unlinking all unix socket");
144 unlink(client_unix_sock_path
);
145 unlink(apps_unix_sock_path
);
146 unlink(kconsumerd_err_unix_sock_path
);
148 DBG("Removing %s directory", LTTNG_RUNDIR
);
149 ret
= asprintf(&cmd
, "rm -rf " LTTNG_RUNDIR
);
151 ERR("asprintf failed. Something is really wrong!");
154 /* Remove lttng run directory */
157 ERR("Unable to clean " LTTNG_RUNDIR
);
160 DBG("Cleaning up all session");
161 /* Cleanup ALL session */
162 cds_list_for_each_entry(sess
, <t_session_list
.head
, list
) {
163 teardown_kernel_session(sess
);
164 // TODO complete session cleanup (including UST)
167 DBG("Closing kernel fd");
168 close(kernel_tracer_fd
);
174 * Send data on a unix socket using the liblttsessiondcomm API.
176 * Return lttcomm error code.
178 static int send_unix_sock(int sock
, void *buf
, size_t len
)
180 /* Check valid length */
185 return lttcomm_send_unix_sock(sock
, buf
, len
);
191 * Free memory of a command context structure.
193 static void clean_command_ctx(struct command_ctx
*cmd_ctx
)
195 DBG("Clean command context structure %p", cmd_ctx
);
209 * send_kconsumerd_fds
211 * Send all stream fds of the kernel session to the consumer.
213 static int send_kconsumerd_fds(int sock
, struct ltt_kernel_session
*session
)
217 struct ltt_kernel_stream
*stream
;
218 struct ltt_kernel_channel
*chan
;
219 struct lttcomm_kconsumerd_header lkh
;
220 struct lttcomm_kconsumerd_msg lkm
;
222 nb_fd
= session
->stream_count_global
;
225 lkh
.payload_size
= (nb_fd
+ 1) * sizeof(struct lttcomm_kconsumerd_msg
);
226 lkh
.cmd_type
= ADD_STREAM
;
228 DBG("Sending kconsumerd header");
230 ret
= lttcomm_send_unix_sock(sock
, &lkh
, sizeof(struct lttcomm_kconsumerd_header
));
232 perror("send kconsumerd header");
236 DBG("Sending metadata stream fd");
238 /* Send metadata stream fd first */
239 lkm
.fd
= session
->metadata_stream_fd
;
240 lkm
.state
= ACTIVE_FD
;
241 lkm
.max_sb_size
= session
->metadata
->conf
->attr
.subbuf_size
;
242 strncpy(lkm
.path_name
, session
->metadata
->pathname
, PATH_MAX
);
244 ret
= lttcomm_send_fds_unix_sock(sock
, &lkm
, &lkm
.fd
, 1, sizeof(lkm
));
246 perror("send kconsumerd fd");
250 cds_list_for_each_entry(chan
, &session
->channel_list
.head
, list
) {
251 cds_list_for_each_entry(stream
, &chan
->stream_list
.head
, list
) {
253 lkm
.state
= stream
->state
;
254 lkm
.max_sb_size
= chan
->channel
->attr
.subbuf_size
;
255 strncpy(lkm
.path_name
, stream
->pathname
, PATH_MAX
);
257 DBG("Sending fd %d to kconsumerd", lkm
.fd
);
259 ret
= lttcomm_send_fds_unix_sock(sock
, &lkm
, &lkm
.fd
, 1, sizeof(lkm
));
261 perror("send kconsumerd fd");
267 DBG("Kconsumerd fds sent");
278 * Create the trace output directory.
280 static int create_trace_dir(struct ltt_kernel_session
*session
)
283 struct ltt_kernel_channel
*chan
;
285 /* Create all channel directories */
286 cds_list_for_each_entry(chan
, &session
->channel_list
.head
, list
) {
287 DBG("Creating trace directory at %s", chan
->pathname
);
288 // TODO: recursive create dir
289 ret
= mkdir(chan
->pathname
, S_IRWXU
| S_IRWXG
);
292 perror("mkdir trace path");
308 * Return a socket connected to the libust communication socket
309 * of the application identified by the pid.
311 * If the pid is not found in the traceable list,
312 * return -1 to indicate error.
314 static int ust_connect_app(pid_t pid
)
317 struct ltt_traceable_app
*lta
;
319 DBG("Connect to application pid %d", pid
);
321 lta
= find_app_by_pid(pid
);
324 DBG("Application pid %d not found", pid
);
328 sock
= ustctl_connect_pid(lta
->pid
);
330 ERR("Fail connecting to the PID %d", pid
);
339 * Notify apps by writing 42 to a named pipe using name.
340 * Every applications waiting for a ltt-sessiond will be notified
341 * and re-register automatically to the session daemon.
343 * Return open or write error value.
345 static int notify_apps(const char *name
)
350 DBG("Notify the global application pipe");
352 /* Try opening the global pipe */
353 fd
= open(name
, O_WRONLY
);
358 /* Notify by writing on the pipe */
359 ret
= write(fd
, "42", 2);
371 * Setup the outgoing data buffer for the response (llm) by allocating the
372 * right amount of memory and copying the original information from the lsm
375 * Return total size of the buffer pointed by buf.
377 static int setup_lttng_msg(struct command_ctx
*cmd_ctx
, size_t size
)
383 cmd_ctx
->llm
= malloc(sizeof(struct lttcomm_lttng_msg
) + buf_size
);
384 if (cmd_ctx
->llm
== NULL
) {
390 /* Copy common data */
391 cmd_ctx
->llm
->cmd_type
= cmd_ctx
->lsm
->cmd_type
;
392 cmd_ctx
->llm
->pid
= cmd_ctx
->lsm
->pid
;
394 cmd_ctx
->llm
->data_size
= size
;
395 cmd_ctx
->lttng_msg_size
= sizeof(struct lttcomm_lttng_msg
) + buf_size
;
404 * thread_manage_kconsumerd
406 * This thread manage the kconsumerd error sent
407 * back to the session daemon.
409 static void *thread_manage_kconsumerd(void *data
)
412 enum lttcomm_return_code code
;
414 DBG("[thread] Manage kconsumerd started");
416 ret
= lttcomm_listen_unix_sock(kconsumerd_err_sock
);
421 sock
= lttcomm_accept_unix_sock(kconsumerd_err_sock
);
426 /* Getting status code from kconsumerd */
427 ret
= lttcomm_recv_unix_sock(sock
, &code
, sizeof(enum lttcomm_return_code
));
432 if (code
== KCONSUMERD_COMMAND_SOCK_READY
) {
433 kconsumerd_cmd_sock
= lttcomm_connect_unix_sock(kconsumerd_cmd_unix_sock_path
);
434 if (kconsumerd_cmd_sock
< 0) {
435 sem_post(&kconsumerd_sem
);
436 perror("kconsumerd connect");
439 /* Signal condition to tell that the kconsumerd is ready */
440 sem_post(&kconsumerd_sem
);
441 DBG("Kconsumerd command socket ready");
443 DBG("Kconsumerd error when waiting for SOCK_READY : %s",
444 lttcomm_get_readable_code(-code
));
448 /* Wait for any kconsumerd error */
449 ret
= lttcomm_recv_unix_sock(sock
, &code
, sizeof(enum lttcomm_return_code
));
451 ERR("Kconsumerd closed the command socket");
455 ERR("Kconsumerd return code : %s", lttcomm_get_readable_code(-code
));
459 DBG("Kconsumerd thread dying");
466 * This thread manage the application socket communication
468 static void *thread_manage_apps(void *data
)
472 /* TODO: Something more elegant is needed but fine for now */
473 /* FIXME: change all types to either uint8_t, uint32_t, uint64_t
474 * for 32-bit vs 64-bit compat processes. */
475 /* replicate in ust with version number */
477 int reg
; /* 1:register, 0:unregister */
482 DBG("[thread] Manage apps started");
484 ret
= lttcomm_listen_unix_sock(apps_sock
);
489 /* Notify all applications to register */
490 notify_apps(default_global_apps_pipe
);
493 DBG("Accepting application registration");
494 /* Blocking call, waiting for transmission */
495 sock
= lttcomm_accept_unix_sock(apps_sock
);
500 /* Basic recv here to handle the very simple data
501 * that the libust send to register (reg_msg).
503 ret
= recv(sock
, ®_msg
, sizeof(reg_msg
), 0);
509 /* Add application to the global traceable list */
510 if (reg_msg
.reg
== 1) {
512 ret
= register_traceable_app(reg_msg
.pid
, reg_msg
.uid
);
514 /* register_traceable_app only return an error with
515 * ENOMEM. At this point, we better stop everything.
521 unregister_traceable_app(reg_msg
.pid
);
531 * spawn_kconsumerd_thread
533 * Start the thread_manage_kconsumerd. This must be done after a kconsumerd
534 * exec or it will fails.
536 static int spawn_kconsumerd_thread(void)
540 /* Setup semaphore */
541 sem_init(&kconsumerd_sem
, 0, 0);
543 ret
= pthread_create(&kconsumerd_thread
, NULL
, thread_manage_kconsumerd
, (void *) NULL
);
545 perror("pthread_create kconsumerd");
549 /* Wait for the kconsumerd thread to be ready */
550 sem_wait(&kconsumerd_sem
);
552 if (kconsumerd_pid
== 0) {
553 ERR("Kconsumerd did not start");
560 ret
= LTTCOMM_KERN_CONSUMER_FAIL
;
567 * Fork and exec a kernel consumer daemon (kconsumerd).
569 * NOTE: It is very important to fork a kconsumerd BEFORE opening any kernel
570 * file descriptor using the libkernelctl or kernel-ctl functions. So, a
571 * kernel consumer MUST only be spawned before creating a kernel session.
573 * Return pid if successful else -1.
575 static pid_t
spawn_kconsumerd(void)
580 DBG("Spawning kconsumerd");
587 execlp("kconsumerd", "kconsumerd", "--verbose", NULL
);
589 perror("kernel start consumer exec");
592 } else if (pid
> 0) {
596 perror("kernel start consumer fork");
608 * Spawn the kconsumerd daemon and session daemon thread.
610 static int start_kconsumerd(void)
614 pthread_mutex_lock(&kconsumerd_pid_mutex
);
615 if (kconsumerd_pid
!= 0) {
619 ret
= spawn_kconsumerd();
621 ERR("Spawning kconsumerd failed");
622 ret
= LTTCOMM_KERN_CONSUMER_FAIL
;
623 pthread_mutex_unlock(&kconsumerd_pid_mutex
);
627 /* Setting up the global kconsumerd_pid */
628 kconsumerd_pid
= ret
;
629 pthread_mutex_unlock(&kconsumerd_pid_mutex
);
631 DBG("Kconsumerd pid %d", ret
);
633 DBG("Spawning kconsumerd thread");
634 ret
= spawn_kconsumerd_thread();
636 ERR("Fatal error spawning kconsumerd thread");
641 pthread_mutex_unlock(&kconsumerd_pid_mutex
);
651 * Setup necessary data for kernel tracer action.
653 static void init_kernel_tracer(void)
655 /* Set the global kernel tracer fd */
656 kernel_tracer_fd
= open(DEFAULT_KERNEL_TRACER_PATH
, O_RDWR
);
657 if (kernel_tracer_fd
< 0) {
658 WARN("No kernel tracer available");
659 kernel_tracer_fd
= 0;
662 DBG("Kernel tracer fd %d", kernel_tracer_fd
);
668 * Start tracing by creating trace directory and sending FDs to the kernel
671 static int start_kernel_trace(struct ltt_kernel_session
*session
)
675 /* Create trace directory */
676 ret
= create_trace_dir(session
);
678 if (ret
== -EEXIST
) {
679 ret
= LTTCOMM_KERN_DIR_EXIST
;
681 ret
= LTTCOMM_KERN_DIR_FAIL
;
686 if (session
->kconsumer_fds_sent
== 0) {
687 ret
= send_kconsumerd_fds(kconsumerd_cmd_sock
, session
);
689 ERR("Send kconsumerd fds failed");
690 ret
= LTTCOMM_KERN_CONSUMER_FAIL
;
694 session
->kconsumer_fds_sent
= 1;
702 * init_default_channel
704 * Allocate a channel structure and fill it.
706 static struct lttng_channel
*init_default_channel(void)
708 struct lttng_channel
*chan
;
710 chan
= malloc(sizeof(struct lttng_channel
));
712 perror("init channel malloc");
716 if (snprintf(chan
->name
, NAME_MAX
, DEFAULT_CHANNEL_NAME
) < 0) {
717 perror("snprintf defautl channel name");
721 chan
->attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
722 chan
->attr
.subbuf_size
= DEFAULT_CHANNEL_SUBBUF_SIZE
;
723 chan
->attr
.num_subbuf
= DEFAULT_CHANNEL_SUBBUF_NUM
;
724 chan
->attr
.switch_timer_interval
= DEFAULT_CHANNEL_SWITCH_TIMER
;
725 chan
->attr
.read_timer_interval
= DEFAULT_CHANNEL_READ_TIMER
;
732 * create_kernel_session
734 * Create a kernel tracer session then create the default channel.
736 static int create_kernel_session(struct ltt_session
*session
)
739 struct lttng_channel
*chan
;
741 DBG("Creating kernel session");
743 ret
= kernel_create_session(session
, kernel_tracer_fd
);
745 ret
= LTTCOMM_KERN_SESS_FAIL
;
749 chan
= init_default_channel();
755 DBG("Creating default kernel channel %s", DEFAULT_CHANNEL_NAME
);
757 ret
= kernel_create_channel(session
->kernel_session
, chan
);
759 ret
= LTTCOMM_KERN_CHAN_FAIL
;
770 * Process the command requested by the lttng client within the command
771 * context structure. This function make sure that the return structure (llm)
772 * is set and ready for transmission before returning.
774 * Return any error encountered or 0 for success.
776 static int process_client_msg(struct command_ctx
*cmd_ctx
)
780 DBG("Processing client command %d", cmd_ctx
->lsm
->cmd_type
);
782 /* Listing commands don't need a session */
783 switch (cmd_ctx
->lsm
->cmd_type
) {
784 case LTTNG_CREATE_SESSION
:
785 case LTTNG_LIST_SESSIONS
:
786 case LTTNG_LIST_EVENTS
:
787 case LTTNG_KERNEL_LIST_EVENTS
:
788 case LTTNG_LIST_TRACEABLE_APPS
:
791 DBG("Getting session %s by name", cmd_ctx
->lsm
->session_name
);
792 cmd_ctx
->session
= find_session_by_name(cmd_ctx
->lsm
->session_name
);
793 if (cmd_ctx
->session
== NULL
) {
794 /* If session name not found */
795 if (cmd_ctx
->lsm
->session_name
!= NULL
) {
796 ret
= LTTCOMM_SESS_NOT_FOUND
;
797 } else { /* If no session name specified */
798 ret
= LTTCOMM_SELECT_SESS
;
806 * Check kernel command for kernel session.
808 switch (cmd_ctx
->lsm
->cmd_type
) {
809 case LTTNG_KERNEL_CREATE_CHANNEL
:
810 case LTTNG_KERNEL_DISABLE_ALL_EVENT
:
811 case LTTNG_KERNEL_DISABLE_CHANNEL
:
812 case LTTNG_KERNEL_DISABLE_EVENT
:
813 case LTTNG_KERNEL_ENABLE_ALL_EVENT
:
814 case LTTNG_KERNEL_ENABLE_CHANNEL
:
815 case LTTNG_KERNEL_ENABLE_EVENT
:
816 case LTTNG_KERNEL_LIST_EVENTS
:
817 /* Kernel tracer check */
818 if (kernel_tracer_fd
== 0) {
819 init_kernel_tracer();
820 if (kernel_tracer_fd
== 0) {
821 ret
= LTTCOMM_KERN_NA
;
826 /* Need a session for kernel command */
827 if (cmd_ctx
->lsm
->cmd_type
!= LTTNG_KERNEL_LIST_EVENTS
&&
828 cmd_ctx
->session
->kernel_session
== NULL
) {
829 ret
= create_kernel_session(cmd_ctx
->session
);
831 ret
= LTTCOMM_KERN_SESS_FAIL
;
835 if (kconsumerd_pid
== 0) {
836 ret
= start_kconsumerd();
844 /* Connect to ust apps if available pid */
845 if (cmd_ctx
->lsm
->pid
> 0) {
846 /* Connect to app using ustctl API */
847 cmd_ctx
->ust_sock
= ust_connect_app(cmd_ctx
->lsm
->pid
);
848 if (cmd_ctx
->ust_sock
< 0) {
849 ret
= LTTCOMM_NO_TRACEABLE
;
854 /* Process by command type */
855 switch (cmd_ctx
->lsm
->cmd_type
) {
856 case LTTNG_KERNEL_CREATE_CHANNEL
:
858 /* Setup lttng message with no payload */
859 ret
= setup_lttng_msg(cmd_ctx
, 0);
865 DBG("Creating kernel channel");
867 ret
= kernel_create_channel(cmd_ctx
->session
->kernel_session
,
868 &cmd_ctx
->lsm
->u
.channel
.chan
);
870 ret
= LTTCOMM_KERN_CHAN_FAIL
;
877 case LTTNG_KERNEL_ENABLE_EVENT
:
880 struct ltt_kernel_channel
*chan
;
882 /* Setup lttng message with no payload */
883 ret
= setup_lttng_msg(cmd_ctx
, 0);
888 /* Get channel by name and create event for that channel */
889 cds_list_for_each_entry(chan
, &cmd_ctx
->session
->kernel_session
->channel_list
.head
, list
) {
890 if (strcmp(cmd_ctx
->lsm
->u
.enable
.channel_name
, chan
->channel
->name
) == 0) {
891 DBG("Creating kernel event %s for channel %s.",
892 cmd_ctx
->lsm
->u
.enable
.event
.name
, cmd_ctx
->lsm
->u
.enable
.channel_name
);
894 ret
= kernel_create_event(chan
, &cmd_ctx
->lsm
->u
.enable
.event
);
896 ret
= LTTCOMM_KERN_ENABLE_FAIL
;
905 ret
= LTTCOMM_KERN_CHAN_NOT_FOUND
;
907 kernel_wait_quiescent(kernel_tracer_fd
);
912 case LTTNG_KERNEL_ENABLE_ALL_EVENT
:
914 int pos
, size
, found
;
915 char *event_list
, *event
, *ptr
;
916 struct ltt_kernel_channel
*chan
;
917 struct lttng_event ev
;
919 /* Setup lttng message with no payload */
920 ret
= setup_lttng_msg(cmd_ctx
, 0);
925 DBG("Enabling all kernel event");
927 size
= kernel_list_events(kernel_tracer_fd
, &event_list
);
929 ret
= LTTCOMM_KERN_LIST_FAIL
;
933 /* Get channel by name and create event for that channel */
934 cds_list_for_each_entry(chan
, &cmd_ctx
->session
->kernel_session
->channel_list
.head
, list
) {
935 if (strcmp(cmd_ctx
->lsm
->u
.enable
.channel_name
, chan
->channel
->name
) == 0) {
942 ret
= LTTCOMM_KERN_CHAN_NOT_FOUND
;
947 while ((size
= sscanf(ptr
, "event { name = %m[^;]; };%n\n", &event
, &pos
)) == 1) {
948 strncpy(ev
.name
, event
, LTTNG_SYM_NAME_LEN
);
949 /* Default event type for enable all */
950 ev
.type
= LTTNG_EVENT_TRACEPOINTS
;
951 /* Enable each single tracepoint event */
952 ret
= kernel_create_event(chan
, &ev
);
954 ret
= LTTCOMM_KERN_ENABLE_FAIL
;
957 /* Move pointer to the next line */
964 /* Quiescent wait after event enable */
965 kernel_wait_quiescent(kernel_tracer_fd
);
969 case LTTNG_KERNEL_LIST_EVENTS
:
974 DBG("Listing kernel events");
976 size
= kernel_list_events(kernel_tracer_fd
, &event_list
);
978 ret
= LTTCOMM_KERN_LIST_FAIL
;
983 * Setup lttng message with payload size set to the event list size in
984 * bytes and then copy list into the llm payload.
986 ret
= setup_lttng_msg(cmd_ctx
, size
);
991 /* Copy event list into message payload */
992 memcpy(cmd_ctx
->llm
->payload
, event_list
, size
);
999 case LTTNG_START_TRACE
:
1001 struct ltt_kernel_channel
*chan
;
1003 /* Setup lttng message with no payload */
1004 ret
= setup_lttng_msg(cmd_ctx
, 0);
1009 /* Kernel tracing */
1010 if (cmd_ctx
->session
->kernel_session
!= NULL
) {
1011 if (cmd_ctx
->session
->kernel_session
->metadata
== NULL
) {
1012 DBG("Open kernel metadata");
1013 ret
= kernel_open_metadata(cmd_ctx
->session
->kernel_session
);
1015 ret
= LTTCOMM_KERN_META_FAIL
;
1020 if (cmd_ctx
->session
->kernel_session
->metadata_stream_fd
== 0) {
1021 DBG("Opening kernel metadata stream");
1022 if (cmd_ctx
->session
->kernel_session
->metadata_stream_fd
== 0) {
1023 ret
= kernel_open_metadata_stream(cmd_ctx
->session
->kernel_session
);
1025 ERR("Kernel create metadata stream failed");
1026 ret
= LTTCOMM_KERN_STREAM_FAIL
;
1032 /* For each channel */
1033 cds_list_for_each_entry(chan
, &cmd_ctx
->session
->kernel_session
->channel_list
.head
, list
) {
1034 if (chan
->stream_count
== 0) {
1035 ret
= kernel_open_channel_stream(chan
);
1037 ERR("Kernel create channel stream failed");
1038 ret
= LTTCOMM_KERN_STREAM_FAIL
;
1041 /* Update the stream global counter */
1042 cmd_ctx
->session
->kernel_session
->stream_count_global
+= ret
;
1046 DBG("Start kernel tracing");
1047 ret
= kernel_start_session(cmd_ctx
->session
->kernel_session
);
1049 ERR("Kernel start session failed");
1050 ret
= LTTCOMM_KERN_START_FAIL
;
1054 ret
= start_kernel_trace(cmd_ctx
->session
->kernel_session
);
1056 ret
= LTTCOMM_KERN_START_FAIL
;
1060 /* Quiescent wait after starting trace */
1061 kernel_wait_quiescent(kernel_tracer_fd
);
1064 /* TODO: Start all UST traces */
1069 case LTTNG_STOP_TRACE
:
1071 struct ltt_kernel_channel
*chan
;
1072 /* Setup lttng message with no payload */
1073 ret
= setup_lttng_msg(cmd_ctx
, 0);
1079 if (cmd_ctx
->session
->kernel_session
!= NULL
) {
1080 DBG("Stop kernel tracing");
1082 ret
= kernel_metadata_flush_buffer(cmd_ctx
->session
->kernel_session
->metadata_stream_fd
);
1084 ERR("Kernel metadata flush failed");
1087 cds_list_for_each_entry(chan
, &cmd_ctx
->session
->kernel_session
->channel_list
.head
, list
) {
1088 ret
= kernel_flush_buffer(chan
);
1090 ERR("Kernel flush buffer error");
1094 ret
= kernel_stop_session(cmd_ctx
->session
->kernel_session
);
1096 ERR("Kernel stop session failed");
1097 ret
= LTTCOMM_KERN_STOP_FAIL
;
1101 /* Quiescent wait after stopping trace */
1102 kernel_wait_quiescent(kernel_tracer_fd
);
1105 /* TODO : User-space tracer */
1110 case LTTNG_CREATE_SESSION
:
1112 /* Setup lttng message with no payload */
1113 ret
= setup_lttng_msg(cmd_ctx
, 0);
1118 ret
= create_session(cmd_ctx
->lsm
->session_name
, cmd_ctx
->lsm
->path
);
1120 if (ret
== -EEXIST
) {
1121 ret
= LTTCOMM_EXIST_SESS
;
1123 ret
= LTTCOMM_FATAL
;
1131 case LTTNG_DESTROY_SESSION
:
1133 /* Setup lttng message with no payload */
1134 ret
= setup_lttng_msg(cmd_ctx
, 0);
1139 /* Clean kernel session teardown */
1140 teardown_kernel_session(cmd_ctx
->session
);
1142 ret
= destroy_session(cmd_ctx
->lsm
->session_name
);
1144 ret
= LTTCOMM_FATAL
;
1152 case LTTNG_LIST_TRACES:
1154 unsigned int trace_count;
1156 trace_count = get_trace_count_per_session(cmd_ctx->session);
1157 if (trace_count == 0) {
1158 ret = LTTCOMM_NO_TRACE;
1162 ret = setup_lttng_msg(cmd_ctx, sizeof(struct lttng_trace) * trace_count);
1167 get_traces_per_session(cmd_ctx->session,
1168 (struct lttng_trace *)(cmd_ctx->llm->payload));
1175 case UST_CREATE_TRACE:
1177 ret = setup_lttng_msg(cmd_ctx, 0);
1182 ret = ust_create_trace(cmd_ctx);
1189 case LTTNG_LIST_TRACEABLE_APPS
:
1191 unsigned int app_count
;
1193 app_count
= get_app_count();
1194 DBG("Traceable application count : %d", app_count
);
1195 if (app_count
== 0) {
1196 ret
= LTTCOMM_NO_APPS
;
1200 ret
= setup_lttng_msg(cmd_ctx
, sizeof(pid_t
) * app_count
);
1205 get_app_list_pids((pid_t
*)(cmd_ctx
->llm
->payload
));
1211 case UST_START_TRACE:
1213 ret = setup_lttng_msg(cmd_ctx, 0);
1218 ret = ust_start_trace(cmd_ctx);
1224 case UST_STOP_TRACE:
1226 ret = setup_lttng_msg(cmd_ctx, 0);
1231 ret = ust_stop_trace(cmd_ctx);
1238 case LTTNG_LIST_SESSIONS
:
1240 unsigned int session_count
;
1242 session_count
= get_session_count();
1243 if (session_count
== 0) {
1244 ret
= LTTCOMM_NO_SESSION
;
1248 ret
= setup_lttng_msg(cmd_ctx
, sizeof(struct lttng_session
) * session_count
);
1253 get_lttng_session((struct lttng_session
*)(cmd_ctx
->llm
->payload
));
1259 /* Undefined command */
1260 ret
= setup_lttng_msg(cmd_ctx
, 0);
1269 /* Set return code */
1270 cmd_ctx
->llm
->ret_code
= ret
;
1275 if (cmd_ctx
->llm
== NULL
) {
1276 DBG("Missing llm structure. Allocating one.");
1277 if (setup_lttng_msg(cmd_ctx
, 0) < 0) {
1281 /* Notify client of error */
1282 cmd_ctx
->llm
->ret_code
= ret
;
1289 * thread_manage_clients
1291 * This thread manage all clients request using the unix
1292 * client socket for communication.
1294 static void *thread_manage_clients(void *data
)
1297 struct command_ctx
*cmd_ctx
;
1299 DBG("[thread] Manage client started");
1301 ret
= lttcomm_listen_unix_sock(client_sock
);
1306 /* Notify parent pid that we are ready
1307 * to accept command for client side.
1309 if (opt_sig_parent
) {
1310 kill(ppid
, SIGCHLD
);
1314 /* Blocking call, waiting for transmission */
1315 DBG("Accepting client command ...");
1316 sock
= lttcomm_accept_unix_sock(client_sock
);
1321 /* Allocate context command to process the client request */
1322 cmd_ctx
= malloc(sizeof(struct command_ctx
));
1324 /* Allocate data buffer for reception */
1325 cmd_ctx
->lsm
= malloc(sizeof(struct lttcomm_session_msg
));
1326 cmd_ctx
->llm
= NULL
;
1327 cmd_ctx
->session
= NULL
;
1330 * Data is received from the lttng client. The struct
1331 * lttcomm_session_msg (lsm) contains the command and data request of
1334 DBG("Receiving data from client ...");
1335 ret
= lttcomm_recv_unix_sock(sock
, cmd_ctx
->lsm
, sizeof(struct lttcomm_session_msg
));
1340 // TODO: Validate cmd_ctx including sanity check for security purpose.
1343 * This function dispatch the work to the kernel or userspace tracer
1344 * libs and fill the lttcomm_lttng_msg data structure of all the needed
1345 * informations for the client. The command context struct contains
1346 * everything this function may needs.
1348 ret
= process_client_msg(cmd_ctx
);
1350 /* TODO: Inform client somehow of the fatal error. At this point,
1351 * ret < 0 means that a malloc failed (ENOMEM). */
1352 /* Error detected but still accept command */
1353 clean_command_ctx(cmd_ctx
);
1357 DBG("Sending response (size: %d, retcode: %d)",
1358 cmd_ctx
->lttng_msg_size
, cmd_ctx
->llm
->ret_code
);
1359 ret
= send_unix_sock(sock
, cmd_ctx
->llm
, cmd_ctx
->lttng_msg_size
);
1361 ERR("Failed to send data back to client");
1364 clean_command_ctx(cmd_ctx
);
1366 /* End of transmission */
1376 * usage function on stderr
1378 static void usage(void)
1380 fprintf(stderr
, "Usage: %s OPTIONS\n\nOptions:\n", progname
);
1381 fprintf(stderr
, " -h, --help Display this usage.\n");
1382 fprintf(stderr
, " -c, --client-sock PATH Specify path for the client unix socket\n");
1383 fprintf(stderr
, " -a, --apps-sock PATH Specify path for apps unix socket\n");
1384 fprintf(stderr
, " --kconsumerd-err-sock PATH Specify path for the kernel consumer error socket\n");
1385 fprintf(stderr
, " --kconsumerd-cmd-sock PATH Specify path for the kernel consumer command socket\n");
1386 fprintf(stderr
, " -d, --daemonize Start as a daemon.\n");
1387 fprintf(stderr
, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
1388 fprintf(stderr
, " -V, --version Show version number.\n");
1389 fprintf(stderr
, " -S, --sig-parent Send SIGCHLD to parent pid to notify readiness.\n");
1390 fprintf(stderr
, " -q, --quiet No output at all.\n");
1391 fprintf(stderr
, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
1395 * daemon argument parsing
1397 static int parse_args(int argc
, char **argv
)
1401 static struct option long_options
[] = {
1402 { "client-sock", 1, 0, 'c' },
1403 { "apps-sock", 1, 0, 'a' },
1404 { "kconsumerd-cmd-sock", 1, 0, 0 },
1405 { "kconsumerd-err-sock", 1, 0, 0 },
1406 { "daemonize", 0, 0, 'd' },
1407 { "sig-parent", 0, 0, 'S' },
1408 { "help", 0, 0, 'h' },
1409 { "group", 1, 0, 'g' },
1410 { "version", 0, 0, 'V' },
1411 { "quiet", 0, 0, 'q' },
1412 { "verbose", 0, 0, 'v' },
1417 int option_index
= 0;
1418 c
= getopt_long(argc
, argv
, "dhqvVS" "a:c:g:s:E:C:", long_options
, &option_index
);
1425 fprintf(stderr
, "option %s", long_options
[option_index
].name
);
1427 fprintf(stderr
, " with arg %s\n", optarg
);
1431 snprintf(client_unix_sock_path
, PATH_MAX
, "%s", optarg
);
1434 snprintf(apps_unix_sock_path
, PATH_MAX
, "%s", optarg
);
1440 opt_tracing_group
= strdup(optarg
);
1446 fprintf(stdout
, "%s\n", VERSION
);
1452 snprintf(kconsumerd_err_unix_sock_path
, PATH_MAX
, "%s", optarg
);
1455 snprintf(kconsumerd_cmd_unix_sock_path
, PATH_MAX
, "%s", optarg
);
1464 /* Unknown option or other error.
1465 * Error is printed by getopt, just return */
1474 * init_daemon_socket
1476 * Creates the two needed socket by the daemon.
1477 * apps_sock - The communication socket for all UST apps.
1478 * client_sock - The communication of the cli tool (lttng).
1480 static int init_daemon_socket()
1485 old_umask
= umask(0);
1487 /* Create client tool unix socket */
1488 client_sock
= lttcomm_create_unix_sock(client_unix_sock_path
);
1489 if (client_sock
< 0) {
1490 ERR("Create unix sock failed: %s", client_unix_sock_path
);
1495 /* File permission MUST be 660 */
1496 ret
= chmod(client_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
1498 ERR("Set file permissions failed: %s", client_unix_sock_path
);
1503 /* Create the application unix socket */
1504 apps_sock
= lttcomm_create_unix_sock(apps_unix_sock_path
);
1505 if (apps_sock
< 0) {
1506 ERR("Create unix sock failed: %s", apps_unix_sock_path
);
1511 /* File permission MUST be 666 */
1512 ret
= chmod(apps_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IROTH
| S_IWOTH
);
1514 ERR("Set file permissions failed: %s", apps_unix_sock_path
);
1525 * check_existing_daemon
1527 * Check if the global socket is available.
1528 * If yes, error is returned.
1530 static int check_existing_daemon()
1534 ret
= access(client_unix_sock_path
, F_OK
);
1536 ret
= access(apps_unix_sock_path
, F_OK
);
1545 * Return pointer to home directory path using
1546 * the env variable HOME.
1550 static const char *get_home_dir(void)
1552 const char *home_path
;
1554 if ((home_path
= (const char *) getenv("HOME")) == NULL
) {
1555 home_path
= default_home_dir
;
1564 * Set the tracing group gid onto the client socket.
1566 * Race window between mkdir and chown is OK because we are going from
1567 * less permissive (root.root) to more permissive (root.tracing).
1569 static int set_permissions(void)
1574 /* Decide which group name to use */
1575 (opt_tracing_group
!= NULL
) ?
1576 (grp
= getgrnam(opt_tracing_group
)) :
1577 (grp
= getgrnam(default_tracing_group
));
1580 ERR("Missing tracing group. Aborting execution.\n");
1585 /* Set lttng run dir */
1586 ret
= chown(LTTNG_RUNDIR
, 0, grp
->gr_gid
);
1588 ERR("Unable to set group on " LTTNG_RUNDIR
);
1592 /* lttng client socket path */
1593 ret
= chown(client_unix_sock_path
, 0, grp
->gr_gid
);
1595 ERR("Unable to set group on %s", client_unix_sock_path
);
1599 /* kconsumerd error socket path */
1600 ret
= chown(kconsumerd_err_unix_sock_path
, 0, grp
->gr_gid
);
1602 ERR("Unable to set group on %s", kconsumerd_err_unix_sock_path
);
1606 DBG("All permissions are set");
1613 * create_lttng_rundir
1615 * Create the lttng run directory needed for all
1616 * global sockets and pipe.
1618 static int create_lttng_rundir(void)
1622 ret
= mkdir(LTTNG_RUNDIR
, S_IRWXU
| S_IRWXG
);
1624 if (errno
!= EEXIST
) {
1625 ERR("Unable to create " LTTNG_RUNDIR
);
1637 * set_kconsumerd_sockets
1639 * Setup sockets and directory needed by the kconsumerd
1640 * communication with the session daemon.
1642 static int set_kconsumerd_sockets(void)
1646 if (strlen(kconsumerd_err_unix_sock_path
) == 0) {
1647 snprintf(kconsumerd_err_unix_sock_path
, PATH_MAX
, KCONSUMERD_ERR_SOCK_PATH
);
1650 if (strlen(kconsumerd_cmd_unix_sock_path
) == 0) {
1651 snprintf(kconsumerd_cmd_unix_sock_path
, PATH_MAX
, KCONSUMERD_CMD_SOCK_PATH
);
1654 ret
= mkdir(KCONSUMERD_PATH
, S_IRWXU
| S_IRWXG
);
1656 if (errno
!= EEXIST
) {
1657 ERR("Failed to create " KCONSUMERD_PATH
);
1663 /* Create the kconsumerd error unix socket */
1664 kconsumerd_err_sock
= lttcomm_create_unix_sock(kconsumerd_err_unix_sock_path
);
1665 if (kconsumerd_err_sock
< 0) {
1666 ERR("Create unix sock failed: %s", kconsumerd_err_unix_sock_path
);
1671 /* File permission MUST be 660 */
1672 ret
= chmod(kconsumerd_err_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
1674 ERR("Set file permissions failed: %s", kconsumerd_err_unix_sock_path
);
1686 * Signal handler for the daemon
1688 static void sighandler(int sig
)
1692 DBG("SIGPIPE catched");
1695 DBG("SIGINT catched");
1699 DBG("SIGTERM catched");
1710 * set_signal_handler
1712 * Setup signal handler for :
1713 * SIGINT, SIGTERM, SIGPIPE
1715 static int set_signal_handler(void)
1718 struct sigaction sa
;
1721 if ((ret
= sigemptyset(&sigset
)) < 0) {
1722 perror("sigemptyset");
1726 sa
.sa_handler
= sighandler
;
1727 sa
.sa_mask
= sigset
;
1729 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
1730 perror("sigaction");
1734 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
1735 perror("sigaction");
1739 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
1740 perror("sigaction");
1744 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
1752 * Set open files limit to unlimited. This daemon can open a large number of
1753 * file descriptors in order to consumer multiple kernel traces.
1755 static void set_ulimit(void)
1760 lim
.rlim_cur
= 65535;
1761 lim
.rlim_max
= 65535;
1763 ret
= setrlimit(RLIMIT_NOFILE
, &lim
);
1765 perror("failed to set open files limit");
1772 int main(int argc
, char **argv
)
1777 /* Parse arguments */
1779 if ((ret
= parse_args(argc
, argv
) < 0)) {
1792 /* Check if daemon is UID = 0 */
1793 is_root
= !getuid();
1795 /* Set all sockets path */
1797 ret
= create_lttng_rundir();
1802 if (strlen(apps_unix_sock_path
) == 0) {
1803 snprintf(apps_unix_sock_path
, PATH_MAX
,
1804 DEFAULT_GLOBAL_APPS_UNIX_SOCK
);
1807 if (strlen(client_unix_sock_path
) == 0) {
1808 snprintf(client_unix_sock_path
, PATH_MAX
,
1809 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK
);
1812 ret
= set_kconsumerd_sockets();
1817 /* Setup kernel tracer */
1818 init_kernel_tracer();
1820 /* Set ulimit for open files */
1823 if (strlen(apps_unix_sock_path
) == 0) {
1824 snprintf(apps_unix_sock_path
, PATH_MAX
,
1825 DEFAULT_HOME_APPS_UNIX_SOCK
, get_home_dir());
1828 /* Set the cli tool unix socket path */
1829 if (strlen(client_unix_sock_path
) == 0) {
1830 snprintf(client_unix_sock_path
, PATH_MAX
,
1831 DEFAULT_HOME_CLIENT_UNIX_SOCK
, get_home_dir());
1835 DBG("Client socket path %s", client_unix_sock_path
);
1836 DBG("Application socket path %s", apps_unix_sock_path
);
1838 /* See if daemon already exist. If any of the two
1839 * socket needed by the daemon are present, this test fails
1841 if ((ret
= check_existing_daemon()) == 0) {
1842 ERR("Already running daemon.\n");
1843 /* We do not goto error because we must not
1844 * cleanup() because a daemon is already running.
1849 if (set_signal_handler() < 0) {
1853 /* Setup the needed unix socket */
1854 if (init_daemon_socket() < 0) {
1858 /* Set credentials to socket */
1859 if (is_root
&& (set_permissions() < 0)) {
1863 /* Get parent pid if -S, --sig-parent is specified. */
1864 if (opt_sig_parent
) {
1869 /* Create thread to manage the client socket */
1870 ret
= pthread_create(&client_thread
, NULL
, thread_manage_clients
, (void *) NULL
);
1872 perror("pthread_create");
1876 /* Create thread to manage application socket */
1877 ret
= pthread_create(&apps_thread
, NULL
, thread_manage_apps
, (void *) NULL
);
1879 perror("pthread_create");
1883 ret
= pthread_join(client_thread
, &status
);
1885 perror("pthread_join");