4 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
5 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; only
10 * version 2.1 of the License.
12 * This library 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 GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include <sys/types.h>
24 #include <sys/socket.h>
25 #include <sys/prctl.h>
28 #include <sys/types.h>
34 #include <semaphore.h>
38 #include <urcu/uatomic.h>
39 #include <urcu/futex.h>
40 #include <urcu/compiler.h>
42 #include <lttng/ust-events.h>
43 #include <lttng/ust-abi.h>
44 #include <lttng/ust.h>
46 #include <usterr-signal-safe.h>
47 #include "tracepoint-internal.h"
48 #include "ltt-tracer-core.h"
51 * Has lttng ust comm constructor been called ?
53 static int initialized
;
56 * The ust_lock/ust_unlock lock is used as a communication thread mutex.
57 * Held when handling a command, also held by fork() to deal with
58 * removal of threads, and by exit path.
61 /* Should the ust comm thread quit ? */
62 static int lttng_ust_comm_should_quit
;
65 * Wait for either of these before continuing to the main
67 * - the register_done message from sessiond daemon
68 * (will let the sessiond daemon enable sessions before main
70 * - sessiond daemon is not reachable.
71 * - timeout (ensuring applications are resilient to session
74 static sem_t constructor_wait
;
76 * Doing this for both the global and local sessiond.
78 static int sem_count
= { 2 };
81 * Info about socket and associated listener thread.
85 pthread_t ust_listener
; /* listener thread */
87 int constructor_sem_posted
;
91 char sock_path
[PATH_MAX
];
94 char wait_shm_path
[PATH_MAX
];
98 /* Socket from app (connect) to session daemon (listen) for communication */
99 struct sock_info global_apps
= {
106 .sock_path
= DEFAULT_GLOBAL_APPS_UNIX_SOCK
,
109 .wait_shm_path
= DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH
,
112 /* TODO: allow global_apps_sock_path override */
114 struct sock_info local_apps
= {
118 .allowed
= 0, /* Check setuid bit first */
123 static int wait_poll_fallback
;
125 extern void ltt_ring_buffer_client_overwrite_init(void);
126 extern void ltt_ring_buffer_client_discard_init(void);
127 extern void ltt_ring_buffer_metadata_client_init(void);
128 extern void ltt_ring_buffer_client_overwrite_exit(void);
129 extern void ltt_ring_buffer_client_discard_exit(void);
130 extern void ltt_ring_buffer_metadata_client_exit(void);
133 int setup_local_apps(void)
135 const char *home_dir
;
140 * Disallow per-user tracing for setuid binaries.
142 if (uid
!= geteuid()) {
143 local_apps
.allowed
= 0;
146 local_apps
.allowed
= 1;
148 home_dir
= (const char *) getenv("HOME");
151 snprintf(local_apps
.sock_path
, PATH_MAX
,
152 DEFAULT_HOME_APPS_UNIX_SOCK
, home_dir
);
153 snprintf(local_apps
.wait_shm_path
, PATH_MAX
,
154 DEFAULT_HOME_APPS_WAIT_SHM_PATH
, uid
);
159 int register_app_to_sessiond(int socket
)
170 uint32_t bits_per_long
;
171 char name
[16]; /* process name */
174 reg_msg
.major
= LTTNG_UST_COMM_VERSION_MAJOR
;
175 reg_msg
.minor
= LTTNG_UST_COMM_VERSION_MINOR
;
176 reg_msg
.pid
= getpid();
177 reg_msg
.ppid
= getppid();
178 reg_msg
.uid
= getuid();
179 reg_msg
.gid
= getgid();
180 reg_msg
.bits_per_long
= CAA_BITS_PER_LONG
;
181 prctl_ret
= prctl(PR_GET_NAME
, (unsigned long) reg_msg
.name
, 0, 0, 0);
183 ERR("Error executing prctl");
187 ret
= ustcomm_send_unix_sock(socket
, ®_msg
, sizeof(reg_msg
));
188 if (ret
>= 0 && ret
!= sizeof(reg_msg
))
194 int send_reply(int sock
, struct ustcomm_ust_reply
*lur
)
198 len
= ustcomm_send_unix_sock(sock
, lur
, sizeof(*lur
));
201 DBG("message successfully sent");
204 if (errno
== ECONNRESET
) {
205 printf("remote end closed connection\n");
210 printf("incorrect message size: %zd\n", len
);
216 int handle_register_done(struct sock_info
*sock_info
)
220 if (sock_info
->constructor_sem_posted
)
222 sock_info
->constructor_sem_posted
= 1;
223 if (uatomic_read(&sem_count
) <= 0) {
226 ret
= uatomic_add_return(&sem_count
, -1);
228 ret
= sem_post(&constructor_wait
);
235 int handle_message(struct sock_info
*sock_info
,
236 int sock
, struct ustcomm_ust_msg
*lum
)
239 const struct lttng_ust_objd_ops
*ops
;
240 struct ustcomm_ust_reply lur
;
246 memset(&lur
, 0, sizeof(lur
));
248 if (lttng_ust_comm_should_quit
) {
253 ops
= objd_ops(lum
->handle
);
260 case LTTNG_UST_REGISTER_DONE
:
261 if (lum
->handle
== LTTNG_UST_ROOT_HANDLE
)
262 ret
= handle_register_done(sock_info
);
266 case LTTNG_UST_RELEASE
:
267 if (lum
->handle
== LTTNG_UST_ROOT_HANDLE
)
270 ret
= lttng_ust_objd_unref(lum
->handle
);
274 ret
= ops
->cmd(lum
->handle
, lum
->cmd
,
275 (unsigned long) &lum
->u
,
283 lur
.handle
= lum
->handle
;
287 lur
.ret_code
= USTCOMM_OK
;
289 //lur.ret_code = USTCOMM_SESSION_FAIL;
294 case LTTNG_UST_STREAM
:
296 * Special-case reply to send stream info.
299 lur
.u
.stream
.memory_map_size
= *args
.stream
.memory_map_size
;
300 shm_fd
= *args
.stream
.shm_fd
;
301 wait_fd
= *args
.stream
.wait_fd
;
303 case LTTNG_UST_METADATA
:
304 case LTTNG_UST_CHANNEL
:
305 lur
.u
.channel
.memory_map_size
= *args
.channel
.memory_map_size
;
306 shm_fd
= *args
.channel
.shm_fd
;
307 wait_fd
= *args
.channel
.wait_fd
;
309 case LTTNG_UST_TRACER_VERSION
:
310 lur
.u
.version
= lum
->u
.version
;
312 case LTTNG_UST_TRACEPOINT_LIST_GET
:
313 memcpy(&lur
.u
.tracepoint
, &lum
->u
.tracepoint
, sizeof(lur
.u
.tracepoint
));
317 ret
= send_reply(sock
, &lur
);
319 perror("error sending reply");
323 if ((lum
->cmd
== LTTNG_UST_STREAM
324 || lum
->cmd
== LTTNG_UST_CHANNEL
325 || lum
->cmd
== LTTNG_UST_METADATA
)
326 && lur
.ret_code
== USTCOMM_OK
) {
327 /* we also need to send the file descriptors. */
328 ret
= ustcomm_send_fds_unix_sock(sock
,
332 perror("send shm_fd");
335 ret
= ustcomm_send_fds_unix_sock(sock
,
339 perror("send wait_fd");
344 * We still have the memory map reference, and the fds have been
345 * sent to the sessiond. We can therefore close those fds. Note
346 * that we keep the write side of the wait_fd open, but close
349 if (lur
.ret_code
== USTCOMM_OK
) {
351 case LTTNG_UST_STREAM
:
355 PERROR("Error closing stream shm_fd");
357 *args
.stream
.shm_fd
= -1;
360 ret
= close(wait_fd
);
362 PERROR("Error closing stream wait_fd");
364 *args
.stream
.wait_fd
= -1;
367 case LTTNG_UST_METADATA
:
368 case LTTNG_UST_CHANNEL
:
372 PERROR("Error closing channel shm_fd");
374 *args
.channel
.shm_fd
= -1;
377 ret
= close(wait_fd
);
379 PERROR("Error closing channel wait_fd");
381 *args
.channel
.wait_fd
= -1;
393 void cleanup_sock_info(struct sock_info
*sock_info
, int exiting
)
397 if (sock_info
->socket
!= -1) {
398 ret
= close(sock_info
->socket
);
400 ERR("Error closing apps socket");
402 sock_info
->socket
= -1;
404 if (sock_info
->root_handle
!= -1) {
405 ret
= lttng_ust_objd_unref(sock_info
->root_handle
);
407 ERR("Error unref root handle");
409 sock_info
->root_handle
= -1;
411 sock_info
->constructor_sem_posted
= 0;
413 * wait_shm_mmap is used by listener threads outside of the
414 * ust lock, so we cannot tear it down ourselves, because we
415 * cannot join on these threads. Leave this task to the OS
418 if (!exiting
&& sock_info
->wait_shm_mmap
) {
419 ret
= munmap(sock_info
->wait_shm_mmap
, sysconf(_SC_PAGE_SIZE
));
421 ERR("Error unmapping wait shm");
423 sock_info
->wait_shm_mmap
= NULL
;
428 * Using fork to set umask in the child process (not multi-thread safe).
429 * We deal with the shm_open vs ftruncate race (happening when the
430 * sessiond owns the shm and does not let everybody modify it, to ensure
431 * safety against shm_unlink) by simply letting the mmap fail and
432 * retrying after a few seconds.
433 * For global shm, everybody has rw access to it until the sessiond
437 int get_wait_shm(struct sock_info
*sock_info
, size_t mmap_size
)
439 int wait_shm_fd
, ret
;
443 * Try to open read-only.
445 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
, O_RDONLY
, 0);
446 if (wait_shm_fd
>= 0) {
448 } else if (wait_shm_fd
< 0 && errno
!= ENOENT
) {
450 * Real-only open did not work, and it's not because the
451 * entry was not present. It's a failure that prohibits
454 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
458 * If the open failed because the file did not exist, try
459 * creating it ourself.
466 * Parent: wait for child to return, in which case the
467 * shared memory map will have been created.
470 if (pid
< 0 || !WIFEXITED(status
) || WEXITSTATUS(status
) != 0) {
475 * Try to open read-only again after creation.
477 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
, O_RDONLY
, 0);
478 if (wait_shm_fd
< 0) {
480 * Real-only open did not work. It's a failure
481 * that prohibits using shm.
483 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
487 } else if (pid
== 0) {
491 create_mode
= S_IRUSR
| S_IWUSR
| S_IRGRP
;
492 if (sock_info
->global
)
493 create_mode
|= S_IROTH
| S_IWGRP
| S_IWOTH
;
495 * We're alone in a child process, so we can modify the
496 * process-wide umask.
500 * Try creating shm (or get rw access).
501 * We don't do an exclusive open, because we allow other
502 * processes to create+ftruncate it concurrently.
504 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
,
505 O_RDWR
| O_CREAT
, create_mode
);
506 if (wait_shm_fd
>= 0) {
507 ret
= ftruncate(wait_shm_fd
, mmap_size
);
515 * For local shm, we need to have rw access to accept
516 * opening it: this means the local sessiond will be
517 * able to wake us up. For global shm, we open it even
518 * if rw access is not granted, because the root.root
519 * sessiond will be able to override all rights and wake
522 if (!sock_info
->global
&& errno
!= EACCES
) {
523 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
527 * The shm exists, but we cannot open it RW. Report
535 if (wait_shm_fd
>= 0 && !sock_info
->global
) {
539 * Ensure that our user is the owner of the shm file for
540 * local shm. If we do not own the file, it means our
541 * sessiond will not have access to wake us up (there is
542 * probably a rogue process trying to fake our
543 * sessiond). Fallback to polling method in this case.
545 ret
= fstat(wait_shm_fd
, &statbuf
);
550 if (statbuf
.st_uid
!= getuid())
556 ret
= close(wait_shm_fd
);
558 PERROR("Error closing fd");
564 char *get_map_shm(struct sock_info
*sock_info
)
566 size_t mmap_size
= sysconf(_SC_PAGE_SIZE
);
567 int wait_shm_fd
, ret
;
570 wait_shm_fd
= get_wait_shm(sock_info
, mmap_size
);
571 if (wait_shm_fd
< 0) {
574 wait_shm_mmap
= mmap(NULL
, mmap_size
, PROT_READ
,
575 MAP_SHARED
, wait_shm_fd
, 0);
576 /* close shm fd immediately after taking the mmap reference */
577 ret
= close(wait_shm_fd
);
579 PERROR("Error closing fd");
581 if (wait_shm_mmap
== MAP_FAILED
) {
582 DBG("mmap error (can be caused by race with sessiond). Fallback to poll mode.");
585 return wait_shm_mmap
;
592 void wait_for_sessiond(struct sock_info
*sock_info
)
597 if (lttng_ust_comm_should_quit
) {
600 if (wait_poll_fallback
) {
603 if (!sock_info
->wait_shm_mmap
) {
604 sock_info
->wait_shm_mmap
= get_map_shm(sock_info
);
605 if (!sock_info
->wait_shm_mmap
)
610 DBG("Waiting for %s apps sessiond", sock_info
->name
);
611 /* Wait for futex wakeup */
612 if (uatomic_read((int32_t *) sock_info
->wait_shm_mmap
) == 0) {
613 ret
= futex_async((int32_t *) sock_info
->wait_shm_mmap
,
614 FUTEX_WAIT
, 0, NULL
, NULL
, 0);
616 if (errno
== EFAULT
) {
617 wait_poll_fallback
= 1;
619 "Linux kernels 2.6.33 to 3.0 (with the exception of stable versions) "
620 "do not support FUTEX_WAKE on read-only memory mappings correctly. "
621 "Please upgrade your kernel "
622 "(fix is commit 9ea71503a8ed9184d2d0b8ccc4d269d05f7940ae in Linux kernel "
623 "mainline). LTTng-UST will use polling mode fallback.");
641 * This thread does not allocate any resource, except within
642 * handle_message, within mutex protection. This mutex protects against
644 * The other moment it allocates resources is at socket connexion, which
645 * is also protected by the mutex.
648 void *ust_listener_thread(void *arg
)
650 struct sock_info
*sock_info
= arg
;
651 int sock
, ret
, prev_connect_failed
= 0, has_waited
= 0;
653 /* Restart trying to connect to the session daemon */
655 if (prev_connect_failed
) {
656 /* Wait for sessiond availability with pipe */
657 wait_for_sessiond(sock_info
);
661 * Sleep for 5 seconds before retrying after a
662 * sequence of failure / wait / failure. This
663 * deals with a killed or broken session daemon.
668 prev_connect_failed
= 0;
672 if (lttng_ust_comm_should_quit
) {
677 if (sock_info
->socket
!= -1) {
678 ret
= close(sock_info
->socket
);
680 ERR("Error closing %s apps socket", sock_info
->name
);
682 sock_info
->socket
= -1;
686 ret
= ustcomm_connect_unix_sock(sock_info
->sock_path
);
688 DBG("Info: sessiond not accepting connections to %s apps socket", sock_info
->name
);
689 prev_connect_failed
= 1;
691 * If we cannot find the sessiond daemon, don't delay
692 * constructor execution.
694 ret
= handle_register_done(sock_info
);
700 sock_info
->socket
= sock
= ret
;
703 * Create only one root handle per listener thread for the whole
706 if (sock_info
->root_handle
== -1) {
707 ret
= lttng_abi_create_root_handle();
709 ERR("Error creating root handle");
713 sock_info
->root_handle
= ret
;
716 ret
= register_app_to_sessiond(sock
);
718 ERR("Error registering to %s apps socket", sock_info
->name
);
719 prev_connect_failed
= 1;
721 * If we cannot register to the sessiond daemon, don't
722 * delay constructor execution.
724 ret
= handle_register_done(sock_info
);
733 struct ustcomm_ust_msg lum
;
735 len
= ustcomm_recv_unix_sock(sock
, &lum
, sizeof(lum
));
737 case 0: /* orderly shutdown */
738 DBG("%s ltt-sessiond has performed an orderly shutdown\n", sock_info
->name
);
741 * Either sessiond has shutdown or refused us by closing the socket.
742 * In either case, we don't want to delay construction execution,
743 * and we need to wait before retry.
745 prev_connect_failed
= 1;
747 * If we cannot register to the sessiond daemon, don't
748 * delay constructor execution.
750 ret
= handle_register_done(sock_info
);
755 DBG("message received\n");
756 ret
= handle_message(sock_info
, sock
, &lum
);
758 ERR("Error handling message for %s socket", sock_info
->name
);
762 DBG("Receive failed from lttng-sessiond with errno %d", errno
);
763 if (errno
== ECONNRESET
) {
764 ERR("%s remote end closed connection\n", sock_info
->name
);
769 ERR("incorrect message size (%s socket): %zd\n", sock_info
->name
, len
);
775 goto restart
; /* try to reconnect */
781 * Return values: -1: don't wait. 0: wait forever. 1: timeout wait.
784 int get_timeout(struct timespec
*constructor_timeout
)
786 long constructor_delay_ms
= LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS
;
790 str_delay
= getenv("LTTNG_UST_REGISTER_TIMEOUT");
792 constructor_delay_ms
= strtol(str_delay
, NULL
, 10);
795 switch (constructor_delay_ms
) {
796 case -1:/* fall-through */
798 return constructor_delay_ms
;
804 * If we are unable to find the current time, don't wait.
806 ret
= clock_gettime(CLOCK_REALTIME
, constructor_timeout
);
810 constructor_timeout
->tv_sec
+= constructor_delay_ms
/ 1000UL;
811 constructor_timeout
->tv_nsec
+=
812 (constructor_delay_ms
% 1000UL) * 1000000UL;
813 if (constructor_timeout
->tv_nsec
>= 1000000000UL) {
814 constructor_timeout
->tv_sec
++;
815 constructor_timeout
->tv_nsec
-= 1000000000UL;
821 * sessiond monitoring thread: monitor presence of global and per-user
822 * sessiond by polling the application common named pipe.
826 void __attribute__((constructor
)) lttng_ust_init(void)
828 struct timespec constructor_timeout
;
832 if (uatomic_xchg(&initialized
, 1) == 1)
836 * We want precise control over the order in which we construct
837 * our sub-libraries vs starting to receive commands from
838 * sessiond (otherwise leading to errors when trying to create
839 * sessiond before the init functions are completed).
843 ltt_ring_buffer_metadata_client_init();
844 ltt_ring_buffer_client_overwrite_init();
845 ltt_ring_buffer_client_discard_init();
847 timeout_mode
= get_timeout(&constructor_timeout
);
849 ret
= sem_init(&constructor_wait
, 0, 0);
852 ret
= setup_local_apps();
854 ERR("Error setting up to local apps");
856 ret
= pthread_create(&local_apps
.ust_listener
, NULL
,
857 ust_listener_thread
, &local_apps
);
859 if (local_apps
.allowed
) {
860 ret
= pthread_create(&global_apps
.ust_listener
, NULL
,
861 ust_listener_thread
, &global_apps
);
863 handle_register_done(&local_apps
);
866 switch (timeout_mode
) {
867 case 1: /* timeout wait */
869 ret
= sem_timedwait(&constructor_wait
,
870 &constructor_timeout
);
871 } while (ret
< 0 && errno
== EINTR
);
872 if (ret
< 0 && errno
== ETIMEDOUT
) {
873 ERR("Timed out waiting for ltt-sessiond");
878 case -1:/* wait forever */
880 ret
= sem_wait(&constructor_wait
);
881 } while (ret
< 0 && errno
== EINTR
);
884 case 0: /* no timeout */
890 void lttng_ust_cleanup(int exiting
)
892 cleanup_sock_info(&global_apps
, exiting
);
893 if (local_apps
.allowed
) {
894 cleanup_sock_info(&local_apps
, exiting
);
897 * The teardown in this function all affect data structures
898 * accessed under the UST lock by the listener thread. This
899 * lock, along with the lttng_ust_comm_should_quit flag, ensure
900 * that none of these threads are accessing this data at this
903 lttng_ust_abi_exit();
904 lttng_ust_events_exit();
905 ltt_ring_buffer_client_discard_exit();
906 ltt_ring_buffer_client_overwrite_exit();
907 ltt_ring_buffer_metadata_client_exit();
910 /* Reinitialize values for fork */
912 lttng_ust_comm_should_quit
= 0;
917 void __attribute__((destructor
)) lttng_ust_exit(void)
922 * Using pthread_cancel here because:
923 * A) we don't want to hang application teardown.
924 * B) the thread is not allocating any resource.
928 * Require the communication thread to quit. Synchronize with
929 * mutexes to ensure it is not in a mutex critical section when
930 * pthread_cancel is later called.
933 lttng_ust_comm_should_quit
= 1;
937 ret
= pthread_cancel(global_apps
.ust_listener
);
939 ERR("Error cancelling global ust listener thread");
941 if (local_apps
.allowed
) {
942 ret
= pthread_cancel(local_apps
.ust_listener
);
944 ERR("Error cancelling local ust listener thread");
948 * Do NOT join threads: use of sys_futex makes it impossible to
949 * join the threads without using async-cancel, but async-cancel
950 * is delivered by a signal, which could hit the target thread
951 * anywhere in its code path, including while the ust_lock() is
952 * held, causing a deadlock for the other thread. Let the OS
953 * cleanup the threads if there are stalled in a syscall.
955 lttng_ust_cleanup(1);
959 * We exclude the worker threads across fork and clone (except
960 * CLONE_VM), because these system calls only keep the forking thread
961 * running in the child. Therefore, we don't want to call fork or clone
962 * in the middle of an tracepoint or ust tracing state modification.
963 * Holding this mutex protects these structures across fork and clone.
965 void ust_before_fork(sigset_t
*save_sigset
)
968 * Disable signals. This is to avoid that the child intervenes
969 * before it is properly setup for tracing. It is safer to
970 * disable all signals, because then we know we are not breaking
971 * anything by restoring the original mask.
976 /* Disable signals */
977 sigfillset(&all_sigs
);
978 ret
= sigprocmask(SIG_BLOCK
, &all_sigs
, save_sigset
);
980 PERROR("sigprocmask");
983 rcu_bp_before_fork();
986 static void ust_after_fork_common(sigset_t
*restore_sigset
)
990 DBG("process %d", getpid());
992 /* Restore signals */
993 ret
= sigprocmask(SIG_SETMASK
, restore_sigset
, NULL
);
995 PERROR("sigprocmask");
999 void ust_after_fork_parent(sigset_t
*restore_sigset
)
1001 DBG("process %d", getpid());
1002 rcu_bp_after_fork_parent();
1003 /* Release mutexes and reenable signals */
1004 ust_after_fork_common(restore_sigset
);
1008 * After fork, in the child, we need to cleanup all the leftover state,
1009 * except the worker thread which already magically disappeared thanks
1010 * to the weird Linux fork semantics. After tyding up, we call
1011 * lttng_ust_init() again to start over as a new PID.
1013 * This is meant for forks() that have tracing in the child between the
1014 * fork and following exec call (if there is any).
1016 void ust_after_fork_child(sigset_t
*restore_sigset
)
1018 DBG("process %d", getpid());
1019 /* Release urcu mutexes */
1020 rcu_bp_after_fork_child();
1021 lttng_ust_cleanup(0);
1022 lttng_context_vtid_reset();
1023 /* Release mutexes and reenable signals */
1024 ust_after_fork_common(restore_sigset
);