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
24 #include <sys/types.h>
25 #include <sys/socket.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>
45 #include <lttng/ust-error.h>
46 #include <lttng/ust-ctl.h>
47 #include <urcu/tls-compat.h>
49 #include <usterr-signal-safe.h>
51 #include "tracepoint-internal.h"
52 #include "lttng-tracer-core.h"
54 #include "../libringbuffer/tlsfixup.h"
55 #include "lttng-ust-statedump.h"
57 #include "../libringbuffer/getcpu.h"
61 * Has lttng ust comm constructor been called ?
63 static int initialized
;
66 * The ust_lock/ust_unlock lock is used as a communication thread mutex.
67 * Held when handling a command, also held by fork() to deal with
68 * removal of threads, and by exit path.
70 * The UST lock is the centralized mutex across UST tracing control and
73 * ust_exit_mutex must never nest in ust_mutex.
75 * ust_fork_mutex must never nest in ust_mutex.
77 * ust_mutex_nest is a per-thread nesting counter, allowing the perf
78 * counter lazy initialization called by events within the statedump,
79 * which traces while the ust_mutex is held.
81 * ust_lock nests within the dynamic loader lock (within glibc) because
82 * it is taken within the library constructor.
84 static pthread_mutex_t ust_mutex
= PTHREAD_MUTEX_INITIALIZER
;
86 /* Allow nesting the ust_mutex within the same thread. */
87 static DEFINE_URCU_TLS(int, ust_mutex_nest
);
90 * ust_exit_mutex protects thread_active variable wrt thread exit. It
91 * cannot be done by ust_mutex because pthread_cancel(), which takes an
92 * internal libc lock, cannot nest within ust_mutex.
94 * It never nests within a ust_mutex.
96 static pthread_mutex_t ust_exit_mutex
= PTHREAD_MUTEX_INITIALIZER
;
99 * ust_fork_mutex protects base address statedump tracing against forks. It
100 * prevents the dynamic loader lock to be taken (by base address statedump
101 * tracing) while a fork is happening, thus preventing deadlock issues with
102 * the dynamic loader lock.
104 static pthread_mutex_t ust_fork_mutex
= PTHREAD_MUTEX_INITIALIZER
;
106 /* Should the ust comm thread quit ? */
107 static int lttng_ust_comm_should_quit
;
110 * Return 0 on success, -1 if should quit.
111 * The lock is taken in both cases.
116 sigset_t sig_all_blocked
, orig_mask
;
119 ret
= pthread_setcancelstate(PTHREAD_CANCEL_DISABLE
, &oldstate
);
121 ERR("pthread_setcancelstate: %s", strerror(ret
));
123 if (oldstate
!= PTHREAD_CANCEL_ENABLE
) {
124 ERR("pthread_setcancelstate: unexpected oldstate");
126 sigfillset(&sig_all_blocked
);
127 ret
= pthread_sigmask(SIG_SETMASK
, &sig_all_blocked
, &orig_mask
);
129 ERR("pthread_sigmask: %s", strerror(ret
));
131 if (!URCU_TLS(ust_mutex_nest
)++)
132 pthread_mutex_lock(&ust_mutex
);
133 ret
= pthread_sigmask(SIG_SETMASK
, &orig_mask
, NULL
);
135 ERR("pthread_sigmask: %s", strerror(ret
));
137 if (lttng_ust_comm_should_quit
) {
145 * ust_lock_nocheck() can be used in constructors/destructors, because
146 * they are already nested within the dynamic loader lock, and therefore
147 * have exclusive access against execution of liblttng-ust destructor.
150 void ust_lock_nocheck(void)
152 sigset_t sig_all_blocked
, orig_mask
;
155 ret
= pthread_setcancelstate(PTHREAD_CANCEL_DISABLE
, &oldstate
);
157 ERR("pthread_setcancelstate: %s", strerror(ret
));
159 if (oldstate
!= PTHREAD_CANCEL_ENABLE
) {
160 ERR("pthread_setcancelstate: unexpected oldstate");
162 sigfillset(&sig_all_blocked
);
163 ret
= pthread_sigmask(SIG_SETMASK
, &sig_all_blocked
, &orig_mask
);
165 ERR("pthread_sigmask: %s", strerror(ret
));
167 if (!URCU_TLS(ust_mutex_nest
)++)
168 pthread_mutex_lock(&ust_mutex
);
169 ret
= pthread_sigmask(SIG_SETMASK
, &orig_mask
, NULL
);
171 ERR("pthread_sigmask: %s", strerror(ret
));
178 void ust_unlock(void)
180 sigset_t sig_all_blocked
, orig_mask
;
183 sigfillset(&sig_all_blocked
);
184 ret
= pthread_sigmask(SIG_SETMASK
, &sig_all_blocked
, &orig_mask
);
186 ERR("pthread_sigmask: %s", strerror(ret
));
188 if (!--URCU_TLS(ust_mutex_nest
))
189 pthread_mutex_unlock(&ust_mutex
);
190 ret
= pthread_sigmask(SIG_SETMASK
, &orig_mask
, NULL
);
192 ERR("pthread_sigmask: %s", strerror(ret
));
194 ret
= pthread_setcancelstate(PTHREAD_CANCEL_ENABLE
, &oldstate
);
196 ERR("pthread_setcancelstate: %s", strerror(ret
));
198 if (oldstate
!= PTHREAD_CANCEL_DISABLE
) {
199 ERR("pthread_setcancelstate: unexpected oldstate");
204 * Wait for either of these before continuing to the main
206 * - the register_done message from sessiond daemon
207 * (will let the sessiond daemon enable sessions before main
209 * - sessiond daemon is not reachable.
210 * - timeout (ensuring applications are resilient to session
213 static sem_t constructor_wait
;
215 * Doing this for both the global and local sessiond.
217 static int sem_count
= { 2 };
220 * Counting nesting within lttng-ust. Used to ensure that calling fork()
221 * from liblttng-ust does not execute the pre/post fork handlers.
223 static DEFINE_URCU_TLS(int, lttng_ust_nest_count
);
226 * Info about socket and associated listener thread.
230 pthread_t ust_listener
; /* listener thread */
232 int constructor_sem_posted
;
237 char sock_path
[PATH_MAX
];
241 char wait_shm_path
[PATH_MAX
];
243 /* Keep track of lazy state dump not performed yet. */
244 int statedump_pending
;
247 /* Socket from app (connect) to session daemon (listen) for communication */
248 struct sock_info global_apps
= {
256 .sock_path
= LTTNG_DEFAULT_RUNDIR
"/" LTTNG_UST_SOCK_FILENAME
,
260 .wait_shm_path
= "/" LTTNG_UST_WAIT_FILENAME
,
262 .statedump_pending
= 0,
265 /* TODO: allow global_apps_sock_path override */
267 struct sock_info local_apps
= {
271 .allowed
= 0, /* Check setuid bit first */
277 .statedump_pending
= 0,
280 static int wait_poll_fallback
;
282 static const char *cmd_name_mapping
[] = {
283 [ LTTNG_UST_RELEASE
] = "Release",
284 [ LTTNG_UST_SESSION
] = "Create Session",
285 [ LTTNG_UST_TRACER_VERSION
] = "Get Tracer Version",
287 [ LTTNG_UST_TRACEPOINT_LIST
] = "Create Tracepoint List",
288 [ LTTNG_UST_WAIT_QUIESCENT
] = "Wait for Quiescent State",
289 [ LTTNG_UST_REGISTER_DONE
] = "Registration Done",
290 [ LTTNG_UST_TRACEPOINT_FIELD_LIST
] = "Create Tracepoint Field List",
292 /* Session FD commands */
293 [ LTTNG_UST_CHANNEL
] = "Create Channel",
294 [ LTTNG_UST_SESSION_START
] = "Start Session",
295 [ LTTNG_UST_SESSION_STOP
] = "Stop Session",
297 /* Channel FD commands */
298 [ LTTNG_UST_STREAM
] = "Create Stream",
299 [ LTTNG_UST_EVENT
] = "Create Event",
301 /* Event and Channel FD commands */
302 [ LTTNG_UST_CONTEXT
] = "Create Context",
303 [ LTTNG_UST_FLUSH_BUFFER
] = "Flush Buffer",
305 /* Event, Channel and Session commands */
306 [ LTTNG_UST_ENABLE
] = "Enable",
307 [ LTTNG_UST_DISABLE
] = "Disable",
309 /* Tracepoint list commands */
310 [ LTTNG_UST_TRACEPOINT_LIST_GET
] = "List Next Tracepoint",
311 [ LTTNG_UST_TRACEPOINT_FIELD_LIST_GET
] = "List Next Tracepoint Field",
313 /* Event FD commands */
314 [ LTTNG_UST_FILTER
] = "Create Filter",
315 [ LTTNG_UST_EXCLUSION
] = "Add exclusions to event",
318 static const char *str_timeout
;
319 static int got_timeout_env
;
321 extern void lttng_ring_buffer_client_overwrite_init(void);
322 extern void lttng_ring_buffer_client_overwrite_rt_init(void);
323 extern void lttng_ring_buffer_client_discard_init(void);
324 extern void lttng_ring_buffer_client_discard_rt_init(void);
325 extern void lttng_ring_buffer_metadata_client_init(void);
326 extern void lttng_ring_buffer_client_overwrite_exit(void);
327 extern void lttng_ring_buffer_client_overwrite_rt_exit(void);
328 extern void lttng_ring_buffer_client_discard_exit(void);
329 extern void lttng_ring_buffer_client_discard_rt_exit(void);
330 extern void lttng_ring_buffer_metadata_client_exit(void);
332 ssize_t
lttng_ust_read(int fd
, void *buf
, size_t len
)
335 size_t copied
= 0, to_copy
= len
;
338 ret
= read(fd
, buf
+ copied
, to_copy
);
343 } while ((ret
> 0 && to_copy
> 0)
344 || (ret
< 0 && errno
== EINTR
));
351 * Returns the HOME directory path. Caller MUST NOT free(3) the returned
355 const char *get_lttng_home_dir(void)
359 val
= (const char *) lttng_secure_getenv("LTTNG_HOME");
363 return (const char *) lttng_secure_getenv("HOME");
367 * Force a read (imply TLS fixup for dlopen) of TLS variables.
370 void lttng_fixup_nest_count_tls(void)
372 asm volatile ("" : : "m" (URCU_TLS(lttng_ust_nest_count
)));
376 void lttng_fixup_ust_mutex_nest_tls(void)
378 asm volatile ("" : : "m" (URCU_TLS(ust_mutex_nest
)));
385 void lttng_fixup_urcu_bp_tls(void)
391 int lttng_get_notify_socket(void *owner
)
393 struct sock_info
*info
= owner
;
395 return info
->notify_socket
;
399 void print_cmd(int cmd
, int handle
)
401 const char *cmd_name
= "Unknown";
403 if (cmd
>= 0 && cmd
< LTTNG_ARRAY_SIZE(cmd_name_mapping
)
404 && cmd_name_mapping
[cmd
]) {
405 cmd_name
= cmd_name_mapping
[cmd
];
407 DBG("Message Received \"%s\" (%d), Handle \"%s\" (%d)",
409 lttng_ust_obj_get_name(handle
), handle
);
413 int setup_local_apps(void)
415 const char *home_dir
;
420 * Disallow per-user tracing for setuid binaries.
422 if (uid
!= geteuid()) {
423 assert(local_apps
.allowed
== 0);
426 home_dir
= get_lttng_home_dir();
428 WARN("HOME environment variable not set. Disabling LTTng-UST per-user tracing.");
429 assert(local_apps
.allowed
== 0);
432 local_apps
.allowed
= 1;
433 snprintf(local_apps
.sock_path
, PATH_MAX
, "%s/%s/%s",
435 LTTNG_DEFAULT_HOME_RUNDIR
,
436 LTTNG_UST_SOCK_FILENAME
);
437 snprintf(local_apps
.wait_shm_path
, PATH_MAX
, "/%s-%u",
438 LTTNG_UST_WAIT_FILENAME
,
444 * Get notify_sock timeout, in ms.
445 * -1: wait forever. 0: don't wait. >0: timeout, in ms.
448 long get_timeout(void)
450 long constructor_delay_ms
= LTTNG_UST_DEFAULT_CONSTRUCTOR_TIMEOUT_MS
;
452 if (!got_timeout_env
) {
453 str_timeout
= getenv("LTTNG_UST_REGISTER_TIMEOUT");
457 constructor_delay_ms
= strtol(str_timeout
, NULL
, 10);
458 return constructor_delay_ms
;
462 long get_notify_sock_timeout(void)
464 return get_timeout();
468 * Return values: -1: wait forever. 0: don't wait. 1: timeout wait.
471 int get_constructor_timeout(struct timespec
*constructor_timeout
)
473 long constructor_delay_ms
;
476 constructor_delay_ms
= get_timeout();
478 switch (constructor_delay_ms
) {
479 case -1:/* fall-through */
481 return constructor_delay_ms
;
487 * If we are unable to find the current time, don't wait.
489 ret
= clock_gettime(CLOCK_REALTIME
, constructor_timeout
);
494 constructor_timeout
->tv_sec
+= constructor_delay_ms
/ 1000UL;
495 constructor_timeout
->tv_nsec
+=
496 (constructor_delay_ms
% 1000UL) * 1000000UL;
497 if (constructor_timeout
->tv_nsec
>= 1000000000UL) {
498 constructor_timeout
->tv_sec
++;
499 constructor_timeout
->tv_nsec
-= 1000000000UL;
501 /* Timeout wait (constructor_delay_ms). */
506 int register_to_sessiond(int socket
, enum ustctl_socket_type type
)
508 return ustcomm_send_reg_msg(socket
,
511 lttng_alignof(uint8_t) * CHAR_BIT
,
512 lttng_alignof(uint16_t) * CHAR_BIT
,
513 lttng_alignof(uint32_t) * CHAR_BIT
,
514 lttng_alignof(uint64_t) * CHAR_BIT
,
515 lttng_alignof(unsigned long) * CHAR_BIT
);
519 int send_reply(int sock
, struct ustcomm_ust_reply
*lur
)
523 len
= ustcomm_send_unix_sock(sock
, lur
, sizeof(*lur
));
526 DBG("message successfully sent");
529 if (len
== -ECONNRESET
) {
530 DBG("remote end closed connection");
535 DBG("incorrect message size: %zd", len
);
541 int handle_register_done(struct sock_info
*sock_info
)
545 if (sock_info
->constructor_sem_posted
)
547 sock_info
->constructor_sem_posted
= 1;
548 if (uatomic_read(&sem_count
) <= 0) {
551 ret
= uatomic_add_return(&sem_count
, -1);
553 ret
= sem_post(&constructor_wait
);
560 * Only execute pending statedump after the constructor semaphore has
561 * been posted by each listener thread. This means statedump will only
562 * be performed after the "registration done" command is received from
563 * each session daemon the application is connected to.
565 * This ensures we don't run into deadlock issues with the dynamic
566 * loader mutex, which is held while the constructor is called and
567 * waiting on the constructor semaphore. All operations requiring this
568 * dynamic loader lock need to be postponed using this mechanism.
571 void handle_pending_statedump(struct sock_info
*sock_info
)
573 int ctor_passed
= sock_info
->constructor_sem_posted
;
575 if (ctor_passed
&& sock_info
->statedump_pending
) {
576 sock_info
->statedump_pending
= 0;
577 pthread_mutex_lock(&ust_fork_mutex
);
578 lttng_handle_pending_statedump(sock_info
);
579 pthread_mutex_unlock(&ust_fork_mutex
);
584 int handle_message(struct sock_info
*sock_info
,
585 int sock
, struct ustcomm_ust_msg
*lum
)
588 const struct lttng_ust_objd_ops
*ops
;
589 struct ustcomm_ust_reply lur
;
593 memset(&lur
, 0, sizeof(lur
));
596 ret
= -LTTNG_UST_ERR_EXITING
;
600 ops
= objd_ops(lum
->handle
);
607 case LTTNG_UST_REGISTER_DONE
:
608 if (lum
->handle
== LTTNG_UST_ROOT_HANDLE
)
609 ret
= handle_register_done(sock_info
);
613 case LTTNG_UST_RELEASE
:
614 if (lum
->handle
== LTTNG_UST_ROOT_HANDLE
)
617 ret
= lttng_ust_objd_unref(lum
->handle
, 1);
619 case LTTNG_UST_FILTER
:
621 /* Receive filter data */
622 struct lttng_ust_filter_bytecode_node
*bytecode
;
624 if (lum
->u
.filter
.data_size
> FILTER_BYTECODE_MAX_LEN
) {
625 ERR("Filter data size is too large: %u bytes",
626 lum
->u
.filter
.data_size
);
631 if (lum
->u
.filter
.reloc_offset
> lum
->u
.filter
.data_size
) {
632 ERR("Filter reloc offset %u is not within data",
633 lum
->u
.filter
.reloc_offset
);
638 bytecode
= zmalloc(sizeof(*bytecode
) + lum
->u
.filter
.data_size
);
643 len
= ustcomm_recv_unix_sock(sock
, bytecode
->bc
.data
,
644 lum
->u
.filter
.data_size
);
646 case 0: /* orderly shutdown */
651 if (len
== lum
->u
.filter
.data_size
) {
652 DBG("filter data received");
654 } else if (len
< 0) {
655 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len
);
656 if (len
== -ECONNRESET
) {
657 ERR("%s remote end closed connection", sock_info
->name
);
666 DBG("incorrect filter data message size: %zd", len
);
672 bytecode
->bc
.len
= lum
->u
.filter
.data_size
;
673 bytecode
->bc
.reloc_offset
= lum
->u
.filter
.reloc_offset
;
674 bytecode
->bc
.seqnum
= lum
->u
.filter
.seqnum
;
676 ret
= ops
->cmd(lum
->handle
, lum
->cmd
,
677 (unsigned long) bytecode
,
682 /* don't free bytecode if everything went fine. */
689 case LTTNG_UST_EXCLUSION
:
691 /* Receive exclusion names */
692 struct lttng_ust_excluder_node
*node
;
695 count
= lum
->u
.exclusion
.count
;
697 /* There are no names to read */
701 node
= zmalloc(sizeof(*node
) +
702 count
* LTTNG_UST_SYM_NAME_LEN
);
707 node
->excluder
.count
= count
;
708 len
= ustcomm_recv_unix_sock(sock
, node
->excluder
.names
,
709 count
* LTTNG_UST_SYM_NAME_LEN
);
711 case 0: /* orderly shutdown */
716 if (len
== count
* LTTNG_UST_SYM_NAME_LEN
) {
717 DBG("Exclusion data received");
719 } else if (len
< 0) {
720 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len
);
721 if (len
== -ECONNRESET
) {
722 ERR("%s remote end closed connection", sock_info
->name
);
731 DBG("Incorrect exclusion data message size: %zd", len
);
738 ret
= ops
->cmd(lum
->handle
, lum
->cmd
,
739 (unsigned long) node
,
744 /* Don't free exclusion data if everything went fine. */
751 case LTTNG_UST_CHANNEL
:
756 len
= ustcomm_recv_channel_from_sessiond(sock
,
757 &chan_data
, lum
->u
.channel
.len
,
760 case 0: /* orderly shutdown */
764 if (len
== lum
->u
.channel
.len
) {
765 DBG("channel data received");
767 } else if (len
< 0) {
768 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len
);
769 if (len
== -ECONNRESET
) {
770 ERR("%s remote end closed connection", sock_info
->name
);
777 DBG("incorrect channel data message size: %zd", len
);
782 args
.channel
.chan_data
= chan_data
;
783 args
.channel
.wakeup_fd
= wakeup_fd
;
785 ret
= ops
->cmd(lum
->handle
, lum
->cmd
,
786 (unsigned long) &lum
->u
,
792 case LTTNG_UST_STREAM
:
794 /* Receive shm_fd, wakeup_fd */
795 ret
= ustcomm_recv_stream_from_sessiond(sock
,
798 &args
.stream
.wakeup_fd
);
803 ret
= ops
->cmd(lum
->handle
, lum
->cmd
,
804 (unsigned long) &lum
->u
,
812 ret
= ops
->cmd(lum
->handle
, lum
->cmd
,
813 (unsigned long) &lum
->u
,
820 lur
.handle
= lum
->handle
;
824 lur
.ret_code
= LTTNG_UST_OK
;
827 * Use -LTTNG_UST_ERR as wildcard for UST internal
828 * error that are not caused by the transport, except if
829 * we already have a more precise error message to
832 if (ret
> -LTTNG_UST_ERR
) {
833 /* Translate code to UST error. */
836 lur
.ret_code
= -LTTNG_UST_ERR_EXIST
;
839 lur
.ret_code
= -LTTNG_UST_ERR_INVAL
;
842 lur
.ret_code
= -LTTNG_UST_ERR_NOENT
;
845 lur
.ret_code
= -LTTNG_UST_ERR_PERM
;
848 lur
.ret_code
= -LTTNG_UST_ERR_NOSYS
;
851 lur
.ret_code
= -LTTNG_UST_ERR
;
860 case LTTNG_UST_TRACER_VERSION
:
861 lur
.u
.version
= lum
->u
.version
;
863 case LTTNG_UST_TRACEPOINT_LIST_GET
:
864 memcpy(&lur
.u
.tracepoint
, &lum
->u
.tracepoint
, sizeof(lur
.u
.tracepoint
));
868 DBG("Return value: %d", lur
.ret_val
);
869 ret
= send_reply(sock
, &lur
);
871 DBG("error sending reply");
876 * LTTNG_UST_TRACEPOINT_FIELD_LIST_GET needs to send the field
879 if (lur
.ret_code
== LTTNG_UST_OK
) {
881 case LTTNG_UST_TRACEPOINT_FIELD_LIST_GET
:
882 len
= ustcomm_send_unix_sock(sock
,
883 &args
.field_list
.entry
,
884 sizeof(args
.field_list
.entry
));
889 if (len
!= sizeof(args
.field_list
.entry
)) {
900 * Performed delayed statedump operations outside of the UST
901 * lock. We need to take the dynamic loader lock before we take
902 * the UST lock internally within handle_pending_statedump().
904 handle_pending_statedump(sock_info
);
910 void cleanup_sock_info(struct sock_info
*sock_info
, int exiting
)
914 if (sock_info
->root_handle
!= -1) {
915 ret
= lttng_ust_objd_unref(sock_info
->root_handle
, 1);
917 ERR("Error unref root handle");
919 sock_info
->root_handle
= -1;
921 sock_info
->constructor_sem_posted
= 0;
924 * wait_shm_mmap, socket and notify socket are used by listener
925 * threads outside of the ust lock, so we cannot tear them down
926 * ourselves, because we cannot join on these threads. Leave
927 * responsibility of cleaning up these resources to the OS
933 if (sock_info
->socket
!= -1) {
934 ret
= ustcomm_close_unix_sock(sock_info
->socket
);
936 ERR("Error closing ust cmd socket");
938 sock_info
->socket
= -1;
940 if (sock_info
->notify_socket
!= -1) {
941 ret
= ustcomm_close_unix_sock(sock_info
->notify_socket
);
943 ERR("Error closing ust notify socket");
945 sock_info
->notify_socket
= -1;
947 if (sock_info
->wait_shm_mmap
) {
950 page_size
= sysconf(_SC_PAGE_SIZE
);
951 if (page_size
<= 0) {
955 PERROR("Error in sysconf(_SC_PAGE_SIZE)");
957 ret
= munmap(sock_info
->wait_shm_mmap
, page_size
);
959 ERR("Error unmapping wait shm");
962 sock_info
->wait_shm_mmap
= NULL
;
967 * Using fork to set umask in the child process (not multi-thread safe).
968 * We deal with the shm_open vs ftruncate race (happening when the
969 * sessiond owns the shm and does not let everybody modify it, to ensure
970 * safety against shm_unlink) by simply letting the mmap fail and
971 * retrying after a few seconds.
972 * For global shm, everybody has rw access to it until the sessiond
976 int get_wait_shm(struct sock_info
*sock_info
, size_t mmap_size
)
978 int wait_shm_fd
, ret
;
982 * Try to open read-only.
984 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
, O_RDONLY
, 0);
985 if (wait_shm_fd
>= 0) {
988 size_t bytes_read
= 0;
991 * Try to read the fd. If unable to do so, try opening
995 len
= read(wait_shm_fd
,
996 &((char *) &tmp_read
)[bytes_read
],
997 sizeof(tmp_read
) - bytes_read
);
1001 } while ((len
< 0 && errno
== EINTR
)
1002 || (len
> 0 && bytes_read
< sizeof(tmp_read
)));
1003 if (bytes_read
!= sizeof(tmp_read
)) {
1004 ret
= close(wait_shm_fd
);
1006 ERR("close wait_shm_fd");
1011 } else if (wait_shm_fd
< 0 && errno
!= ENOENT
) {
1013 * Real-only open did not work, and it's not because the
1014 * entry was not present. It's a failure that prohibits
1017 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
1023 * If the open failed because the file did not exist, or because
1024 * the file was not truncated yet, try creating it ourself.
1026 URCU_TLS(lttng_ust_nest_count
)++;
1028 URCU_TLS(lttng_ust_nest_count
)--;
1033 * Parent: wait for child to return, in which case the
1034 * shared memory map will have been created.
1036 pid
= wait(&status
);
1037 if (pid
< 0 || !WIFEXITED(status
) || WEXITSTATUS(status
) != 0) {
1042 * Try to open read-only again after creation.
1044 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
, O_RDONLY
, 0);
1045 if (wait_shm_fd
< 0) {
1047 * Real-only open did not work. It's a failure
1048 * that prohibits using shm.
1050 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
1054 } else if (pid
== 0) {
1058 create_mode
= S_IRUSR
| S_IWUSR
| S_IRGRP
;
1059 if (sock_info
->global
)
1060 create_mode
|= S_IROTH
| S_IWGRP
| S_IWOTH
;
1062 * We're alone in a child process, so we can modify the
1063 * process-wide umask.
1065 umask(~create_mode
);
1067 * Try creating shm (or get rw access).
1068 * We don't do an exclusive open, because we allow other
1069 * processes to create+ftruncate it concurrently.
1071 wait_shm_fd
= shm_open(sock_info
->wait_shm_path
,
1072 O_RDWR
| O_CREAT
, create_mode
);
1073 if (wait_shm_fd
>= 0) {
1074 ret
= ftruncate(wait_shm_fd
, mmap_size
);
1076 PERROR("ftruncate");
1077 _exit(EXIT_FAILURE
);
1079 _exit(EXIT_SUCCESS
);
1082 * For local shm, we need to have rw access to accept
1083 * opening it: this means the local sessiond will be
1084 * able to wake us up. For global shm, we open it even
1085 * if rw access is not granted, because the root.root
1086 * sessiond will be able to override all rights and wake
1089 if (!sock_info
->global
&& errno
!= EACCES
) {
1090 ERR("Error opening shm %s", sock_info
->wait_shm_path
);
1091 _exit(EXIT_FAILURE
);
1094 * The shm exists, but we cannot open it RW. Report
1097 _exit(EXIT_SUCCESS
);
1102 if (wait_shm_fd
>= 0 && !sock_info
->global
) {
1103 struct stat statbuf
;
1106 * Ensure that our user is the owner of the shm file for
1107 * local shm. If we do not own the file, it means our
1108 * sessiond will not have access to wake us up (there is
1109 * probably a rogue process trying to fake our
1110 * sessiond). Fallback to polling method in this case.
1112 ret
= fstat(wait_shm_fd
, &statbuf
);
1117 if (statbuf
.st_uid
!= getuid())
1123 ret
= close(wait_shm_fd
);
1125 PERROR("Error closing fd");
1131 char *get_map_shm(struct sock_info
*sock_info
)
1134 int wait_shm_fd
, ret
;
1135 char *wait_shm_mmap
;
1137 page_size
= sysconf(_SC_PAGE_SIZE
);
1138 if (page_size
<= 0) {
1142 PERROR("Error in sysconf(_SC_PAGE_SIZE)");
1146 wait_shm_fd
= get_wait_shm(sock_info
, page_size
);
1147 if (wait_shm_fd
< 0) {
1150 wait_shm_mmap
= mmap(NULL
, page_size
, PROT_READ
,
1151 MAP_SHARED
, wait_shm_fd
, 0);
1152 /* close shm fd immediately after taking the mmap reference */
1153 ret
= close(wait_shm_fd
);
1155 PERROR("Error closing fd");
1157 if (wait_shm_mmap
== MAP_FAILED
) {
1158 DBG("mmap error (can be caused by race with sessiond). Fallback to poll mode.");
1161 return wait_shm_mmap
;
1168 void wait_for_sessiond(struct sock_info
*sock_info
)
1173 if (wait_poll_fallback
) {
1176 if (!sock_info
->wait_shm_mmap
) {
1177 sock_info
->wait_shm_mmap
= get_map_shm(sock_info
);
1178 if (!sock_info
->wait_shm_mmap
)
1183 DBG("Waiting for %s apps sessiond", sock_info
->name
);
1184 /* Wait for futex wakeup */
1185 if (uatomic_read((int32_t *) sock_info
->wait_shm_mmap
))
1188 while (futex_async((int32_t *) sock_info
->wait_shm_mmap
,
1189 FUTEX_WAIT
, 0, NULL
, NULL
, 0)) {
1192 /* Value already changed. */
1195 /* Retry if interrupted by signal. */
1196 break; /* Get out of switch. */
1198 wait_poll_fallback
= 1;
1200 "Linux kernels 2.6.33 to 3.0 (with the exception of stable versions) "
1201 "do not support FUTEX_WAKE on read-only memory mappings correctly. "
1202 "Please upgrade your kernel "
1203 "(fix is commit 9ea71503a8ed9184d2d0b8ccc4d269d05f7940ae in Linux kernel "
1204 "mainline). LTTng-UST will use polling mode fallback.");
1223 * This thread does not allocate any resource, except within
1224 * handle_message, within mutex protection. This mutex protects against
1226 * The other moment it allocates resources is at socket connection, which
1227 * is also protected by the mutex.
1230 void *ust_listener_thread(void *arg
)
1232 struct sock_info
*sock_info
= arg
;
1233 int sock
, ret
, prev_connect_failed
= 0, has_waited
= 0;
1236 /* Restart trying to connect to the session daemon */
1238 if (prev_connect_failed
) {
1239 /* Wait for sessiond availability with pipe */
1240 wait_for_sessiond(sock_info
);
1244 * Sleep for 5 seconds before retrying after a
1245 * sequence of failure / wait / failure. This
1246 * deals with a killed or broken session daemon.
1251 prev_connect_failed
= 0;
1254 if (sock_info
->socket
!= -1) {
1255 ret
= ustcomm_close_unix_sock(sock_info
->socket
);
1257 ERR("Error closing %s ust cmd socket",
1260 sock_info
->socket
= -1;
1262 if (sock_info
->notify_socket
!= -1) {
1263 ret
= ustcomm_close_unix_sock(sock_info
->notify_socket
);
1265 ERR("Error closing %s ust notify socket",
1268 sock_info
->notify_socket
= -1;
1272 * Register. We need to perform both connect and sending
1273 * registration message before doing the next connect otherwise
1274 * we may reach unix socket connect queue max limits and block
1275 * on the 2nd connect while the session daemon is awaiting the
1276 * first connect registration message.
1278 /* Connect cmd socket */
1279 ret
= ustcomm_connect_unix_sock(sock_info
->sock_path
);
1281 DBG("Info: sessiond not accepting connections to %s apps socket", sock_info
->name
);
1282 prev_connect_failed
= 1;
1289 * If we cannot find the sessiond daemon, don't delay
1290 * constructor execution.
1292 ret
= handle_register_done(sock_info
);
1297 sock_info
->socket
= ret
;
1304 * Create only one root handle per listener thread for the whole
1305 * process lifetime, so we ensure we get ID which is statically
1306 * assigned to the root handle.
1308 if (sock_info
->root_handle
== -1) {
1309 ret
= lttng_abi_create_root_handle();
1311 ERR("Error creating root handle");
1314 sock_info
->root_handle
= ret
;
1317 ret
= register_to_sessiond(sock_info
->socket
, USTCTL_SOCKET_CMD
);
1319 ERR("Error registering to %s ust cmd socket",
1321 prev_connect_failed
= 1;
1323 * If we cannot register to the sessiond daemon, don't
1324 * delay constructor execution.
1326 ret
= handle_register_done(sock_info
);
1334 /* Connect notify socket */
1335 ret
= ustcomm_connect_unix_sock(sock_info
->sock_path
);
1337 DBG("Info: sessiond not accepting connections to %s apps socket", sock_info
->name
);
1338 prev_connect_failed
= 1;
1345 * If we cannot find the sessiond daemon, don't delay
1346 * constructor execution.
1348 ret
= handle_register_done(sock_info
);
1353 sock_info
->notify_socket
= ret
;
1355 timeout
= get_notify_sock_timeout();
1358 * Give at least 10ms to sessiond to reply to
1363 ret
= ustcomm_setsockopt_rcv_timeout(sock_info
->notify_socket
,
1366 WARN("Error setting socket receive timeout");
1368 ret
= ustcomm_setsockopt_snd_timeout(sock_info
->notify_socket
,
1371 WARN("Error setting socket send timeout");
1373 } else if (timeout
< -1) {
1374 WARN("Unsupported timeout value %ld", timeout
);
1381 ret
= register_to_sessiond(sock_info
->notify_socket
,
1382 USTCTL_SOCKET_NOTIFY
);
1384 ERR("Error registering to %s ust notify socket",
1386 prev_connect_failed
= 1;
1388 * If we cannot register to the sessiond daemon, don't
1389 * delay constructor execution.
1391 ret
= handle_register_done(sock_info
);
1396 sock
= sock_info
->socket
;
1402 struct ustcomm_ust_msg lum
;
1404 len
= ustcomm_recv_unix_sock(sock
, &lum
, sizeof(lum
));
1406 case 0: /* orderly shutdown */
1407 DBG("%s lttng-sessiond has performed an orderly shutdown", sock_info
->name
);
1412 * Either sessiond has shutdown or refused us by closing the socket.
1413 * In either case, we don't want to delay construction execution,
1414 * and we need to wait before retry.
1416 prev_connect_failed
= 1;
1418 * If we cannot register to the sessiond daemon, don't
1419 * delay constructor execution.
1421 ret
= handle_register_done(sock_info
);
1426 print_cmd(lum
.cmd
, lum
.handle
);
1427 ret
= handle_message(sock_info
, sock
, &lum
);
1429 ERR("Error handling message for %s socket",
1432 * Close socket if protocol error is
1440 DBG("Receive failed from lttng-sessiond with errno %d", (int) -len
);
1442 DBG("incorrect message size (%s socket): %zd", sock_info
->name
, len
);
1444 if (len
== -ECONNRESET
) {
1445 DBG("%s remote end closed connection", sock_info
->name
);
1456 /* Cleanup socket handles before trying to reconnect */
1457 lttng_ust_objd_table_owner_cleanup(sock_info
);
1459 goto restart
; /* try to reconnect */
1464 pthread_mutex_lock(&ust_exit_mutex
);
1465 sock_info
->thread_active
= 0;
1466 pthread_mutex_unlock(&ust_exit_mutex
);
1471 * Weak symbol to call when the ust malloc wrapper is not loaded.
1473 __attribute__((weak
))
1474 void lttng_ust_malloc_wrapper_init(void)
1479 * sessiond monitoring thread: monitor presence of global and per-user
1480 * sessiond by polling the application common named pipe.
1482 void __attribute__((constructor
)) lttng_ust_init(void)
1484 struct timespec constructor_timeout
;
1485 sigset_t sig_all_blocked
, orig_parent_mask
;
1486 pthread_attr_t thread_attr
;
1490 if (uatomic_xchg(&initialized
, 1) == 1)
1494 * Fixup interdependency between TLS fixup mutex (which happens
1495 * to be the dynamic linker mutex) and ust_lock, taken within
1498 lttng_fixup_urcu_bp_tls();
1499 lttng_fixup_ringbuffer_tls();
1500 lttng_fixup_vtid_tls();
1501 lttng_fixup_nest_count_tls();
1502 lttng_fixup_procname_tls();
1503 lttng_fixup_ust_mutex_nest_tls();
1506 * We want precise control over the order in which we construct
1507 * our sub-libraries vs starting to receive commands from
1508 * sessiond (otherwise leading to errors when trying to create
1509 * sessiond before the init functions are completed).
1513 lttng_ust_clock_init();
1514 lttng_ust_getcpu_init();
1515 lttng_ust_statedump_init();
1516 lttng_ring_buffer_metadata_client_init();
1517 lttng_ring_buffer_client_overwrite_init();
1518 lttng_ring_buffer_client_overwrite_rt_init();
1519 lttng_ring_buffer_client_discard_init();
1520 lttng_ring_buffer_client_discard_rt_init();
1521 lttng_perf_counter_init();
1522 lttng_context_init();
1524 * Invoke ust malloc wrapper init before starting other threads.
1526 lttng_ust_malloc_wrapper_init();
1528 timeout_mode
= get_constructor_timeout(&constructor_timeout
);
1530 ret
= sem_init(&constructor_wait
, 0, 0);
1533 ret
= setup_local_apps();
1535 DBG("local apps setup returned %d", ret
);
1538 /* A new thread created by pthread_create inherits the signal mask
1539 * from the parent. To avoid any signal being received by the
1540 * listener thread, we block all signals temporarily in the parent,
1541 * while we create the listener thread.
1543 sigfillset(&sig_all_blocked
);
1544 ret
= pthread_sigmask(SIG_SETMASK
, &sig_all_blocked
, &orig_parent_mask
);
1546 ERR("pthread_sigmask: %s", strerror(ret
));
1549 ret
= pthread_attr_init(&thread_attr
);
1551 ERR("pthread_attr_init: %s", strerror(ret
));
1553 ret
= pthread_attr_setdetachstate(&thread_attr
, PTHREAD_CREATE_DETACHED
);
1555 ERR("pthread_attr_setdetachstate: %s", strerror(ret
));
1558 pthread_mutex_lock(&ust_exit_mutex
);
1559 ret
= pthread_create(&global_apps
.ust_listener
, &thread_attr
,
1560 ust_listener_thread
, &global_apps
);
1562 ERR("pthread_create global: %s", strerror(ret
));
1564 global_apps
.thread_active
= 1;
1565 pthread_mutex_unlock(&ust_exit_mutex
);
1567 if (local_apps
.allowed
) {
1568 pthread_mutex_lock(&ust_exit_mutex
);
1569 ret
= pthread_create(&local_apps
.ust_listener
, &thread_attr
,
1570 ust_listener_thread
, &local_apps
);
1572 ERR("pthread_create local: %s", strerror(ret
));
1574 local_apps
.thread_active
= 1;
1575 pthread_mutex_unlock(&ust_exit_mutex
);
1577 handle_register_done(&local_apps
);
1579 ret
= pthread_attr_destroy(&thread_attr
);
1581 ERR("pthread_attr_destroy: %s", strerror(ret
));
1584 /* Restore original signal mask in parent */
1585 ret
= pthread_sigmask(SIG_SETMASK
, &orig_parent_mask
, NULL
);
1587 ERR("pthread_sigmask: %s", strerror(ret
));
1590 switch (timeout_mode
) {
1591 case 1: /* timeout wait */
1593 ret
= sem_timedwait(&constructor_wait
,
1594 &constructor_timeout
);
1595 } while (ret
< 0 && errno
== EINTR
);
1596 if (ret
< 0 && errno
== ETIMEDOUT
) {
1597 ERR("Timed out waiting for lttng-sessiond");
1602 case -1:/* wait forever */
1604 ret
= sem_wait(&constructor_wait
);
1605 } while (ret
< 0 && errno
== EINTR
);
1608 case 0: /* no timeout */
1614 void lttng_ust_cleanup(int exiting
)
1616 cleanup_sock_info(&global_apps
, exiting
);
1617 cleanup_sock_info(&local_apps
, exiting
);
1619 * The teardown in this function all affect data structures
1620 * accessed under the UST lock by the listener thread. This
1621 * lock, along with the lttng_ust_comm_should_quit flag, ensure
1622 * that none of these threads are accessing this data at this
1625 lttng_ust_abi_exit();
1626 lttng_ust_events_exit();
1627 lttng_context_exit();
1628 lttng_perf_counter_exit();
1629 lttng_ring_buffer_client_discard_rt_exit();
1630 lttng_ring_buffer_client_discard_exit();
1631 lttng_ring_buffer_client_overwrite_rt_exit();
1632 lttng_ring_buffer_client_overwrite_exit();
1633 lttng_ring_buffer_metadata_client_exit();
1634 lttng_ust_statedump_destroy();
1637 /* Reinitialize values for fork */
1639 lttng_ust_comm_should_quit
= 0;
1644 void __attribute__((destructor
)) lttng_ust_exit(void)
1649 * Using pthread_cancel here because:
1650 * A) we don't want to hang application teardown.
1651 * B) the thread is not allocating any resource.
1655 * Require the communication thread to quit. Synchronize with
1656 * mutexes to ensure it is not in a mutex critical section when
1657 * pthread_cancel is later called.
1660 lttng_ust_comm_should_quit
= 1;
1663 pthread_mutex_lock(&ust_exit_mutex
);
1664 /* cancel threads */
1665 if (global_apps
.thread_active
) {
1666 ret
= pthread_cancel(global_apps
.ust_listener
);
1668 ERR("Error cancelling global ust listener thread: %s",
1671 global_apps
.thread_active
= 0;
1674 if (local_apps
.thread_active
) {
1675 ret
= pthread_cancel(local_apps
.ust_listener
);
1677 ERR("Error cancelling local ust listener thread: %s",
1680 local_apps
.thread_active
= 0;
1683 pthread_mutex_unlock(&ust_exit_mutex
);
1686 * Do NOT join threads: use of sys_futex makes it impossible to
1687 * join the threads without using async-cancel, but async-cancel
1688 * is delivered by a signal, which could hit the target thread
1689 * anywhere in its code path, including while the ust_lock() is
1690 * held, causing a deadlock for the other thread. Let the OS
1691 * cleanup the threads if there are stalled in a syscall.
1693 lttng_ust_cleanup(1);
1697 * We exclude the worker threads across fork and clone (except
1698 * CLONE_VM), because these system calls only keep the forking thread
1699 * running in the child. Therefore, we don't want to call fork or clone
1700 * in the middle of an tracepoint or ust tracing state modification.
1701 * Holding this mutex protects these structures across fork and clone.
1703 void ust_before_fork(sigset_t
*save_sigset
)
1706 * Disable signals. This is to avoid that the child intervenes
1707 * before it is properly setup for tracing. It is safer to
1708 * disable all signals, because then we know we are not breaking
1709 * anything by restoring the original mask.
1714 if (URCU_TLS(lttng_ust_nest_count
))
1716 /* Disable signals */
1717 sigfillset(&all_sigs
);
1718 ret
= sigprocmask(SIG_BLOCK
, &all_sigs
, save_sigset
);
1720 PERROR("sigprocmask");
1723 pthread_mutex_lock(&ust_fork_mutex
);
1726 rcu_bp_before_fork();
1729 static void ust_after_fork_common(sigset_t
*restore_sigset
)
1733 DBG("process %d", getpid());
1736 pthread_mutex_unlock(&ust_fork_mutex
);
1738 /* Restore signals */
1739 ret
= sigprocmask(SIG_SETMASK
, restore_sigset
, NULL
);
1741 PERROR("sigprocmask");
1745 void ust_after_fork_parent(sigset_t
*restore_sigset
)
1747 if (URCU_TLS(lttng_ust_nest_count
))
1749 DBG("process %d", getpid());
1750 rcu_bp_after_fork_parent();
1751 /* Release mutexes and reenable signals */
1752 ust_after_fork_common(restore_sigset
);
1756 * After fork, in the child, we need to cleanup all the leftover state,
1757 * except the worker thread which already magically disappeared thanks
1758 * to the weird Linux fork semantics. After tyding up, we call
1759 * lttng_ust_init() again to start over as a new PID.
1761 * This is meant for forks() that have tracing in the child between the
1762 * fork and following exec call (if there is any).
1764 void ust_after_fork_child(sigset_t
*restore_sigset
)
1766 if (URCU_TLS(lttng_ust_nest_count
))
1768 DBG("process %d", getpid());
1769 /* Release urcu mutexes */
1770 rcu_bp_after_fork_child();
1771 lttng_ust_cleanup(0);
1772 lttng_context_vtid_reset();
1773 /* Release mutexes and reenable signals */
1774 ust_after_fork_common(restore_sigset
);
1778 void lttng_ust_sockinfo_session_enabled(void *owner
)
1780 struct sock_info
*sock_info
= owner
;
1781 sock_info
->statedump_pending
= 1;