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>
41 #include <lttng-ust-comm.h>
42 #include <ust/usterr-signal-safe.h>
43 #include <ust/lttng-ust-abi.h>
44 #include <ust/tracepoint.h>
45 #include <ust/tracepoint-internal.h>
47 #include "ltt-tracer-core.h"
50 * Has lttng ust comm constructor been called ?
52 static int initialized
;
55 * The ust_lock/ust_unlock lock is used as a communication thread mutex.
56 * Held when handling a command, also held by fork() to deal with
57 * removal of threads, and by exit path.
60 /* Should the ust comm thread quit ? */
61 static int lttng_ust_comm_should_quit
;
64 * Wait for either of these before continuing to the main
66 * - the register_done message from sessiond daemon
67 * (will let the sessiond daemon enable sessions before main
69 * - sessiond daemon is not reachable.
70 * - timeout (ensuring applications are resilient to session
73 static sem_t constructor_wait
;
75 * Doing this for both the global and local sessiond.
77 static int sem_count
= { 2 };
80 * Info about socket and associated listener thread.
84 pthread_t ust_listener
; /* listener thread */
86 int constructor_sem_posted
;
90 char sock_path
[PATH_MAX
];
93 char wait_shm_path
[PATH_MAX
];
97 /* Socket from app (connect) to session daemon (listen) for communication */
98 struct sock_info global_apps
= {
105 .sock_path
= DEFAULT_GLOBAL_APPS_UNIX_SOCK
,
108 .wait_shm_path
= DEFAULT_GLOBAL_APPS_WAIT_SHM_PATH
,
111 /* TODO: allow global_apps_sock_path override */
113 struct sock_info local_apps
= {
117 .allowed
= 0, /* Check setuid bit first */
122 static int wait_poll_fallback
;
124 extern void ltt_ring_buffer_client_overwrite_init(void);
125 extern void ltt_ring_buffer_client_discard_init(void);
126 extern void ltt_ring_buffer_metadata_client_init(void);
127 extern void ltt_ring_buffer_client_overwrite_exit(void);
128 extern void ltt_ring_buffer_client_discard_exit(void);
129 extern void ltt_ring_buffer_metadata_client_exit(void);
132 int setup_local_apps(void)
134 const char *home_dir
;
139 * Disallow per-user tracing for setuid binaries.
141 if (uid
!= geteuid()) {
142 local_apps
.allowed
= 0;
145 local_apps
.allowed
= 1;
147 home_dir
= (const char *) getenv("HOME");
150 snprintf(local_apps
.sock_path
, PATH_MAX
,
151 DEFAULT_HOME_APPS_UNIX_SOCK
, home_dir
);
152 snprintf(local_apps
.wait_shm_path
, PATH_MAX
,
153 DEFAULT_HOME_APPS_WAIT_SHM_PATH
, uid
);
158 int register_app_to_sessiond(int socket
)
169 char name
[16]; /* process name */
172 reg_msg
.major
= LTTNG_UST_COMM_VERSION_MAJOR
;
173 reg_msg
.minor
= LTTNG_UST_COMM_VERSION_MINOR
;
174 reg_msg
.pid
= getpid();
175 reg_msg
.ppid
= getppid();
176 reg_msg
.uid
= getuid();
177 reg_msg
.gid
= getgid();
178 prctl_ret
= prctl(PR_GET_NAME
, (unsigned long) reg_msg
.name
, 0, 0, 0);
180 ERR("Error executing prctl");
184 ret
= lttcomm_send_unix_sock(socket
, ®_msg
, sizeof(reg_msg
));
185 if (ret
>= 0 && ret
!= sizeof(reg_msg
))
191 int send_reply(int sock
, struct lttcomm_ust_reply
*lur
)
195 len
= lttcomm_send_unix_sock(sock
, lur
, sizeof(*lur
));
198 DBG("message successfully sent");
201 if (errno
== ECONNRESET
) {
202 printf("remote end closed connection\n");
207 printf("incorrect message size: %zd\n", len
);
213 int handle_register_done(struct sock_info
*sock_info
)
217 if (sock_info
->constructor_sem_posted
)
219 sock_info
->constructor_sem_posted
= 1;
220 if (uatomic_read(&sem_count
) <= 0) {
223 ret
= uatomic_add_return(&sem_count
, -1);
225 ret
= sem_post(&constructor_wait
);
232 int handle_message(struct sock_info
*sock_info
,
233 int sock
, struct lttcomm_ust_msg
*lum
)
236 const struct objd_ops
*ops
;
237 struct lttcomm_ust_reply lur
;
241 memset(&lur
, 0, sizeof(lur
));
243 if (lttng_ust_comm_should_quit
) {
248 ops
= objd_ops(lum
->handle
);
255 case LTTNG_UST_REGISTER_DONE
:
256 if (lum
->handle
== LTTNG_UST_ROOT_HANDLE
)
257 ret
= handle_register_done(sock_info
);
261 case LTTNG_UST_RELEASE
:
262 if (lum
->handle
== LTTNG_UST_ROOT_HANDLE
)
265 ret
= objd_unref(lum
->handle
);
269 ret
= ops
->cmd(lum
->handle
, lum
->cmd
,
270 (unsigned long) &lum
->u
);
277 lur
.handle
= lum
->handle
;
281 lur
.ret_code
= LTTCOMM_OK
;
283 lur
.ret_code
= LTTCOMM_SESSION_FAIL
;
285 if (lum
->cmd
== LTTNG_UST_STREAM
) {
287 * Special-case reply to send stream info.
290 lur
.u
.stream
.memory_map_size
= lum
->u
.stream
.memory_map_size
;
292 ret
= send_reply(sock
, &lur
);
294 if (lum
->cmd
== LTTNG_UST_STREAM
&& ret
>= 0) {
295 /* we also need to send the file descriptors. */
296 ret
= lttcomm_send_fds_unix_sock(sock
,
297 &lum
->u
.stream
.shm_fd
, &lum
->u
.stream
.shm_fd
,
300 perror("send shm_fd");
303 ret
= lttcomm_send_fds_unix_sock(sock
,
304 &lum
->u
.stream
.wait_fd
, &lum
->u
.stream
.wait_fd
,
307 perror("send wait_fd");
317 void cleanup_sock_info(struct sock_info
*sock_info
)
321 if (sock_info
->socket
!= -1) {
322 ret
= close(sock_info
->socket
);
324 ERR("Error closing apps socket");
326 sock_info
->socket
= -1;
328 if (sock_info
->root_handle
!= -1) {
329 ret
= objd_unref(sock_info
->root_handle
);
331 ERR("Error unref root handle");
333 sock_info
->root_handle
= -1;
335 sock_info
->constructor_sem_posted
= 0;
336 if (sock_info
->wait_shm_mmap
) {
337 ret
= munmap(sock_info
->wait_shm_mmap
, sysconf(_SC_PAGE_SIZE
));
339 ERR("Error unmapping wait shm");
341 sock_info
->wait_shm_mmap
= NULL
;
346 * Using fork to set umask in the child process (not multi-thread safe).
347 * We deal with the shm_open vs ftruncate race (happening when the
348 * sessiond owns the shm and does not let everybody modify it, to ensure
349 * safety against shm_unlink) by simply letting the mmap fail and
350 * retrying after a few seconds.
351 * For global shm, everybody has rw access to it until the sessiond
355 int get_wait_shm(struct sock_info
*sock_info
, size_t mmap_size
)
357 int wait_shm_fd
, ret
;
361 * Try to open read-only.
363 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
, O_RDONLY
, 0);
364 if (wait_shm_fd
>= 0) {
366 } else if (wait_shm_fd
< 0 && errno
!= ENOENT
) {
368 * Real-only open did not work, and it's not because the
369 * entry was not present. It's a failure that prohibits
372 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
376 * If the open failed because the file did not exist, try
377 * creating it ourself.
384 * Parent: wait for child to return, in which case the
385 * shared memory map will have been created.
388 if (!WIFEXITED(status
) || WEXITSTATUS(status
) != 0) {
393 * Try to open read-only again after creation.
395 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
, O_RDONLY
, 0);
396 if (wait_shm_fd
< 0) {
398 * Real-only open did not work. It's a failure
399 * that prohibits using shm.
401 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
405 } else if (pid
== 0) {
409 create_mode
= S_IRUSR
| S_IWUSR
| S_IRGRP
;
410 if (sock_info
->global
)
411 create_mode
|= S_IROTH
| S_IWGRP
| S_IWOTH
;
413 * We're alone in a child process, so we can modify the
414 * process-wide umask.
418 * Try creating shm (or get rw access).
419 * We don't do an exclusive open, because we allow other
420 * processes to create+ftruncate it concurrently.
422 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
,
423 O_RDWR
| O_CREAT
, create_mode
);
424 if (wait_shm_fd
>= 0) {
425 ret
= ftruncate(wait_shm_fd
, mmap_size
);
433 * For local shm, we need to have rw access to accept
434 * opening it: this means the local sessiond will be
435 * able to wake us up. For global shm, we open it even
436 * if rw access is not granted, because the root.root
437 * sessiond will be able to override all rights and wake
440 if (!sock_info
->global
&& errno
!= EACCES
) {
441 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
445 * The shm exists, but we cannot open it RW. Report
453 if (wait_shm_fd
>= 0 && !sock_info
->global
) {
457 * Ensure that our user is the owner of the shm file for
458 * local shm. If we do not own the file, it means our
459 * sessiond will not have access to wake us up (there is
460 * probably a rogue process trying to fake our
461 * sessiond). Fallback to polling method in this case.
463 ret
= fstat(wait_shm_fd
, &statbuf
);
468 if (statbuf
.st_uid
!= getuid())
474 ret
= close(wait_shm_fd
);
476 PERROR("Error closing fd");
482 char *get_map_shm(struct sock_info
*sock_info
)
484 size_t mmap_size
= sysconf(_SC_PAGE_SIZE
);
485 int wait_shm_fd
, ret
;
488 wait_shm_fd
= get_wait_shm(sock_info
, mmap_size
);
489 if (wait_shm_fd
< 0) {
492 wait_shm_mmap
= mmap(NULL
, mmap_size
, PROT_READ
,
493 MAP_SHARED
, wait_shm_fd
, 0);
494 /* close shm fd immediately after taking the mmap reference */
495 ret
= close(wait_shm_fd
);
497 PERROR("Error closing fd");
499 if (wait_shm_mmap
== MAP_FAILED
) {
500 DBG("mmap error (can be caused by race with sessiond). Fallback to poll mode.");
503 return wait_shm_mmap
;
510 void wait_for_sessiond(struct sock_info
*sock_info
)
515 if (lttng_ust_comm_should_quit
) {
518 if (wait_poll_fallback
) {
521 if (!sock_info
->wait_shm_mmap
) {
522 sock_info
->wait_shm_mmap
= get_map_shm(sock_info
);
523 if (!sock_info
->wait_shm_mmap
)
528 DBG("Waiting for %s apps sessiond", sock_info
->name
);
529 /* Wait for futex wakeup */
530 if (uatomic_read((int32_t *) sock_info
->wait_shm_mmap
) == 0) {
531 ret
= futex_async((int32_t *) sock_info
->wait_shm_mmap
,
532 FUTEX_WAIT
, 0, NULL
, NULL
, 0);
534 if (errno
== EFAULT
) {
535 wait_poll_fallback
= 1;
537 "Linux kernels 2.6.33 to 3.0 (with the exception of stable versions) "
538 "do not support FUTEX_WAKE on read-only memory mappings correctly. "
539 "Please upgrade your kernel "
540 "(fix is commit 9ea71503a8ed9184d2d0b8ccc4d269d05f7940ae in Linux kernel "
541 "mainline). LTTng-UST will use polling mode fallback.");
558 * This thread does not allocate any resource, except within
559 * handle_message, within mutex protection. This mutex protects against
561 * The other moment it allocates resources is at socket connexion, which
562 * is also protected by the mutex.
565 void *ust_listener_thread(void *arg
)
567 struct sock_info
*sock_info
= arg
;
568 int sock
, ret
, prev_connect_failed
= 0, has_waited
= 0;
570 /* Restart trying to connect to the session daemon */
572 if (prev_connect_failed
) {
573 /* Wait for sessiond availability with pipe */
574 wait_for_sessiond(sock_info
);
578 * Sleep for 5 seconds before retrying after a
579 * sequence of failure / wait / failure. This
580 * deals with a killed or broken session daemon.
585 prev_connect_failed
= 0;
589 if (lttng_ust_comm_should_quit
) {
594 if (sock_info
->socket
!= -1) {
595 ret
= close(sock_info
->socket
);
597 ERR("Error closing %s apps socket", sock_info
->name
);
599 sock_info
->socket
= -1;
603 ret
= lttcomm_connect_unix_sock(sock_info
->sock_path
);
605 ERR("Error connecting to %s apps socket", sock_info
->name
);
606 prev_connect_failed
= 1;
608 * If we cannot find the sessiond daemon, don't delay
609 * constructor execution.
611 ret
= handle_register_done(sock_info
);
617 sock_info
->socket
= sock
= ret
;
620 * Create only one root handle per listener thread for the whole
623 if (sock_info
->root_handle
== -1) {
624 ret
= lttng_abi_create_root_handle();
626 ERR("Error creating root handle");
630 sock_info
->root_handle
= ret
;
633 ret
= register_app_to_sessiond(sock
);
635 ERR("Error registering to %s apps socket", sock_info
->name
);
636 prev_connect_failed
= 1;
638 * If we cannot register to the sessiond daemon, don't
639 * delay constructor execution.
641 ret
= handle_register_done(sock_info
);
650 struct lttcomm_ust_msg lum
;
652 len
= lttcomm_recv_unix_sock(sock
, &lum
, sizeof(lum
));
654 case 0: /* orderly shutdown */
655 DBG("%s ltt-sessiond has performed an orderly shutdown\n", sock_info
->name
);
658 DBG("message received\n");
659 ret
= handle_message(sock_info
, sock
, &lum
);
661 ERR("Error handling message for %s socket", sock_info
->name
);
665 if (errno
== ECONNRESET
) {
666 ERR("%s remote end closed connection\n", sock_info
->name
);
671 ERR("incorrect message size (%s socket): %zd\n", sock_info
->name
, len
);
677 goto restart
; /* try to reconnect */
683 * Return values: -1: don't wait. 0: wait forever. 1: timeout wait.
686 int get_timeout(struct timespec
*constructor_timeout
)
688 long constructor_delay_ms
= LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS
;
692 str_delay
= getenv("UST_REGISTER_TIMEOUT");
694 constructor_delay_ms
= strtol(str_delay
, NULL
, 10);
697 switch (constructor_delay_ms
) {
698 case -1:/* fall-through */
700 return constructor_delay_ms
;
706 * If we are unable to find the current time, don't wait.
708 ret
= clock_gettime(CLOCK_REALTIME
, constructor_timeout
);
712 constructor_timeout
->tv_sec
+= constructor_delay_ms
/ 1000UL;
713 constructor_timeout
->tv_nsec
+=
714 (constructor_delay_ms
% 1000UL) * 1000000UL;
715 if (constructor_timeout
->tv_nsec
>= 1000000000UL) {
716 constructor_timeout
->tv_sec
++;
717 constructor_timeout
->tv_nsec
-= 1000000000UL;
723 * sessiond monitoring thread: monitor presence of global and per-user
724 * sessiond by polling the application common named pipe.
728 void __attribute__((constructor
)) lttng_ust_init(void)
730 struct timespec constructor_timeout
;
734 if (uatomic_xchg(&initialized
, 1) == 1)
738 * We want precise control over the order in which we construct
739 * our sub-libraries vs starting to receive commands from
740 * sessiond (otherwise leading to errors when trying to create
741 * sessiond before the init functions are completed).
745 ltt_ring_buffer_metadata_client_init();
746 ltt_ring_buffer_client_overwrite_init();
747 ltt_ring_buffer_client_discard_init();
749 timeout_mode
= get_timeout(&constructor_timeout
);
751 ret
= sem_init(&constructor_wait
, 0, 0);
754 ret
= setup_local_apps();
756 ERR("Error setting up to local apps");
758 ret
= pthread_create(&local_apps
.ust_listener
, NULL
,
759 ust_listener_thread
, &local_apps
);
761 if (local_apps
.allowed
) {
762 ret
= pthread_create(&global_apps
.ust_listener
, NULL
,
763 ust_listener_thread
, &global_apps
);
765 handle_register_done(&local_apps
);
768 switch (timeout_mode
) {
769 case 1: /* timeout wait */
771 ret
= sem_timedwait(&constructor_wait
,
772 &constructor_timeout
);
773 } while (ret
< 0 && errno
== EINTR
);
774 if (ret
< 0 && errno
== ETIMEDOUT
) {
775 ERR("Timed out waiting for ltt-sessiond");
780 case -1:/* wait forever */
782 ret
= sem_wait(&constructor_wait
);
783 } while (ret
< 0 && errno
== EINTR
);
786 case 0: /* no timeout */
792 void lttng_ust_cleanup(int exiting
)
794 cleanup_sock_info(&global_apps
);
795 if (local_apps
.allowed
) {
796 cleanup_sock_info(&local_apps
);
798 lttng_ust_abi_exit();
800 ltt_ring_buffer_client_discard_exit();
801 ltt_ring_buffer_client_overwrite_exit();
802 ltt_ring_buffer_metadata_client_exit();
805 /* Reinitialize values for fork */
807 lttng_ust_comm_should_quit
= 0;
812 void __attribute__((destructor
)) lttng_ust_exit(void)
817 * Using pthread_cancel here because:
818 * A) we don't want to hang application teardown.
819 * B) the thread is not allocating any resource.
823 * Require the communication thread to quit. Synchronize with
824 * mutexes to ensure it is not in a mutex critical section when
825 * pthread_cancel is later called.
828 lttng_ust_comm_should_quit
= 1;
831 ret
= pthread_cancel(global_apps
.ust_listener
);
833 ERR("Error cancelling global ust listener thread");
835 if (local_apps
.allowed
) {
836 ret
= pthread_cancel(local_apps
.ust_listener
);
838 ERR("Error cancelling local ust listener thread");
841 lttng_ust_cleanup(1);
845 * We exclude the worker threads across fork and clone (except
846 * CLONE_VM), because these system calls only keep the forking thread
847 * running in the child. Therefore, we don't want to call fork or clone
848 * in the middle of an tracepoint or ust tracing state modification.
849 * Holding this mutex protects these structures across fork and clone.
851 void ust_before_fork(ust_fork_info_t
*fork_info
)
854 * Disable signals. This is to avoid that the child intervenes
855 * before it is properly setup for tracing. It is safer to
856 * disable all signals, because then we know we are not breaking
857 * anything by restoring the original mask.
862 /* Disable signals */
863 sigfillset(&all_sigs
);
864 ret
= sigprocmask(SIG_BLOCK
, &all_sigs
, &fork_info
->orig_sigs
);
866 PERROR("sigprocmask");
869 rcu_bp_before_fork();
872 static void ust_after_fork_common(ust_fork_info_t
*fork_info
)
876 DBG("process %d", getpid());
878 /* Restore signals */
879 ret
= sigprocmask(SIG_SETMASK
, &fork_info
->orig_sigs
, NULL
);
881 PERROR("sigprocmask");
885 void ust_after_fork_parent(ust_fork_info_t
*fork_info
)
887 DBG("process %d", getpid());
888 rcu_bp_after_fork_parent();
889 /* Release mutexes and reenable signals */
890 ust_after_fork_common(fork_info
);
894 * After fork, in the child, we need to cleanup all the leftover state,
895 * except the worker thread which already magically disappeared thanks
896 * to the weird Linux fork semantics. After tyding up, we call
897 * lttng_ust_init() again to start over as a new PID.
899 * This is meant for forks() that have tracing in the child between the
900 * fork and following exec call (if there is any).
902 void ust_after_fork_child(ust_fork_info_t
*fork_info
)
904 DBG("process %d", getpid());
905 /* Release urcu mutexes */
906 rcu_bp_after_fork_child();
907 lttng_ust_cleanup(0);
908 /* Release mutexes and reenable signals */
909 ust_after_fork_common(fork_info
);