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
22 #include <sys/types.h>
23 #include <sys/socket.h>
32 #include <ust/marker.h>
33 #include <ust/tracectl.h>
37 #include "buffers.h" /* FIXME: remove */
38 #include "marker-control.h"
42 #define USTSIGNAL SIGIO
44 #define MAX_MSG_SIZE (100)
46 #define MSG_REGISTER_NOTIF 2
48 char consumer_stack
[10000];
50 /* This should only be accessed by the constructor, before the creation
51 * of the listener, and then only by the listener.
55 struct list_head blocked_consumers
= LIST_HEAD_INIT(blocked_consumers
);
57 static struct ustcomm_app ustcomm_app
;
59 struct tracecmd
{ /* no padding */
64 /* volatile because shared between the listener and the main thread */
65 volatile sig_atomic_t buffers_to_export
= 0;
68 /* size: the size of all the fields except size itself */
71 /* Only the necessary part of the payload is transferred. It
72 * may even be none of it.
77 struct consumer_channel
{
79 struct ltt_channel_struct
*chan
;
82 struct blocked_consumer
{
87 /* args to ustcomm_send_reply */
88 struct ustcomm_server server
;
89 struct ustcomm_source src
;
91 /* args to ust_buffers_do_get_subbuf */
92 struct ust_buffer
*buf
;
94 struct list_head list
;
97 static long long make_pidunique(void)
102 gettimeofday(&tv
, NULL
);
106 retval
|= tv
.tv_usec
;
111 static void print_markers(FILE *fp
)
113 struct marker_iter iter
;
116 marker_iter_reset(&iter
);
117 marker_iter_start(&iter
);
120 fprintf(fp
, "marker: %s/%s %d \"%s\" %p\n", iter
.marker
->channel
, iter
.marker
->name
, (int)imv_read(iter
.marker
->state
), iter
.marker
->format
, iter
.marker
->location
);
121 marker_iter_next(&iter
);
126 static int init_socket(void);
128 /* This needs to be called whenever a new thread is created. It notifies
129 * liburcu of the new thread.
132 void ust_register_thread(void)
134 rcu_register_thread();
141 struct trctl_msg msg
;
143 /* FIXME: fd_notif should probably be protected by a spinlock */
148 msg
.type
= MSG_NOTIF
;
149 msg
.size
= sizeof(msg
.type
);
151 /* FIXME: don't block here */
152 result
= write(fd_notif
, &msg
, msg
.size
+sizeof(msg
.size
));
159 /* Ask the daemon to collect a trace called trace_name and being
160 * produced by this pid.
162 * The trace must be at least allocated. (It can also be started.)
163 * This is because _ltt_trace_find is used.
166 static void inform_consumer_daemon(const char *trace_name
)
169 struct ltt_trace_struct
*trace
;
170 pid_t pid
= getpid();
175 trace
= _ltt_trace_find(trace_name
);
177 WARN("inform_consumer_daemon: could not find trace \"%s\"; it is probably already destroyed", trace_name
);
181 for(i
=0; i
< trace
->nr_channels
; i
++) {
182 /* iterate on all cpus */
183 for(j
=0; j
<trace
->channels
[i
].n_cpus
; j
++) {
185 asprintf(&buf
, "%s_%d", trace
->channels
[i
].channel_name
, j
);
186 result
= ustcomm_request_consumer(pid
, buf
);
188 WARN("Failed to request collection for channel %s. Is the daemon available?", trace
->channels
[i
].channel_name
);
189 /* continue even if fail */
200 void process_blocked_consumers(void)
204 struct blocked_consumer
*bc
;
209 list_for_each_entry(bc
, &blocked_consumers
, list
) {
213 fds
= (struct pollfd
*) malloc(n_fds
* sizeof(struct pollfd
));
215 ERR("malloc returned NULL");
219 list_for_each_entry(bc
, &blocked_consumers
, list
) {
220 fds
[idx
].fd
= bc
->fd_producer
;
221 fds
[idx
].events
= POLLIN
;
222 bc
->tmp_poll_idx
= idx
;
226 while((result
= poll(fds
, n_fds
, 0)) == -1 && errno
== EINTR
)
233 list_for_each_entry(bc
, &blocked_consumers
, list
) {
234 if(fds
[bc
->tmp_poll_idx
].revents
) {
235 long consumed_old
= 0;
238 result
= read(bc
->fd_producer
, &inbuf
, 1);
246 close(bc
->fd_producer
);
250 result
= ustcomm_send_reply(&bc
->server
, "END", &bc
->src
);
252 ERR("ustcomm_send_reply failed");
259 result
= ust_buffers_do_get_subbuf(bc
->buf
, &consumed_old
);
260 if(result
== -EAGAIN
) {
261 WARN("missed buffer?");
264 else if(result
< 0) {
265 DBG("ust_buffers_do_get_subbuf: error: %s", strerror(-result
));
267 asprintf(&reply
, "%s %ld", "OK", consumed_old
);
268 result
= ustcomm_send_reply(&bc
->server
, reply
, &bc
->src
);
270 ERR("ustcomm_send_reply failed");
282 void seperate_channel_cpu(const char *channel_and_cpu
, char **channel
, int *cpu
)
286 sep
= rindex(channel_and_cpu
, '_');
289 sep
= channel_and_cpu
+ strlen(channel_and_cpu
);
295 asprintf(channel
, "%.*s", (int)(sep
-channel_and_cpu
), channel_and_cpu
);
298 static int do_cmd_get_shmid(const char *recvbuf
, struct ustcomm_source
*src
)
301 struct ltt_trace_struct
*trace
;
302 char trace_name
[] = "auto";
304 char *channel_and_cpu
;
312 channel_and_cpu
= nth_token(recvbuf
, 1);
313 if(channel_and_cpu
== NULL
) {
314 ERR("get_shmid: cannot parse channel");
318 seperate_channel_cpu(channel_and_cpu
, &ch_name
, &ch_cpu
);
320 ERR("Problem parsing channel name");
321 goto free_short_chan_name
;
325 trace
= _ltt_trace_find(trace_name
);
329 ERR("cannot find trace!");
331 goto free_short_chan_name
;
334 for(i
=0; i
<trace
->nr_channels
; i
++) {
335 struct ust_channel
*channel
= &trace
->channels
[i
];
336 struct ust_buffer
*buf
= channel
->buf
[ch_cpu
];
338 if(!strcmp(trace
->channels
[i
].channel_name
, ch_name
)) {
341 // DBG("the shmid for the requested channel is %d", buf->shmid);
342 // DBG("the shmid for its buffer structure is %d", channel->buf_struct_shmids);
343 asprintf(&reply
, "%d %d", buf
->shmid
, channel
->buf_struct_shmids
[ch_cpu
]);
345 result
= ustcomm_send_reply(&ustcomm_app
.server
, reply
, src
);
347 ERR("listener: get_shmid: ustcomm_send_reply failed");
350 goto free_short_chan_name
;
364 ERR("get_shmid: channel not found (%s)", channel_and_cpu
);
367 free_short_chan_name
:
374 static int do_cmd_get_n_subbufs(const char *recvbuf
, struct ustcomm_source
*src
)
377 struct ltt_trace_struct
*trace
;
378 char trace_name
[] = "auto";
380 char *channel_and_cpu
;
386 DBG("get_n_subbufs");
388 channel_and_cpu
= nth_token(recvbuf
, 1);
389 if(channel_and_cpu
== NULL
) {
390 ERR("get_n_subbufs: cannot parse channel");
394 seperate_channel_cpu(channel_and_cpu
, &ch_name
, &ch_cpu
);
396 ERR("Problem parsing channel name");
397 goto free_short_chan_name
;
401 trace
= _ltt_trace_find(trace_name
);
405 ERR("cannot find trace!");
407 goto free_short_chan_name
;
410 for(i
=0; i
<trace
->nr_channels
; i
++) {
411 struct ust_channel
*channel
= &trace
->channels
[i
];
413 if(!strcmp(trace
->channels
[i
].channel_name
, ch_name
)) {
416 DBG("the n_subbufs for the requested channel is %d", channel
->subbuf_cnt
);
417 asprintf(&reply
, "%d", channel
->subbuf_cnt
);
419 result
= ustcomm_send_reply(&ustcomm_app
.server
, reply
, src
);
421 ERR("listener: get_n_subbufs: ustcomm_send_reply failed");
424 goto free_short_chan_name
;
433 ERR("get_n_subbufs: unable to find channel");
436 free_short_chan_name
:
443 static int do_cmd_get_subbuf_size(const char *recvbuf
, struct ustcomm_source
*src
)
446 struct ltt_trace_struct
*trace
;
447 char trace_name
[] = "auto";
449 char *channel_and_cpu
;
455 DBG("get_subbuf_size");
457 channel_and_cpu
= nth_token(recvbuf
, 1);
458 if(channel_and_cpu
== NULL
) {
459 ERR("get_subbuf_size: cannot parse channel");
463 seperate_channel_cpu(channel_and_cpu
, &ch_name
, &ch_cpu
);
465 ERR("Problem parsing channel name");
466 goto free_short_chan_name
;
470 trace
= _ltt_trace_find(trace_name
);
474 ERR("cannot find trace!");
476 goto free_short_chan_name
;
479 for(i
=0; i
<trace
->nr_channels
; i
++) {
480 struct ust_channel
*channel
= &trace
->channels
[i
];
482 if(!strcmp(trace
->channels
[i
].channel_name
, ch_name
)) {
485 DBG("the subbuf_size for the requested channel is %zd", channel
->subbuf_size
);
486 asprintf(&reply
, "%zd", channel
->subbuf_size
);
488 result
= ustcomm_send_reply(&ustcomm_app
.server
, reply
, src
);
490 ERR("listener: get_subbuf_size: ustcomm_send_reply failed");
493 goto free_short_chan_name
;
502 ERR("get_subbuf_size: unable to find channel");
505 free_short_chan_name
:
512 static int do_cmd_get_subbuffer(const char *recvbuf
, struct ustcomm_source
*src
)
515 struct ltt_trace_struct
*trace
;
516 char trace_name
[] = "auto";
518 char *channel_and_cpu
;
525 channel_and_cpu
= nth_token(recvbuf
, 1);
526 if(channel_and_cpu
== NULL
) {
527 ERR("get_subbuf: cannot parse channel");
531 seperate_channel_cpu(channel_and_cpu
, &ch_name
, &ch_cpu
);
533 ERR("Problem parsing channel name");
534 goto free_short_chan_name
;
538 trace
= _ltt_trace_find(trace_name
);
542 ERR("cannot find trace!");
544 goto free_short_chan_name
;
547 for(i
=0; i
<trace
->nr_channels
; i
++) {
548 struct ust_channel
*channel
= &trace
->channels
[i
];
550 if(!strcmp(trace
->channels
[i
].channel_name
, ch_name
)) {
551 struct ust_buffer
*buf
= channel
->buf
[ch_cpu
];
552 struct blocked_consumer
*bc
;
556 bc
= (struct blocked_consumer
*) malloc(sizeof(struct blocked_consumer
));
558 ERR("malloc returned NULL");
559 goto free_short_chan_name
;
561 bc
->fd_consumer
= src
->fd
;
562 bc
->fd_producer
= buf
->data_ready_fd_read
;
565 bc
->server
= ustcomm_app
.server
;
567 list_add(&bc
->list
, &blocked_consumers
);
573 ERR("get_subbuf: unable to find channel");
576 free_short_chan_name
:
583 static int do_cmd_put_subbuffer(const char *recvbuf
, struct ustcomm_source
*src
)
586 struct ltt_trace_struct
*trace
;
587 char trace_name
[] = "auto";
589 char *channel_and_cpu
;
595 char *consumed_old_str
;
600 channel_and_cpu
= strdup_malloc(nth_token(recvbuf
, 1));
601 if(channel_and_cpu
== NULL
) {
602 ERR("put_subbuf_size: cannot parse channel");
607 consumed_old_str
= strdup_malloc(nth_token(recvbuf
, 2));
608 if(consumed_old_str
== NULL
) {
609 ERR("put_subbuf: cannot parse consumed_old");
611 goto free_channel_and_cpu
;
613 consumed_old
= strtol(consumed_old_str
, &endptr
, 10);
614 if(*endptr
!= '\0') {
615 ERR("put_subbuf: invalid value for consumed_old");
617 goto free_consumed_old_str
;
620 seperate_channel_cpu(channel_and_cpu
, &ch_name
, &ch_cpu
);
622 ERR("Problem parsing channel name");
624 goto free_short_chan_name
;
628 trace
= _ltt_trace_find(trace_name
);
632 ERR("cannot find trace!");
634 goto free_short_chan_name
;
637 for(i
=0; i
<trace
->nr_channels
; i
++) {
638 struct ust_channel
*channel
= &trace
->channels
[i
];
640 if(!strcmp(trace
->channels
[i
].channel_name
, ch_name
)) {
641 struct ust_buffer
*buf
= channel
->buf
[ch_cpu
];
647 result
= ust_buffers_do_put_subbuf(buf
, consumed_old
);
649 WARN("ust_buffers_do_put_subbuf: error (subbuf=%s)", channel_and_cpu
);
650 asprintf(&reply
, "%s", "ERROR");
653 DBG("ust_buffers_do_put_subbuf: success (subbuf=%s)", channel_and_cpu
);
654 asprintf(&reply
, "%s", "OK");
657 result
= ustcomm_send_reply(&ustcomm_app
.server
, reply
, src
);
659 ERR("listener: put_subbuf: ustcomm_send_reply failed");
662 goto free_channel_and_cpu
;
670 ERR("get_subbuf_size: unable to find channel");
673 free_channel_and_cpu
:
674 free(channel_and_cpu
);
675 free_consumed_old_str
:
676 free(consumed_old_str
);
677 free_short_chan_name
:
684 void *listener_main(void *p
)
688 ust_register_thread();
693 char trace_name
[] = "auto";
694 char trace_type
[] = "ustrelay";
697 struct ustcomm_source src
;
699 process_blocked_consumers();
701 result
= ustcomm_app_recv_message(&ustcomm_app
, &recvbuf
, &src
, 5);
703 WARN("error in ustcomm_app_recv_message");
706 else if(result
== 0) {
711 DBG("received a message! it's: %s", recvbuf
);
712 len
= strlen(recvbuf
);
714 if(!strcmp(recvbuf
, "print_markers")) {
715 print_markers(stderr
);
717 else if(!strcmp(recvbuf
, "list_markers")) {
722 fp
= open_memstream(&ptr
, &size
);
726 result
= ustcomm_send_reply(&ustcomm_app
.server
, ptr
, &src
);
730 else if(!strcmp(recvbuf
, "start")) {
731 /* start is an operation that setups the trace, allocates it and starts it */
732 result
= ltt_trace_setup(trace_name
);
734 ERR("ltt_trace_setup failed");
738 result
= ltt_trace_set_type(trace_name
, trace_type
);
740 ERR("ltt_trace_set_type failed");
744 result
= ltt_trace_alloc(trace_name
);
746 ERR("ltt_trace_alloc failed");
750 inform_consumer_daemon(trace_name
);
752 result
= ltt_trace_start(trace_name
);
754 ERR("ltt_trace_start failed");
758 else if(!strcmp(recvbuf
, "trace_setup")) {
761 result
= ltt_trace_setup(trace_name
);
763 ERR("ltt_trace_setup failed");
767 result
= ltt_trace_set_type(trace_name
, trace_type
);
769 ERR("ltt_trace_set_type failed");
773 else if(!strcmp(recvbuf
, "trace_alloc")) {
776 result
= ltt_trace_alloc(trace_name
);
778 ERR("ltt_trace_alloc failed");
782 else if(!strcmp(recvbuf
, "trace_create")) {
785 result
= ltt_trace_setup(trace_name
);
787 ERR("ltt_trace_setup failed");
791 result
= ltt_trace_set_type(trace_name
, trace_type
);
793 ERR("ltt_trace_set_type failed");
797 result
= ltt_trace_alloc(trace_name
);
799 ERR("ltt_trace_alloc failed");
803 inform_consumer_daemon(trace_name
);
805 else if(!strcmp(recvbuf
, "trace_start")) {
808 result
= ltt_trace_start(trace_name
);
810 ERR("ltt_trace_start failed");
814 else if(!strcmp(recvbuf
, "trace_stop")) {
817 result
= ltt_trace_stop(trace_name
);
819 ERR("ltt_trace_stop failed");
823 else if(!strcmp(recvbuf
, "trace_destroy")) {
825 DBG("trace destroy");
827 result
= ltt_trace_destroy(trace_name
);
829 ERR("ltt_trace_destroy failed");
833 else if(nth_token_is(recvbuf
, "get_shmid", 0) == 1) {
834 do_cmd_get_shmid(recvbuf
, &src
);
836 else if(nth_token_is(recvbuf
, "get_n_subbufs", 0) == 1) {
837 do_cmd_get_n_subbufs(recvbuf
, &src
);
839 else if(nth_token_is(recvbuf
, "get_subbuf_size", 0) == 1) {
840 do_cmd_get_subbuf_size(recvbuf
, &src
);
842 else if(nth_token_is(recvbuf
, "load_probe_lib", 0) == 1) {
845 libfile
= nth_token(recvbuf
, 1);
847 DBG("load_probe_lib loading %s", libfile
);
851 else if(nth_token_is(recvbuf
, "get_subbuffer", 0) == 1) {
852 do_cmd_get_subbuffer(recvbuf
, &src
);
854 else if(nth_token_is(recvbuf
, "put_subbuffer", 0) == 1) {
855 do_cmd_put_subbuffer(recvbuf
, &src
);
857 else if(nth_token_is(recvbuf
, "enable_marker", 0) == 1) {
858 char *channel_slash_name
= nth_token(recvbuf
, 1);
859 char channel_name
[256]="";
860 char marker_name
[256]="";
862 result
= sscanf(channel_slash_name
, "%255[^/]/%255s", channel_name
, marker_name
);
864 if(channel_name
== NULL
|| marker_name
== NULL
) {
865 WARN("invalid marker name");
869 result
= ltt_marker_connect(channel_name
, marker_name
, "default");
871 WARN("could not enable marker; channel=%s, name=%s", channel_name
, marker_name
);
874 else if(nth_token_is(recvbuf
, "disable_marker", 0) == 1) {
875 char *channel_slash_name
= nth_token(recvbuf
, 1);
879 result
= sscanf(channel_slash_name
, "%a[^/]/%as", &channel_name
, &marker_name
);
881 if(marker_name
== NULL
) {
884 result
= ltt_marker_disconnect(channel_name
, marker_name
, "default");
886 WARN("could not disable marker; channel=%s, name=%s", channel_name
, marker_name
);
889 else if(nth_token_is(recvbuf
, "get_pidunique", 0) == 1) {
892 asprintf(&reply
, "%lld", pidunique
);
894 result
= ustcomm_send_reply(&ustcomm_app
.server
, reply
, &src
);
896 ERR("listener: get_pidunique: ustcomm_send_reply failed");
902 // else if(nth_token_is(recvbuf, "get_notifications", 0) == 1) {
903 // struct ltt_trace_struct *trace;
904 // char trace_name[] = "auto";
906 // char *channel_name;
908 // DBG("get_notifications");
910 // channel_name = strdup_malloc(nth_token(recvbuf, 1));
911 // if(channel_name == NULL) {
912 // ERR("put_subbuf_size: cannot parse channel");
916 // ltt_lock_traces();
917 // trace = _ltt_trace_find(trace_name);
918 // ltt_unlock_traces();
920 // if(trace == NULL) {
921 // ERR("cannot find trace!");
925 // for(i=0; i<trace->nr_channels; i++) {
926 // struct rchan *rchan = trace->channels[i].trans_channel_data;
929 // if(!strcmp(trace->channels[i].channel_name, channel_name)) {
930 // struct rchan_buf *rbuf = rchan->buf;
931 // struct ltt_channel_buf_struct *lttbuf = trace->channels[i].buf;
933 // result = fd = ustcomm_app_detach_client(&ustcomm_app, &src);
934 // if(result == -1) {
935 // ERR("ustcomm_app_detach_client failed");
939 // lttbuf->wake_consumer_arg = (void *) fd;
943 // lttbuf->call_wake_consumer = 1;
949 // free(channel_name);
952 ERR("unable to parse message: %s", recvbuf
);
960 volatile sig_atomic_t have_listener
= 0;
962 void create_listener(void)
965 static char listener_stack
[16384];
972 WARN("not creating listener because we already had one");
977 result
= clone((int (*)(void *)) listener_main
, listener_stack
+sizeof(listener_stack
)-1, CLONE_FS
| CLONE_FILES
| CLONE_VM
| CLONE_SIGHAND
| CLONE_THREAD
, NULL
);
984 pthread_create(&thread
, NULL
, listener_main
, NULL
);
990 static int init_socket(void)
992 return ustcomm_init_app(getpid(), &ustcomm_app
);
995 #define AUTOPROBE_DISABLED 0
996 #define AUTOPROBE_ENABLE_ALL 1
997 #define AUTOPROBE_ENABLE_REGEX 2
998 static int autoprobe_method
= AUTOPROBE_DISABLED
;
999 static regex_t autoprobe_regex
;
1001 static void auto_probe_connect(struct marker
*m
)
1005 char* concat_name
= NULL
;
1006 const char *probe_name
= "default";
1008 if(autoprobe_method
== AUTOPROBE_DISABLED
) {
1011 else if(autoprobe_method
== AUTOPROBE_ENABLE_REGEX
) {
1012 result
= asprintf(&concat_name
, "%s/%s", m
->channel
, m
->name
);
1014 ERR("auto_probe_connect: asprintf failed (marker %s/%s)",
1015 m
->channel
, m
->name
);
1018 if (regexec(&autoprobe_regex
, concat_name
, 0, NULL
, 0)) {
1025 result
= ltt_marker_connect(m
->channel
, m
->name
, probe_name
);
1026 if(result
&& result
!= -EEXIST
)
1027 ERR("ltt_marker_connect (marker = %s/%s, errno = %d)", m
->channel
, m
->name
, -result
);
1029 DBG("auto connected marker %s (addr: %p) %s to probe default", m
->channel
, m
, m
->name
);
1033 static void __attribute__((constructor
)) init()
1036 char* autoprobe_val
= NULL
;
1038 /* Assign the pidunique, to be able to differentiate the processes with same
1039 * pid, (before and after an exec).
1041 pidunique
= make_pidunique();
1043 /* Initialize RCU in case the constructor order is not good. */
1046 /* It is important to do this before events start to be generated. */
1047 ust_register_thread();
1049 DBG("Tracectl constructor");
1051 /* Must create socket before signal handler to prevent races.
1053 result
= init_socket();
1055 ERR("init_socket error");
1061 autoprobe_val
= getenv("UST_AUTOPROBE");
1063 struct marker_iter iter
;
1065 DBG("Autoprobe enabled.");
1067 /* Ensure markers are initialized */
1070 /* Ensure marker control is initialized, for the probe */
1071 init_marker_control();
1073 /* first, set the callback that will connect the
1074 * probe on new markers
1076 if(autoprobe_val
[0] == '/') {
1077 result
= regcomp(&autoprobe_regex
, autoprobe_val
+1, 0);
1081 regerror(result
, &autoprobe_regex
, regexerr
, sizeof(regexerr
));
1082 ERR("cannot parse regex %s (%s), will ignore UST_AUTOPROBE", autoprobe_val
, regexerr
);
1083 /* don't crash the application just for this */
1086 autoprobe_method
= AUTOPROBE_ENABLE_REGEX
;
1090 /* just enable all instrumentation */
1091 autoprobe_method
= AUTOPROBE_ENABLE_ALL
;
1094 marker_set_new_marker_cb(auto_probe_connect
);
1096 /* Now, connect the probes that were already registered. */
1097 marker_iter_reset(&iter
);
1098 marker_iter_start(&iter
);
1100 DBG("now iterating on markers already registered");
1101 while(iter
.marker
) {
1102 DBG("now iterating on marker %s", iter
.marker
->name
);
1103 auto_probe_connect(iter
.marker
);
1104 marker_iter_next(&iter
);
1108 if(getenv("UST_TRACE")) {
1109 char trace_name
[] = "auto";
1110 char trace_type
[] = "ustrelay";
1112 DBG("starting early tracing");
1114 /* Ensure marker control is initialized */
1115 init_marker_control();
1117 /* Ensure relay is initialized */
1118 init_ustrelay_transport();
1120 /* Ensure markers are initialized */
1123 /* FIXME: When starting early tracing (here), depending on the
1124 * order of constructors, it is very well possible some marker
1125 * sections are not yet registered. Because of this, some
1126 * channels may not be registered. Yet, we are about to ask the
1127 * daemon to collect the channels. Channels which are not yet
1128 * registered will not be collected.
1130 * Currently, in LTTng, there is no way to add a channel after
1131 * trace start. The reason for this is that it induces complex
1132 * concurrency issues on the trace structures, which can only
1133 * be resolved using RCU. This has not been done yet. As a
1134 * workaround, we are forcing the registration of the "ust"
1135 * channel here. This is the only channel (apart from metadata)
1136 * that can be reliably used in early tracing.
1138 * Non-early tracing does not have this problem and can use
1139 * arbitrary channel names.
1141 ltt_channels_register("ust");
1143 result
= ltt_trace_setup(trace_name
);
1145 ERR("ltt_trace_setup failed");
1149 result
= ltt_trace_set_type(trace_name
, trace_type
);
1151 ERR("ltt_trace_set_type failed");
1155 result
= ltt_trace_alloc(trace_name
);
1157 ERR("ltt_trace_alloc failed");
1161 result
= ltt_trace_start(trace_name
);
1163 ERR("ltt_trace_start failed");
1167 /* Do this after the trace is started in order to avoid creating confusion
1168 * if the trace fails to start. */
1169 inform_consumer_daemon(trace_name
);
1175 /* should decrementally destroy stuff if error */
1179 /* This is only called if we terminate normally, not with an unhandled signal,
1180 * so we cannot rely on it. However, for now, LTTV requires that the header of
1181 * the last sub-buffer contain a valid end time for the trace. This is done
1182 * automatically only when the trace is properly stopped.
1184 * If the traced program crashed, it is always possible to manually add the
1185 * right value in the header, or to open the trace in text mode.
1187 * FIXME: Fix LTTV so it doesn't need this.
1190 static void destroy_traces(void)
1194 /* if trace running, finish it */
1196 DBG("destructor stopping traces");
1198 result
= ltt_trace_stop("auto");
1200 ERR("ltt_trace_stop error");
1203 result
= ltt_trace_destroy("auto");
1205 ERR("ltt_trace_destroy error");
1209 static int trace_recording(void)
1212 struct ltt_trace_struct
*trace
;
1216 list_for_each_entry(trace
, <t_traces
.head
, list
) {
1223 ltt_unlock_traces();
1229 static int have_consumer(void)
1231 return !list_empty(&blocked_consumers
);
1235 int restarting_usleep(useconds_t usecs
)
1241 tv
.tv_nsec
= usecs
* 1000;
1244 result
= nanosleep(&tv
, &tv
);
1245 } while(result
== -1 && errno
== EINTR
);
1250 /* This destructor keeps the process alive for a few seconds in order
1251 * to leave time to ustd to connect to its buffers. This is necessary
1252 * for programs whose execution is very short. It is also useful in all
1253 * programs when tracing is started close to the end of the program
1256 * FIXME: For now, this only works for the first trace created in a
1260 static void __attribute__((destructor
)) keepalive()
1262 if(trace_recording() && buffers_to_export
) {
1264 DBG("Keeping process alive for consumer daemon...");
1265 while(buffers_to_export
) {
1266 const int interv
= 200000;
1267 restarting_usleep(interv
);
1270 if(total
>= 3000000) {
1271 WARN("non-consumed buffers remaining after wait limit; not waiting anymore");
1275 DBG("Finally dying...");
1280 ustcomm_fini_app(&ustcomm_app
);
1283 void ust_potential_exec(void)
1285 trace_mark(ust
, potential_exec
, MARK_NOARGS
);
1292 /* Notify ust that there was a fork. This needs to be called inside
1293 * the new process, anytime a process whose memory is not shared with
1294 * the parent is created. If this function is not called, the events
1295 * of the new process will not be collected.
1297 * Signals should be disabled before the fork and reenabled only after
1298 * this call in order to guarantee tracing is not started before ust_fork()
1299 * sanitizes the new process.
1302 static void ust_fork(void)
1304 struct blocked_consumer
*bc
;
1305 struct blocked_consumer
*deletable_bc
= NULL
;
1308 DBG("ust: forking");
1309 ltt_trace_stop("auto");
1310 ltt_trace_destroy("auto");
1311 /* Delete all active connections */
1312 ustcomm_close_all_connections(&ustcomm_app
.server
);
1314 /* Delete all blocked consumers */
1315 list_for_each_entry(bc
, &blocked_consumers
, list
) {
1316 close(bc
->fd_producer
);
1317 close(bc
->fd_consumer
);
1320 list_del(&bc
->list
);
1326 ltt_trace_setup("auto");
1327 result
= ltt_trace_set_type("auto", "ustrelay");
1329 ERR("ltt_trace_set_type failed");
1333 ltt_trace_alloc("auto");
1334 ltt_trace_start("auto");
1335 inform_consumer_daemon("auto");
1338 void ust_before_fork(ust_fork_info_t
*fork_info
)
1340 /* Disable signals. This is to avoid that the child
1341 * intervenes before it is properly setup for tracing. It is
1342 * safer to disable all signals, because then we know we are not
1343 * breaking anything by restoring the original mask.
1349 - only do this if tracing is active
1352 /* Disable signals */
1353 sigfillset(&all_sigs
);
1354 result
= sigprocmask(SIG_BLOCK
, &all_sigs
, &fork_info
->orig_sigs
);
1356 PERROR("sigprocmask");
1361 /* Don't call this function directly in a traced program */
1362 static void ust_after_fork_common(ust_fork_info_t
*fork_info
)
1366 /* Restore signals */
1367 result
= sigprocmask(SIG_SETMASK
, &fork_info
->orig_sigs
, NULL
);
1369 PERROR("sigprocmask");
1374 void ust_after_fork_parent(ust_fork_info_t
*fork_info
)
1376 /* Reenable signals */
1377 ust_after_fork_common(fork_info
);
1380 void ust_after_fork_child(ust_fork_info_t
*fork_info
)
1382 /* First sanitize the child */
1385 /* Then reenable interrupts */
1386 ust_after_fork_common(fork_info
);