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; either version 2
7 * of the License, or (at your option) any later version.
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.
31 #include <sys/socket.h>
33 #include <sys/types.h>
36 #include <urcu/list.h> /* URCU list library (-lurcu) */
37 #include <ust/ustctl.h> /* UST control lib (-lust) */
38 #include <lttng/liblttngctl.h>
40 #include "liblttsessiondcomm.h"
41 #include "ltt-sessiond.h"
45 #include "traceable-app.h"
48 const char default_home_dir
[] = DEFAULT_HOME_DIR
;
49 const char default_tracing_group
[] = DEFAULT_TRACING_GROUP
;
50 const char default_ust_sock_dir
[] = DEFAULT_UST_SOCK_DIR
;
51 const char default_global_apps_pipe
[] = DEFAULT_GLOBAL_APPS_PIPE
;
53 /* Static functions */
54 static int check_existing_daemon(void);
55 static int connect_app(pid_t pid
);
56 static int init_daemon_socket(void);
57 static int notify_apps(const char* name
);
58 static int process_client_msg(int sock
, struct lttcomm_session_msg
*);
59 static int send_unix_sock(int sock
, void *buf
, size_t len
);
60 static int set_signal_handler(void);
61 static int set_socket_perms(void);
62 static int setup_data_buffer(char **buf
, size_t size
, struct lttcomm_lttng_msg
*llm
);
63 static void cleanup(void);
64 static void copy_common_data(struct lttcomm_lttng_msg
*llm
, struct lttcomm_session_msg
*lsm
);
65 static void sighandler(int sig
);
67 static void *thread_manage_clients(void *data
);
68 static void *thread_manage_apps(void *data
);
74 const char *opt_tracing_group
;
75 static int opt_sig_parent
;
76 static int opt_daemon
;
77 static int is_root
; /* Set to 1 if the daemon is running as root */
80 static char apps_unix_sock_path
[PATH_MAX
]; /* Global application Unix socket path */
81 static char client_unix_sock_path
[PATH_MAX
]; /* Global client Unix socket path */
83 static int client_socket
;
84 static int apps_socket
;
86 static struct ltt_session
*current_session
;
91 * This thread manage the application socket communication
93 static void *thread_manage_apps(void *data
)
97 /* TODO: Something more elegant is needed but fine for now */
99 int reg
; /* 1:register, 0:unregister */
104 DBG("[thread] Manage apps started");
106 /* Notify all applications to register */
107 notify_apps(default_global_apps_pipe
);
109 ret
= lttcomm_listen_unix_sock(apps_socket
);
115 /* Blocking call, waiting for transmission */
116 sock
= lttcomm_accept_unix_sock(apps_socket
);
121 /* Basic recv here to handle the very simple data
122 * that the libust send to register (reg_msg).
124 ret
= recv(sock
, ®_msg
, sizeof(reg_msg
), 0);
130 /* Add application to the global traceable list */
131 if (reg_msg
.reg
== 1) {
133 ret
= register_traceable_app(reg_msg
.pid
, reg_msg
.uid
);
135 /* register_traceable_app only return an error with
136 * ENOMEM. At this point, we better stop everything.
142 unregister_traceable_app(reg_msg
.pid
);
152 * thread_manage_clients
154 * This thread manage all clients request using the unix
155 * client socket for communication.
157 static void *thread_manage_clients(void *data
)
160 struct lttcomm_session_msg lsm
;
162 DBG("[thread] Manage client started");
164 ret
= lttcomm_listen_unix_sock(client_socket
);
169 /* Notify parent pid that we are ready
170 * to accept command for client side.
172 if (opt_sig_parent
) {
177 /* Blocking call, waiting for transmission */
178 sock
= lttcomm_accept_unix_sock(client_socket
);
184 * Data is received from the lttng client. The struct
185 * lttcomm_session_msg (lsm) contains the command and data
186 * request of the client.
188 ret
= lttcomm_recv_unix_sock(sock
, &lsm
, sizeof(lsm
));
193 /* This function dispatch the work to the LTTng or UST libs
194 * and then sends back the response to the client. This is needed
195 * because there might be more then one lttcomm_lttng_msg to
196 * send out so process_client_msg do both jobs.
198 ret
= process_client_msg(sock
, &lsm
);
200 /* Error detected but still accept command */
212 * Send data on a unix socket using the liblttsessiondcomm API.
214 * Return lttcomm error code.
216 static int send_unix_sock(int sock
, void *buf
, size_t len
)
218 /* Check valid length */
223 return lttcomm_send_unix_sock(sock
, buf
, len
);
229 * Return a socket connected to the libust communication socket
230 * of the application identified by the pid.
232 * If the pid is not found in the traceable list,
233 * return -1 to indicate error.
235 static int connect_app(pid_t pid
)
238 struct ltt_traceable_app
*lta
;
240 DBG("Connect to application pid %d", pid
);
242 lta
= find_app_by_pid(pid
);
248 sock
= ustctl_connect_pid(lta
->pid
);
250 ERR("Fail connecting to the PID %d\n", pid
);
259 * Notify apps by writing 42 to a named pipe using name.
260 * Every applications waiting for a ltt-sessiond will be notified
261 * and re-register automatically to the session daemon.
263 * Return open or write error value.
265 static int notify_apps(const char *name
)
270 DBG("Notify the global application pipe");
272 /* Try opening the global pipe */
273 fd
= open(name
, O_WRONLY
);
278 /* Notify by writing on the pipe */
279 ret
= write(fd
, "42", 2);
291 * Create an userspace trace using pid.
292 * This trace is then appended to the current session
295 static int ust_create_trace(pid_t pid
)
298 struct ltt_ust_trace
*trace
;
300 DBG("Creating trace for pid %d", pid
);
302 trace
= malloc(sizeof(struct ltt_ust_trace
));
313 /* Connect to app using ustctl API */
314 sock
= connect_app(pid
);
316 ret
= LTTCOMM_NO_TRACEABLE
;
320 ret
= ustctl_create_trace(sock
, "auto");
322 ret
= LTTCOMM_CREATE_FAIL
;
326 /* Check if current session is valid */
327 if (current_session
) {
328 cds_list_add(&trace
->list
, ¤t_session
->ust_traces
);
338 * Start a trace. This trace, identified by the pid, must be
339 * in the current session ust_traces list.
341 static int ust_start_trace(pid_t pid
)
344 struct ltt_ust_trace
*trace
;
346 DBG("Starting trace for pid %d", pid
);
348 trace
= find_session_ust_trace_by_pid(current_session
, pid
);
350 ret
= LTTCOMM_NO_TRACE
;
354 /* Connect to app using ustctl API */
355 sock
= connect_app(pid
);
357 ret
= LTTCOMM_NO_TRACEABLE
;
361 ret
= ustctl_start_trace(sock
, "auto");
363 ret
= LTTCOMM_START_FAIL
;
374 * Copy common data between lttcomm_lttng_msg and lttcomm_session_msg
376 static void copy_common_data(struct lttcomm_lttng_msg
*llm
, struct lttcomm_session_msg
*lsm
)
378 llm
->cmd_type
= lsm
->cmd_type
;
382 if (!uuid_is_null(lsm
->session_id
)) {
383 uuid_copy(llm
->session_id
, lsm
->session_id
);
386 strncpy(llm
->trace_name
, lsm
->trace_name
, strlen(llm
->trace_name
));
387 llm
->trace_name
[strlen(llm
->trace_name
) - 1] = '\0';
393 * Setup the outgoing data buffer for the response
394 * data allocating the right amount of memory.
396 * Return total size of the buffer pointed by buf.
398 static int setup_data_buffer(char **buf
, size_t s_data
, struct lttcomm_lttng_msg
*llm
)
403 buf_size
= sizeof(struct lttcomm_lttng_msg
) + s_data
;
404 *buf
= malloc(buf_size
);
411 /* Setup lttcomm_lttng_msg data and copy
412 * it to the newly allocated buffer.
414 llm
->size_payload
= s_data
;
415 memcpy(*buf
, llm
, sizeof(struct lttcomm_lttng_msg
));
426 * This takes the lttcomm_session_msg struct and process the command requested
427 * by the client. It then creates response(s) and send it back to the
428 * given socket (sock).
430 * Return any error encountered or 0 for success.
432 static int process_client_msg(int sock
, struct lttcomm_session_msg
*lsm
)
437 char *send_buf
= NULL
;
438 struct lttcomm_lttng_msg llm
;
440 DBG("Processing client message");
442 /* Copy common data to identify the response
443 * on the lttng client side.
445 copy_common_data(&llm
, lsm
);
447 /* Check command that needs a session */
448 if (lsm
->cmd_type
!= LTTNG_CREATE_SESSION
&&
449 lsm
->cmd_type
!= LTTNG_LIST_SESSIONS
&&
450 lsm
->cmd_type
!= UST_LIST_APPS
)
452 current_session
= find_session_by_uuid(lsm
->session_id
);
453 if (current_session
== NULL
) {
454 ret
= LTTCOMM_SELECT_SESS
;
459 /* Default return code.
460 * In our world, everything is OK... right? ;)
462 llm
.ret_code
= LTTCOMM_OK
;
464 header_size
= sizeof(struct lttcomm_lttng_msg
);
466 /* Process by command type */
467 switch (lsm
->cmd_type
) {
468 case LTTNG_CREATE_SESSION
:
470 ret
= create_session(lsm
->session_name
, &llm
.session_id
);
473 ret
= LTTCOMM_EXIST_SESS
;
480 buf_size
= setup_data_buffer(&send_buf
, 0, &llm
);
488 case LTTNG_DESTROY_SESSION
:
490 ret
= destroy_session(&lsm
->session_id
);
492 ret
= LTTCOMM_NO_SESS
;
497 /* No auxiliary data so only send the llm struct. */
500 case UST_CREATE_TRACE
:
502 ret
= ust_create_trace(lsm
->pid
);
504 /* If -1 is returned from ust_create_trace, malloc
505 * failed so it's pretty much a fatal error.
511 /* No auxiliary data so only send the llm struct. */
516 unsigned int app_count
= get_app_count();
517 /* Stop right now if no apps */
518 if (app_count
== 0) {
519 ret
= LTTCOMM_NO_APPS
;
523 /* Setup data buffer and details for transmission */
524 buf_size
= setup_data_buffer(&send_buf
,
525 sizeof(pid_t
) * app_count
, &llm
);
531 get_app_list_pids((pid_t
*)(send_buf
+ header_size
));
535 case UST_START_TRACE
:
537 ret
= ust_start_trace(lsm
->pid
);
539 /* No auxiliary data so only send the llm struct. */
542 case LTTNG_LIST_SESSIONS
:
544 unsigned int session_count
= get_session_count();
545 /* Stop right now if no session */
546 if (session_count
== 0) {
547 ret
= LTTCOMM_NO_SESS
;
551 /* Setup data buffer and details for transmission */
552 buf_size
= setup_data_buffer(&send_buf
,
553 (sizeof(struct lttng_session
) * session_count
), &llm
);
559 get_lttng_session((struct lttng_session
*)(send_buf
+ header_size
));
565 /* Undefined command */
571 ret
= send_unix_sock(sock
, send_buf
, buf_size
);
573 if (send_buf
!= NULL
) {
580 /* Notify client of error */
582 llm
.size_payload
= 0;
583 send_unix_sock(sock
, (void*) &llm
, sizeof(llm
));
589 * usage function on stderr
591 static void usage(void)
593 fprintf(stderr
, "Usage: %s OPTIONS\n\nOptions:\n", progname
);
594 fprintf(stderr
, " -h, --help Display this usage.\n");
595 fprintf(stderr
, " -c, --client-sock PATH Specify path for the client unix socket\n");
596 fprintf(stderr
, " -a, --apps-sock PATH Specify path for apps unix socket.\n");
597 fprintf(stderr
, " -d, --daemonize Start as a daemon.\n");
598 fprintf(stderr
, " -g, --group NAME Specify the tracing group name. (default: tracing)\n");
599 fprintf(stderr
, " -V, --version Show version number.\n");
600 fprintf(stderr
, " -S, --sig-parent Send SIGCHLD to parent pid to notify readiness.\n");
601 fprintf(stderr
, " -q, --quiet No output at all.\n");
602 fprintf(stderr
, " -v, --verbose Verbose mode. Activate DBG() macro.\n");
606 * daemon argument parsing
608 static int parse_args(int argc
, char **argv
)
612 static struct option long_options
[] = {
613 { "client-sock", 1, 0, 'c' },
614 { "apps-sock", 1, 0, 'a' },
615 { "daemonize", 0, 0, 'd' },
616 { "sig-parent", 0, 0, 'S' },
617 { "help", 0, 0, 'h' },
618 { "group", 1, 0, 'g' },
619 { "version", 0, 0, 'V' },
620 { "quiet", 0, 0, 'q' },
621 { "verbose", 0, 0, 'v' },
626 int option_index
= 0;
627 c
= getopt_long(argc
, argv
, "dhqvVS" "a:c:g:s:", long_options
, &option_index
);
634 fprintf(stderr
, "option %s", long_options
[option_index
].name
);
636 fprintf(stderr
, " with arg %s\n", optarg
);
640 snprintf(client_unix_sock_path
, PATH_MAX
, "%s", optarg
);
643 snprintf(apps_unix_sock_path
, PATH_MAX
, "%s", optarg
);
649 opt_tracing_group
= strdup(optarg
);
655 fprintf(stdout
, "%s\n", VERSION
);
667 /* Unknown option or other error.
668 * Error is printed by getopt, just return */
679 * Creates the two needed socket by the daemon.
680 * apps_socket - The communication socket for all UST apps.
681 * client_socket - The communication of the cli tool (lttng).
683 static int init_daemon_socket()
688 old_umask
= umask(0);
690 /* Create client tool unix socket */
691 client_socket
= lttcomm_create_unix_sock(client_unix_sock_path
);
692 if (client_socket
< 0) {
697 /* File permission MUST be 660 */
698 ret
= chmod(client_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
);
704 /* Create the application unix socket */
705 apps_socket
= lttcomm_create_unix_sock(apps_unix_sock_path
);
706 if (apps_socket
< 0) {
711 /* File permission MUST be 660 */
712 ret
= chmod(apps_unix_sock_path
, S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
| S_IROTH
| S_IWOTH
);
724 * check_existing_daemon
726 * Check if the global socket is available.
727 * If yes, error is returned.
729 static int check_existing_daemon()
733 ret
= access(client_unix_sock_path
, F_OK
);
735 ret
= access(apps_unix_sock_path
, F_OK
);
744 * Return pointer to home directory path using
745 * the env variable HOME.
749 static const char *get_home_dir(void)
751 const char *home_path
;
753 if ((home_path
= (const char *) getenv("HOME")) == NULL
) {
754 home_path
= default_home_dir
;
763 * Set the tracing group gid onto the client socket.
765 static int set_socket_perms(void)
770 /* Decide which group name to use */
771 (opt_tracing_group
!= NULL
) ?
772 (grp
= getgrnam(opt_tracing_group
)) :
773 (grp
= getgrnam(default_tracing_group
));
776 ERR("Missing tracing group. Aborting execution.\n");
781 ret
= chown(client_unix_sock_path
, 0, grp
->gr_gid
);
786 DBG("Sockets permissions set");
795 * Setup signal handler for :
796 * SIGINT, SIGTERM, SIGPIPE
798 static int set_signal_handler(void)
804 if ((ret
= sigemptyset(&sigset
)) < 0) {
805 perror("sigemptyset");
809 sa
.sa_handler
= sighandler
;
812 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
817 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
822 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
827 DBG("Signal handler set for SIGTERM, SIGPIPE and SIGINT");
835 * Signal handler for the daemon
837 static void sighandler(int sig
)
841 DBG("SIGPIPE catched");
844 DBG("SIGINT catched");
848 DBG("SIGTERM catched");
861 * Cleanup the daemon on exit
863 static void cleanup()
868 MSG("\n%c[%d;%dm*** assert failed *** ==> %c[%dm", 27,1,31,27,0);
869 MSG("%c[%d;%dmMatthew, BEET driven development works!%c[%dm",27,1,33,27,0);
872 unlink(client_unix_sock_path
);
873 unlink(apps_unix_sock_path
);
879 int main(int argc
, char **argv
)
884 pthread_t threads
[2];
886 /* Parse arguments */
888 if ((ret
= parse_args(argc
, argv
) < 0)) {
901 /* Check if daemon is UID = 0 */
904 /* Set all sockets path */
906 if (strlen(apps_unix_sock_path
) == 0) {
907 (snprintf(apps_unix_sock_path
, PATH_MAX
,
908 DEFAULT_GLOBAL_APPS_UNIX_SOCK
));
911 if (strlen(client_unix_sock_path
) == 0) {
912 (snprintf(client_unix_sock_path
, PATH_MAX
,
913 DEFAULT_GLOBAL_CLIENT_UNIX_SOCK
));
916 if (strlen(apps_unix_sock_path
) == 0) {
917 (snprintf(apps_unix_sock_path
, PATH_MAX
,
918 DEFAULT_HOME_APPS_UNIX_SOCK
, get_home_dir()));
921 /* Set the cli tool unix socket path */
922 if (strlen(client_unix_sock_path
) == 0) {
923 (snprintf(client_unix_sock_path
, PATH_MAX
,
924 DEFAULT_HOME_CLIENT_UNIX_SOCK
, get_home_dir()));
928 /* See if daemon already exist. If any of the two
929 * socket needed by the daemon are present, this test fails
931 if ((ret
= check_existing_daemon()) == 0) {
932 ERR("Already running daemon.\n");
933 /* We do not goto error because we must not
934 * cleanup() because a daemon is already working.
939 if (set_signal_handler() < 0) {
943 /* Setup the two needed unix socket */
944 if (init_daemon_socket() < 0) {
948 /* Set credentials to socket */
949 if (is_root
&& (set_socket_perms() < 0)) {
953 /* Get parent pid if -S, --sig-parent is specified. */
954 if (opt_sig_parent
) {
959 /* Create thread to manage the client socket */
960 ret
= pthread_create(&threads
[0], NULL
, thread_manage_clients
, (void *) NULL
);
962 perror("pthread_create");
966 /* Create thread to manage application socket */
967 ret
= pthread_create(&threads
[1], NULL
, thread_manage_apps
, (void *) NULL
);
969 perror("pthread_create");
973 for (i
= 0; i
< 2; i
++) {
974 ret
= pthread_join(threads
[i
], &status
);
976 perror("pthread_join");