1 /* Copyright (C) 2009 Pierre-Marc Fournier
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 /* This file contains the implementation of the UST listener thread, which
19 * receives trace control commands. It also coordinates the initialization of
30 #include <sys/epoll.h>
32 #include <sys/types.h>
33 #include <sys/socket.h>
37 #include <urcu/uatomic_arch.h>
38 #include <urcu/list.h>
40 #include <ust/marker.h>
41 #include <ust/tracepoint.h>
42 #include <ust/tracectl.h>
43 #include <ust/clock.h>
45 #include "usterr_signal_safe.h"
48 #include "marker-control.h"
50 /* This should only be accessed by the constructor, before the creation
51 * of the listener, and then only by the listener.
55 /* The process pid is used to detect a non-traceable fork
56 * and allow the non-traceable fork to be ignored
57 * by destructor sequences in libust
59 static pid_t processpid
= 0;
61 static struct ustcomm_header _receive_header
;
62 static struct ustcomm_header
*receive_header
= &_receive_header
;
63 static char receive_buffer
[USTCOMM_BUFFER_SIZE
];
64 static char send_buffer
[USTCOMM_BUFFER_SIZE
];
69 * Listener thread data vs fork() protection mechanism. Ensures that no listener
70 * thread mutexes and data structures are being concurrently modified or held by
71 * other threads when fork() is executed.
73 static pthread_mutex_t listener_thread_data_mutex
= PTHREAD_MUTEX_INITIALIZER
;
75 /* Mutex protecting listen_sock. Nests inside listener_thread_data_mutex. */
76 static pthread_mutex_t listen_sock_mutex
= PTHREAD_MUTEX_INITIALIZER
;
77 static struct ustcomm_sock
*listen_sock
;
79 extern struct chan_info_struct chan_infos
[];
81 static struct cds_list_head ust_socks
= CDS_LIST_HEAD_INIT(ust_socks
);
83 /* volatile because shared between the listener and the main thread */
84 int buffers_to_export
= 0;
88 static long long make_pidunique(void)
93 gettimeofday(&tv
, NULL
);
102 static void print_ust_marker(FILE *fp
)
104 struct ust_marker_iter iter
;
107 ust_marker_iter_reset(&iter
);
108 ust_marker_iter_start(&iter
);
110 while (iter
.ust_marker
) {
111 fprintf(fp
, "ust_marker: %s/%s %d \"%s\" %p\n",
112 (*iter
.ust_marker
)->channel
,
113 (*iter
.ust_marker
)->name
,
114 (int)(*iter
.ust_marker
)->state
,
115 (*iter
.ust_marker
)->format
,
117 * location is null for now, will be added
118 * to a different table.
120 ust_marker_iter_next(&iter
);
125 static void print_trace_events(FILE *fp
)
127 struct trace_event_iter iter
;
130 trace_event_iter_reset(&iter
);
131 trace_event_iter_start(&iter
);
133 while (iter
.trace_event
) {
134 fprintf(fp
, "trace_event: %s\n", (*iter
.trace_event
)->name
);
135 trace_event_iter_next(&iter
);
137 unlock_trace_events();
140 static int connect_ustconsumer(void)
143 char default_daemon_path
[] = SOCK_DIR
"/ustconsumer";
144 char *explicit_daemon_path
, *daemon_path
;
146 explicit_daemon_path
= getenv("UST_DAEMON_SOCKET");
147 if (explicit_daemon_path
) {
148 daemon_path
= explicit_daemon_path
;
150 daemon_path
= default_daemon_path
;
153 DBG("Connecting to daemon_path %s", daemon_path
);
155 result
= ustcomm_connect_path(daemon_path
, &fd
);
157 WARN("connect_ustconsumer failed, daemon_path: %s",
166 static void request_buffer_consumer(int sock
,
171 struct ustcomm_header send_header
, recv_header
;
172 struct ustcomm_buffer_info buf_inf
;
175 result
= ustcomm_pack_buffer_info(&send_header
,
182 ERR("failed to pack buffer info message %s_%d",
187 buf_inf
.pid
= getpid();
188 send_header
.command
= CONSUME_BUFFER
;
190 result
= ustcomm_req(sock
, &send_header
, (char *) &buf_inf
,
193 PERROR("request for buffer consumer failed, is the daemon online?");
199 /* Ask the daemon to collect a trace called trace_name and being
200 * produced by this pid.
202 * The trace must be at least allocated. (It can also be started.)
203 * This is because _ltt_trace_find is used.
206 static void inform_consumer_daemon(const char *trace_name
)
209 struct ust_trace
*trace
;
212 sock
= connect_ustconsumer();
217 DBG("Connected to ustconsumer");
221 trace
= _ltt_trace_find(trace_name
);
223 WARN("inform_consumer_daemon: could not find trace \"%s\"; it is probably already destroyed", trace_name
);
227 for (i
=0; i
< trace
->nr_channels
; i
++) {
228 if (trace
->channels
[i
].request_collection
) {
229 /* iterate on all cpus */
230 for (j
=0; j
<trace
->channels
[i
].n_cpus
; j
++) {
231 ch_name
= trace
->channels
[i
].channel_name
;
232 request_buffer_consumer(sock
, trace_name
,
234 CMM_STORE_SHARED(buffers_to_export
,
235 CMM_LOAD_SHARED(buffers_to_export
)+1);
246 static struct ust_channel
*find_channel(const char *ch_name
,
247 struct ust_trace
*trace
)
251 for (i
=0; i
<trace
->nr_channels
; i
++) {
252 if (!strcmp(trace
->channels
[i
].channel_name
, ch_name
)) {
253 return &trace
->channels
[i
];
260 static int get_buffer_shmid_pipe_fd(const char *trace_name
, const char *ch_name
,
263 int *buf_struct_shmid
,
266 struct ust_trace
*trace
;
267 struct ust_channel
*channel
;
268 struct ust_buffer
*buf
;
270 DBG("get_buffer_shmid_pipe_fd");
273 trace
= _ltt_trace_find(trace_name
);
277 ERR("cannot find trace!");
281 channel
= find_channel(ch_name
, trace
);
283 ERR("cannot find channel %s!", ch_name
);
287 buf
= channel
->buf
[ch_cpu
];
289 *buf_shmid
= buf
->shmid
;
290 *buf_struct_shmid
= channel
->buf_struct_shmids
[ch_cpu
];
291 *buf_pipe_fd
= buf
->data_ready_fd_read
;
296 static int get_subbuf_num_size(const char *trace_name
, const char *ch_name
,
299 struct ust_trace
*trace
;
300 struct ust_channel
*channel
;
302 DBG("get_subbuf_size");
305 trace
= _ltt_trace_find(trace_name
);
309 ERR("cannot find trace!");
313 channel
= find_channel(ch_name
, trace
);
315 ERR("unable to find channel");
319 *num
= channel
->subbuf_cnt
;
320 *size
= channel
->subbuf_size
;
325 /* Return the power of two which is equal or higher to v */
327 static unsigned int pow2_higher_or_eq(unsigned int v
)
330 int retval
= 1<<(hb
-1);
338 static int set_subbuf_size(const char *trace_name
, const char *ch_name
,
343 struct ust_trace
*trace
;
344 struct ust_channel
*channel
;
346 DBG("set_subbuf_size");
348 power
= pow2_higher_or_eq(size
);
349 power
= max_t(unsigned int, 2u, power
);
351 WARN("using the next power of two for buffer size = %u\n", power
);
355 trace
= _ltt_trace_find_setup(trace_name
);
357 ERR("cannot find trace!");
362 channel
= find_channel(ch_name
, trace
);
364 ERR("unable to find channel");
369 channel
->subbuf_size
= power
;
370 DBG("the set_subbuf_size for the requested channel is %zu", channel
->subbuf_size
);
378 static int set_subbuf_num(const char *trace_name
, const char *ch_name
,
381 struct ust_trace
*trace
;
382 struct ust_channel
*channel
;
385 DBG("set_subbuf_num");
388 ERR("subbuffer count should be greater than 2");
393 trace
= _ltt_trace_find_setup(trace_name
);
395 ERR("cannot find trace!");
400 channel
= find_channel(ch_name
, trace
);
402 ERR("unable to find channel");
407 channel
->subbuf_cnt
= num
;
408 DBG("the set_subbuf_cnt for the requested channel is %u", channel
->subbuf_cnt
);
415 static int get_subbuffer(const char *trace_name
, const char *ch_name
,
416 int ch_cpu
, long *consumed_old
)
419 struct ust_trace
*trace
;
420 struct ust_channel
*channel
;
421 struct ust_buffer
*buf
;
428 trace
= _ltt_trace_find(trace_name
);
431 DBG("Cannot find trace. It was likely destroyed by the user.");
436 channel
= find_channel(ch_name
, trace
);
438 ERR("unable to find channel");
443 buf
= channel
->buf
[ch_cpu
];
445 retval
= ust_buffers_get_subbuf(buf
, consumed_old
);
447 WARN("missed buffer?");
457 static int notify_buffer_mapped(const char *trace_name
,
462 struct ust_trace
*trace
;
463 struct ust_channel
*channel
;
464 struct ust_buffer
*buf
;
466 DBG("get_buffer_fd");
469 trace
= _ltt_trace_find(trace_name
);
473 DBG("Cannot find trace. It was likely destroyed by the user.");
477 channel
= find_channel(ch_name
, trace
);
480 ERR("unable to find channel");
484 buf
= channel
->buf
[ch_cpu
];
486 /* Being here is the proof the daemon has mapped the buffer in its
487 * memory. We may now decrement buffers_to_export.
489 if (uatomic_read(&buf
->consumed
) == 0) {
490 DBG("decrementing buffers_to_export");
491 CMM_STORE_SHARED(buffers_to_export
, CMM_LOAD_SHARED(buffers_to_export
)-1);
500 static int put_subbuffer(const char *trace_name
, const char *ch_name
,
501 int ch_cpu
, long consumed_old
)
504 struct ust_trace
*trace
;
505 struct ust_channel
*channel
;
506 struct ust_buffer
*buf
;
511 trace
= _ltt_trace_find(trace_name
);
515 DBG("Cannot find trace. It was likely destroyed by the user.");
519 channel
= find_channel(ch_name
, trace
);
522 ERR("unable to find channel");
526 buf
= channel
->buf
[ch_cpu
];
528 retval
= ust_buffers_put_subbuf(buf
, consumed_old
);
530 WARN("ust_buffers_put_subbuf: error (subbuf=%s_%d)",
533 DBG("ust_buffers_put_subbuf: success (subbuf=%s_%d)",
543 static void release_listener_mutex(void *ptr
)
545 pthread_mutex_unlock(&listener_thread_data_mutex
);
548 static void listener_cleanup(void *ptr
)
550 pthread_mutex_lock(&listen_sock_mutex
);
552 ustcomm_del_named_sock(listen_sock
, 0);
555 pthread_mutex_unlock(&listen_sock_mutex
);
558 static int force_subbuf_switch(const char *trace_name
)
560 struct ust_trace
*trace
;
561 int i
, j
, retval
= 0;
564 trace
= _ltt_trace_find(trace_name
);
567 DBG("Cannot find trace. It was likely destroyed by the user.");
571 for (i
= 0; i
< trace
->nr_channels
; i
++) {
572 for (j
= 0; j
< trace
->channels
[i
].n_cpus
; j
++) {
573 ltt_force_switch(trace
->channels
[i
].buf
[j
],
584 static int process_trace_cmd(int command
, char *trace_name
)
587 char trace_type
[] = "ustrelay";
591 /* start is an operation that setups the trace, allocates it and starts it */
592 result
= ltt_trace_setup(trace_name
);
594 ERR("ltt_trace_setup failed");
598 result
= ltt_trace_set_type(trace_name
, trace_type
);
600 ERR("ltt_trace_set_type failed");
604 result
= ltt_trace_alloc(trace_name
);
606 ERR("ltt_trace_alloc failed");
610 inform_consumer_daemon(trace_name
);
612 result
= ltt_trace_start(trace_name
);
614 ERR("ltt_trace_start failed");
622 result
= ltt_trace_setup(trace_name
);
624 ERR("ltt_trace_setup failed");
628 result
= ltt_trace_set_type(trace_name
, trace_type
);
630 ERR("ltt_trace_set_type failed");
638 result
= ltt_trace_alloc(trace_name
);
640 ERR("ltt_trace_alloc failed");
643 inform_consumer_daemon(trace_name
);
650 result
= ltt_trace_setup(trace_name
);
652 ERR("ltt_trace_setup failed");
656 result
= ltt_trace_set_type(trace_name
, trace_type
);
658 ERR("ltt_trace_set_type failed");
666 result
= ltt_trace_alloc(trace_name
);
668 ERR("ltt_trace_alloc failed");
672 inform_consumer_daemon(trace_name
);
675 result
= ltt_trace_start(trace_name
);
677 ERR("ltt_trace_start failed");
685 result
= ltt_trace_stop(trace_name
);
687 ERR("ltt_trace_stop failed");
693 DBG("trace destroy");
695 result
= ltt_trace_destroy(trace_name
, 0);
697 ERR("ltt_trace_destroy failed");
701 case FORCE_SUBBUF_SWITCH
:
704 result
= force_subbuf_switch(trace_name
);
706 ERR("force_subbuf_switch failed");
716 static void process_channel_cmd(int sock
, int command
,
717 struct ustcomm_channel_info
*ch_inf
)
719 struct ustcomm_header _reply_header
;
720 struct ustcomm_header
*reply_header
= &_reply_header
;
721 struct ustcomm_channel_info
*reply_msg
=
722 (struct ustcomm_channel_info
*)send_buffer
;
723 int result
, offset
= 0, num
, size
;
725 memset(reply_header
, 0, sizeof(*reply_header
));
728 case GET_SUBBUF_NUM_SIZE
:
729 result
= get_subbuf_num_size(ch_inf
->trace
,
733 reply_header
->result
= result
;
737 reply_msg
->channel
= USTCOMM_POISON_PTR
;
738 reply_msg
->subbuf_num
= num
;
739 reply_msg
->subbuf_size
= size
;
742 reply_header
->size
= COMPUTE_MSG_SIZE(reply_msg
, offset
);
746 reply_header
->result
= set_subbuf_num(ch_inf
->trace
,
751 case SET_SUBBUF_SIZE
:
752 reply_header
->result
= set_subbuf_size(ch_inf
->trace
,
754 ch_inf
->subbuf_size
);
759 if (ustcomm_send(sock
, reply_header
, (char *)reply_msg
) < 0) {
760 ERR("ustcomm_send failed");
764 static void process_buffer_cmd(int sock
, int command
,
765 struct ustcomm_buffer_info
*buf_inf
)
767 struct ustcomm_header _reply_header
;
768 struct ustcomm_header
*reply_header
= &_reply_header
;
769 struct ustcomm_buffer_info
*reply_msg
=
770 (struct ustcomm_buffer_info
*)send_buffer
;
771 int result
, offset
= 0, buf_shmid
, buf_struct_shmid
, buf_pipe_fd
;
774 memset(reply_header
, 0, sizeof(*reply_header
));
777 case GET_BUF_SHMID_PIPE_FD
:
778 result
= get_buffer_shmid_pipe_fd(buf_inf
->trace
,
785 reply_header
->result
= result
;
789 reply_msg
->channel
= USTCOMM_POISON_PTR
;
790 reply_msg
->buf_shmid
= buf_shmid
;
791 reply_msg
->buf_struct_shmid
= buf_struct_shmid
;
793 reply_header
->size
= COMPUTE_MSG_SIZE(reply_msg
, offset
);
794 reply_header
->fd_included
= 1;
796 if (ustcomm_send_fd(sock
, reply_header
, (char *)reply_msg
,
798 ERR("ustcomm_send failed");
802 case NOTIFY_BUF_MAPPED
:
803 reply_header
->result
=
804 notify_buffer_mapped(buf_inf
->trace
,
809 result
= get_subbuffer(buf_inf
->trace
, buf_inf
->channel
,
810 buf_inf
->ch_cpu
, &consumed_old
);
812 reply_header
->result
= result
;
816 reply_msg
->channel
= USTCOMM_POISON_PTR
;
817 reply_msg
->consumed_old
= consumed_old
;
819 reply_header
->size
= COMPUTE_MSG_SIZE(reply_msg
, offset
);
823 result
= put_subbuffer(buf_inf
->trace
, buf_inf
->channel
,
825 buf_inf
->consumed_old
);
826 reply_header
->result
= result
;
831 if (ustcomm_send(sock
, reply_header
, (char *)reply_msg
) < 0) {
832 ERR("ustcomm_send failed");
837 static void process_ust_marker_cmd(int sock
, int command
,
838 struct ustcomm_ust_marker_info
*ust_marker_inf
)
840 struct ustcomm_header _reply_header
;
841 struct ustcomm_header
*reply_header
= &_reply_header
;
844 memset(reply_header
, 0, sizeof(*reply_header
));
849 result
= ltt_ust_marker_connect(ust_marker_inf
->channel
,
850 ust_marker_inf
->ust_marker
,
853 WARN("could not enable ust_marker; channel=%s,"
855 ust_marker_inf
->channel
,
856 ust_marker_inf
->ust_marker
);
861 result
= ltt_ust_marker_disconnect(ust_marker_inf
->channel
,
862 ust_marker_inf
->ust_marker
,
865 WARN("could not disable ust_marker; channel=%s,"
867 ust_marker_inf
->channel
,
868 ust_marker_inf
->ust_marker
);
873 reply_header
->result
= result
;
875 if (ustcomm_send(sock
, reply_header
, NULL
) < 0) {
876 ERR("ustcomm_send failed");
880 static void process_client_cmd(struct ustcomm_header
*recv_header
,
881 char *recv_buf
, int sock
)
884 struct ustcomm_header _reply_header
;
885 struct ustcomm_header
*reply_header
= &_reply_header
;
886 char *send_buf
= send_buffer
;
888 memset(reply_header
, 0, sizeof(*reply_header
));
889 memset(send_buf
, 0, sizeof(send_buffer
));
891 switch(recv_header
->command
) {
892 case GET_SUBBUF_NUM_SIZE
:
894 case SET_SUBBUF_SIZE
:
896 struct ustcomm_channel_info
*ch_inf
;
897 ch_inf
= (struct ustcomm_channel_info
*)recv_buf
;
898 result
= ustcomm_unpack_channel_info(ch_inf
);
900 ERR("couldn't unpack channel info");
901 reply_header
->result
= -EINVAL
;
904 process_channel_cmd(sock
, recv_header
->command
, ch_inf
);
907 case GET_BUF_SHMID_PIPE_FD
:
908 case NOTIFY_BUF_MAPPED
:
912 struct ustcomm_buffer_info
*buf_inf
;
913 buf_inf
= (struct ustcomm_buffer_info
*)recv_buf
;
914 result
= ustcomm_unpack_buffer_info(buf_inf
);
916 ERR("couldn't unpack buffer info");
917 reply_header
->result
= -EINVAL
;
920 process_buffer_cmd(sock
, recv_header
->command
, buf_inf
);
926 struct ustcomm_ust_marker_info
*ust_marker_inf
;
927 ust_marker_inf
= (struct ustcomm_ust_marker_info
*)recv_buf
;
928 result
= ustcomm_unpack_ust_marker_info(ust_marker_inf
);
930 ERR("couldn't unpack ust_marker info");
931 reply_header
->result
= -EINVAL
;
934 process_ust_marker_cmd(sock
, recv_header
->command
, ust_marker_inf
);
943 fp
= open_memstream(&ptr
, &size
);
945 ERR("opening memstream failed");
948 print_ust_marker(fp
);
951 reply_header
->size
= size
+ 1; /* Include final \0 */
953 result
= ustcomm_send(sock
, reply_header
, ptr
);
958 PERROR("failed to send ust_marker list");
963 case LIST_TRACE_EVENTS
:
969 fp
= open_memstream(&ptr
, &size
);
971 ERR("opening memstream failed");
974 print_trace_events(fp
);
977 reply_header
->size
= size
+ 1; /* Include final \0 */
979 result
= ustcomm_send(sock
, reply_header
, ptr
);
984 ERR("list_trace_events failed");
994 /* FIXME: No functionality at all... */
997 DBG("load_probe_lib loading %s", libfile
);
1003 struct ustcomm_pidunique
*pid_msg
;
1004 pid_msg
= (struct ustcomm_pidunique
*)send_buf
;
1006 pid_msg
->pidunique
= pidunique
;
1007 reply_header
->size
= sizeof(pid_msg
);
1014 struct ustcomm_single_field
*sock_msg
;
1015 char *sock_path_env
;
1017 sock_msg
= (struct ustcomm_single_field
*)send_buf
;
1019 sock_path_env
= getenv("UST_DAEMON_SOCKET");
1021 if (!sock_path_env
) {
1022 result
= ustcomm_pack_single_field(reply_header
,
1024 SOCK_DIR
"/ustconsumer");
1027 result
= ustcomm_pack_single_field(reply_header
,
1031 reply_header
->result
= result
;
1037 struct ustcomm_single_field
*sock_msg
;
1038 sock_msg
= (struct ustcomm_single_field
*)recv_buf
;
1039 result
= ustcomm_unpack_single_field(sock_msg
);
1041 reply_header
->result
= -EINVAL
;
1045 reply_header
->result
= setenv("UST_DAEMON_SOCKET",
1046 sock_msg
->field
, 1);
1057 case FORCE_SUBBUF_SWITCH
:
1059 struct ustcomm_single_field
*trace_inf
=
1060 (struct ustcomm_single_field
*)recv_buf
;
1062 result
= ustcomm_unpack_single_field(trace_inf
);
1064 ERR("couldn't unpack trace info");
1065 reply_header
->result
= -EINVAL
;
1069 reply_header
->result
=
1070 process_trace_cmd(recv_header
->command
,
1076 reply_header
->result
= -EINVAL
;
1084 ustcomm_send(sock
, reply_header
, send_buf
);
1087 #define MAX_EVENTS 10
1089 void *listener_main(void *p
)
1091 struct ustcomm_sock
*epoll_sock
;
1092 struct epoll_event events
[MAX_EVENTS
];
1093 struct sockaddr addr
;
1094 int accept_fd
, nfds
, result
, i
, addr_size
;
1098 pthread_cleanup_push(listener_cleanup
, NULL
);
1101 nfds
= epoll_wait(epoll_fd
, events
, MAX_EVENTS
, -1);
1103 PERROR("listener_main: epoll_wait failed");
1107 for (i
= 0; i
< nfds
; i
++) {
1108 pthread_mutex_lock(&listener_thread_data_mutex
);
1109 pthread_cleanup_push(release_listener_mutex
, NULL
);
1110 epoll_sock
= (struct ustcomm_sock
*)events
[i
].data
.ptr
;
1111 if (epoll_sock
== listen_sock
) {
1112 addr_size
= sizeof(struct sockaddr
);
1113 accept_fd
= accept(epoll_sock
->fd
,
1115 (socklen_t
*)&addr_size
);
1116 if (accept_fd
== -1) {
1117 PERROR("listener_main: accept failed");
1120 ustcomm_init_sock(accept_fd
, epoll_fd
,
1123 memset(receive_header
, 0,
1124 sizeof(*receive_header
));
1125 memset(receive_buffer
, 0,
1126 sizeof(receive_buffer
));
1127 result
= ustcomm_recv(epoll_sock
->fd
,
1131 ustcomm_del_sock(epoll_sock
, 0);
1133 process_client_cmd(receive_header
,
1138 pthread_cleanup_pop(1); /* release listener mutex */
1142 pthread_cleanup_pop(1);
1145 /* These should only be accessed in the parent thread,
1148 static volatile sig_atomic_t have_listener
= 0;
1149 static pthread_t listener_thread
;
1151 void create_listener(void)
1154 sigset_t sig_all_blocked
;
1155 sigset_t orig_parent_mask
;
1157 if (have_listener
) {
1158 WARN("not creating listener because we already had one");
1162 /* A new thread created by pthread_create inherits the signal mask
1163 * from the parent. To avoid any signal being received by the
1164 * listener thread, we block all signals temporarily in the parent,
1165 * while we create the listener thread.
1168 sigfillset(&sig_all_blocked
);
1170 result
= pthread_sigmask(SIG_SETMASK
, &sig_all_blocked
, &orig_parent_mask
);
1172 PERROR("pthread_sigmask: %s", strerror(result
));
1175 result
= pthread_create(&listener_thread
, NULL
, listener_main
, NULL
);
1177 PERROR("pthread_create");
1180 /* Restore original signal mask in parent */
1181 result
= pthread_sigmask(SIG_SETMASK
, &orig_parent_mask
, NULL
);
1183 PERROR("pthread_sigmask: %s", strerror(result
));
1189 #define AUTOPROBE_DISABLED 0
1190 #define AUTOPROBE_ENABLE_ALL 1
1191 #define AUTOPROBE_ENABLE_REGEX 2
1192 static int autoprobe_method
= AUTOPROBE_DISABLED
;
1193 static regex_t autoprobe_regex
;
1195 static void auto_probe_connect(struct ust_marker
*m
)
1199 char* concat_name
= NULL
;
1200 const char *probe_name
= "default";
1202 if (autoprobe_method
== AUTOPROBE_DISABLED
) {
1204 } else if (autoprobe_method
== AUTOPROBE_ENABLE_REGEX
) {
1205 result
= asprintf(&concat_name
, "%s/%s", m
->channel
, m
->name
);
1207 ERR("auto_probe_connect: asprintf failed (ust_marker %s/%s)",
1208 m
->channel
, m
->name
);
1211 if (regexec(&autoprobe_regex
, concat_name
, 0, NULL
, 0)) {
1218 result
= ltt_ust_marker_connect(m
->channel
, m
->name
, probe_name
);
1219 if (result
&& result
!= -EEXIST
)
1220 ERR("ltt_ust_marker_connect (ust_marker = %s/%s, errno = %d)", m
->channel
, m
->name
, -result
);
1222 DBG("auto connected ust_marker %s (addr: %p) %s to probe default", m
->channel
, m
, m
->name
);
1226 static struct ustcomm_sock
* init_app_socket(int epoll_fd
)
1228 char *dir_name
, *sock_name
;
1230 struct ustcomm_sock
*sock
= NULL
;
1232 dir_name
= ustcomm_user_sock_dir();
1236 result
= asprintf(&sock_name
, "%s/%d", dir_name
, (int)getpid());
1238 ERR("string overflow allocating socket name, "
1239 "UST thread bailing");
1243 result
= ensure_dir_exists(dir_name
, S_IRWXU
);
1245 ERR("Unable to create socket directory %s, UST thread bailing",
1247 goto free_sock_name
;
1250 sock
= ustcomm_init_named_socket(sock_name
, epoll_fd
);
1252 ERR("Error initializing named socket (%s). Check that directory"
1253 "exists and that it is writable. UST thread bailing", sock_name
);
1254 goto free_sock_name
;
1265 static void __attribute__((constructor
)) init()
1269 char* autoprobe_val
= NULL
;
1270 char* subbuffer_size_val
= NULL
;
1271 char* subbuffer_count_val
= NULL
;
1272 unsigned int subbuffer_size
;
1273 unsigned int subbuffer_count
;
1276 /* Assign the pidunique, to be able to differentiate the processes with same
1277 * pid, (before and after an exec).
1279 pidunique
= make_pidunique();
1280 processpid
= getpid();
1282 DBG("Tracectl constructor");
1285 epoll_fd
= epoll_create(MAX_EVENTS
);
1286 if (epoll_fd
== -1) {
1287 ERR("epoll_create failed, tracing shutting down");
1291 /* Create the socket */
1292 listen_sock
= init_app_socket(epoll_fd
);
1294 ERR("failed to create application socket,"
1295 " tracing shutting down");
1301 /* Get clock the clock source type */
1303 /* Default clock source */
1304 ust_clock_source
= CLOCK_TRACE
;
1305 if (clock_gettime(ust_clock_source
, &ts
) != 0) {
1306 ust_clock_source
= CLOCK_MONOTONIC
;
1307 DBG("UST traces will not be synchronized with LTTng traces");
1310 autoprobe_val
= getenv("UST_AUTOPROBE");
1311 if (autoprobe_val
) {
1312 struct ust_marker_iter iter
;
1314 DBG("Autoprobe enabled.");
1316 /* Ensure ust_marker are initialized */
1317 //init_ust_marker();
1319 /* Ensure ust_marker control is initialized, for the probe */
1320 init_ust_marker_control();
1322 /* first, set the callback that will connect the
1323 * probe on new ust_marker
1325 if (autoprobe_val
[0] == '/') {
1326 result
= regcomp(&autoprobe_regex
, autoprobe_val
+1, 0);
1330 regerror(result
, &autoprobe_regex
, regexerr
, sizeof(regexerr
));
1331 ERR("cannot parse regex %s (%s), will ignore UST_AUTOPROBE", autoprobe_val
, regexerr
);
1332 /* don't crash the application just for this */
1334 autoprobe_method
= AUTOPROBE_ENABLE_REGEX
;
1337 /* just enable all instrumentation */
1338 autoprobe_method
= AUTOPROBE_ENABLE_ALL
;
1341 ust_marker_set_new_ust_marker_cb(auto_probe_connect
);
1343 /* Now, connect the probes that were already registered. */
1344 ust_marker_iter_reset(&iter
);
1345 ust_marker_iter_start(&iter
);
1347 DBG("now iterating on ust_marker already registered");
1348 while (iter
.ust_marker
) {
1349 DBG("now iterating on ust_marker %s", (*iter
.ust_marker
)->name
);
1350 auto_probe_connect(*iter
.ust_marker
);
1351 ust_marker_iter_next(&iter
);
1355 if (getenv("UST_OVERWRITE")) {
1356 int val
= atoi(getenv("UST_OVERWRITE"));
1357 if (val
== 0 || val
== 1) {
1358 CMM_STORE_SHARED(ust_channels_overwrite_by_default
, val
);
1360 WARN("invalid value for UST_OVERWRITE");
1364 if (getenv("UST_AUTOCOLLECT")) {
1365 int val
= atoi(getenv("UST_AUTOCOLLECT"));
1366 if (val
== 0 || val
== 1) {
1367 CMM_STORE_SHARED(ust_channels_request_collection_by_default
, val
);
1369 WARN("invalid value for UST_AUTOCOLLECT");
1373 subbuffer_size_val
= getenv("UST_SUBBUF_SIZE");
1374 if (subbuffer_size_val
) {
1375 sscanf(subbuffer_size_val
, "%u", &subbuffer_size
);
1376 power
= pow2_higher_or_eq(subbuffer_size
);
1377 if (power
!= subbuffer_size
)
1378 WARN("using the next power of two for buffer size = %u\n", power
);
1379 chan_infos
[LTT_CHANNEL_UST
].def_subbufsize
= power
;
1382 subbuffer_count_val
= getenv("UST_SUBBUF_NUM");
1383 if (subbuffer_count_val
) {
1384 sscanf(subbuffer_count_val
, "%u", &subbuffer_count
);
1385 if (subbuffer_count
< 2)
1386 subbuffer_count
= 2;
1387 chan_infos
[LTT_CHANNEL_UST
].def_subbufcount
= subbuffer_count
;
1390 if (getenv("UST_TRACE")) {
1391 char trace_name
[] = "auto";
1392 char trace_type
[] = "ustrelay";
1394 DBG("starting early tracing");
1396 /* Ensure ust_marker control is initialized */
1397 init_ust_marker_control();
1399 /* Ensure ust_marker are initialized */
1402 /* Ensure buffers are initialized, for the transport to be available.
1403 * We are about to set a trace type and it will fail without this.
1405 init_ustrelay_transport();
1407 /* FIXME: When starting early tracing (here), depending on the
1408 * order of constructors, it is very well possible some ust_marker
1409 * sections are not yet registered. Because of this, some
1410 * channels may not be registered. Yet, we are about to ask the
1411 * daemon to collect the channels. Channels which are not yet
1412 * registered will not be collected.
1414 * Currently, in LTTng, there is no way to add a channel after
1415 * trace start. The reason for this is that it induces complex
1416 * concurrency issues on the trace structures, which can only
1417 * be resolved using RCU. This has not been done yet. As a
1418 * workaround, we are forcing the registration of the "ust"
1419 * channel here. This is the only channel (apart from metadata)
1420 * that can be reliably used in early tracing.
1422 * Non-early tracing does not have this problem and can use
1423 * arbitrary channel names.
1425 ltt_channels_register("ust");
1427 result
= ltt_trace_setup(trace_name
);
1429 ERR("ltt_trace_setup failed");
1433 result
= ltt_trace_set_type(trace_name
, trace_type
);
1435 ERR("ltt_trace_set_type failed");
1439 result
= ltt_trace_alloc(trace_name
);
1441 ERR("ltt_trace_alloc failed");
1445 result
= ltt_trace_start(trace_name
);
1447 ERR("ltt_trace_start failed");
1451 /* Do this after the trace is started in order to avoid creating confusion
1452 * if the trace fails to start. */
1453 inform_consumer_daemon(trace_name
);
1458 /* should decrementally destroy stuff if error */
1462 /* This is only called if we terminate normally, not with an unhandled signal,
1463 * so we cannot rely on it. However, for now, LTTV requires that the header of
1464 * the last sub-buffer contain a valid end time for the trace. This is done
1465 * automatically only when the trace is properly stopped.
1467 * If the traced program crashed, it is always possible to manually add the
1468 * right value in the header, or to open the trace in text mode.
1470 * FIXME: Fix LTTV so it doesn't need this.
1473 static void destroy_traces(void)
1477 /* if trace running, finish it */
1479 DBG("destructor stopping traces");
1481 result
= ltt_trace_stop("auto");
1483 ERR("ltt_trace_stop error");
1486 result
= ltt_trace_destroy("auto", 0);
1488 ERR("ltt_trace_destroy error");
1492 static int trace_recording(void)
1495 struct ust_trace
*trace
;
1499 cds_list_for_each_entry(trace
, <t_traces
.head
, list
) {
1500 if (trace
->active
) {
1506 ltt_unlock_traces();
1511 int restarting_usleep(useconds_t usecs
)
1517 tv
.tv_nsec
= usecs
* 1000;
1520 result
= nanosleep(&tv
, &tv
);
1521 } while (result
== -1 && errno
== EINTR
);
1526 static void stop_listener(void)
1533 result
= pthread_cancel(listener_thread
);
1535 ERR("pthread_cancel: %s", strerror(result
));
1537 result
= pthread_join(listener_thread
, NULL
);
1539 ERR("pthread_join: %s", strerror(result
));
1543 /* This destructor keeps the process alive for a few seconds in order
1544 * to leave time for ustconsumer to connect to its buffers. This is necessary
1545 * for programs whose execution is very short. It is also useful in all
1546 * programs when tracing is started close to the end of the program
1549 * FIXME: For now, this only works for the first trace created in a
1553 static void __attribute__((destructor
)) keepalive()
1555 if (processpid
!= getpid()) {
1559 if (trace_recording() && CMM_LOAD_SHARED(buffers_to_export
)) {
1561 DBG("Keeping process alive for consumer daemon...");
1562 while (CMM_LOAD_SHARED(buffers_to_export
)) {
1563 const int interv
= 200000;
1564 restarting_usleep(interv
);
1567 if (total
>= 3000000) {
1568 WARN("non-consumed buffers remaining after wait limit; not waiting anymore");
1572 DBG("Finally dying...");
1577 /* Ask the listener to stop and clean up. */
1581 void ust_potential_exec(void)
1583 ust_marker(potential_exec
, UST_MARKER_NOARGS
);
1590 /* Notify ust that there was a fork. This needs to be called inside
1591 * the new process, anytime a process whose memory is not shared with
1592 * the parent is created. If this function is not called, the events
1593 * of the new process will not be collected.
1595 * Signals should be disabled before the fork and reenabled only after
1596 * this call in order to guarantee tracing is not started before ust_fork()
1597 * sanitizes the new process.
1600 static void ust_fork(void)
1602 struct ustcomm_sock
*sock
, *sock_tmp
;
1603 struct ust_trace
*trace
, *trace_tmp
;
1606 /* FIXME: technically, the locks could have been taken before the fork */
1607 DBG("ust: forking");
1609 /* Get the pid of the new process */
1610 processpid
= getpid();
1613 * FIXME: This could be prettier, we loop over the list twice and
1614 * following good locking practice should lock around the loop
1616 cds_list_for_each_entry_safe(trace
, trace_tmp
, <t_traces
.head
, list
) {
1617 ltt_trace_stop(trace
->trace_name
);
1620 /* Delete all active connections, but leave them in the epoll set */
1621 cds_list_for_each_entry_safe(sock
, sock_tmp
, &ust_socks
, list
) {
1622 ustcomm_del_sock(sock
, 1);
1626 * FIXME: This could be prettier, we loop over the list twice and
1627 * following good locking practice should lock around the loop
1629 cds_list_for_each_entry_safe(trace
, trace_tmp
, <t_traces
.head
, list
) {
1630 ltt_trace_destroy(trace
->trace_name
, 1);
1633 /* Clean up the listener socket and epoll, keeping the socket file */
1635 ustcomm_del_named_sock(listen_sock
, 1);
1640 /* Re-start the launch sequence */
1641 CMM_STORE_SHARED(buffers_to_export
, 0);
1645 epoll_fd
= epoll_create(MAX_EVENTS
);
1646 if (epoll_fd
== -1) {
1647 ERR("epoll_create failed, tracing shutting down");
1651 /* Create the socket */
1652 listen_sock
= init_app_socket(epoll_fd
);
1654 ERR("failed to create application socket,"
1655 " tracing shutting down");
1659 ltt_trace_setup("auto");
1660 result
= ltt_trace_set_type("auto", "ustrelay");
1662 ERR("ltt_trace_set_type failed");
1666 ltt_trace_alloc("auto");
1667 ltt_trace_start("auto");
1668 inform_consumer_daemon("auto");
1671 void ust_before_fork(ust_fork_info_t
*fork_info
)
1673 /* Disable signals. This is to avoid that the child
1674 * intervenes before it is properly setup for tracing. It is
1675 * safer to disable all signals, because then we know we are not
1676 * breaking anything by restoring the original mask.
1682 - only do this if tracing is active
1685 /* Disable signals */
1686 sigfillset(&all_sigs
);
1687 result
= sigprocmask(SIG_BLOCK
, &all_sigs
, &fork_info
->orig_sigs
);
1689 PERROR("sigprocmask");
1694 * Take the fork lock to make sure we are not in the middle of
1695 * something in the listener thread.
1697 pthread_mutex_lock(&listener_thread_data_mutex
);
1699 * Hold listen_sock_mutex to protect from listen_sock teardown.
1701 pthread_mutex_lock(&listen_sock_mutex
);
1702 rcu_bp_before_fork();
1705 /* Don't call this function directly in a traced program */
1706 static void ust_after_fork_common(ust_fork_info_t
*fork_info
)
1710 pthread_mutex_unlock(&listen_sock_mutex
);
1711 pthread_mutex_unlock(&listener_thread_data_mutex
);
1713 /* Restore signals */
1714 result
= sigprocmask(SIG_SETMASK
, &fork_info
->orig_sigs
, NULL
);
1716 PERROR("sigprocmask");
1721 void ust_after_fork_parent(ust_fork_info_t
*fork_info
)
1723 rcu_bp_after_fork_parent();
1724 /* Release mutexes and reenable signals */
1725 ust_after_fork_common(fork_info
);
1728 void ust_after_fork_child(ust_fork_info_t
*fork_info
)
1730 /* Release urcu mutexes */
1731 rcu_bp_after_fork_child();
1733 /* Sanitize the child */
1736 /* Then release mutexes and reenable signals */
1737 ust_after_fork_common(fork_info
);