2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <lttng/ust-ctl.h>
27 #include <sys/socket.h>
29 #include <sys/types.h>
32 #include <urcu/list.h>
35 #include <bin/lttng-consumerd/health-consumerd.h>
36 #include <common/common.h>
37 #include <common/sessiond-comm/sessiond-comm.h>
38 #include <common/relayd/relayd.h>
39 #include <common/compat/fcntl.h>
40 #include <common/consumer-metadata-cache.h>
41 #include <common/consumer-stream.h>
42 #include <common/consumer-timer.h>
43 #include <common/utils.h>
44 #include <common/index/index.h>
46 #include "ust-consumer.h"
48 extern struct lttng_consumer_global_data consumer_data
;
49 extern int consumer_poll_timeout
;
50 extern volatile int consumer_quit
;
53 * Free channel object and all streams associated with it. This MUST be used
54 * only and only if the channel has _NEVER_ been added to the global channel
57 static void destroy_channel(struct lttng_consumer_channel
*channel
)
59 struct lttng_consumer_stream
*stream
, *stmp
;
63 DBG("UST consumer cleaning stream list");
65 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->streams
.head
,
70 cds_list_del(&stream
->send_node
);
71 ustctl_destroy_stream(stream
->ustream
);
76 * If a channel is available meaning that was created before the streams
80 lttng_ustconsumer_del_channel(channel
);
86 * Add channel to internal consumer state.
88 * Returns 0 on success or else a negative value.
90 static int add_channel(struct lttng_consumer_channel
*channel
,
91 struct lttng_consumer_local_data
*ctx
)
98 if (ctx
->on_recv_channel
!= NULL
) {
99 ret
= ctx
->on_recv_channel(channel
);
101 ret
= consumer_add_channel(channel
, ctx
);
102 } else if (ret
< 0) {
103 /* Most likely an ENOMEM. */
104 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
108 ret
= consumer_add_channel(channel
, ctx
);
111 DBG("UST consumer channel added (key: %" PRIu64
")", channel
->key
);
118 * Allocate and return a consumer channel object.
120 static struct lttng_consumer_channel
*allocate_channel(uint64_t session_id
,
121 const char *pathname
, const char *name
, uid_t uid
, gid_t gid
,
122 uint64_t relayd_id
, uint64_t key
, enum lttng_event_output output
,
123 uint64_t tracefile_size
, uint64_t tracefile_count
,
124 uint64_t session_id_per_pid
, unsigned int monitor
,
125 unsigned int live_timer_interval
)
130 return consumer_allocate_channel(key
, session_id
, pathname
, name
, uid
,
131 gid
, relayd_id
, output
, tracefile_size
,
132 tracefile_count
, session_id_per_pid
, monitor
, live_timer_interval
);
136 * Allocate and return a consumer stream object. If _alloc_ret is not NULL, the
137 * error value if applicable is set in it else it is kept untouched.
139 * Return NULL on error else the newly allocated stream object.
141 static struct lttng_consumer_stream
*allocate_stream(int cpu
, int key
,
142 struct lttng_consumer_channel
*channel
,
143 struct lttng_consumer_local_data
*ctx
, int *_alloc_ret
)
146 struct lttng_consumer_stream
*stream
= NULL
;
151 stream
= consumer_allocate_stream(channel
->key
,
153 LTTNG_CONSUMER_ACTIVE_STREAM
,
163 if (stream
== NULL
) {
167 * We could not find the channel. Can happen if cpu hotplug
168 * happens while tearing down.
170 DBG3("Could not find channel");
175 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
181 stream
->chan
= channel
;
185 *_alloc_ret
= alloc_ret
;
191 * Send the given stream pointer to the corresponding thread.
193 * Returns 0 on success else a negative value.
195 static int send_stream_to_thread(struct lttng_consumer_stream
*stream
,
196 struct lttng_consumer_local_data
*ctx
)
199 struct lttng_pipe
*stream_pipe
;
201 /* Get the right pipe where the stream will be sent. */
202 if (stream
->metadata_flag
) {
203 ret
= consumer_add_metadata_stream(stream
);
205 ERR("Consumer add metadata stream %" PRIu64
" failed.",
209 stream_pipe
= ctx
->consumer_metadata_pipe
;
211 ret
= consumer_add_data_stream(stream
);
213 ERR("Consumer add stream %" PRIu64
" failed.",
217 stream_pipe
= ctx
->consumer_data_pipe
;
221 * From this point on, the stream's ownership has been moved away from
222 * the channel and becomes globally visible.
224 stream
->globally_visible
= 1;
226 ret
= lttng_pipe_write(stream_pipe
, &stream
, sizeof(stream
));
228 ERR("Consumer write %s stream to pipe %d",
229 stream
->metadata_flag
? "metadata" : "data",
230 lttng_pipe_get_writefd(stream_pipe
));
231 if (stream
->metadata_flag
) {
232 consumer_del_stream_for_metadata(stream
);
234 consumer_del_stream_for_data(stream
);
242 * Create streams for the given channel using liblttng-ust-ctl.
244 * Return 0 on success else a negative value.
246 static int create_ust_streams(struct lttng_consumer_channel
*channel
,
247 struct lttng_consumer_local_data
*ctx
)
250 struct ustctl_consumer_stream
*ustream
;
251 struct lttng_consumer_stream
*stream
;
257 * While a stream is available from ustctl. When NULL is returned, we've
258 * reached the end of the possible stream for the channel.
260 while ((ustream
= ustctl_create_stream(channel
->uchan
, cpu
))) {
262 int ust_metadata_pipe
[2];
264 health_code_update();
266 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
&& channel
->monitor
) {
267 ret
= utils_create_pipe_cloexec_nonblock(ust_metadata_pipe
);
269 ERR("Create ust metadata poll pipe");
272 wait_fd
= ust_metadata_pipe
[0];
274 wait_fd
= ustctl_stream_get_wait_fd(ustream
);
277 /* Allocate consumer stream object. */
278 stream
= allocate_stream(cpu
, wait_fd
, channel
, ctx
, &ret
);
282 stream
->ustream
= ustream
;
284 * Store it so we can save multiple function calls afterwards since
285 * this value is used heavily in the stream threads. This is UST
286 * specific so this is why it's done after allocation.
288 stream
->wait_fd
= wait_fd
;
291 * Increment channel refcount since the channel reference has now been
292 * assigned in the allocation process above.
294 if (stream
->chan
->monitor
) {
295 uatomic_inc(&stream
->chan
->refcount
);
299 * Order is important this is why a list is used. On error, the caller
300 * should clean this list.
302 cds_list_add_tail(&stream
->send_node
, &channel
->streams
.head
);
304 ret
= ustctl_get_max_subbuf_size(stream
->ustream
,
305 &stream
->max_sb_size
);
307 ERR("ustctl_get_max_subbuf_size failed for stream %s",
312 /* Do actions once stream has been received. */
313 if (ctx
->on_recv_stream
) {
314 ret
= ctx
->on_recv_stream(stream
);
320 DBG("UST consumer add stream %s (key: %" PRIu64
") with relayd id %" PRIu64
,
321 stream
->name
, stream
->key
, stream
->relayd_stream_id
);
323 /* Set next CPU stream. */
324 channel
->streams
.count
= ++cpu
;
326 /* Keep stream reference when creating metadata. */
327 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
) {
328 channel
->metadata_stream
= stream
;
329 stream
->ust_metadata_poll_pipe
[0] = ust_metadata_pipe
[0];
330 stream
->ust_metadata_poll_pipe
[1] = ust_metadata_pipe
[1];
342 * Create an UST channel with the given attributes and send it to the session
343 * daemon using the ust ctl API.
345 * Return 0 on success or else a negative value.
347 static int create_ust_channel(struct ustctl_consumer_channel_attr
*attr
,
348 struct ustctl_consumer_channel
**chanp
)
351 struct ustctl_consumer_channel
*channel
;
356 DBG3("Creating channel to ustctl with attr: [overwrite: %d, "
357 "subbuf_size: %" PRIu64
", num_subbuf: %" PRIu64
", "
358 "switch_timer_interval: %u, read_timer_interval: %u, "
359 "output: %d, type: %d", attr
->overwrite
, attr
->subbuf_size
,
360 attr
->num_subbuf
, attr
->switch_timer_interval
,
361 attr
->read_timer_interval
, attr
->output
, attr
->type
);
363 channel
= ustctl_create_channel(attr
);
378 * Send a single given stream to the session daemon using the sock.
380 * Return 0 on success else a negative value.
382 static int send_sessiond_stream(int sock
, struct lttng_consumer_stream
*stream
)
389 DBG("UST consumer sending stream %" PRIu64
" to sessiond", stream
->key
);
391 /* Send stream to session daemon. */
392 ret
= ustctl_send_stream_to_sessiond(sock
, stream
->ustream
);
402 * Send channel to sessiond.
404 * Return 0 on success or else a negative value.
406 static int send_sessiond_channel(int sock
,
407 struct lttng_consumer_channel
*channel
,
408 struct lttng_consumer_local_data
*ctx
, int *relayd_error
)
410 int ret
, ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
411 struct lttng_consumer_stream
*stream
;
412 uint64_t net_seq_idx
= -1ULL;
418 DBG("UST consumer sending channel %s to sessiond", channel
->name
);
420 if (channel
->relayd_id
!= (uint64_t) -1ULL) {
421 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
423 health_code_update();
425 /* Try to send the stream to the relayd if one is available. */
426 ret
= consumer_send_relayd_stream(stream
, stream
->chan
->pathname
);
429 * Flag that the relayd was the problem here probably due to a
430 * communicaton error on the socket.
435 ret_code
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
437 if (net_seq_idx
== -1ULL) {
438 net_seq_idx
= stream
->net_seq_idx
;
443 /* Inform sessiond that we are about to send channel and streams. */
444 ret
= consumer_send_status_msg(sock
, ret_code
);
445 if (ret
< 0 || ret_code
!= LTTCOMM_CONSUMERD_SUCCESS
) {
447 * Either the session daemon is not responding or the relayd died so we
453 /* Send channel to sessiond. */
454 ret
= ustctl_send_channel_to_sessiond(sock
, channel
->uchan
);
459 ret
= ustctl_channel_close_wakeup_fd(channel
->uchan
);
464 /* The channel was sent successfully to the sessiond at this point. */
465 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
467 health_code_update();
469 /* Send stream to session daemon. */
470 ret
= send_sessiond_stream(sock
, stream
);
476 /* Tell sessiond there is no more stream. */
477 ret
= ustctl_send_stream_to_sessiond(sock
, NULL
);
482 DBG("UST consumer NULL stream sent to sessiond");
487 if (ret_code
!= LTTCOMM_CONSUMERD_SUCCESS
) {
494 * Creates a channel and streams and add the channel it to the channel internal
495 * state. The created stream must ONLY be sent once the GET_CHANNEL command is
498 * Return 0 on success or else, a negative value is returned and the channel
499 * MUST be destroyed by consumer_del_channel().
501 static int ask_channel(struct lttng_consumer_local_data
*ctx
, int sock
,
502 struct lttng_consumer_channel
*channel
,
503 struct ustctl_consumer_channel_attr
*attr
)
512 * This value is still used by the kernel consumer since for the kernel,
513 * the stream ownership is not IN the consumer so we need to have the
514 * number of left stream that needs to be initialized so we can know when
515 * to delete the channel (see consumer.c).
517 * As for the user space tracer now, the consumer creates and sends the
518 * stream to the session daemon which only sends them to the application
519 * once every stream of a channel is received making this value useless
520 * because we they will be added to the poll thread before the application
521 * receives them. This ensures that a stream can not hang up during
522 * initilization of a channel.
524 channel
->nb_init_stream_left
= 0;
526 /* The reply msg status is handled in the following call. */
527 ret
= create_ust_channel(attr
, &channel
->uchan
);
532 channel
->wait_fd
= ustctl_channel_get_wait_fd(channel
->uchan
);
535 * For the snapshots (no monitor), we create the metadata streams
536 * on demand, not during the channel creation.
538 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
&& !channel
->monitor
) {
543 /* Open all streams for this channel. */
544 ret
= create_ust_streams(channel
, ctx
);
554 * Send all stream of a channel to the right thread handling it.
556 * On error, return a negative value else 0 on success.
558 static int send_streams_to_thread(struct lttng_consumer_channel
*channel
,
559 struct lttng_consumer_local_data
*ctx
)
562 struct lttng_consumer_stream
*stream
, *stmp
;
567 /* Send streams to the corresponding thread. */
568 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->streams
.head
,
571 health_code_update();
573 /* Sending the stream to the thread. */
574 ret
= send_stream_to_thread(stream
, ctx
);
577 * If we are unable to send the stream to the thread, there is
578 * a big problem so just stop everything.
580 /* Remove node from the channel stream list. */
581 cds_list_del(&stream
->send_node
);
585 /* Remove node from the channel stream list. */
586 cds_list_del(&stream
->send_node
);
595 * Flush channel's streams using the given key to retrieve the channel.
597 * Return 0 on success else an LTTng error code.
599 static int flush_channel(uint64_t chan_key
)
602 struct lttng_consumer_channel
*channel
;
603 struct lttng_consumer_stream
*stream
;
605 struct lttng_ht_iter iter
;
607 DBG("UST consumer flush channel key %" PRIu64
, chan_key
);
610 channel
= consumer_find_channel(chan_key
);
612 ERR("UST consumer flush channel %" PRIu64
" not found", chan_key
);
613 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
617 ht
= consumer_data
.stream_per_chan_id_ht
;
619 /* For each stream of the channel id, flush it. */
620 cds_lfht_for_each_entry_duplicate(ht
->ht
,
621 ht
->hash_fct(&channel
->key
, lttng_ht_seed
), ht
->match_fct
,
622 &channel
->key
, &iter
.iter
, stream
, node_channel_id
.node
) {
624 health_code_update();
626 ustctl_flush_buffer(stream
->ustream
, 1);
634 * Close metadata stream wakeup_fd using the given key to retrieve the channel.
635 * RCU read side lock MUST be acquired before calling this function.
637 * Return 0 on success else an LTTng error code.
639 static int close_metadata(uint64_t chan_key
)
642 struct lttng_consumer_channel
*channel
;
644 DBG("UST consumer close metadata key %" PRIu64
, chan_key
);
646 channel
= consumer_find_channel(chan_key
);
649 * This is possible if the metadata thread has issue a delete because
650 * the endpoint point of the stream hung up. There is no way the
651 * session daemon can know about it thus use a DBG instead of an actual
654 DBG("UST consumer close metadata %" PRIu64
" not found", chan_key
);
655 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
659 pthread_mutex_lock(&consumer_data
.lock
);
660 pthread_mutex_lock(&channel
->lock
);
662 if (cds_lfht_is_node_deleted(&channel
->node
.node
)) {
666 lttng_ustconsumer_close_metadata(channel
);
669 pthread_mutex_unlock(&channel
->lock
);
670 pthread_mutex_unlock(&consumer_data
.lock
);
676 * RCU read side lock MUST be acquired before calling this function.
678 * Return 0 on success else an LTTng error code.
680 static int setup_metadata(struct lttng_consumer_local_data
*ctx
, uint64_t key
)
683 struct lttng_consumer_channel
*metadata
;
685 DBG("UST consumer setup metadata key %" PRIu64
, key
);
687 metadata
= consumer_find_channel(key
);
689 ERR("UST consumer push metadata %" PRIu64
" not found", key
);
690 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
695 * In no monitor mode, the metadata channel has no stream(s) so skip the
696 * ownership transfer to the metadata thread.
698 if (!metadata
->monitor
) {
699 DBG("Metadata channel in no monitor");
705 * Send metadata stream to relayd if one available. Availability is
706 * known if the stream is still in the list of the channel.
708 if (cds_list_empty(&metadata
->streams
.head
)) {
709 ERR("Metadata channel key %" PRIu64
", no stream available.", key
);
710 ret
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
711 goto error_no_stream
;
714 /* Send metadata stream to relayd if needed. */
715 if (metadata
->metadata_stream
->net_seq_idx
!= (uint64_t) -1ULL) {
716 ret
= consumer_send_relayd_stream(metadata
->metadata_stream
,
719 ret
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
722 ret
= consumer_send_relayd_streams_sent(
723 metadata
->metadata_stream
->net_seq_idx
);
725 ret
= LTTCOMM_CONSUMERD_RELAYD_FAIL
;
730 ret
= send_streams_to_thread(metadata
, ctx
);
733 * If we are unable to send the stream to the thread, there is
734 * a big problem so just stop everything.
736 ret
= LTTCOMM_CONSUMERD_FATAL
;
739 /* List MUST be empty after or else it could be reused. */
740 assert(cds_list_empty(&metadata
->streams
.head
));
747 * Delete metadata channel on error. At this point, the metadata stream can
748 * NOT be monitored by the metadata thread thus having the guarantee that
749 * the stream is still in the local stream list of the channel. This call
750 * will make sure to clean that list.
752 consumer_stream_destroy(metadata
->metadata_stream
, NULL
);
753 cds_list_del(&metadata
->metadata_stream
->send_node
);
754 metadata
->metadata_stream
= NULL
;
761 * Snapshot the whole metadata.
763 * Returns 0 on success, < 0 on error
765 static int snapshot_metadata(uint64_t key
, char *path
, uint64_t relayd_id
,
766 struct lttng_consumer_local_data
*ctx
)
769 struct lttng_consumer_channel
*metadata_channel
;
770 struct lttng_consumer_stream
*metadata_stream
;
775 DBG("UST consumer snapshot metadata with key %" PRIu64
" at path %s",
780 metadata_channel
= consumer_find_channel(key
);
781 if (!metadata_channel
) {
782 ERR("UST snapshot metadata channel not found for key %" PRIu64
,
787 assert(!metadata_channel
->monitor
);
789 health_code_update();
792 * Ask the sessiond if we have new metadata waiting and update the
793 * consumer metadata cache.
795 ret
= lttng_ustconsumer_request_metadata(ctx
, metadata_channel
, 0, 1);
800 health_code_update();
803 * The metadata stream is NOT created in no monitor mode when the channel
804 * is created on a sessiond ask channel command.
806 ret
= create_ust_streams(metadata_channel
, ctx
);
811 metadata_stream
= metadata_channel
->metadata_stream
;
812 assert(metadata_stream
);
814 if (relayd_id
!= (uint64_t) -1ULL) {
815 metadata_stream
->net_seq_idx
= relayd_id
;
816 ret
= consumer_send_relayd_stream(metadata_stream
, path
);
821 ret
= utils_create_stream_file(path
, metadata_stream
->name
,
822 metadata_stream
->chan
->tracefile_size
,
823 metadata_stream
->tracefile_count_current
,
824 metadata_stream
->uid
, metadata_stream
->gid
, NULL
);
828 metadata_stream
->out_fd
= ret
;
829 metadata_stream
->tracefile_size_current
= 0;
833 health_code_update();
835 ret
= lttng_consumer_read_subbuffer(metadata_stream
, ctx
);
843 * Clean up the stream completly because the next snapshot will use a new
846 consumer_stream_destroy(metadata_stream
, NULL
);
847 cds_list_del(&metadata_stream
->send_node
);
848 metadata_channel
->metadata_stream
= NULL
;
856 * Take a snapshot of all the stream of a channel.
858 * Returns 0 on success, < 0 on error
860 static int snapshot_channel(uint64_t key
, char *path
, uint64_t relayd_id
,
861 uint64_t max_stream_size
, struct lttng_consumer_local_data
*ctx
)
864 unsigned use_relayd
= 0;
865 unsigned long consumed_pos
, produced_pos
;
866 struct lttng_consumer_channel
*channel
;
867 struct lttng_consumer_stream
*stream
;
874 if (relayd_id
!= (uint64_t) -1ULL) {
878 channel
= consumer_find_channel(key
);
880 ERR("UST snapshot channel not found for key %" PRIu64
, key
);
884 assert(!channel
->monitor
);
885 DBG("UST consumer snapshot channel %" PRIu64
, key
);
887 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
889 health_code_update();
891 /* Lock stream because we are about to change its state. */
892 pthread_mutex_lock(&stream
->lock
);
893 stream
->net_seq_idx
= relayd_id
;
896 ret
= consumer_send_relayd_stream(stream
, path
);
901 ret
= utils_create_stream_file(path
, stream
->name
,
902 stream
->chan
->tracefile_size
,
903 stream
->tracefile_count_current
,
904 stream
->uid
, stream
->gid
, NULL
);
908 stream
->out_fd
= ret
;
909 stream
->tracefile_size_current
= 0;
911 DBG("UST consumer snapshot stream %s/%s (%" PRIu64
")", path
,
912 stream
->name
, stream
->key
);
914 if (relayd_id
!= -1ULL) {
915 ret
= consumer_send_relayd_streams_sent(relayd_id
);
921 ustctl_flush_buffer(stream
->ustream
, 1);
923 ret
= lttng_ustconsumer_take_snapshot(stream
);
925 ERR("Taking UST snapshot");
929 ret
= lttng_ustconsumer_get_produced_snapshot(stream
, &produced_pos
);
931 ERR("Produced UST snapshot position");
935 ret
= lttng_ustconsumer_get_consumed_snapshot(stream
, &consumed_pos
);
937 ERR("Consumerd UST snapshot position");
942 * The original value is sent back if max stream size is larger than
943 * the possible size of the snapshot. Also, we asume that the session
944 * daemon should never send a maximum stream size that is lower than
947 consumed_pos
= consumer_get_consumed_maxsize(consumed_pos
,
948 produced_pos
, max_stream_size
);
950 while (consumed_pos
< produced_pos
) {
952 unsigned long len
, padded_len
;
954 health_code_update();
956 DBG("UST consumer taking snapshot at pos %lu", consumed_pos
);
958 ret
= ustctl_get_subbuf(stream
->ustream
, &consumed_pos
);
960 if (ret
!= -EAGAIN
) {
961 PERROR("ustctl_get_subbuf snapshot");
962 goto error_close_stream
;
964 DBG("UST consumer get subbuf failed. Skipping it.");
965 consumed_pos
+= stream
->max_sb_size
;
969 ret
= ustctl_get_subbuf_size(stream
->ustream
, &len
);
971 ERR("Snapshot ustctl_get_subbuf_size");
972 goto error_put_subbuf
;
975 ret
= ustctl_get_padded_subbuf_size(stream
->ustream
, &padded_len
);
977 ERR("Snapshot ustctl_get_padded_subbuf_size");
978 goto error_put_subbuf
;
981 read_len
= lttng_consumer_on_read_subbuffer_mmap(ctx
, stream
, len
,
982 padded_len
- len
, NULL
);
984 if (read_len
!= len
) {
986 goto error_put_subbuf
;
989 if (read_len
!= padded_len
) {
991 goto error_put_subbuf
;
995 ret
= ustctl_put_subbuf(stream
->ustream
);
997 ERR("Snapshot ustctl_put_subbuf");
998 goto error_close_stream
;
1000 consumed_pos
+= stream
->max_sb_size
;
1003 /* Simply close the stream so we can use it on the next snapshot. */
1004 consumer_stream_close(stream
);
1005 pthread_mutex_unlock(&stream
->lock
);
1012 if (ustctl_put_subbuf(stream
->ustream
) < 0) {
1013 ERR("Snapshot ustctl_put_subbuf");
1016 consumer_stream_close(stream
);
1018 pthread_mutex_unlock(&stream
->lock
);
1025 * Receive the metadata updates from the sessiond.
1027 int lttng_ustconsumer_recv_metadata(int sock
, uint64_t key
, uint64_t offset
,
1028 uint64_t len
, struct lttng_consumer_channel
*channel
,
1029 int timer
, int wait
)
1031 int ret
, ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1034 DBG("UST consumer push metadata key %" PRIu64
" of len %" PRIu64
, key
, len
);
1036 metadata_str
= zmalloc(len
* sizeof(char));
1037 if (!metadata_str
) {
1038 PERROR("zmalloc metadata string");
1039 ret_code
= LTTCOMM_CONSUMERD_ENOMEM
;
1043 health_code_update();
1045 /* Receive metadata string. */
1046 ret
= lttcomm_recv_unix_sock(sock
, metadata_str
, len
);
1048 /* Session daemon is dead so return gracefully. */
1053 health_code_update();
1055 pthread_mutex_lock(&channel
->metadata_cache
->lock
);
1056 ret
= consumer_metadata_cache_write(channel
, offset
, len
, metadata_str
);
1058 /* Unable to handle metadata. Notify session daemon. */
1059 ret_code
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
1061 * Skip metadata flush on write error since the offset and len might
1062 * not have been updated which could create an infinite loop below when
1063 * waiting for the metadata cache to be flushed.
1065 pthread_mutex_unlock(&channel
->metadata_cache
->lock
);
1068 pthread_mutex_unlock(&channel
->metadata_cache
->lock
);
1073 while (consumer_metadata_cache_flushed(channel
, offset
+ len
, timer
)) {
1074 DBG("Waiting for metadata to be flushed");
1076 health_code_update();
1078 usleep(DEFAULT_METADATA_AVAILABILITY_WAIT_TIME
);
1088 * Receive command from session daemon and process it.
1090 * Return 1 on success else a negative value or 0.
1092 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
1093 int sock
, struct pollfd
*consumer_sockpoll
)
1096 enum lttcomm_return_code ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1097 struct lttcomm_consumer_msg msg
;
1098 struct lttng_consumer_channel
*channel
= NULL
;
1100 health_code_update();
1102 ret
= lttcomm_recv_unix_sock(sock
, &msg
, sizeof(msg
));
1103 if (ret
!= sizeof(msg
)) {
1104 DBG("Consumer received unexpected message size %zd (expects %zu)",
1107 * The ret value might 0 meaning an orderly shutdown but this is ok
1108 * since the caller handles this.
1111 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_CMD
);
1117 health_code_update();
1119 if (msg
.cmd_type
== LTTNG_CONSUMER_STOP
) {
1121 * Notify the session daemon that the command is completed.
1123 * On transport layer error, the function call will print an error
1124 * message so handling the returned code is a bit useless since we
1125 * return an error code anyway.
1127 (void) consumer_send_status_msg(sock
, ret_code
);
1131 health_code_update();
1133 /* relayd needs RCU read-side lock */
1136 switch (msg
.cmd_type
) {
1137 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET
:
1139 /* Session daemon status message are handled in the following call. */
1140 ret
= consumer_add_relayd_socket(msg
.u
.relayd_sock
.net_index
,
1141 msg
.u
.relayd_sock
.type
, ctx
, sock
, consumer_sockpoll
,
1142 &msg
.u
.relayd_sock
.sock
, msg
.u
.relayd_sock
.session_id
,
1143 msg
.u
.relayd_sock
.relayd_session_id
);
1146 case LTTNG_CONSUMER_DESTROY_RELAYD
:
1148 uint64_t index
= msg
.u
.destroy_relayd
.net_seq_idx
;
1149 struct consumer_relayd_sock_pair
*relayd
;
1151 DBG("UST consumer destroying relayd %" PRIu64
, index
);
1153 /* Get relayd reference if exists. */
1154 relayd
= consumer_find_relayd(index
);
1155 if (relayd
== NULL
) {
1156 DBG("Unable to find relayd %" PRIu64
, index
);
1157 ret_code
= LTTNG_ERR_NO_CONSUMER
;
1161 * Each relayd socket pair has a refcount of stream attached to it
1162 * which tells if the relayd is still active or not depending on the
1165 * This will set the destroy flag of the relayd object and destroy it
1166 * if the refcount reaches zero when called.
1168 * The destroy can happen either here or when a stream fd hangs up.
1171 consumer_flag_relayd_for_destroy(relayd
);
1174 goto end_msg_sessiond
;
1176 case LTTNG_CONSUMER_UPDATE_STREAM
:
1181 case LTTNG_CONSUMER_DATA_PENDING
:
1183 int ret
, is_data_pending
;
1184 uint64_t id
= msg
.u
.data_pending
.session_id
;
1186 DBG("UST consumer data pending command for id %" PRIu64
, id
);
1188 is_data_pending
= consumer_data_pending(id
);
1190 /* Send back returned value to session daemon */
1191 ret
= lttcomm_send_unix_sock(sock
, &is_data_pending
,
1192 sizeof(is_data_pending
));
1194 DBG("Error when sending the data pending ret code: %d", ret
);
1199 * No need to send back a status message since the data pending
1200 * returned value is the response.
1204 case LTTNG_CONSUMER_ASK_CHANNEL_CREATION
:
1207 struct ustctl_consumer_channel_attr attr
;
1209 /* Create a plain object and reserve a channel key. */
1210 channel
= allocate_channel(msg
.u
.ask_channel
.session_id
,
1211 msg
.u
.ask_channel
.pathname
, msg
.u
.ask_channel
.name
,
1212 msg
.u
.ask_channel
.uid
, msg
.u
.ask_channel
.gid
,
1213 msg
.u
.ask_channel
.relayd_id
, msg
.u
.ask_channel
.key
,
1214 (enum lttng_event_output
) msg
.u
.ask_channel
.output
,
1215 msg
.u
.ask_channel
.tracefile_size
,
1216 msg
.u
.ask_channel
.tracefile_count
,
1217 msg
.u
.ask_channel
.session_id_per_pid
,
1218 msg
.u
.ask_channel
.monitor
,
1219 msg
.u
.ask_channel
.live_timer_interval
);
1221 goto end_channel_error
;
1225 * Assign UST application UID to the channel. This value is ignored for
1226 * per PID buffers. This is specific to UST thus setting this after the
1229 channel
->ust_app_uid
= msg
.u
.ask_channel
.ust_app_uid
;
1231 /* Build channel attributes from received message. */
1232 attr
.subbuf_size
= msg
.u
.ask_channel
.subbuf_size
;
1233 attr
.num_subbuf
= msg
.u
.ask_channel
.num_subbuf
;
1234 attr
.overwrite
= msg
.u
.ask_channel
.overwrite
;
1235 attr
.switch_timer_interval
= msg
.u
.ask_channel
.switch_timer_interval
;
1236 attr
.read_timer_interval
= msg
.u
.ask_channel
.read_timer_interval
;
1237 attr
.chan_id
= msg
.u
.ask_channel
.chan_id
;
1238 memcpy(attr
.uuid
, msg
.u
.ask_channel
.uuid
, sizeof(attr
.uuid
));
1240 /* Match channel buffer type to the UST abi. */
1241 switch (msg
.u
.ask_channel
.output
) {
1242 case LTTNG_EVENT_MMAP
:
1244 attr
.output
= LTTNG_UST_MMAP
;
1248 /* Translate and save channel type. */
1249 switch (msg
.u
.ask_channel
.type
) {
1250 case LTTNG_UST_CHAN_PER_CPU
:
1251 channel
->type
= CONSUMER_CHANNEL_TYPE_DATA
;
1252 attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1254 * Set refcount to 1 for owner. Below, we will
1255 * pass ownership to the
1256 * consumer_thread_channel_poll() thread.
1258 channel
->refcount
= 1;
1260 case LTTNG_UST_CHAN_METADATA
:
1261 channel
->type
= CONSUMER_CHANNEL_TYPE_METADATA
;
1262 attr
.type
= LTTNG_UST_CHAN_METADATA
;
1269 health_code_update();
1271 ret
= ask_channel(ctx
, sock
, channel
, &attr
);
1273 goto end_channel_error
;
1276 if (msg
.u
.ask_channel
.type
== LTTNG_UST_CHAN_METADATA
) {
1277 ret
= consumer_metadata_cache_allocate(channel
);
1279 ERR("Allocating metadata cache");
1280 goto end_channel_error
;
1282 consumer_timer_switch_start(channel
, attr
.switch_timer_interval
);
1283 attr
.switch_timer_interval
= 0;
1285 consumer_timer_live_start(channel
,
1286 msg
.u
.ask_channel
.live_timer_interval
);
1289 health_code_update();
1292 * Add the channel to the internal state AFTER all streams were created
1293 * and successfully sent to session daemon. This way, all streams must
1294 * be ready before this channel is visible to the threads.
1295 * If add_channel succeeds, ownership of the channel is
1296 * passed to consumer_thread_channel_poll().
1298 ret
= add_channel(channel
, ctx
);
1300 if (msg
.u
.ask_channel
.type
== LTTNG_UST_CHAN_METADATA
) {
1301 if (channel
->switch_timer_enabled
== 1) {
1302 consumer_timer_switch_stop(channel
);
1304 consumer_metadata_cache_destroy(channel
);
1306 if (channel
->live_timer_enabled
== 1) {
1307 consumer_timer_live_stop(channel
);
1309 goto end_channel_error
;
1312 health_code_update();
1315 * Channel and streams are now created. Inform the session daemon that
1316 * everything went well and should wait to receive the channel and
1317 * streams with ustctl API.
1319 ret
= consumer_send_status_channel(sock
, channel
);
1322 * There is probably a problem on the socket.
1329 case LTTNG_CONSUMER_GET_CHANNEL
:
1331 int ret
, relayd_err
= 0;
1332 uint64_t key
= msg
.u
.get_channel
.key
;
1333 struct lttng_consumer_channel
*channel
;
1335 channel
= consumer_find_channel(key
);
1337 ERR("UST consumer get channel key %" PRIu64
" not found", key
);
1338 ret_code
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1339 goto end_msg_sessiond
;
1342 health_code_update();
1344 /* Send everything to sessiond. */
1345 ret
= send_sessiond_channel(sock
, channel
, ctx
, &relayd_err
);
1349 * We were unable to send to the relayd the stream so avoid
1350 * sending back a fatal error to the thread since this is OK
1351 * and the consumer can continue its work. The above call
1352 * has sent the error status message to the sessiond.
1357 * The communicaton was broken hence there is a bad state between
1358 * the consumer and sessiond so stop everything.
1363 health_code_update();
1366 * In no monitor mode, the streams ownership is kept inside the channel
1367 * so don't send them to the data thread.
1369 if (!channel
->monitor
) {
1370 goto end_msg_sessiond
;
1373 ret
= send_streams_to_thread(channel
, ctx
);
1376 * If we are unable to send the stream to the thread, there is
1377 * a big problem so just stop everything.
1381 /* List MUST be empty after or else it could be reused. */
1382 assert(cds_list_empty(&channel
->streams
.head
));
1383 goto end_msg_sessiond
;
1385 case LTTNG_CONSUMER_DESTROY_CHANNEL
:
1387 uint64_t key
= msg
.u
.destroy_channel
.key
;
1390 * Only called if streams have not been sent to stream
1391 * manager thread. However, channel has been sent to
1392 * channel manager thread.
1394 notify_thread_del_channel(ctx
, key
);
1395 goto end_msg_sessiond
;
1397 case LTTNG_CONSUMER_CLOSE_METADATA
:
1401 ret
= close_metadata(msg
.u
.close_metadata
.key
);
1406 goto end_msg_sessiond
;
1408 case LTTNG_CONSUMER_FLUSH_CHANNEL
:
1412 ret
= flush_channel(msg
.u
.flush_channel
.key
);
1417 goto end_msg_sessiond
;
1419 case LTTNG_CONSUMER_PUSH_METADATA
:
1422 uint64_t len
= msg
.u
.push_metadata
.len
;
1423 uint64_t key
= msg
.u
.push_metadata
.key
;
1424 uint64_t offset
= msg
.u
.push_metadata
.target_offset
;
1425 struct lttng_consumer_channel
*channel
;
1427 DBG("UST consumer push metadata key %" PRIu64
" of len %" PRIu64
, key
,
1430 channel
= consumer_find_channel(key
);
1433 * This is possible if the metadata creation on the consumer side
1434 * is in flight vis-a-vis a concurrent push metadata from the
1435 * session daemon. Simply return that the channel failed and the
1436 * session daemon will handle that message correctly considering
1437 * that this race is acceptable thus the DBG() statement here.
1439 DBG("UST consumer push metadata %" PRIu64
" not found", key
);
1440 ret_code
= LTTCOMM_CONSUMERD_CHANNEL_FAIL
;
1441 goto end_msg_sessiond
;
1444 health_code_update();
1446 /* Tell session daemon we are ready to receive the metadata. */
1447 ret
= consumer_send_status_msg(sock
, LTTCOMM_CONSUMERD_SUCCESS
);
1449 /* Somehow, the session daemon is not responding anymore. */
1453 health_code_update();
1455 /* Wait for more data. */
1456 health_poll_entry();
1457 ret
= lttng_consumer_poll_socket(consumer_sockpoll
);
1463 health_code_update();
1465 ret
= lttng_ustconsumer_recv_metadata(sock
, key
, offset
,
1466 len
, channel
, 0, 1);
1468 /* error receiving from sessiond */
1472 goto end_msg_sessiond
;
1475 case LTTNG_CONSUMER_SETUP_METADATA
:
1479 ret
= setup_metadata(ctx
, msg
.u
.setup_metadata
.key
);
1483 goto end_msg_sessiond
;
1485 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL
:
1487 if (msg
.u
.snapshot_channel
.metadata
) {
1488 ret
= snapshot_metadata(msg
.u
.snapshot_channel
.key
,
1489 msg
.u
.snapshot_channel
.pathname
,
1490 msg
.u
.snapshot_channel
.relayd_id
,
1493 ERR("Snapshot metadata failed");
1494 ret_code
= LTTNG_ERR_UST_META_FAIL
;
1497 ret
= snapshot_channel(msg
.u
.snapshot_channel
.key
,
1498 msg
.u
.snapshot_channel
.pathname
,
1499 msg
.u
.snapshot_channel
.relayd_id
,
1500 msg
.u
.snapshot_channel
.max_stream_size
,
1503 ERR("Snapshot channel failed");
1504 ret_code
= LTTNG_ERR_UST_CHAN_FAIL
;
1508 health_code_update();
1509 ret
= consumer_send_status_msg(sock
, ret_code
);
1511 /* Somehow, the session daemon is not responding anymore. */
1514 health_code_update();
1524 health_code_update();
1527 * Return 1 to indicate success since the 0 value can be a socket
1528 * shutdown during the recv() or send() call.
1534 * The returned value here is not useful since either way we'll return 1 to
1535 * the caller because the session daemon socket management is done
1536 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
1538 ret
= consumer_send_status_msg(sock
, ret_code
);
1544 health_code_update();
1550 * Free channel here since no one has a reference to it. We don't
1551 * free after that because a stream can store this pointer.
1553 destroy_channel(channel
);
1555 /* We have to send a status channel message indicating an error. */
1556 ret
= consumer_send_status_channel(sock
, NULL
);
1558 /* Stop everything if session daemon can not be notified. */
1563 health_code_update();
1568 /* This will issue a consumer stop. */
1573 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1574 * compiled out, we isolate it in this library.
1576 int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream
*stream
,
1580 assert(stream
->ustream
);
1582 return ustctl_get_mmap_read_offset(stream
->ustream
, off
);
1586 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1587 * compiled out, we isolate it in this library.
1589 void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream
*stream
)
1592 assert(stream
->ustream
);
1594 return ustctl_get_mmap_base(stream
->ustream
);
1598 * Take a snapshot for a specific fd
1600 * Returns 0 on success, < 0 on error
1602 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream
*stream
)
1605 assert(stream
->ustream
);
1607 return ustctl_snapshot(stream
->ustream
);
1611 * Get the produced position
1613 * Returns 0 on success, < 0 on error
1615 int lttng_ustconsumer_get_produced_snapshot(
1616 struct lttng_consumer_stream
*stream
, unsigned long *pos
)
1619 assert(stream
->ustream
);
1622 return ustctl_snapshot_get_produced(stream
->ustream
, pos
);
1626 * Get the consumed position
1628 * Returns 0 on success, < 0 on error
1630 int lttng_ustconsumer_get_consumed_snapshot(
1631 struct lttng_consumer_stream
*stream
, unsigned long *pos
)
1634 assert(stream
->ustream
);
1637 return ustctl_snapshot_get_consumed(stream
->ustream
, pos
);
1640 void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream
*stream
,
1644 assert(stream
->ustream
);
1646 ustctl_flush_buffer(stream
->ustream
, producer
);
1649 int lttng_ustconsumer_get_current_timestamp(
1650 struct lttng_consumer_stream
*stream
, uint64_t *ts
)
1653 assert(stream
->ustream
);
1656 return ustctl_get_current_timestamp(stream
->ustream
, ts
);
1660 * Called when the stream signal the consumer that it has hang up.
1662 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream
*stream
)
1665 assert(stream
->ustream
);
1667 ustctl_flush_buffer(stream
->ustream
, 0);
1668 stream
->hangup_flush_done
= 1;
1671 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel
*chan
)
1674 assert(chan
->uchan
);
1676 if (chan
->switch_timer_enabled
== 1) {
1677 consumer_timer_switch_stop(chan
);
1679 consumer_metadata_cache_destroy(chan
);
1680 ustctl_destroy_channel(chan
->uchan
);
1683 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream
*stream
)
1686 assert(stream
->ustream
);
1688 if (stream
->chan
->switch_timer_enabled
== 1) {
1689 consumer_timer_switch_stop(stream
->chan
);
1691 ustctl_destroy_stream(stream
->ustream
);
1694 int lttng_ustconsumer_get_wakeup_fd(struct lttng_consumer_stream
*stream
)
1697 assert(stream
->ustream
);
1699 return ustctl_stream_get_wakeup_fd(stream
->ustream
);
1702 int lttng_ustconsumer_close_wakeup_fd(struct lttng_consumer_stream
*stream
)
1705 assert(stream
->ustream
);
1707 return ustctl_stream_close_wakeup_fd(stream
->ustream
);
1711 * Populate index values of a UST stream. Values are set in big endian order.
1713 * Return 0 on success or else a negative value.
1715 static int get_index_values(struct ctf_packet_index
*index
,
1716 struct ustctl_consumer_stream
*ustream
)
1720 ret
= ustctl_get_timestamp_begin(ustream
, &index
->timestamp_begin
);
1722 PERROR("ustctl_get_timestamp_begin");
1725 index
->timestamp_begin
= htobe64(index
->timestamp_begin
);
1727 ret
= ustctl_get_timestamp_end(ustream
, &index
->timestamp_end
);
1729 PERROR("ustctl_get_timestamp_end");
1732 index
->timestamp_end
= htobe64(index
->timestamp_end
);
1734 ret
= ustctl_get_events_discarded(ustream
, &index
->events_discarded
);
1736 PERROR("ustctl_get_events_discarded");
1739 index
->events_discarded
= htobe64(index
->events_discarded
);
1741 ret
= ustctl_get_content_size(ustream
, &index
->content_size
);
1743 PERROR("ustctl_get_content_size");
1746 index
->content_size
= htobe64(index
->content_size
);
1748 ret
= ustctl_get_packet_size(ustream
, &index
->packet_size
);
1750 PERROR("ustctl_get_packet_size");
1753 index
->packet_size
= htobe64(index
->packet_size
);
1755 ret
= ustctl_get_stream_id(ustream
, &index
->stream_id
);
1757 PERROR("ustctl_get_stream_id");
1760 index
->stream_id
= htobe64(index
->stream_id
);
1767 * Write up to one packet from the metadata cache to the channel.
1769 * Returns the number of bytes pushed in the cache, or a negative value
1773 int commit_one_metadata_packet(struct lttng_consumer_stream
*stream
)
1778 pthread_mutex_lock(&stream
->chan
->metadata_cache
->lock
);
1779 if (stream
->chan
->metadata_cache
->contiguous
1780 == stream
->ust_metadata_pushed
) {
1785 write_len
= ustctl_write_one_packet_to_channel(stream
->chan
->uchan
,
1786 &stream
->chan
->metadata_cache
->data
[stream
->ust_metadata_pushed
],
1787 stream
->chan
->metadata_cache
->contiguous
1788 - stream
->ust_metadata_pushed
);
1789 assert(write_len
!= 0);
1790 if (write_len
< 0) {
1791 ERR("Writing one metadata packet");
1795 stream
->ust_metadata_pushed
+= write_len
;
1797 assert(stream
->chan
->metadata_cache
->contiguous
>=
1798 stream
->ust_metadata_pushed
);
1802 pthread_mutex_unlock(&stream
->chan
->metadata_cache
->lock
);
1808 * Sync metadata meaning request them to the session daemon and snapshot to the
1809 * metadata thread can consumer them.
1811 * Metadata stream lock MUST be acquired.
1813 * Return 0 if new metadatda is available, EAGAIN if the metadata stream
1814 * is empty or a negative value on error.
1816 int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data
*ctx
,
1817 struct lttng_consumer_stream
*metadata
)
1826 * Request metadata from the sessiond, but don't wait for the flush
1827 * because we locked the metadata thread.
1829 ret
= lttng_ustconsumer_request_metadata(ctx
, metadata
->chan
, 0, 0);
1834 ret
= commit_one_metadata_packet(metadata
);
1837 } else if (ret
> 0) {
1841 ustctl_flush_buffer(metadata
->ustream
, 1);
1842 ret
= ustctl_snapshot(metadata
->ustream
);
1844 if (errno
!= EAGAIN
) {
1845 ERR("Sync metadata, taking UST snapshot");
1848 DBG("No new metadata when syncing them.");
1849 /* No new metadata, exit. */
1855 * After this flush, we still need to extract metadata.
1866 * Read subbuffer from the given stream.
1868 * Stream lock MUST be acquired.
1870 * Return 0 on success else a negative value.
1872 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream
*stream
,
1873 struct lttng_consumer_local_data
*ctx
)
1875 unsigned long len
, subbuf_size
, padding
;
1876 int err
, write_index
= 1;
1879 struct ustctl_consumer_stream
*ustream
;
1880 struct ctf_packet_index index
;
1883 assert(stream
->ustream
);
1886 DBG("In UST read_subbuffer (wait_fd: %d, name: %s)", stream
->wait_fd
,
1889 /* Ease our life for what's next. */
1890 ustream
= stream
->ustream
;
1893 * We can consume the 1 byte written into the wait_fd by UST.
1894 * Don't trigger error if we cannot read this one byte (read
1895 * returns 0), or if the error is EAGAIN or EWOULDBLOCK.
1897 if (stream
->monitor
&& !stream
->hangup_flush_done
) {
1900 readlen
= lttng_read(stream
->wait_fd
, &dummy
, 1);
1901 if (readlen
< 0 && errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
1908 /* Get the next subbuffer */
1909 err
= ustctl_get_next_subbuf(ustream
);
1912 * Populate metadata info if the existing info has
1913 * already been read.
1915 if (stream
->metadata_flag
) {
1916 ret
= commit_one_metadata_packet(stream
);
1920 ustctl_flush_buffer(stream
->ustream
, 1);
1924 ret
= err
; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
1926 * This is a debug message even for single-threaded consumer,
1927 * because poll() have more relaxed criterions than get subbuf,
1928 * so get_subbuf may fail for short race windows where poll()
1929 * would issue wakeups.
1931 DBG("Reserving sub buffer failed (everything is normal, "
1932 "it is due to concurrency) [ret: %d]", err
);
1935 assert(stream
->chan
->output
== CONSUMER_CHANNEL_MMAP
);
1937 if (!stream
->metadata_flag
) {
1938 index
.offset
= htobe64(stream
->out_fd_offset
);
1939 ret
= get_index_values(&index
, ustream
);
1947 /* Get the full padded subbuffer size */
1948 err
= ustctl_get_padded_subbuf_size(ustream
, &len
);
1951 /* Get subbuffer data size (without padding) */
1952 err
= ustctl_get_subbuf_size(ustream
, &subbuf_size
);
1955 /* Make sure we don't get a subbuffer size bigger than the padded */
1956 assert(len
>= subbuf_size
);
1958 padding
= len
- subbuf_size
;
1959 /* write the subbuffer to the tracefile */
1960 ret
= lttng_consumer_on_read_subbuffer_mmap(ctx
, stream
, subbuf_size
, padding
, &index
);
1962 * The mmap operation should write subbuf_size amount of data when network
1963 * streaming or the full padding (len) size when we are _not_ streaming.
1965 if ((ret
!= subbuf_size
&& stream
->net_seq_idx
!= (uint64_t) -1ULL) ||
1966 (ret
!= len
&& stream
->net_seq_idx
== (uint64_t) -1ULL)) {
1968 * Display the error but continue processing to try to release the
1969 * subbuffer. This is a DBG statement since any unexpected kill or
1970 * signal, the application gets unregistered, relayd gets closed or
1971 * anything that affects the buffer lifetime will trigger this error.
1972 * So, for the sake of the user, don't print this error since it can
1973 * happen and it is OK with the code flow.
1975 DBG("Error writing to tracefile "
1976 "(ret: %ld != len: %lu != subbuf_size: %lu)",
1977 ret
, len
, subbuf_size
);
1980 err
= ustctl_put_next_subbuf(ustream
);
1983 /* Write index if needed. */
1988 if (stream
->chan
->live_timer_interval
&& !stream
->metadata_flag
) {
1990 * In live, block until all the metadata is sent.
1992 err
= consumer_stream_sync_metadata(ctx
, stream
->session_id
);
1998 assert(!stream
->metadata_flag
);
1999 err
= consumer_stream_write_index(stream
, &index
);
2009 * Called when a stream is created.
2011 * Return 0 on success or else a negative value.
2013 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
)
2019 /* Don't create anything if this is set for streaming. */
2020 if (stream
->net_seq_idx
== (uint64_t) -1ULL && stream
->chan
->monitor
) {
2021 ret
= utils_create_stream_file(stream
->chan
->pathname
, stream
->name
,
2022 stream
->chan
->tracefile_size
, stream
->tracefile_count_current
,
2023 stream
->uid
, stream
->gid
, NULL
);
2027 stream
->out_fd
= ret
;
2028 stream
->tracefile_size_current
= 0;
2030 if (!stream
->metadata_flag
) {
2031 ret
= index_create_file(stream
->chan
->pathname
,
2032 stream
->name
, stream
->uid
, stream
->gid
,
2033 stream
->chan
->tracefile_size
,
2034 stream
->tracefile_count_current
);
2038 stream
->index_fd
= ret
;
2048 * Check if data is still being extracted from the buffers for a specific
2049 * stream. Consumer data lock MUST be acquired before calling this function
2050 * and the stream lock.
2052 * Return 1 if the traced data are still getting read else 0 meaning that the
2053 * data is available for trace viewer reading.
2055 int lttng_ustconsumer_data_pending(struct lttng_consumer_stream
*stream
)
2060 assert(stream
->ustream
);
2062 DBG("UST consumer checking data pending");
2064 if (stream
->endpoint_status
!= CONSUMER_ENDPOINT_ACTIVE
) {
2069 if (stream
->chan
->type
== CONSUMER_CHANNEL_TYPE_METADATA
) {
2070 uint64_t contiguous
, pushed
;
2072 /* Ease our life a bit. */
2073 contiguous
= stream
->chan
->metadata_cache
->contiguous
;
2074 pushed
= stream
->ust_metadata_pushed
;
2077 * We can simply check whether all contiguously available data
2078 * has been pushed to the ring buffer, since the push operation
2079 * is performed within get_next_subbuf(), and because both
2080 * get_next_subbuf() and put_next_subbuf() are issued atomically
2081 * thanks to the stream lock within
2082 * lttng_ustconsumer_read_subbuffer(). This basically means that
2083 * whetnever ust_metadata_pushed is incremented, the associated
2084 * metadata has been consumed from the metadata stream.
2086 DBG("UST consumer metadata pending check: contiguous %" PRIu64
" vs pushed %" PRIu64
,
2087 contiguous
, pushed
);
2088 assert(((int64_t) contiguous
- pushed
) >= 0);
2089 if ((contiguous
!= pushed
) ||
2090 (((int64_t) contiguous
- pushed
) > 0 || contiguous
== 0)) {
2091 ret
= 1; /* Data is pending */
2095 ret
= ustctl_get_next_subbuf(stream
->ustream
);
2098 * There is still data so let's put back this
2101 ret
= ustctl_put_subbuf(stream
->ustream
);
2103 ret
= 1; /* Data is pending */
2108 /* Data is NOT pending so ready to be read. */
2116 * Stop a given metadata channel timer if enabled and close the wait fd which
2117 * is the poll pipe of the metadata stream.
2119 * This MUST be called with the metadata channel acquired.
2121 void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel
*metadata
)
2126 assert(metadata
->type
== CONSUMER_CHANNEL_TYPE_METADATA
);
2128 DBG("Closing metadata channel key %" PRIu64
, metadata
->key
);
2130 if (metadata
->switch_timer_enabled
== 1) {
2131 consumer_timer_switch_stop(metadata
);
2134 if (!metadata
->metadata_stream
) {
2139 * Closing write side so the thread monitoring the stream wakes up if any
2140 * and clean the metadata stream.
2142 if (metadata
->metadata_stream
->ust_metadata_poll_pipe
[1] >= 0) {
2143 ret
= close(metadata
->metadata_stream
->ust_metadata_poll_pipe
[1]);
2145 PERROR("closing metadata pipe write side");
2147 metadata
->metadata_stream
->ust_metadata_poll_pipe
[1] = -1;
2155 * Close every metadata stream wait fd of the metadata hash table. This
2156 * function MUST be used very carefully so not to run into a race between the
2157 * metadata thread handling streams and this function closing their wait fd.
2159 * For UST, this is used when the session daemon hangs up. Its the metadata
2160 * producer so calling this is safe because we are assured that no state change
2161 * can occur in the metadata thread for the streams in the hash table.
2163 void lttng_ustconsumer_close_all_metadata(struct lttng_ht
*metadata_ht
)
2165 struct lttng_ht_iter iter
;
2166 struct lttng_consumer_stream
*stream
;
2168 assert(metadata_ht
);
2169 assert(metadata_ht
->ht
);
2171 DBG("UST consumer closing all metadata streams");
2174 cds_lfht_for_each_entry(metadata_ht
->ht
, &iter
.iter
, stream
,
2177 health_code_update();
2179 pthread_mutex_lock(&stream
->chan
->lock
);
2180 lttng_ustconsumer_close_metadata(stream
->chan
);
2181 pthread_mutex_unlock(&stream
->chan
->lock
);
2187 void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream
*stream
)
2191 ret
= ustctl_stream_close_wakeup_fd(stream
->ustream
);
2193 ERR("Unable to close wakeup fd");
2198 * Please refer to consumer-timer.c before adding any lock within this
2199 * function or any of its callees. Timers have a very strict locking
2200 * semantic with respect to teardown. Failure to respect this semantic
2201 * introduces deadlocks.
2203 int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data
*ctx
,
2204 struct lttng_consumer_channel
*channel
, int timer
, int wait
)
2206 struct lttcomm_metadata_request_msg request
;
2207 struct lttcomm_consumer_msg msg
;
2208 enum lttcomm_return_code ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
2209 uint64_t len
, key
, offset
;
2213 assert(channel
->metadata_cache
);
2215 /* send the metadata request to sessiond */
2216 switch (consumer_data
.type
) {
2217 case LTTNG_CONSUMER64_UST
:
2218 request
.bits_per_long
= 64;
2220 case LTTNG_CONSUMER32_UST
:
2221 request
.bits_per_long
= 32;
2224 request
.bits_per_long
= 0;
2228 request
.session_id
= channel
->session_id
;
2229 request
.session_id_per_pid
= channel
->session_id_per_pid
;
2231 * Request the application UID here so the metadata of that application can
2232 * be sent back. The channel UID corresponds to the user UID of the session
2233 * used for the rights on the stream file(s).
2235 request
.uid
= channel
->ust_app_uid
;
2236 request
.key
= channel
->key
;
2238 DBG("Sending metadata request to sessiond, session id %" PRIu64
2239 ", per-pid %" PRIu64
", app UID %u and channek key %" PRIu64
,
2240 request
.session_id
, request
.session_id_per_pid
, request
.uid
,
2243 pthread_mutex_lock(&ctx
->metadata_socket_lock
);
2245 health_code_update();
2247 ret
= lttcomm_send_unix_sock(ctx
->consumer_metadata_socket
, &request
,
2250 ERR("Asking metadata to sessiond");
2254 health_code_update();
2256 /* Receive the metadata from sessiond */
2257 ret
= lttcomm_recv_unix_sock(ctx
->consumer_metadata_socket
, &msg
,
2259 if (ret
!= sizeof(msg
)) {
2260 DBG("Consumer received unexpected message size %d (expects %zu)",
2262 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_CMD
);
2264 * The ret value might 0 meaning an orderly shutdown but this is ok
2265 * since the caller handles this.
2270 health_code_update();
2272 if (msg
.cmd_type
== LTTNG_ERR_UND
) {
2273 /* No registry found */
2274 (void) consumer_send_status_msg(ctx
->consumer_metadata_socket
,
2278 } else if (msg
.cmd_type
!= LTTNG_CONSUMER_PUSH_METADATA
) {
2279 ERR("Unexpected cmd_type received %d", msg
.cmd_type
);
2284 len
= msg
.u
.push_metadata
.len
;
2285 key
= msg
.u
.push_metadata
.key
;
2286 offset
= msg
.u
.push_metadata
.target_offset
;
2288 assert(key
== channel
->key
);
2290 DBG("No new metadata to receive for key %" PRIu64
, key
);
2293 health_code_update();
2295 /* Tell session daemon we are ready to receive the metadata. */
2296 ret
= consumer_send_status_msg(ctx
->consumer_metadata_socket
,
2297 LTTCOMM_CONSUMERD_SUCCESS
);
2298 if (ret
< 0 || len
== 0) {
2300 * Somehow, the session daemon is not responding anymore or there is
2301 * nothing to receive.
2306 health_code_update();
2308 ret
= lttng_ustconsumer_recv_metadata(ctx
->consumer_metadata_socket
,
2309 key
, offset
, len
, channel
, timer
, wait
);
2312 * Only send the status msg if the sessiond is alive meaning a positive
2315 (void) consumer_send_status_msg(ctx
->consumer_metadata_socket
, ret
);
2320 health_code_update();
2322 pthread_mutex_unlock(&ctx
->metadata_socket_lock
);