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
;
245 memset(&lur
, 0, sizeof(lur
));
247 if (lttng_ust_comm_should_quit
) {
252 ops
= objd_ops(lum
->handle
);
259 case LTTNG_UST_REGISTER_DONE
:
260 if (lum
->handle
== LTTNG_UST_ROOT_HANDLE
)
261 ret
= handle_register_done(sock_info
);
265 case LTTNG_UST_RELEASE
:
266 if (lum
->handle
== LTTNG_UST_ROOT_HANDLE
)
269 ret
= lttng_ust_objd_unref(lum
->handle
);
273 ret
= ops
->cmd(lum
->handle
, lum
->cmd
,
274 (unsigned long) &lum
->u
);
281 lur
.handle
= lum
->handle
;
285 lur
.ret_code
= USTCOMM_OK
;
287 //lur.ret_code = USTCOMM_SESSION_FAIL;
291 case LTTNG_UST_STREAM
:
293 * Special-case reply to send stream info.
296 lur
.u
.stream
.memory_map_size
= lum
->u
.stream
.memory_map_size
;
297 shm_fd
= lum
->u
.stream
.shm_fd
;
298 wait_fd
= lum
->u
.stream
.wait_fd
;
300 case LTTNG_UST_METADATA
:
301 case LTTNG_UST_CHANNEL
:
302 lur
.u
.channel
.memory_map_size
= lum
->u
.channel
.memory_map_size
;
303 shm_fd
= lum
->u
.channel
.shm_fd
;
304 wait_fd
= lum
->u
.channel
.wait_fd
;
306 case LTTNG_UST_TRACER_VERSION
:
307 lur
.u
.version
= lum
->u
.version
;
309 case LTTNG_UST_TRACEPOINT_LIST_GET
:
310 memcpy(&lur
.u
.tracepoint
, &lum
->u
.tracepoint
, sizeof(lur
.u
.tracepoint
));
313 ret
= send_reply(sock
, &lur
);
315 perror("error sending reply");
319 if ((lum
->cmd
== LTTNG_UST_STREAM
320 || lum
->cmd
== LTTNG_UST_CHANNEL
321 || lum
->cmd
== LTTNG_UST_METADATA
)
322 && lur
.ret_code
== USTCOMM_OK
) {
323 /* we also need to send the file descriptors. */
324 ret
= ustcomm_send_fds_unix_sock(sock
,
328 perror("send shm_fd");
331 ret
= ustcomm_send_fds_unix_sock(sock
,
335 perror("send wait_fd");
345 void cleanup_sock_info(struct sock_info
*sock_info
)
349 if (sock_info
->socket
!= -1) {
350 ret
= close(sock_info
->socket
);
352 ERR("Error closing apps socket");
354 sock_info
->socket
= -1;
356 if (sock_info
->root_handle
!= -1) {
357 ret
= lttng_ust_objd_unref(sock_info
->root_handle
);
359 ERR("Error unref root handle");
361 sock_info
->root_handle
= -1;
363 sock_info
->constructor_sem_posted
= 0;
364 if (sock_info
->wait_shm_mmap
) {
365 ret
= munmap(sock_info
->wait_shm_mmap
, sysconf(_SC_PAGE_SIZE
));
367 ERR("Error unmapping wait shm");
369 sock_info
->wait_shm_mmap
= NULL
;
374 * Using fork to set umask in the child process (not multi-thread safe).
375 * We deal with the shm_open vs ftruncate race (happening when the
376 * sessiond owns the shm and does not let everybody modify it, to ensure
377 * safety against shm_unlink) by simply letting the mmap fail and
378 * retrying after a few seconds.
379 * For global shm, everybody has rw access to it until the sessiond
383 int get_wait_shm(struct sock_info
*sock_info
, size_t mmap_size
)
385 int wait_shm_fd
, ret
;
389 * Try to open read-only.
391 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
, O_RDONLY
, 0);
392 if (wait_shm_fd
>= 0) {
394 } else if (wait_shm_fd
< 0 && errno
!= ENOENT
) {
396 * Real-only open did not work, and it's not because the
397 * entry was not present. It's a failure that prohibits
400 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
404 * If the open failed because the file did not exist, try
405 * creating it ourself.
412 * Parent: wait for child to return, in which case the
413 * shared memory map will have been created.
416 if (pid
< 0 || !WIFEXITED(status
) || WEXITSTATUS(status
) != 0) {
421 * Try to open read-only again after creation.
423 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
, O_RDONLY
, 0);
424 if (wait_shm_fd
< 0) {
426 * Real-only open did not work. It's a failure
427 * that prohibits using shm.
429 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
433 } else if (pid
== 0) {
437 create_mode
= S_IRUSR
| S_IWUSR
| S_IRGRP
;
438 if (sock_info
->global
)
439 create_mode
|= S_IROTH
| S_IWGRP
| S_IWOTH
;
441 * We're alone in a child process, so we can modify the
442 * process-wide umask.
446 * Try creating shm (or get rw access).
447 * We don't do an exclusive open, because we allow other
448 * processes to create+ftruncate it concurrently.
450 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
,
451 O_RDWR
| O_CREAT
, create_mode
);
452 if (wait_shm_fd
>= 0) {
453 ret
= ftruncate(wait_shm_fd
, mmap_size
);
461 * For local shm, we need to have rw access to accept
462 * opening it: this means the local sessiond will be
463 * able to wake us up. For global shm, we open it even
464 * if rw access is not granted, because the root.root
465 * sessiond will be able to override all rights and wake
468 if (!sock_info
->global
&& errno
!= EACCES
) {
469 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
473 * The shm exists, but we cannot open it RW. Report
481 if (wait_shm_fd
>= 0 && !sock_info
->global
) {
485 * Ensure that our user is the owner of the shm file for
486 * local shm. If we do not own the file, it means our
487 * sessiond will not have access to wake us up (there is
488 * probably a rogue process trying to fake our
489 * sessiond). Fallback to polling method in this case.
491 ret
= fstat(wait_shm_fd
, &statbuf
);
496 if (statbuf
.st_uid
!= getuid())
502 ret
= close(wait_shm_fd
);
504 PERROR("Error closing fd");
510 char *get_map_shm(struct sock_info
*sock_info
)
512 size_t mmap_size
= sysconf(_SC_PAGE_SIZE
);
513 int wait_shm_fd
, ret
;
516 wait_shm_fd
= get_wait_shm(sock_info
, mmap_size
);
517 if (wait_shm_fd
< 0) {
520 wait_shm_mmap
= mmap(NULL
, mmap_size
, PROT_READ
,
521 MAP_SHARED
, wait_shm_fd
, 0);
522 /* close shm fd immediately after taking the mmap reference */
523 ret
= close(wait_shm_fd
);
525 PERROR("Error closing fd");
527 if (wait_shm_mmap
== MAP_FAILED
) {
528 DBG("mmap error (can be caused by race with sessiond). Fallback to poll mode.");
531 return wait_shm_mmap
;
538 void wait_for_sessiond(struct sock_info
*sock_info
)
543 if (lttng_ust_comm_should_quit
) {
546 if (wait_poll_fallback
) {
549 if (!sock_info
->wait_shm_mmap
) {
550 sock_info
->wait_shm_mmap
= get_map_shm(sock_info
);
551 if (!sock_info
->wait_shm_mmap
)
556 DBG("Waiting for %s apps sessiond", sock_info
->name
);
557 /* Wait for futex wakeup */
558 if (uatomic_read((int32_t *) sock_info
->wait_shm_mmap
) == 0) {
559 ret
= futex_async((int32_t *) sock_info
->wait_shm_mmap
,
560 FUTEX_WAIT
, 0, NULL
, NULL
, 0);
562 if (errno
== EFAULT
) {
563 wait_poll_fallback
= 1;
565 "Linux kernels 2.6.33 to 3.0 (with the exception of stable versions) "
566 "do not support FUTEX_WAKE on read-only memory mappings correctly. "
567 "Please upgrade your kernel "
568 "(fix is commit 9ea71503a8ed9184d2d0b8ccc4d269d05f7940ae in Linux kernel "
569 "mainline). LTTng-UST will use polling mode fallback.");
586 * This thread does not allocate any resource, except within
587 * handle_message, within mutex protection. This mutex protects against
589 * The other moment it allocates resources is at socket connexion, which
590 * is also protected by the mutex.
593 void *ust_listener_thread(void *arg
)
595 struct sock_info
*sock_info
= arg
;
596 int sock
, ret
, prev_connect_failed
= 0, has_waited
= 0;
598 /* Restart trying to connect to the session daemon */
600 if (prev_connect_failed
) {
601 /* Wait for sessiond availability with pipe */
602 wait_for_sessiond(sock_info
);
606 * Sleep for 5 seconds before retrying after a
607 * sequence of failure / wait / failure. This
608 * deals with a killed or broken session daemon.
613 prev_connect_failed
= 0;
617 if (lttng_ust_comm_should_quit
) {
622 if (sock_info
->socket
!= -1) {
623 ret
= close(sock_info
->socket
);
625 ERR("Error closing %s apps socket", sock_info
->name
);
627 sock_info
->socket
= -1;
631 ret
= ustcomm_connect_unix_sock(sock_info
->sock_path
);
633 DBG("Info: sessiond not accepting connections to %s apps socket", sock_info
->name
);
634 prev_connect_failed
= 1;
636 * If we cannot find the sessiond daemon, don't delay
637 * constructor execution.
639 ret
= handle_register_done(sock_info
);
645 sock_info
->socket
= sock
= ret
;
648 * Create only one root handle per listener thread for the whole
651 if (sock_info
->root_handle
== -1) {
652 ret
= lttng_abi_create_root_handle();
654 ERR("Error creating root handle");
658 sock_info
->root_handle
= ret
;
661 ret
= register_app_to_sessiond(sock
);
663 ERR("Error registering to %s apps socket", sock_info
->name
);
664 prev_connect_failed
= 1;
666 * If we cannot register to the sessiond daemon, don't
667 * delay constructor execution.
669 ret
= handle_register_done(sock_info
);
678 struct ustcomm_ust_msg lum
;
680 len
= ustcomm_recv_unix_sock(sock
, &lum
, sizeof(lum
));
682 case 0: /* orderly shutdown */
683 DBG("%s ltt-sessiond has performed an orderly shutdown\n", sock_info
->name
);
686 * Either sessiond has shutdown or refused us by closing the socket.
687 * In either case, we don't want to delay construction execution,
688 * and we need to wait before retry.
690 prev_connect_failed
= 1;
692 * If we cannot register to the sessiond daemon, don't
693 * delay constructor execution.
695 ret
= handle_register_done(sock_info
);
700 DBG("message received\n");
701 ret
= handle_message(sock_info
, sock
, &lum
);
703 ERR("Error handling message for %s socket", sock_info
->name
);
707 DBG("Receive failed from lttng-sessiond with errno %d", errno
);
708 if (errno
== ECONNRESET
) {
709 ERR("%s remote end closed connection\n", sock_info
->name
);
714 ERR("incorrect message size (%s socket): %zd\n", sock_info
->name
, len
);
720 goto restart
; /* try to reconnect */
726 * Return values: -1: don't wait. 0: wait forever. 1: timeout wait.
729 int get_timeout(struct timespec
*constructor_timeout
)
731 long constructor_delay_ms
= LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS
;
735 str_delay
= getenv("LTTNG_UST_REGISTER_TIMEOUT");
737 constructor_delay_ms
= strtol(str_delay
, NULL
, 10);
740 switch (constructor_delay_ms
) {
741 case -1:/* fall-through */
743 return constructor_delay_ms
;
749 * If we are unable to find the current time, don't wait.
751 ret
= clock_gettime(CLOCK_REALTIME
, constructor_timeout
);
755 constructor_timeout
->tv_sec
+= constructor_delay_ms
/ 1000UL;
756 constructor_timeout
->tv_nsec
+=
757 (constructor_delay_ms
% 1000UL) * 1000000UL;
758 if (constructor_timeout
->tv_nsec
>= 1000000000UL) {
759 constructor_timeout
->tv_sec
++;
760 constructor_timeout
->tv_nsec
-= 1000000000UL;
766 * sessiond monitoring thread: monitor presence of global and per-user
767 * sessiond by polling the application common named pipe.
771 void __attribute__((constructor
)) lttng_ust_init(void)
773 struct timespec constructor_timeout
;
777 if (uatomic_xchg(&initialized
, 1) == 1)
781 * We want precise control over the order in which we construct
782 * our sub-libraries vs starting to receive commands from
783 * sessiond (otherwise leading to errors when trying to create
784 * sessiond before the init functions are completed).
788 ltt_ring_buffer_metadata_client_init();
789 ltt_ring_buffer_client_overwrite_init();
790 ltt_ring_buffer_client_discard_init();
792 timeout_mode
= get_timeout(&constructor_timeout
);
794 ret
= sem_init(&constructor_wait
, 0, 0);
797 ret
= setup_local_apps();
799 ERR("Error setting up to local apps");
801 ret
= pthread_create(&local_apps
.ust_listener
, NULL
,
802 ust_listener_thread
, &local_apps
);
804 if (local_apps
.allowed
) {
805 ret
= pthread_create(&global_apps
.ust_listener
, NULL
,
806 ust_listener_thread
, &global_apps
);
808 handle_register_done(&local_apps
);
811 switch (timeout_mode
) {
812 case 1: /* timeout wait */
814 ret
= sem_timedwait(&constructor_wait
,
815 &constructor_timeout
);
816 } while (ret
< 0 && errno
== EINTR
);
817 if (ret
< 0 && errno
== ETIMEDOUT
) {
818 ERR("Timed out waiting for ltt-sessiond");
823 case -1:/* wait forever */
825 ret
= sem_wait(&constructor_wait
);
826 } while (ret
< 0 && errno
== EINTR
);
829 case 0: /* no timeout */
835 void lttng_ust_cleanup(int exiting
)
837 cleanup_sock_info(&global_apps
);
838 if (local_apps
.allowed
) {
839 cleanup_sock_info(&local_apps
);
841 lttng_ust_abi_exit();
842 lttng_ust_events_exit();
843 ltt_ring_buffer_client_discard_exit();
844 ltt_ring_buffer_client_overwrite_exit();
845 ltt_ring_buffer_metadata_client_exit();
848 /* Reinitialize values for fork */
850 lttng_ust_comm_should_quit
= 0;
855 void __attribute__((destructor
)) lttng_ust_exit(void)
860 * Using pthread_cancel here because:
861 * A) we don't want to hang application teardown.
862 * B) the thread is not allocating any resource.
866 * Require the communication thread to quit. Synchronize with
867 * mutexes to ensure it is not in a mutex critical section when
868 * pthread_cancel is later called.
871 lttng_ust_comm_should_quit
= 1;
874 ret
= pthread_cancel(global_apps
.ust_listener
);
876 ERR("Error cancelling global ust listener thread");
878 if (local_apps
.allowed
) {
879 ret
= pthread_cancel(local_apps
.ust_listener
);
881 ERR("Error cancelling local ust listener thread");
884 lttng_ust_cleanup(1);
888 * We exclude the worker threads across fork and clone (except
889 * CLONE_VM), because these system calls only keep the forking thread
890 * running in the child. Therefore, we don't want to call fork or clone
891 * in the middle of an tracepoint or ust tracing state modification.
892 * Holding this mutex protects these structures across fork and clone.
894 void ust_before_fork(sigset_t
*save_sigset
)
897 * Disable signals. This is to avoid that the child intervenes
898 * before it is properly setup for tracing. It is safer to
899 * disable all signals, because then we know we are not breaking
900 * anything by restoring the original mask.
905 /* Disable signals */
906 sigfillset(&all_sigs
);
907 ret
= sigprocmask(SIG_BLOCK
, &all_sigs
, save_sigset
);
909 PERROR("sigprocmask");
912 rcu_bp_before_fork();
915 static void ust_after_fork_common(sigset_t
*restore_sigset
)
919 DBG("process %d", getpid());
921 /* Restore signals */
922 ret
= sigprocmask(SIG_SETMASK
, restore_sigset
, NULL
);
924 PERROR("sigprocmask");
928 void ust_after_fork_parent(sigset_t
*restore_sigset
)
930 DBG("process %d", getpid());
931 rcu_bp_after_fork_parent();
932 /* Release mutexes and reenable signals */
933 ust_after_fork_common(restore_sigset
);
937 * After fork, in the child, we need to cleanup all the leftover state,
938 * except the worker thread which already magically disappeared thanks
939 * to the weird Linux fork semantics. After tyding up, we call
940 * lttng_ust_init() again to start over as a new PID.
942 * This is meant for forks() that have tracing in the child between the
943 * fork and following exec call (if there is any).
945 void ust_after_fork_child(sigset_t
*restore_sigset
)
947 DBG("process %d", getpid());
948 /* Release urcu mutexes */
949 rcu_bp_after_fork_child();
950 lttng_ust_cleanup(0);
951 lttng_context_vtid_reset();
952 /* Release mutexes and reenable signals */
953 ust_after_fork_common(restore_sigset
);