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
29 #include <sys/epoll.h>
31 #include <sys/types.h>
32 #include <sys/socket.h>
36 #include <urcu/uatomic_arch.h>
37 #include <urcu/list.h>
39 #include <ust/marker.h>
40 #include <ust/tracepoint.h>
41 #include <ust/tracectl.h>
42 #include <ust/clock.h>
47 #include "marker-control.h"
49 /* This should only be accessed by the constructor, before the creation
50 * of the listener, and then only by the listener.
54 /* The process pid is used to detect a non-traceable fork
55 * and allow the non-traceable fork to be ignored
56 * by destructor sequences in libust
58 static pid_t processpid
= 0;
60 static struct ustcomm_header _receive_header
;
61 static struct ustcomm_header
*receive_header
= &_receive_header
;
62 static char receive_buffer
[USTCOMM_BUFFER_SIZE
];
63 static char send_buffer
[USTCOMM_BUFFER_SIZE
];
68 * Listener thread data vs fork() protection mechanism. Ensures that no listener
69 * thread mutexes and data structures are being concurrently modified or held by
70 * other threads when fork() is executed.
72 static pthread_mutex_t listener_thread_data_mutex
= PTHREAD_MUTEX_INITIALIZER
;
74 /* Mutex protecting listen_sock. Nests inside listener_thread_data_mutex. */
75 static pthread_mutex_t listen_sock_mutex
= PTHREAD_MUTEX_INITIALIZER
;
76 static struct ustcomm_sock
*listen_sock
;
78 extern struct chan_info_struct chan_infos
[];
80 static struct cds_list_head open_buffers_list
= CDS_LIST_HEAD_INIT(open_buffers_list
);
82 static struct cds_list_head ust_socks
= CDS_LIST_HEAD_INIT(ust_socks
);
84 /* volatile because shared between the listener and the main thread */
85 int buffers_to_export
= 0;
89 static long long make_pidunique(void)
94 gettimeofday(&tv
, NULL
);
103 static void print_markers(FILE *fp
)
105 struct marker_iter iter
;
108 marker_iter_reset(&iter
);
109 marker_iter_start(&iter
);
111 while (iter
.marker
) {
112 fprintf(fp
, "marker: %s/%s %d \"%s\" %p\n",
113 (*iter
.marker
)->channel
,
114 (*iter
.marker
)->name
,
115 (int)imv_read((*iter
.marker
)->state
),
116 (*iter
.marker
)->format
,
117 (*iter
.marker
)->location
);
118 marker_iter_next(&iter
);
123 static void print_trace_events(FILE *fp
)
125 struct trace_event_iter iter
;
128 trace_event_iter_reset(&iter
);
129 trace_event_iter_start(&iter
);
131 while (iter
.trace_event
) {
132 fprintf(fp
, "trace_event: %s\n", (*iter
.trace_event
)->name
);
133 trace_event_iter_next(&iter
);
135 unlock_trace_events();
138 static int connect_ustconsumer(void)
141 char default_daemon_path
[] = SOCK_DIR
"/ustconsumer";
142 char *explicit_daemon_path
, *daemon_path
;
144 explicit_daemon_path
= getenv("UST_DAEMON_SOCKET");
145 if (explicit_daemon_path
) {
146 daemon_path
= explicit_daemon_path
;
148 daemon_path
= default_daemon_path
;
151 DBG("Connecting to daemon_path %s", daemon_path
);
153 result
= ustcomm_connect_path(daemon_path
, &fd
);
155 WARN("connect_ustconsumer failed, daemon_path: %s",
164 static void request_buffer_consumer(int sock
,
169 struct ustcomm_header send_header
, recv_header
;
170 struct ustcomm_buffer_info buf_inf
;
173 result
= ustcomm_pack_buffer_info(&send_header
,
180 ERR("failed to pack buffer info message %s_%d",
185 buf_inf
.pid
= getpid();
186 send_header
.command
= CONSUME_BUFFER
;
188 result
= ustcomm_req(sock
, &send_header
, (char *) &buf_inf
,
191 PERROR("request for buffer consumer failed, is the daemon online?");
197 /* Ask the daemon to collect a trace called trace_name and being
198 * produced by this pid.
200 * The trace must be at least allocated. (It can also be started.)
201 * This is because _ltt_trace_find is used.
204 static void inform_consumer_daemon(const char *trace_name
)
207 struct ust_trace
*trace
;
210 sock
= connect_ustconsumer();
215 DBG("Connected to ustconsumer");
219 trace
= _ltt_trace_find(trace_name
);
221 WARN("inform_consumer_daemon: could not find trace \"%s\"; it is probably already destroyed", trace_name
);
225 for (i
=0; i
< trace
->nr_channels
; i
++) {
226 if (trace
->channels
[i
].request_collection
) {
227 /* iterate on all cpus */
228 for (j
=0; j
<trace
->channels
[i
].n_cpus
; j
++) {
229 ch_name
= trace
->channels
[i
].channel_name
;
230 request_buffer_consumer(sock
, trace_name
,
232 CMM_STORE_SHARED(buffers_to_export
,
233 CMM_LOAD_SHARED(buffers_to_export
)+1);
244 static struct ust_channel
*find_channel(const char *ch_name
,
245 struct ust_trace
*trace
)
249 for (i
=0; i
<trace
->nr_channels
; i
++) {
250 if (!strcmp(trace
->channels
[i
].channel_name
, ch_name
)) {
251 return &trace
->channels
[i
];
258 static int get_buffer_shmid_pipe_fd(const char *trace_name
, const char *ch_name
,
261 int *buf_struct_shmid
,
264 struct ust_trace
*trace
;
265 struct ust_channel
*channel
;
266 struct ust_buffer
*buf
;
268 DBG("get_buffer_shmid_pipe_fd");
271 trace
= _ltt_trace_find(trace_name
);
275 ERR("cannot find trace!");
279 channel
= find_channel(ch_name
, trace
);
281 ERR("cannot find channel %s!", ch_name
);
285 buf
= channel
->buf
[ch_cpu
];
287 *buf_shmid
= buf
->shmid
;
288 *buf_struct_shmid
= channel
->buf_struct_shmids
[ch_cpu
];
289 *buf_pipe_fd
= buf
->data_ready_fd_read
;
294 static int get_subbuf_num_size(const char *trace_name
, const char *ch_name
,
297 struct ust_trace
*trace
;
298 struct ust_channel
*channel
;
300 DBG("get_subbuf_size");
303 trace
= _ltt_trace_find(trace_name
);
307 ERR("cannot find trace!");
311 channel
= find_channel(ch_name
, trace
);
313 ERR("unable to find channel");
317 *num
= channel
->subbuf_cnt
;
318 *size
= channel
->subbuf_size
;
323 /* Return the power of two which is equal or higher to v */
325 static unsigned int pow2_higher_or_eq(unsigned int v
)
328 int retval
= 1<<(hb
-1);
336 static int set_subbuf_size(const char *trace_name
, const char *ch_name
,
341 struct ust_trace
*trace
;
342 struct ust_channel
*channel
;
344 DBG("set_subbuf_size");
346 power
= pow2_higher_or_eq(size
);
347 power
= max_t(unsigned int, 2u, power
);
349 WARN("using the next power of two for buffer size = %u\n", power
);
353 trace
= _ltt_trace_find_setup(trace_name
);
355 ERR("cannot find trace!");
360 channel
= find_channel(ch_name
, trace
);
362 ERR("unable to find channel");
367 channel
->subbuf_size
= power
;
368 DBG("the set_subbuf_size for the requested channel is %zu", channel
->subbuf_size
);
376 static int set_subbuf_num(const char *trace_name
, const char *ch_name
,
379 struct ust_trace
*trace
;
380 struct ust_channel
*channel
;
383 DBG("set_subbuf_num");
386 ERR("subbuffer count should be greater than 2");
391 trace
= _ltt_trace_find_setup(trace_name
);
393 ERR("cannot find trace!");
398 channel
= find_channel(ch_name
, trace
);
400 ERR("unable to find channel");
405 channel
->subbuf_cnt
= num
;
406 DBG("the set_subbuf_cnt for the requested channel is %u", channel
->subbuf_cnt
);
413 static int get_subbuffer(const char *trace_name
, const char *ch_name
,
414 int ch_cpu
, long *consumed_old
)
417 struct ust_trace
*trace
;
418 struct ust_channel
*channel
;
419 struct ust_buffer
*buf
;
426 trace
= _ltt_trace_find(trace_name
);
429 DBG("Cannot find trace. It was likely destroyed by the user.");
434 channel
= find_channel(ch_name
, trace
);
436 ERR("unable to find channel");
441 buf
= channel
->buf
[ch_cpu
];
443 retval
= ust_buffers_get_subbuf(buf
, consumed_old
);
445 WARN("missed buffer?");
455 static int notify_buffer_mapped(const char *trace_name
,
460 struct ust_trace
*trace
;
461 struct ust_channel
*channel
;
462 struct ust_buffer
*buf
;
464 DBG("get_buffer_fd");
467 trace
= _ltt_trace_find(trace_name
);
471 DBG("Cannot find trace. It was likely destroyed by the user.");
475 channel
= find_channel(ch_name
, trace
);
478 ERR("unable to find channel");
482 buf
= channel
->buf
[ch_cpu
];
484 /* Being here is the proof the daemon has mapped the buffer in its
485 * memory. We may now decrement buffers_to_export.
487 if (uatomic_read(&buf
->consumed
) == 0) {
488 DBG("decrementing buffers_to_export");
489 CMM_STORE_SHARED(buffers_to_export
, CMM_LOAD_SHARED(buffers_to_export
)-1);
492 /* The buffer has been exported, ergo, we can add it to the
493 * list of open buffers
495 cds_list_add(&buf
->open_buffers_list
, &open_buffers_list
);
503 static int put_subbuffer(const char *trace_name
, const char *ch_name
,
504 int ch_cpu
, long consumed_old
)
507 struct ust_trace
*trace
;
508 struct ust_channel
*channel
;
509 struct ust_buffer
*buf
;
514 trace
= _ltt_trace_find(trace_name
);
518 DBG("Cannot find trace. It was likely destroyed by the user.");
522 channel
= find_channel(ch_name
, trace
);
525 ERR("unable to find channel");
529 buf
= channel
->buf
[ch_cpu
];
531 retval
= ust_buffers_put_subbuf(buf
, consumed_old
);
533 WARN("ust_buffers_put_subbuf: error (subbuf=%s_%d)",
536 DBG("ust_buffers_put_subbuf: success (subbuf=%s_%d)",
546 static void listener_cleanup(void *ptr
)
548 pthread_mutex_lock(&listen_sock_mutex
);
550 ustcomm_del_named_sock(listen_sock
, 0);
553 pthread_mutex_unlock(&listen_sock_mutex
);
556 static void force_subbuf_switch()
558 struct ust_buffer
*buf
;
560 cds_list_for_each_entry(buf
, &open_buffers_list
,
562 ltt_force_switch(buf
, FORCE_FLUSH
);
566 /* Simple commands are those which need only respond with a return value. */
567 static int process_simple_client_cmd(int command
, char *recv_buf
)
574 struct ustcomm_single_field
*sock_msg
;
575 sock_msg
= (struct ustcomm_single_field
*)recv_buf
;
576 result
= ustcomm_unpack_single_field(sock_msg
);
580 return setenv("UST_DAEMON_SOCKET", sock_msg
->field
, 1);
583 case FORCE_SUBBUF_SWITCH
:
584 /* FIXME: return codes? */
585 force_subbuf_switch();
597 static int process_trace_cmd(int command
, char *trace_name
)
600 char trace_type
[] = "ustrelay";
604 /* start is an operation that setups the trace, allocates it and starts it */
605 result
= ltt_trace_setup(trace_name
);
607 ERR("ltt_trace_setup failed");
611 result
= ltt_trace_set_type(trace_name
, trace_type
);
613 ERR("ltt_trace_set_type failed");
617 result
= ltt_trace_alloc(trace_name
);
619 ERR("ltt_trace_alloc failed");
623 inform_consumer_daemon(trace_name
);
625 result
= ltt_trace_start(trace_name
);
627 ERR("ltt_trace_start failed");
635 result
= ltt_trace_setup(trace_name
);
637 ERR("ltt_trace_setup failed");
641 result
= ltt_trace_set_type(trace_name
, trace_type
);
643 ERR("ltt_trace_set_type failed");
651 result
= ltt_trace_alloc(trace_name
);
653 ERR("ltt_trace_alloc failed");
656 inform_consumer_daemon(trace_name
);
663 result
= ltt_trace_setup(trace_name
);
665 ERR("ltt_trace_setup failed");
669 result
= ltt_trace_set_type(trace_name
, trace_type
);
671 ERR("ltt_trace_set_type failed");
679 result
= ltt_trace_alloc(trace_name
);
681 ERR("ltt_trace_alloc failed");
685 inform_consumer_daemon(trace_name
);
688 result
= ltt_trace_start(trace_name
);
690 ERR("ltt_trace_start failed");
698 result
= ltt_trace_stop(trace_name
);
700 ERR("ltt_trace_stop failed");
706 DBG("trace destroy");
708 result
= ltt_trace_destroy(trace_name
, 0);
710 ERR("ltt_trace_destroy failed");
720 static void process_channel_cmd(int sock
, int command
,
721 struct ustcomm_channel_info
*ch_inf
)
723 struct ustcomm_header _reply_header
;
724 struct ustcomm_header
*reply_header
= &_reply_header
;
725 struct ustcomm_channel_info
*reply_msg
=
726 (struct ustcomm_channel_info
*)send_buffer
;
727 int result
, offset
= 0, num
, size
;
729 memset(reply_header
, 0, sizeof(*reply_header
));
732 case GET_SUBBUF_NUM_SIZE
:
733 result
= get_subbuf_num_size(ch_inf
->trace
,
737 reply_header
->result
= result
;
741 reply_msg
->channel
= USTCOMM_POISON_PTR
;
742 reply_msg
->subbuf_num
= num
;
743 reply_msg
->subbuf_size
= size
;
746 reply_header
->size
= COMPUTE_MSG_SIZE(reply_msg
, offset
);
750 reply_header
->result
= set_subbuf_num(ch_inf
->trace
,
755 case SET_SUBBUF_SIZE
:
756 reply_header
->result
= set_subbuf_size(ch_inf
->trace
,
758 ch_inf
->subbuf_size
);
763 if (ustcomm_send(sock
, reply_header
, (char *)reply_msg
) < 0) {
764 ERR("ustcomm_send failed");
768 static void process_buffer_cmd(int sock
, int command
,
769 struct ustcomm_buffer_info
*buf_inf
)
771 struct ustcomm_header _reply_header
;
772 struct ustcomm_header
*reply_header
= &_reply_header
;
773 struct ustcomm_buffer_info
*reply_msg
=
774 (struct ustcomm_buffer_info
*)send_buffer
;
775 int result
, offset
= 0, buf_shmid
, buf_struct_shmid
, buf_pipe_fd
;
778 memset(reply_header
, 0, sizeof(*reply_header
));
781 case GET_BUF_SHMID_PIPE_FD
:
782 result
= get_buffer_shmid_pipe_fd(buf_inf
->trace
,
789 reply_header
->result
= result
;
793 reply_msg
->channel
= USTCOMM_POISON_PTR
;
794 reply_msg
->buf_shmid
= buf_shmid
;
795 reply_msg
->buf_struct_shmid
= buf_struct_shmid
;
797 reply_header
->size
= COMPUTE_MSG_SIZE(reply_msg
, offset
);
798 reply_header
->fd_included
= 1;
800 if (ustcomm_send_fd(sock
, reply_header
, (char *)reply_msg
,
802 ERR("ustcomm_send failed");
806 case NOTIFY_BUF_MAPPED
:
807 reply_header
->result
=
808 notify_buffer_mapped(buf_inf
->trace
,
813 result
= get_subbuffer(buf_inf
->trace
, buf_inf
->channel
,
814 buf_inf
->ch_cpu
, &consumed_old
);
816 reply_header
->result
= result
;
820 reply_msg
->channel
= USTCOMM_POISON_PTR
;
821 reply_msg
->consumed_old
= consumed_old
;
823 reply_header
->size
= COMPUTE_MSG_SIZE(reply_msg
, offset
);
827 result
= put_subbuffer(buf_inf
->trace
, buf_inf
->channel
,
829 buf_inf
->consumed_old
);
830 reply_header
->result
= result
;
835 if (ustcomm_send(sock
, reply_header
, (char *)reply_msg
) < 0) {
836 ERR("ustcomm_send failed");
841 static void process_marker_cmd(int sock
, int command
,
842 struct ustcomm_marker_info
*marker_inf
)
844 struct ustcomm_header _reply_header
;
845 struct ustcomm_header
*reply_header
= &_reply_header
;
848 memset(reply_header
, 0, sizeof(*reply_header
));
853 result
= ltt_marker_connect(marker_inf
->channel
,
857 WARN("could not enable marker; channel=%s,"
865 result
= ltt_marker_disconnect(marker_inf
->channel
,
869 WARN("could not disable marker; channel=%s,"
877 reply_header
->result
= result
;
879 if (ustcomm_send(sock
, reply_header
, NULL
) < 0) {
880 ERR("ustcomm_send failed");
884 static void process_client_cmd(struct ustcomm_header
*recv_header
,
885 char *recv_buf
, int sock
)
888 struct ustcomm_header _reply_header
;
889 struct ustcomm_header
*reply_header
= &_reply_header
;
890 char *send_buf
= send_buffer
;
892 memset(reply_header
, 0, sizeof(*reply_header
));
893 memset(send_buf
, 0, sizeof(send_buffer
));
895 switch(recv_header
->command
) {
896 case GET_SUBBUF_NUM_SIZE
:
898 case SET_SUBBUF_SIZE
:
900 struct ustcomm_channel_info
*ch_inf
;
901 ch_inf
= (struct ustcomm_channel_info
*)recv_buf
;
902 result
= ustcomm_unpack_channel_info(ch_inf
);
904 ERR("couldn't unpack channel info");
905 reply_header
->result
= -EINVAL
;
908 process_channel_cmd(sock
, recv_header
->command
, ch_inf
);
911 case GET_BUF_SHMID_PIPE_FD
:
912 case NOTIFY_BUF_MAPPED
:
916 struct ustcomm_buffer_info
*buf_inf
;
917 buf_inf
= (struct ustcomm_buffer_info
*)recv_buf
;
918 result
= ustcomm_unpack_buffer_info(buf_inf
);
920 ERR("couldn't unpack buffer info");
921 reply_header
->result
= -EINVAL
;
924 process_buffer_cmd(sock
, recv_header
->command
, buf_inf
);
930 struct ustcomm_marker_info
*marker_inf
;
931 marker_inf
= (struct ustcomm_marker_info
*)recv_buf
;
932 result
= ustcomm_unpack_marker_info(marker_inf
);
934 ERR("couldn't unpack marker info");
935 reply_header
->result
= -EINVAL
;
938 process_marker_cmd(sock
, recv_header
->command
, marker_inf
);
947 fp
= open_memstream(&ptr
, &size
);
949 ERR("opening memstream failed");
955 reply_header
->size
= size
;
957 result
= ustcomm_send(sock
, reply_header
, ptr
);
962 PERROR("failed to send markers list");
967 case LIST_TRACE_EVENTS
:
973 fp
= open_memstream(&ptr
, &size
);
975 ERR("opening memstream failed");
978 print_trace_events(fp
);
981 reply_header
->size
= size
;
983 result
= ustcomm_send(sock
, reply_header
, ptr
);
988 ERR("list_trace_events failed");
998 /* FIXME: No functionality at all... */
1001 DBG("load_probe_lib loading %s", libfile
);
1007 struct ustcomm_pidunique
*pid_msg
;
1008 pid_msg
= (struct ustcomm_pidunique
*)send_buf
;
1010 pid_msg
->pidunique
= pidunique
;
1011 reply_header
->size
= sizeof(pid_msg
);
1018 struct ustcomm_single_field
*sock_msg
;
1019 char *sock_path_env
;
1021 sock_msg
= (struct ustcomm_single_field
*)send_buf
;
1023 sock_path_env
= getenv("UST_DAEMON_SOCKET");
1025 if (!sock_path_env
) {
1026 result
= ustcomm_pack_single_field(reply_header
,
1028 SOCK_DIR
"/ustconsumer");
1031 result
= ustcomm_pack_single_field(reply_header
,
1035 reply_header
->result
= result
;
1047 struct ustcomm_single_field
*trace_inf
=
1048 (struct ustcomm_single_field
*)recv_buf
;
1050 result
= ustcomm_unpack_single_field(trace_inf
);
1052 ERR("couldn't unpack trace info");
1053 reply_header
->result
= -EINVAL
;
1057 reply_header
->result
=
1058 process_trace_cmd(recv_header
->command
,
1064 reply_header
->result
=
1065 process_simple_client_cmd(recv_header
->command
,
1074 ustcomm_send(sock
, reply_header
, send_buf
);
1077 #define MAX_EVENTS 10
1079 void *listener_main(void *p
)
1081 struct ustcomm_sock
*epoll_sock
;
1082 struct epoll_event events
[MAX_EVENTS
];
1083 struct sockaddr addr
;
1084 int accept_fd
, nfds
, result
, i
, addr_size
;
1088 pthread_cleanup_push(listener_cleanup
, NULL
);
1091 nfds
= epoll_wait(epoll_fd
, events
, MAX_EVENTS
, -1);
1093 PERROR("listener_main: epoll_wait failed");
1097 for (i
= 0; i
< nfds
; i
++) {
1098 pthread_mutex_lock(&listener_thread_data_mutex
);
1099 epoll_sock
= (struct ustcomm_sock
*)events
[i
].data
.ptr
;
1100 if (epoll_sock
== listen_sock
) {
1101 addr_size
= sizeof(struct sockaddr
);
1102 accept_fd
= accept(epoll_sock
->fd
,
1104 (socklen_t
*)&addr_size
);
1105 if (accept_fd
== -1) {
1106 PERROR("listener_main: accept failed");
1109 ustcomm_init_sock(accept_fd
, epoll_fd
,
1112 memset(receive_header
, 0,
1113 sizeof(*receive_header
));
1114 memset(receive_buffer
, 0,
1115 sizeof(receive_buffer
));
1116 result
= ustcomm_recv(epoll_sock
->fd
,
1120 ustcomm_del_sock(epoll_sock
, 0);
1122 process_client_cmd(receive_header
,
1127 pthread_mutex_unlock(&listener_thread_data_mutex
);
1131 pthread_cleanup_pop(1);
1134 /* These should only be accessed in the parent thread,
1137 static volatile sig_atomic_t have_listener
= 0;
1138 static pthread_t listener_thread
;
1140 void create_listener(void)
1143 sigset_t sig_all_blocked
;
1144 sigset_t orig_parent_mask
;
1146 if (have_listener
) {
1147 WARN("not creating listener because we already had one");
1151 /* A new thread created by pthread_create inherits the signal mask
1152 * from the parent. To avoid any signal being received by the
1153 * listener thread, we block all signals temporarily in the parent,
1154 * while we create the listener thread.
1157 sigfillset(&sig_all_blocked
);
1159 result
= pthread_sigmask(SIG_SETMASK
, &sig_all_blocked
, &orig_parent_mask
);
1161 PERROR("pthread_sigmask: %s", strerror(result
));
1164 result
= pthread_create(&listener_thread
, NULL
, listener_main
, NULL
);
1166 PERROR("pthread_create");
1169 /* Restore original signal mask in parent */
1170 result
= pthread_sigmask(SIG_SETMASK
, &orig_parent_mask
, NULL
);
1172 PERROR("pthread_sigmask: %s", strerror(result
));
1178 #define AUTOPROBE_DISABLED 0
1179 #define AUTOPROBE_ENABLE_ALL 1
1180 #define AUTOPROBE_ENABLE_REGEX 2
1181 static int autoprobe_method
= AUTOPROBE_DISABLED
;
1182 static regex_t autoprobe_regex
;
1184 static void auto_probe_connect(struct marker
*m
)
1188 char* concat_name
= NULL
;
1189 const char *probe_name
= "default";
1191 if (autoprobe_method
== AUTOPROBE_DISABLED
) {
1193 } else if (autoprobe_method
== AUTOPROBE_ENABLE_REGEX
) {
1194 result
= asprintf(&concat_name
, "%s/%s", m
->channel
, m
->name
);
1196 ERR("auto_probe_connect: asprintf failed (marker %s/%s)",
1197 m
->channel
, m
->name
);
1200 if (regexec(&autoprobe_regex
, concat_name
, 0, NULL
, 0)) {
1207 result
= ltt_marker_connect(m
->channel
, m
->name
, probe_name
);
1208 if (result
&& result
!= -EEXIST
)
1209 ERR("ltt_marker_connect (marker = %s/%s, errno = %d)", m
->channel
, m
->name
, -result
);
1211 DBG("auto connected marker %s (addr: %p) %s to probe default", m
->channel
, m
, m
->name
);
1215 static struct ustcomm_sock
* init_app_socket(int epoll_fd
)
1219 struct ustcomm_sock
*sock
;
1221 result
= asprintf(&name
, "%s/%d", SOCK_DIR
, (int)getpid());
1223 ERR("string overflow allocating socket name, "
1224 "UST thread bailing");
1228 result
= ensure_dir_exists(SOCK_DIR
);
1230 ERR("Unable to create socket directory %s, UST thread bailing",
1235 sock
= ustcomm_init_named_socket(name
, epoll_fd
);
1237 ERR("Error initializing named socket (%s). Check that directory"
1238 "exists and that it is writable. UST thread bailing", name
);
1250 static void __attribute__((constructor
)) init()
1254 char* autoprobe_val
= NULL
;
1255 char* subbuffer_size_val
= NULL
;
1256 char* subbuffer_count_val
= NULL
;
1257 unsigned int subbuffer_size
;
1258 unsigned int subbuffer_count
;
1261 /* Assign the pidunique, to be able to differentiate the processes with same
1262 * pid, (before and after an exec).
1264 pidunique
= make_pidunique();
1265 processpid
= getpid();
1267 DBG("Tracectl constructor");
1270 epoll_fd
= epoll_create(MAX_EVENTS
);
1271 if (epoll_fd
== -1) {
1272 ERR("epoll_create failed, tracing shutting down");
1276 /* Create the socket */
1277 listen_sock
= init_app_socket(epoll_fd
);
1279 ERR("failed to create application socket,"
1280 " tracing shutting down");
1286 /* Get clock the clock source type */
1288 /* Default clock source */
1289 ust_clock_source
= CLOCK_TRACE
;
1290 if (clock_gettime(ust_clock_source
, &ts
) != 0) {
1291 ust_clock_source
= CLOCK_MONOTONIC
;
1292 DBG("UST traces will not be synchronized with LTTng traces");
1295 autoprobe_val
= getenv("UST_AUTOPROBE");
1296 if (autoprobe_val
) {
1297 struct marker_iter iter
;
1299 DBG("Autoprobe enabled.");
1301 /* Ensure markers are initialized */
1304 /* Ensure marker control is initialized, for the probe */
1305 init_marker_control();
1307 /* first, set the callback that will connect the
1308 * probe on new markers
1310 if (autoprobe_val
[0] == '/') {
1311 result
= regcomp(&autoprobe_regex
, autoprobe_val
+1, 0);
1315 regerror(result
, &autoprobe_regex
, regexerr
, sizeof(regexerr
));
1316 ERR("cannot parse regex %s (%s), will ignore UST_AUTOPROBE", autoprobe_val
, regexerr
);
1317 /* don't crash the application just for this */
1319 autoprobe_method
= AUTOPROBE_ENABLE_REGEX
;
1322 /* just enable all instrumentation */
1323 autoprobe_method
= AUTOPROBE_ENABLE_ALL
;
1326 marker_set_new_marker_cb(auto_probe_connect
);
1328 /* Now, connect the probes that were already registered. */
1329 marker_iter_reset(&iter
);
1330 marker_iter_start(&iter
);
1332 DBG("now iterating on markers already registered");
1333 while (iter
.marker
) {
1334 DBG("now iterating on marker %s", (*iter
.marker
)->name
);
1335 auto_probe_connect(*iter
.marker
);
1336 marker_iter_next(&iter
);
1340 if (getenv("UST_OVERWRITE")) {
1341 int val
= atoi(getenv("UST_OVERWRITE"));
1342 if (val
== 0 || val
== 1) {
1343 CMM_STORE_SHARED(ust_channels_overwrite_by_default
, val
);
1345 WARN("invalid value for UST_OVERWRITE");
1349 if (getenv("UST_AUTOCOLLECT")) {
1350 int val
= atoi(getenv("UST_AUTOCOLLECT"));
1351 if (val
== 0 || val
== 1) {
1352 CMM_STORE_SHARED(ust_channels_request_collection_by_default
, val
);
1354 WARN("invalid value for UST_AUTOCOLLECT");
1358 subbuffer_size_val
= getenv("UST_SUBBUF_SIZE");
1359 if (subbuffer_size_val
) {
1360 sscanf(subbuffer_size_val
, "%u", &subbuffer_size
);
1361 power
= pow2_higher_or_eq(subbuffer_size
);
1362 if (power
!= subbuffer_size
)
1363 WARN("using the next power of two for buffer size = %u\n", power
);
1364 chan_infos
[LTT_CHANNEL_UST
].def_subbufsize
= power
;
1367 subbuffer_count_val
= getenv("UST_SUBBUF_NUM");
1368 if (subbuffer_count_val
) {
1369 sscanf(subbuffer_count_val
, "%u", &subbuffer_count
);
1370 if (subbuffer_count
< 2)
1371 subbuffer_count
= 2;
1372 chan_infos
[LTT_CHANNEL_UST
].def_subbufcount
= subbuffer_count
;
1375 if (getenv("UST_TRACE")) {
1376 char trace_name
[] = "auto";
1377 char trace_type
[] = "ustrelay";
1379 DBG("starting early tracing");
1381 /* Ensure marker control is initialized */
1382 init_marker_control();
1384 /* Ensure markers are initialized */
1387 /* Ensure buffers are initialized, for the transport to be available.
1388 * We are about to set a trace type and it will fail without this.
1390 init_ustrelay_transport();
1392 /* FIXME: When starting early tracing (here), depending on the
1393 * order of constructors, it is very well possible some marker
1394 * sections are not yet registered. Because of this, some
1395 * channels may not be registered. Yet, we are about to ask the
1396 * daemon to collect the channels. Channels which are not yet
1397 * registered will not be collected.
1399 * Currently, in LTTng, there is no way to add a channel after
1400 * trace start. The reason for this is that it induces complex
1401 * concurrency issues on the trace structures, which can only
1402 * be resolved using RCU. This has not been done yet. As a
1403 * workaround, we are forcing the registration of the "ust"
1404 * channel here. This is the only channel (apart from metadata)
1405 * that can be reliably used in early tracing.
1407 * Non-early tracing does not have this problem and can use
1408 * arbitrary channel names.
1410 ltt_channels_register("ust");
1412 result
= ltt_trace_setup(trace_name
);
1414 ERR("ltt_trace_setup failed");
1418 result
= ltt_trace_set_type(trace_name
, trace_type
);
1420 ERR("ltt_trace_set_type failed");
1424 result
= ltt_trace_alloc(trace_name
);
1426 ERR("ltt_trace_alloc failed");
1430 result
= ltt_trace_start(trace_name
);
1432 ERR("ltt_trace_start failed");
1436 /* Do this after the trace is started in order to avoid creating confusion
1437 * if the trace fails to start. */
1438 inform_consumer_daemon(trace_name
);
1443 /* should decrementally destroy stuff if error */
1447 /* This is only called if we terminate normally, not with an unhandled signal,
1448 * so we cannot rely on it. However, for now, LTTV requires that the header of
1449 * the last sub-buffer contain a valid end time for the trace. This is done
1450 * automatically only when the trace is properly stopped.
1452 * If the traced program crashed, it is always possible to manually add the
1453 * right value in the header, or to open the trace in text mode.
1455 * FIXME: Fix LTTV so it doesn't need this.
1458 static void destroy_traces(void)
1462 /* if trace running, finish it */
1464 DBG("destructor stopping traces");
1466 result
= ltt_trace_stop("auto");
1468 ERR("ltt_trace_stop error");
1471 result
= ltt_trace_destroy("auto", 0);
1473 ERR("ltt_trace_destroy error");
1477 static int trace_recording(void)
1480 struct ust_trace
*trace
;
1484 cds_list_for_each_entry(trace
, <t_traces
.head
, list
) {
1485 if (trace
->active
) {
1491 ltt_unlock_traces();
1496 int restarting_usleep(useconds_t usecs
)
1502 tv
.tv_nsec
= usecs
* 1000;
1505 result
= nanosleep(&tv
, &tv
);
1506 } while (result
== -1 && errno
== EINTR
);
1511 static void stop_listener(void)
1518 result
= pthread_cancel(listener_thread
);
1520 ERR("pthread_cancel: %s", strerror(result
));
1522 result
= pthread_join(listener_thread
, NULL
);
1524 ERR("pthread_join: %s", strerror(result
));
1528 /* This destructor keeps the process alive for a few seconds in order
1529 * to leave time for ustconsumer to connect to its buffers. This is necessary
1530 * for programs whose execution is very short. It is also useful in all
1531 * programs when tracing is started close to the end of the program
1534 * FIXME: For now, this only works for the first trace created in a
1538 static void __attribute__((destructor
)) keepalive()
1540 if (processpid
!= getpid()) {
1544 if (trace_recording() && CMM_LOAD_SHARED(buffers_to_export
)) {
1546 DBG("Keeping process alive for consumer daemon...");
1547 while (CMM_LOAD_SHARED(buffers_to_export
)) {
1548 const int interv
= 200000;
1549 restarting_usleep(interv
);
1552 if (total
>= 3000000) {
1553 WARN("non-consumed buffers remaining after wait limit; not waiting anymore");
1557 DBG("Finally dying...");
1562 /* Ask the listener to stop and clean up. */
1566 void ust_potential_exec(void)
1568 trace_mark(ust
, potential_exec
, MARK_NOARGS
);
1575 /* Notify ust that there was a fork. This needs to be called inside
1576 * the new process, anytime a process whose memory is not shared with
1577 * the parent is created. If this function is not called, the events
1578 * of the new process will not be collected.
1580 * Signals should be disabled before the fork and reenabled only after
1581 * this call in order to guarantee tracing is not started before ust_fork()
1582 * sanitizes the new process.
1585 static void ust_fork(void)
1587 struct ust_buffer
*buf
, *buf_tmp
;
1588 struct ustcomm_sock
*sock
, *sock_tmp
;
1589 struct ust_trace
*trace
, *trace_tmp
;
1592 /* FIXME: technically, the locks could have been taken before the fork */
1593 DBG("ust: forking");
1595 /* Get the pid of the new process */
1596 processpid
= getpid();
1599 * FIXME: This could be prettier, we loop over the list twice and
1600 * following good locking practice should lock around the loop
1602 cds_list_for_each_entry_safe(trace
, trace_tmp
, <t_traces
.head
, list
) {
1603 ltt_trace_stop(trace
->trace_name
);
1606 /* Delete all active connections, but leave them in the epoll set */
1607 cds_list_for_each_entry_safe(sock
, sock_tmp
, &ust_socks
, list
) {
1608 ustcomm_del_sock(sock
, 1);
1611 /* Delete all blocked consumers */
1612 cds_list_for_each_entry_safe(buf
, buf_tmp
, &open_buffers_list
,
1613 open_buffers_list
) {
1614 cds_list_del(&buf
->open_buffers_list
);
1618 * FIXME: This could be prettier, we loop over the list twice and
1619 * following good locking practice should lock around the loop
1621 cds_list_for_each_entry_safe(trace
, trace_tmp
, <t_traces
.head
, list
) {
1622 ltt_trace_destroy(trace
->trace_name
, 1);
1625 /* Clean up the listener socket and epoll, keeping the socket file */
1627 ustcomm_del_named_sock(listen_sock
, 1);
1632 /* Re-start the launch sequence */
1633 CMM_STORE_SHARED(buffers_to_export
, 0);
1637 epoll_fd
= epoll_create(MAX_EVENTS
);
1638 if (epoll_fd
== -1) {
1639 ERR("epoll_create failed, tracing shutting down");
1643 /* Create the socket */
1644 listen_sock
= init_app_socket(epoll_fd
);
1646 ERR("failed to create application socket,"
1647 " tracing shutting down");
1651 ltt_trace_setup("auto");
1652 result
= ltt_trace_set_type("auto", "ustrelay");
1654 ERR("ltt_trace_set_type failed");
1658 ltt_trace_alloc("auto");
1659 ltt_trace_start("auto");
1660 inform_consumer_daemon("auto");
1663 void ust_before_fork(ust_fork_info_t
*fork_info
)
1665 /* Disable signals. This is to avoid that the child
1666 * intervenes before it is properly setup for tracing. It is
1667 * safer to disable all signals, because then we know we are not
1668 * breaking anything by restoring the original mask.
1674 - only do this if tracing is active
1677 /* Disable signals */
1678 sigfillset(&all_sigs
);
1679 result
= sigprocmask(SIG_BLOCK
, &all_sigs
, &fork_info
->orig_sigs
);
1681 PERROR("sigprocmask");
1686 * Take the fork lock to make sure we are not in the middle of
1687 * something in the listener thread.
1689 pthread_mutex_lock(&listener_thread_data_mutex
);
1691 * Hold listen_sock_mutex to protect from listen_sock teardown.
1693 pthread_mutex_lock(&listen_sock_mutex
);
1696 /* Don't call this function directly in a traced program */
1697 static void ust_after_fork_common(ust_fork_info_t
*fork_info
)
1701 pthread_mutex_unlock(&listen_sock_mutex
);
1702 pthread_mutex_unlock(&listener_thread_data_mutex
);
1704 /* Restore signals */
1705 result
= sigprocmask(SIG_SETMASK
, &fork_info
->orig_sigs
, NULL
);
1707 PERROR("sigprocmask");
1712 void ust_after_fork_parent(ust_fork_info_t
*fork_info
)
1714 /* Release mutexes and reenable signals */
1715 ust_after_fork_common(fork_info
);
1718 void ust_after_fork_child(ust_fork_info_t
*fork_info
)
1720 /* First sanitize the child */
1723 /* Then release mutexes and reenable signals */
1724 ust_after_fork_common(fork_info
);
1727 * Make sure we clean up the urcu-bp thread list in the child by running
1728 * the garbage collection before any pthread_create can be called.
1729 * Failure to do so could lead to a deadlock caused by reuse of a thread
1730 * ID before urcu-bp garbage collection is performed.