2 * Copyright (C) 2011 Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * SPDX-License-Identifier: GPL-2.0-only
13 #include <lttng/ust-ctl.h>
19 #include <sys/socket.h>
21 #include <sys/types.h>
24 #include <urcu/list.h>
28 #include <bin/lttng-consumerd/health-consumerd.h>
29 #include <common/common.h>
30 #include <common/sessiond-comm/sessiond-comm.h>
31 #include <common/relayd/relayd.h>
32 #include <common/compat/fcntl.h>
33 #include <common/compat/endian.h>
34 #include <common/consumer/consumer-metadata-cache.h>
35 #include <common/consumer/consumer-stream.h>
36 #include <common/consumer/consumer-timer.h>
37 #include <common/utils.h>
38 #include <common/index/index.h>
40 #include "ust-consumer.h"
42 #define INT_MAX_STR_LEN 12 /* includes \0 */
44 extern struct lttng_consumer_global_data consumer_data
;
45 extern int consumer_poll_timeout
;
48 * Free channel object and all streams associated with it. This MUST be used
49 * only and only if the channel has _NEVER_ been added to the global channel
52 static void destroy_channel(struct lttng_consumer_channel
*channel
)
54 struct lttng_consumer_stream
*stream
, *stmp
;
58 DBG("UST consumer cleaning stream list");
60 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->streams
.head
,
65 cds_list_del(&stream
->send_node
);
66 ustctl_destroy_stream(stream
->ustream
);
67 lttng_trace_chunk_put(stream
->trace_chunk
);
72 * If a channel is available meaning that was created before the streams
76 lttng_ustconsumer_del_channel(channel
);
77 lttng_ustconsumer_free_channel(channel
);
83 * Add channel to internal consumer state.
85 * Returns 0 on success or else a negative value.
87 static int add_channel(struct lttng_consumer_channel
*channel
,
88 struct lttng_consumer_local_data
*ctx
)
95 if (ctx
->on_recv_channel
!= NULL
) {
96 ret
= ctx
->on_recv_channel(channel
);
98 ret
= consumer_add_channel(channel
, ctx
);
100 /* Most likely an ENOMEM. */
101 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
105 ret
= consumer_add_channel(channel
, ctx
);
108 DBG("UST consumer channel added (key: %" PRIu64
")", channel
->key
);
115 * Allocate and return a consumer channel object.
117 static struct lttng_consumer_channel
*allocate_channel(uint64_t session_id
,
118 const uint64_t *chunk_id
, const char *pathname
, const char *name
,
119 uint64_t relayd_id
, uint64_t key
, enum lttng_event_output output
,
120 uint64_t tracefile_size
, uint64_t tracefile_count
,
121 uint64_t session_id_per_pid
, unsigned int monitor
,
122 unsigned int live_timer_interval
,
123 const char *root_shm_path
, const char *shm_path
)
128 return consumer_allocate_channel(key
, session_id
, chunk_id
, pathname
,
129 name
, relayd_id
, output
, tracefile_size
,
130 tracefile_count
, session_id_per_pid
, monitor
,
131 live_timer_interval
, root_shm_path
, shm_path
);
135 * Allocate and return a consumer stream object. If _alloc_ret is not NULL, the
136 * error value if applicable is set in it else it is kept untouched.
138 * Return NULL on error else the newly allocated stream object.
140 static struct lttng_consumer_stream
*allocate_stream(int cpu
, int key
,
141 struct lttng_consumer_channel
*channel
,
142 struct lttng_consumer_local_data
*ctx
, int *_alloc_ret
)
145 struct lttng_consumer_stream
*stream
= NULL
;
150 stream
= consumer_allocate_stream(channel
->key
,
155 channel
->trace_chunk
,
160 if (stream
== NULL
) {
164 * We could not find the channel. Can happen if cpu hotplug
165 * happens while tearing down.
167 DBG3("Could not find channel");
172 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
178 consumer_stream_update_channel_attributes(stream
, channel
);
179 stream
->chan
= channel
;
183 *_alloc_ret
= alloc_ret
;
189 * Send the given stream pointer to the corresponding thread.
191 * Returns 0 on success else a negative value.
193 static int send_stream_to_thread(struct lttng_consumer_stream
*stream
,
194 struct lttng_consumer_local_data
*ctx
)
197 struct lttng_pipe
*stream_pipe
;
199 /* Get the right pipe where the stream will be sent. */
200 if (stream
->metadata_flag
) {
201 consumer_add_metadata_stream(stream
);
202 stream_pipe
= ctx
->consumer_metadata_pipe
;
204 consumer_add_data_stream(stream
);
205 stream_pipe
= ctx
->consumer_data_pipe
;
209 * From this point on, the stream's ownership has been moved away from
210 * the channel and it becomes globally visible. Hence, remove it from
211 * the local stream list to prevent the stream from being both local and
214 stream
->globally_visible
= 1;
215 cds_list_del(&stream
->send_node
);
217 ret
= lttng_pipe_write(stream_pipe
, &stream
, sizeof(stream
));
219 ERR("Consumer write %s stream to pipe %d",
220 stream
->metadata_flag
? "metadata" : "data",
221 lttng_pipe_get_writefd(stream_pipe
));
222 if (stream
->metadata_flag
) {
223 consumer_del_stream_for_metadata(stream
);
225 consumer_del_stream_for_data(stream
);
235 int get_stream_shm_path(char *stream_shm_path
, const char *shm_path
, int cpu
)
237 char cpu_nr
[INT_MAX_STR_LEN
]; /* int max len */
240 strncpy(stream_shm_path
, shm_path
, PATH_MAX
);
241 stream_shm_path
[PATH_MAX
- 1] = '\0';
242 ret
= snprintf(cpu_nr
, INT_MAX_STR_LEN
, "%i", cpu
);
247 strncat(stream_shm_path
, cpu_nr
,
248 PATH_MAX
- strlen(stream_shm_path
) - 1);
255 * Create streams for the given channel using liblttng-ust-ctl.
256 * The channel lock must be acquired by the caller.
258 * Return 0 on success else a negative value.
260 static int create_ust_streams(struct lttng_consumer_channel
*channel
,
261 struct lttng_consumer_local_data
*ctx
)
264 struct ustctl_consumer_stream
*ustream
;
265 struct lttng_consumer_stream
*stream
;
266 pthread_mutex_t
*current_stream_lock
= NULL
;
272 * While a stream is available from ustctl. When NULL is returned, we've
273 * reached the end of the possible stream for the channel.
275 while ((ustream
= ustctl_create_stream(channel
->uchan
, cpu
))) {
277 int ust_metadata_pipe
[2];
279 health_code_update();
281 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
&& channel
->monitor
) {
282 ret
= utils_create_pipe_cloexec_nonblock(ust_metadata_pipe
);
284 ERR("Create ust metadata poll pipe");
287 wait_fd
= ust_metadata_pipe
[0];
289 wait_fd
= ustctl_stream_get_wait_fd(ustream
);
292 /* Allocate consumer stream object. */
293 stream
= allocate_stream(cpu
, wait_fd
, channel
, ctx
, &ret
);
297 stream
->ustream
= ustream
;
299 * Store it so we can save multiple function calls afterwards since
300 * this value is used heavily in the stream threads. This is UST
301 * specific so this is why it's done after allocation.
303 stream
->wait_fd
= wait_fd
;
306 * Increment channel refcount since the channel reference has now been
307 * assigned in the allocation process above.
309 if (stream
->chan
->monitor
) {
310 uatomic_inc(&stream
->chan
->refcount
);
313 pthread_mutex_lock(&stream
->lock
);
314 current_stream_lock
= &stream
->lock
;
316 * Order is important this is why a list is used. On error, the caller
317 * should clean this list.
319 cds_list_add_tail(&stream
->send_node
, &channel
->streams
.head
);
321 ret
= ustctl_get_max_subbuf_size(stream
->ustream
,
322 &stream
->max_sb_size
);
324 ERR("ustctl_get_max_subbuf_size failed for stream %s",
329 /* Do actions once stream has been received. */
330 if (ctx
->on_recv_stream
) {
331 ret
= ctx
->on_recv_stream(stream
);
337 DBG("UST consumer add stream %s (key: %" PRIu64
") with relayd id %" PRIu64
,
338 stream
->name
, stream
->key
, stream
->relayd_stream_id
);
340 /* Set next CPU stream. */
341 channel
->streams
.count
= ++cpu
;
343 /* Keep stream reference when creating metadata. */
344 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
) {
345 channel
->metadata_stream
= stream
;
346 if (channel
->monitor
) {
347 /* Set metadata poll pipe if we created one */
348 memcpy(stream
->ust_metadata_poll_pipe
,
350 sizeof(ust_metadata_pipe
));
353 pthread_mutex_unlock(&stream
->lock
);
354 current_stream_lock
= NULL
;
361 if (current_stream_lock
) {
362 pthread_mutex_unlock(current_stream_lock
);
368 * create_posix_shm is never called concurrently within a process.
371 int create_posix_shm(void)
373 char tmp_name
[NAME_MAX
];
376 ret
= snprintf(tmp_name
, NAME_MAX
, "/ust-shm-consumer-%d", getpid());
382 * Allocate shm, and immediately unlink its shm oject, keeping
383 * only the file descriptor as a reference to the object.
384 * We specifically do _not_ use the / at the beginning of the
385 * pathname so that some OS implementations can keep it local to
386 * the process (POSIX leaves this implementation-defined).
388 shmfd
= shm_open(tmp_name
, O_CREAT
| O_EXCL
| O_RDWR
, 0700);
393 ret
= shm_unlink(tmp_name
);
394 if (ret
< 0 && errno
!= ENOENT
) {
395 PERROR("shm_unlink");
396 goto error_shm_release
;
409 static int open_ust_stream_fd(struct lttng_consumer_channel
*channel
, int cpu
,
410 const struct lttng_credentials
*session_credentials
)
412 char shm_path
[PATH_MAX
];
415 if (!channel
->shm_path
[0]) {
416 return create_posix_shm();
418 ret
= get_stream_shm_path(shm_path
, channel
->shm_path
, cpu
);
422 return run_as_open(shm_path
,
423 O_RDWR
| O_CREAT
| O_EXCL
, S_IRUSR
| S_IWUSR
,
424 session_credentials
->uid
, session_credentials
->gid
);
431 * Create an UST channel with the given attributes and send it to the session
432 * daemon using the ust ctl API.
434 * Return 0 on success or else a negative value.
436 static int create_ust_channel(struct lttng_consumer_channel
*channel
,
437 struct ustctl_consumer_channel_attr
*attr
,
438 struct ustctl_consumer_channel
**ust_chanp
)
440 int ret
, nr_stream_fds
, i
, j
;
442 struct ustctl_consumer_channel
*ust_channel
;
447 assert(channel
->buffer_credentials
.is_set
);
449 DBG3("Creating channel to ustctl with attr: [overwrite: %d, "
450 "subbuf_size: %" PRIu64
", num_subbuf: %" PRIu64
", "
451 "switch_timer_interval: %u, read_timer_interval: %u, "
452 "output: %d, type: %d", attr
->overwrite
, attr
->subbuf_size
,
453 attr
->num_subbuf
, attr
->switch_timer_interval
,
454 attr
->read_timer_interval
, attr
->output
, attr
->type
);
456 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
)
459 nr_stream_fds
= ustctl_get_nr_stream_per_channel();
460 stream_fds
= zmalloc(nr_stream_fds
* sizeof(*stream_fds
));
465 for (i
= 0; i
< nr_stream_fds
; i
++) {
466 stream_fds
[i
] = open_ust_stream_fd(channel
, i
,
467 &channel
->buffer_credentials
.value
);
468 if (stream_fds
[i
] < 0) {
473 ust_channel
= ustctl_create_channel(attr
, stream_fds
, nr_stream_fds
);
478 channel
->nr_stream_fds
= nr_stream_fds
;
479 channel
->stream_fds
= stream_fds
;
480 *ust_chanp
= ust_channel
;
486 for (j
= i
- 1; j
>= 0; j
--) {
489 closeret
= close(stream_fds
[j
]);
493 if (channel
->shm_path
[0]) {
494 char shm_path
[PATH_MAX
];
496 closeret
= get_stream_shm_path(shm_path
,
497 channel
->shm_path
, j
);
499 ERR("Cannot get stream shm path");
501 closeret
= run_as_unlink(shm_path
,
502 channel
->buffer_credentials
.value
.uid
,
503 channel
->buffer_credentials
.value
.gid
);
505 PERROR("unlink %s", shm_path
);
509 /* Try to rmdir all directories under shm_path root. */
510 if (channel
->root_shm_path
[0]) {
511 (void) run_as_rmdir_recursive(channel
->root_shm_path
,
512 channel
->buffer_credentials
.value
.uid
,
513 channel
->buffer_credentials
.value
.gid
,
514 LTTNG_DIRECTORY_HANDLE_SKIP_NON_EMPTY_FLAG
);
522 * Send a single given stream to the session daemon using the sock.
524 * Return 0 on success else a negative value.
526 static int send_sessiond_stream(int sock
, struct lttng_consumer_stream
*stream
)
533 DBG("UST consumer sending stream %" PRIu64
" to sessiond", stream
->key
);
535 /* Send stream to session daemon. */
536 ret
= ustctl_send_stream_to_sessiond(sock
, stream
->ustream
);
546 * Send channel to sessiond and relayd if applicable.
548 * Return 0 on success or else a negative value.
550 static int send_channel_to_sessiond_and_relayd(int sock
,
551 struct lttng_consumer_channel
*channel
,
552 struct lttng_consumer_local_data
*ctx
, int *relayd_error
)
554 int ret
, ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
555 struct lttng_consumer_stream
*stream
;
556 uint64_t net_seq_idx
= -1ULL;
562 DBG("UST consumer sending channel %s to sessiond", channel
->name
);
564 if (channel
->relayd_id
!= (uint64_t) -1ULL) {
565 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
567 health_code_update();
569 /* Try to send the stream to the relayd if one is available. */
570 DBG("Sending stream %" PRIu64
" of channel \"%s\" to relayd",
571 stream
->key
, channel
->name
);
572 ret
= consumer_send_relayd_stream(stream
, stream
->chan
->pathname
);
575 * Flag that the relayd was the problem here probably due to a
576 * communicaton error on the socket.
581 ret_code
= LTTCOMM_CONSUMERD_RELAYD_FAIL
;
583 if (net_seq_idx
== -1ULL) {
584 net_seq_idx
= stream
->net_seq_idx
;
589 /* Inform sessiond that we are about to send channel and streams. */
590 ret
= consumer_send_status_msg(sock
, ret_code
);
591 if (ret
< 0 || ret_code
!= LTTCOMM_CONSUMERD_SUCCESS
) {
593 * Either the session daemon is not responding or the relayd died so we
599 /* Send channel to sessiond. */
600 ret
= ustctl_send_channel_to_sessiond(sock
, channel
->uchan
);
605 ret
= ustctl_channel_close_wakeup_fd(channel
->uchan
);
610 /* The channel was sent successfully to the sessiond at this point. */
611 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
613 health_code_update();
615 /* Send stream to session daemon. */
616 ret
= send_sessiond_stream(sock
, stream
);
622 /* Tell sessiond there is no more stream. */
623 ret
= ustctl_send_stream_to_sessiond(sock
, NULL
);
628 DBG("UST consumer NULL stream sent to sessiond");
633 if (ret_code
!= LTTCOMM_CONSUMERD_SUCCESS
) {
640 * Creates a channel and streams and add the channel it to the channel internal
641 * state. The created stream must ONLY be sent once the GET_CHANNEL command is
644 * Return 0 on success or else, a negative value is returned and the channel
645 * MUST be destroyed by consumer_del_channel().
647 static int ask_channel(struct lttng_consumer_local_data
*ctx
,
648 struct lttng_consumer_channel
*channel
,
649 struct ustctl_consumer_channel_attr
*attr
)
658 * This value is still used by the kernel consumer since for the kernel,
659 * the stream ownership is not IN the consumer so we need to have the
660 * number of left stream that needs to be initialized so we can know when
661 * to delete the channel (see consumer.c).
663 * As for the user space tracer now, the consumer creates and sends the
664 * stream to the session daemon which only sends them to the application
665 * once every stream of a channel is received making this value useless
666 * because we they will be added to the poll thread before the application
667 * receives them. This ensures that a stream can not hang up during
668 * initilization of a channel.
670 channel
->nb_init_stream_left
= 0;
672 /* The reply msg status is handled in the following call. */
673 ret
= create_ust_channel(channel
, attr
, &channel
->uchan
);
678 channel
->wait_fd
= ustctl_channel_get_wait_fd(channel
->uchan
);
681 * For the snapshots (no monitor), we create the metadata streams
682 * on demand, not during the channel creation.
684 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
&& !channel
->monitor
) {
689 /* Open all streams for this channel. */
690 pthread_mutex_lock(&channel
->lock
);
691 ret
= create_ust_streams(channel
, ctx
);
692 pthread_mutex_unlock(&channel
->lock
);
702 * Send all stream of a channel to the right thread handling it.
704 * On error, return a negative value else 0 on success.
706 static int send_streams_to_thread(struct lttng_consumer_channel
*channel
,
707 struct lttng_consumer_local_data
*ctx
)
710 struct lttng_consumer_stream
*stream
, *stmp
;
715 /* Send streams to the corresponding thread. */
716 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->streams
.head
,
719 health_code_update();
721 /* Sending the stream to the thread. */
722 ret
= send_stream_to_thread(stream
, ctx
);
725 * If we are unable to send the stream to the thread, there is
726 * a big problem so just stop everything.
737 * Flush channel's streams using the given key to retrieve the channel.
739 * Return 0 on success else an LTTng error code.
741 static int flush_channel(uint64_t chan_key
)
744 struct lttng_consumer_channel
*channel
;
745 struct lttng_consumer_stream
*stream
;
747 struct lttng_ht_iter iter
;
749 DBG("UST consumer flush channel key %" PRIu64
, chan_key
);
752 channel
= consumer_find_channel(chan_key
);
754 ERR("UST consumer flush channel %" PRIu64
" not found", chan_key
);
755 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
759 ht
= consumer_data
.stream_per_chan_id_ht
;
761 /* For each stream of the channel id, flush it. */
762 cds_lfht_for_each_entry_duplicate(ht
->ht
,
763 ht
->hash_fct(&channel
->key
, lttng_ht_seed
), ht
->match_fct
,
764 &channel
->key
, &iter
.iter
, stream
, node_channel_id
.node
) {
766 health_code_update();
768 pthread_mutex_lock(&stream
->lock
);
771 * Protect against concurrent teardown of a stream.
773 if (cds_lfht_is_node_deleted(&stream
->node
.node
)) {
777 if (!stream
->quiescent
) {
778 ustctl_flush_buffer(stream
->ustream
, 0);
779 stream
->quiescent
= true;
782 pthread_mutex_unlock(&stream
->lock
);
790 * Clear quiescent state from channel's streams using the given key to
791 * retrieve the channel.
793 * Return 0 on success else an LTTng error code.
795 static int clear_quiescent_channel(uint64_t chan_key
)
798 struct lttng_consumer_channel
*channel
;
799 struct lttng_consumer_stream
*stream
;
801 struct lttng_ht_iter iter
;
803 DBG("UST consumer clear quiescent channel key %" PRIu64
, chan_key
);
806 channel
= consumer_find_channel(chan_key
);
808 ERR("UST consumer clear quiescent channel %" PRIu64
" not found", chan_key
);
809 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
813 ht
= consumer_data
.stream_per_chan_id_ht
;
815 /* For each stream of the channel id, clear quiescent state. */
816 cds_lfht_for_each_entry_duplicate(ht
->ht
,
817 ht
->hash_fct(&channel
->key
, lttng_ht_seed
), ht
->match_fct
,
818 &channel
->key
, &iter
.iter
, stream
, node_channel_id
.node
) {
820 health_code_update();
822 pthread_mutex_lock(&stream
->lock
);
823 stream
->quiescent
= false;
824 pthread_mutex_unlock(&stream
->lock
);
832 * Close metadata stream wakeup_fd using the given key to retrieve the channel.
834 * Return 0 on success else an LTTng error code.
836 static int close_metadata(uint64_t chan_key
)
839 struct lttng_consumer_channel
*channel
;
840 unsigned int channel_monitor
;
842 DBG("UST consumer close metadata key %" PRIu64
, chan_key
);
844 channel
= consumer_find_channel(chan_key
);
847 * This is possible if the metadata thread has issue a delete because
848 * the endpoint point of the stream hung up. There is no way the
849 * session daemon can know about it thus use a DBG instead of an actual
852 DBG("UST consumer close metadata %" PRIu64
" not found", chan_key
);
853 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
857 pthread_mutex_lock(&consumer_data
.lock
);
858 pthread_mutex_lock(&channel
->lock
);
859 channel_monitor
= channel
->monitor
;
860 if (cds_lfht_is_node_deleted(&channel
->node
.node
)) {
864 lttng_ustconsumer_close_metadata(channel
);
865 pthread_mutex_unlock(&channel
->lock
);
866 pthread_mutex_unlock(&consumer_data
.lock
);
869 * The ownership of a metadata channel depends on the type of
870 * session to which it belongs. In effect, the monitor flag is checked
871 * to determine if this metadata channel is in "snapshot" mode or not.
873 * In the non-snapshot case, the metadata channel is created along with
874 * a single stream which will remain present until the metadata channel
875 * is destroyed (on the destruction of its session). In this case, the
876 * metadata stream in "monitored" by the metadata poll thread and holds
877 * the ownership of its channel.
879 * Closing the metadata will cause the metadata stream's "metadata poll
880 * pipe" to be closed. Closing this pipe will wake-up the metadata poll
881 * thread which will teardown the metadata stream which, in return,
882 * deletes the metadata channel.
884 * In the snapshot case, the metadata stream is created and destroyed
885 * on every snapshot record. Since the channel doesn't have an owner
886 * other than the session daemon, it is safe to destroy it immediately
887 * on reception of the CLOSE_METADATA command.
889 if (!channel_monitor
) {
891 * The channel and consumer_data locks must be
892 * released before this call since consumer_del_channel
893 * re-acquires the channel and consumer_data locks to teardown
894 * the channel and queue its reclamation by the "call_rcu"
897 consumer_del_channel(channel
);
902 pthread_mutex_unlock(&channel
->lock
);
903 pthread_mutex_unlock(&consumer_data
.lock
);
909 * RCU read side lock MUST be acquired before calling this function.
911 * Return 0 on success else an LTTng error code.
913 static int setup_metadata(struct lttng_consumer_local_data
*ctx
, uint64_t key
)
916 struct lttng_consumer_channel
*metadata
;
918 DBG("UST consumer setup metadata key %" PRIu64
, key
);
920 metadata
= consumer_find_channel(key
);
922 ERR("UST consumer push metadata %" PRIu64
" not found", key
);
923 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
928 * In no monitor mode, the metadata channel has no stream(s) so skip the
929 * ownership transfer to the metadata thread.
931 if (!metadata
->monitor
) {
932 DBG("Metadata channel in no monitor");
938 * Send metadata stream to relayd if one available. Availability is
939 * known if the stream is still in the list of the channel.
941 if (cds_list_empty(&metadata
->streams
.head
)) {
942 ERR("Metadata channel key %" PRIu64
", no stream available.", key
);
943 ret
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
944 goto error_no_stream
;
947 /* Send metadata stream to relayd if needed. */
948 if (metadata
->metadata_stream
->net_seq_idx
!= (uint64_t) -1ULL) {
949 ret
= consumer_send_relayd_stream(metadata
->metadata_stream
,
952 ret
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
955 ret
= consumer_send_relayd_streams_sent(
956 metadata
->metadata_stream
->net_seq_idx
);
958 ret
= LTTCOMM_CONSUMERD_RELAYD_FAIL
;
964 * Ownership of metadata stream is passed along. Freeing is handled by
967 ret
= send_streams_to_thread(metadata
, ctx
);
970 * If we are unable to send the stream to the thread, there is
971 * a big problem so just stop everything.
973 ret
= LTTCOMM_CONSUMERD_FATAL
;
974 goto send_streams_error
;
976 /* List MUST be empty after or else it could be reused. */
977 assert(cds_list_empty(&metadata
->streams
.head
));
984 * Delete metadata channel on error. At this point, the metadata stream can
985 * NOT be monitored by the metadata thread thus having the guarantee that
986 * the stream is still in the local stream list of the channel. This call
987 * will make sure to clean that list.
989 consumer_stream_destroy(metadata
->metadata_stream
, NULL
);
990 cds_list_del(&metadata
->metadata_stream
->send_node
);
991 metadata
->metadata_stream
= NULL
;
999 * Snapshot the whole metadata.
1000 * RCU read-side lock must be held by the caller.
1002 * Returns 0 on success, < 0 on error
1004 static int snapshot_metadata(struct lttng_consumer_channel
*metadata_channel
,
1005 uint64_t key
, char *path
, uint64_t relayd_id
,
1006 struct lttng_consumer_local_data
*ctx
)
1009 struct lttng_consumer_stream
*metadata_stream
;
1014 DBG("UST consumer snapshot metadata with key %" PRIu64
" at path %s",
1019 assert(!metadata_channel
->monitor
);
1021 health_code_update();
1024 * Ask the sessiond if we have new metadata waiting and update the
1025 * consumer metadata cache.
1027 ret
= lttng_ustconsumer_request_metadata(ctx
, metadata_channel
, 0, 1);
1032 health_code_update();
1035 * The metadata stream is NOT created in no monitor mode when the channel
1036 * is created on a sessiond ask channel command.
1038 ret
= create_ust_streams(metadata_channel
, ctx
);
1043 metadata_stream
= metadata_channel
->metadata_stream
;
1044 assert(metadata_stream
);
1046 pthread_mutex_lock(&metadata_stream
->lock
);
1047 if (relayd_id
!= (uint64_t) -1ULL) {
1048 metadata_stream
->net_seq_idx
= relayd_id
;
1049 ret
= consumer_send_relayd_stream(metadata_stream
, path
);
1051 ret
= consumer_stream_create_output_files(metadata_stream
,
1054 pthread_mutex_unlock(&metadata_stream
->lock
);
1060 health_code_update();
1062 ret
= lttng_consumer_read_subbuffer(metadata_stream
, ctx
);
1070 * Clean up the stream completly because the next snapshot will use a new
1073 consumer_stream_destroy(metadata_stream
, NULL
);
1074 cds_list_del(&metadata_stream
->send_node
);
1075 metadata_channel
->metadata_stream
= NULL
;
1083 int get_current_subbuf_addr(struct lttng_consumer_stream
*stream
,
1087 unsigned long mmap_offset
;
1088 const char *mmap_base
;
1090 mmap_base
= ustctl_get_mmap_base(stream
->ustream
);
1092 ERR("Failed to get mmap base for stream `%s`",
1098 ret
= ustctl_get_mmap_read_offset(stream
->ustream
, &mmap_offset
);
1100 ERR("Failed to get mmap offset for stream `%s`", stream
->name
);
1105 *addr
= mmap_base
+ mmap_offset
;
1112 * Take a snapshot of all the stream of a channel.
1113 * RCU read-side lock and the channel lock must be held by the caller.
1115 * Returns 0 on success, < 0 on error
1117 static int snapshot_channel(struct lttng_consumer_channel
*channel
,
1118 uint64_t key
, char *path
, uint64_t relayd_id
,
1119 uint64_t nb_packets_per_stream
,
1120 struct lttng_consumer_local_data
*ctx
)
1123 unsigned use_relayd
= 0;
1124 unsigned long consumed_pos
, produced_pos
;
1125 struct lttng_consumer_stream
*stream
;
1132 if (relayd_id
!= (uint64_t) -1ULL) {
1136 assert(!channel
->monitor
);
1137 DBG("UST consumer snapshot channel %" PRIu64
, key
);
1139 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
1140 health_code_update();
1142 /* Lock stream because we are about to change its state. */
1143 pthread_mutex_lock(&stream
->lock
);
1144 assert(channel
->trace_chunk
);
1145 if (!lttng_trace_chunk_get(channel
->trace_chunk
)) {
1147 * Can't happen barring an internal error as the channel
1148 * holds a reference to the trace chunk.
1150 ERR("Failed to acquire reference to channel's trace chunk");
1154 assert(!stream
->trace_chunk
);
1155 stream
->trace_chunk
= channel
->trace_chunk
;
1157 stream
->net_seq_idx
= relayd_id
;
1160 ret
= consumer_send_relayd_stream(stream
, path
);
1165 ret
= consumer_stream_create_output_files(stream
,
1170 DBG("UST consumer snapshot stream (%" PRIu64
")",
1175 * If tracing is active, we want to perform a "full" buffer flush.
1176 * Else, if quiescent, it has already been done by the prior stop.
1178 if (!stream
->quiescent
) {
1179 ustctl_flush_buffer(stream
->ustream
, 0);
1182 ret
= lttng_ustconsumer_take_snapshot(stream
);
1184 ERR("Taking UST snapshot");
1188 ret
= lttng_ustconsumer_get_produced_snapshot(stream
, &produced_pos
);
1190 ERR("Produced UST snapshot position");
1194 ret
= lttng_ustconsumer_get_consumed_snapshot(stream
, &consumed_pos
);
1196 ERR("Consumerd UST snapshot position");
1201 * The original value is sent back if max stream size is larger than
1202 * the possible size of the snapshot. Also, we assume that the session
1203 * daemon should never send a maximum stream size that is lower than
1206 consumed_pos
= consumer_get_consume_start_pos(consumed_pos
,
1207 produced_pos
, nb_packets_per_stream
,
1208 stream
->max_sb_size
);
1210 while ((long) (consumed_pos
- produced_pos
) < 0) {
1212 unsigned long len
, padded_len
;
1213 const char *subbuf_addr
;
1214 struct lttng_buffer_view subbuf_view
;
1216 health_code_update();
1218 DBG("UST consumer taking snapshot at pos %lu", consumed_pos
);
1220 ret
= ustctl_get_subbuf(stream
->ustream
, &consumed_pos
);
1222 if (ret
!= -EAGAIN
) {
1223 PERROR("ustctl_get_subbuf snapshot");
1224 goto error_close_stream
;
1226 DBG("UST consumer get subbuf failed. Skipping it.");
1227 consumed_pos
+= stream
->max_sb_size
;
1228 stream
->chan
->lost_packets
++;
1232 ret
= ustctl_get_subbuf_size(stream
->ustream
, &len
);
1234 ERR("Snapshot ustctl_get_subbuf_size");
1235 goto error_put_subbuf
;
1238 ret
= ustctl_get_padded_subbuf_size(stream
->ustream
, &padded_len
);
1240 ERR("Snapshot ustctl_get_padded_subbuf_size");
1241 goto error_put_subbuf
;
1244 ret
= get_current_subbuf_addr(stream
, &subbuf_addr
);
1246 goto error_put_subbuf
;
1249 subbuf_view
= lttng_buffer_view_init(
1250 subbuf_addr
, 0, padded_len
);
1251 read_len
= lttng_consumer_on_read_subbuffer_mmap(ctx
,
1252 stream
, &subbuf_view
, padded_len
- len
,
1255 if (read_len
!= len
) {
1257 goto error_put_subbuf
;
1260 if (read_len
!= padded_len
) {
1262 goto error_put_subbuf
;
1266 ret
= ustctl_put_subbuf(stream
->ustream
);
1268 ERR("Snapshot ustctl_put_subbuf");
1269 goto error_close_stream
;
1271 consumed_pos
+= stream
->max_sb_size
;
1274 /* Simply close the stream so we can use it on the next snapshot. */
1275 consumer_stream_close(stream
);
1276 pthread_mutex_unlock(&stream
->lock
);
1283 if (ustctl_put_subbuf(stream
->ustream
) < 0) {
1284 ERR("Snapshot ustctl_put_subbuf");
1287 consumer_stream_close(stream
);
1289 pthread_mutex_unlock(&stream
->lock
);
1295 * Receive the metadata updates from the sessiond. Supports receiving
1296 * overlapping metadata, but is needs to always belong to a contiguous
1297 * range starting from 0.
1298 * Be careful about the locks held when calling this function: it needs
1299 * the metadata cache flush to concurrently progress in order to
1302 int lttng_ustconsumer_recv_metadata(int sock
, uint64_t key
, uint64_t offset
,
1303 uint64_t len
, uint64_t version
,
1304 struct lttng_consumer_channel
*channel
, int timer
, int wait
)
1306 int ret
, ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1309 DBG("UST consumer push metadata key %" PRIu64
" of len %" PRIu64
, key
, len
);
1311 metadata_str
= zmalloc(len
* sizeof(char));
1312 if (!metadata_str
) {
1313 PERROR("zmalloc metadata string");
1314 ret_code
= LTTCOMM_CONSUMERD_ENOMEM
;
1318 health_code_update();
1320 /* Receive metadata string. */
1321 ret
= lttcomm_recv_unix_sock(sock
, metadata_str
, len
);
1323 /* Session daemon is dead so return gracefully. */
1328 health_code_update();
1330 pthread_mutex_lock(&channel
->metadata_cache
->lock
);
1331 ret
= consumer_metadata_cache_write(channel
, offset
, len
, version
,
1334 /* Unable to handle metadata. Notify session daemon. */
1335 ret_code
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
1337 * Skip metadata flush on write error since the offset and len might
1338 * not have been updated which could create an infinite loop below when
1339 * waiting for the metadata cache to be flushed.
1341 pthread_mutex_unlock(&channel
->metadata_cache
->lock
);
1344 pthread_mutex_unlock(&channel
->metadata_cache
->lock
);
1349 while (consumer_metadata_cache_flushed(channel
, offset
+ len
, timer
)) {
1350 DBG("Waiting for metadata to be flushed");
1352 health_code_update();
1354 usleep(DEFAULT_METADATA_AVAILABILITY_WAIT_TIME
);
1364 * Receive command from session daemon and process it.
1366 * Return 1 on success else a negative value or 0.
1368 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
1369 int sock
, struct pollfd
*consumer_sockpoll
)
1372 enum lttcomm_return_code ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1373 struct lttcomm_consumer_msg msg
;
1374 struct lttng_consumer_channel
*channel
= NULL
;
1376 health_code_update();
1378 ret
= lttcomm_recv_unix_sock(sock
, &msg
, sizeof(msg
));
1379 if (ret
!= sizeof(msg
)) {
1380 DBG("Consumer received unexpected message size %zd (expects %zu)",
1383 * The ret value might 0 meaning an orderly shutdown but this is ok
1384 * since the caller handles this.
1387 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_CMD
);
1393 health_code_update();
1396 assert(msg
.cmd_type
!= LTTNG_CONSUMER_STOP
);
1398 health_code_update();
1400 /* relayd needs RCU read-side lock */
1403 switch (msg
.cmd_type
) {
1404 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET
:
1406 /* Session daemon status message are handled in the following call. */
1407 consumer_add_relayd_socket(msg
.u
.relayd_sock
.net_index
,
1408 msg
.u
.relayd_sock
.type
, ctx
, sock
, consumer_sockpoll
,
1409 &msg
.u
.relayd_sock
.sock
, msg
.u
.relayd_sock
.session_id
,
1410 msg
.u
.relayd_sock
.relayd_session_id
);
1413 case LTTNG_CONSUMER_DESTROY_RELAYD
:
1415 uint64_t index
= msg
.u
.destroy_relayd
.net_seq_idx
;
1416 struct consumer_relayd_sock_pair
*relayd
;
1418 DBG("UST consumer destroying relayd %" PRIu64
, index
);
1420 /* Get relayd reference if exists. */
1421 relayd
= consumer_find_relayd(index
);
1422 if (relayd
== NULL
) {
1423 DBG("Unable to find relayd %" PRIu64
, index
);
1424 ret_code
= LTTCOMM_CONSUMERD_RELAYD_FAIL
;
1428 * Each relayd socket pair has a refcount of stream attached to it
1429 * which tells if the relayd is still active or not depending on the
1432 * This will set the destroy flag of the relayd object and destroy it
1433 * if the refcount reaches zero when called.
1435 * The destroy can happen either here or when a stream fd hangs up.
1438 consumer_flag_relayd_for_destroy(relayd
);
1441 goto end_msg_sessiond
;
1443 case LTTNG_CONSUMER_UPDATE_STREAM
:
1448 case LTTNG_CONSUMER_DATA_PENDING
:
1450 int ret
, is_data_pending
;
1451 uint64_t id
= msg
.u
.data_pending
.session_id
;
1453 DBG("UST consumer data pending command for id %" PRIu64
, id
);
1455 is_data_pending
= consumer_data_pending(id
);
1457 /* Send back returned value to session daemon */
1458 ret
= lttcomm_send_unix_sock(sock
, &is_data_pending
,
1459 sizeof(is_data_pending
));
1461 DBG("Error when sending the data pending ret code: %d", ret
);
1466 * No need to send back a status message since the data pending
1467 * returned value is the response.
1471 case LTTNG_CONSUMER_ASK_CHANNEL_CREATION
:
1474 struct ustctl_consumer_channel_attr attr
;
1475 const uint64_t chunk_id
= msg
.u
.ask_channel
.chunk_id
.value
;
1476 const struct lttng_credentials buffer_credentials
= {
1477 .uid
= msg
.u
.ask_channel
.buffer_credentials
.uid
,
1478 .gid
= msg
.u
.ask_channel
.buffer_credentials
.gid
,
1481 /* Create a plain object and reserve a channel key. */
1482 channel
= allocate_channel(msg
.u
.ask_channel
.session_id
,
1483 msg
.u
.ask_channel
.chunk_id
.is_set
?
1485 msg
.u
.ask_channel
.pathname
,
1486 msg
.u
.ask_channel
.name
,
1487 msg
.u
.ask_channel
.relayd_id
,
1488 msg
.u
.ask_channel
.key
,
1489 (enum lttng_event_output
) msg
.u
.ask_channel
.output
,
1490 msg
.u
.ask_channel
.tracefile_size
,
1491 msg
.u
.ask_channel
.tracefile_count
,
1492 msg
.u
.ask_channel
.session_id_per_pid
,
1493 msg
.u
.ask_channel
.monitor
,
1494 msg
.u
.ask_channel
.live_timer_interval
,
1495 msg
.u
.ask_channel
.root_shm_path
,
1496 msg
.u
.ask_channel
.shm_path
);
1498 goto end_channel_error
;
1501 LTTNG_OPTIONAL_SET(&channel
->buffer_credentials
,
1502 buffer_credentials
);
1505 * Assign UST application UID to the channel. This value is ignored for
1506 * per PID buffers. This is specific to UST thus setting this after the
1509 channel
->ust_app_uid
= msg
.u
.ask_channel
.ust_app_uid
;
1511 /* Build channel attributes from received message. */
1512 attr
.subbuf_size
= msg
.u
.ask_channel
.subbuf_size
;
1513 attr
.num_subbuf
= msg
.u
.ask_channel
.num_subbuf
;
1514 attr
.overwrite
= msg
.u
.ask_channel
.overwrite
;
1515 attr
.switch_timer_interval
= msg
.u
.ask_channel
.switch_timer_interval
;
1516 attr
.read_timer_interval
= msg
.u
.ask_channel
.read_timer_interval
;
1517 attr
.chan_id
= msg
.u
.ask_channel
.chan_id
;
1518 memcpy(attr
.uuid
, msg
.u
.ask_channel
.uuid
, sizeof(attr
.uuid
));
1519 attr
.blocking_timeout
= msg
.u
.ask_channel
.blocking_timeout
;
1521 /* Match channel buffer type to the UST abi. */
1522 switch (msg
.u
.ask_channel
.output
) {
1523 case LTTNG_EVENT_MMAP
:
1525 attr
.output
= LTTNG_UST_MMAP
;
1529 /* Translate and save channel type. */
1530 switch (msg
.u
.ask_channel
.type
) {
1531 case LTTNG_UST_CHAN_PER_CPU
:
1532 channel
->type
= CONSUMER_CHANNEL_TYPE_DATA
;
1533 attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1535 * Set refcount to 1 for owner. Below, we will
1536 * pass ownership to the
1537 * consumer_thread_channel_poll() thread.
1539 channel
->refcount
= 1;
1541 case LTTNG_UST_CHAN_METADATA
:
1542 channel
->type
= CONSUMER_CHANNEL_TYPE_METADATA
;
1543 attr
.type
= LTTNG_UST_CHAN_METADATA
;
1550 health_code_update();
1552 ret
= ask_channel(ctx
, channel
, &attr
);
1554 goto end_channel_error
;
1557 if (msg
.u
.ask_channel
.type
== LTTNG_UST_CHAN_METADATA
) {
1558 ret
= consumer_metadata_cache_allocate(channel
);
1560 ERR("Allocating metadata cache");
1561 goto end_channel_error
;
1563 consumer_timer_switch_start(channel
, attr
.switch_timer_interval
);
1564 attr
.switch_timer_interval
= 0;
1566 int monitor_start_ret
;
1568 consumer_timer_live_start(channel
,
1569 msg
.u
.ask_channel
.live_timer_interval
);
1570 monitor_start_ret
= consumer_timer_monitor_start(
1572 msg
.u
.ask_channel
.monitor_timer_interval
);
1573 if (monitor_start_ret
< 0) {
1574 ERR("Starting channel monitoring timer failed");
1575 goto end_channel_error
;
1579 health_code_update();
1582 * Add the channel to the internal state AFTER all streams were created
1583 * and successfully sent to session daemon. This way, all streams must
1584 * be ready before this channel is visible to the threads.
1585 * If add_channel succeeds, ownership of the channel is
1586 * passed to consumer_thread_channel_poll().
1588 ret
= add_channel(channel
, ctx
);
1590 if (msg
.u
.ask_channel
.type
== LTTNG_UST_CHAN_METADATA
) {
1591 if (channel
->switch_timer_enabled
== 1) {
1592 consumer_timer_switch_stop(channel
);
1594 consumer_metadata_cache_destroy(channel
);
1596 if (channel
->live_timer_enabled
== 1) {
1597 consumer_timer_live_stop(channel
);
1599 if (channel
->monitor_timer_enabled
== 1) {
1600 consumer_timer_monitor_stop(channel
);
1602 goto end_channel_error
;
1605 health_code_update();
1608 * Channel and streams are now created. Inform the session daemon that
1609 * everything went well and should wait to receive the channel and
1610 * streams with ustctl API.
1612 ret
= consumer_send_status_channel(sock
, channel
);
1615 * There is probably a problem on the socket.
1622 case LTTNG_CONSUMER_GET_CHANNEL
:
1624 int ret
, relayd_err
= 0;
1625 uint64_t key
= msg
.u
.get_channel
.key
;
1626 struct lttng_consumer_channel
*channel
;
1628 channel
= consumer_find_channel(key
);
1630 ERR("UST consumer get channel key %" PRIu64
" not found", key
);
1631 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
1632 goto end_get_channel
;
1635 health_code_update();
1637 /* Send the channel to sessiond (and relayd, if applicable). */
1638 ret
= send_channel_to_sessiond_and_relayd(sock
, channel
, ctx
,
1643 * We were unable to send to the relayd the stream so avoid
1644 * sending back a fatal error to the thread since this is OK
1645 * and the consumer can continue its work. The above call
1646 * has sent the error status message to the sessiond.
1648 goto end_get_channel_nosignal
;
1651 * The communicaton was broken hence there is a bad state between
1652 * the consumer and sessiond so stop everything.
1654 goto error_get_channel_fatal
;
1657 health_code_update();
1660 * In no monitor mode, the streams ownership is kept inside the channel
1661 * so don't send them to the data thread.
1663 if (!channel
->monitor
) {
1664 goto end_get_channel
;
1667 ret
= send_streams_to_thread(channel
, ctx
);
1670 * If we are unable to send the stream to the thread, there is
1671 * a big problem so just stop everything.
1673 goto error_get_channel_fatal
;
1675 /* List MUST be empty after or else it could be reused. */
1676 assert(cds_list_empty(&channel
->streams
.head
));
1678 goto end_msg_sessiond
;
1679 error_get_channel_fatal
:
1681 end_get_channel_nosignal
:
1684 case LTTNG_CONSUMER_DESTROY_CHANNEL
:
1686 uint64_t key
= msg
.u
.destroy_channel
.key
;
1689 * Only called if streams have not been sent to stream
1690 * manager thread. However, channel has been sent to
1691 * channel manager thread.
1693 notify_thread_del_channel(ctx
, key
);
1694 goto end_msg_sessiond
;
1696 case LTTNG_CONSUMER_CLOSE_METADATA
:
1700 ret
= close_metadata(msg
.u
.close_metadata
.key
);
1705 goto end_msg_sessiond
;
1707 case LTTNG_CONSUMER_FLUSH_CHANNEL
:
1711 ret
= flush_channel(msg
.u
.flush_channel
.key
);
1716 goto end_msg_sessiond
;
1718 case LTTNG_CONSUMER_CLEAR_QUIESCENT_CHANNEL
:
1722 ret
= clear_quiescent_channel(
1723 msg
.u
.clear_quiescent_channel
.key
);
1728 goto end_msg_sessiond
;
1730 case LTTNG_CONSUMER_PUSH_METADATA
:
1733 uint64_t len
= msg
.u
.push_metadata
.len
;
1734 uint64_t key
= msg
.u
.push_metadata
.key
;
1735 uint64_t offset
= msg
.u
.push_metadata
.target_offset
;
1736 uint64_t version
= msg
.u
.push_metadata
.version
;
1737 struct lttng_consumer_channel
*channel
;
1739 DBG("UST consumer push metadata key %" PRIu64
" of len %" PRIu64
, key
,
1742 channel
= consumer_find_channel(key
);
1745 * This is possible if the metadata creation on the consumer side
1746 * is in flight vis-a-vis a concurrent push metadata from the
1747 * session daemon. Simply return that the channel failed and the
1748 * session daemon will handle that message correctly considering
1749 * that this race is acceptable thus the DBG() statement here.
1751 DBG("UST consumer push metadata %" PRIu64
" not found", key
);
1752 ret_code
= LTTCOMM_CONSUMERD_CHANNEL_FAIL
;
1753 goto end_push_metadata_msg_sessiond
;
1756 health_code_update();
1760 * There is nothing to receive. We have simply
1761 * checked whether the channel can be found.
1763 ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1764 goto end_push_metadata_msg_sessiond
;
1767 /* Tell session daemon we are ready to receive the metadata. */
1768 ret
= consumer_send_status_msg(sock
, LTTCOMM_CONSUMERD_SUCCESS
);
1770 /* Somehow, the session daemon is not responding anymore. */
1771 goto error_push_metadata_fatal
;
1774 health_code_update();
1776 /* Wait for more data. */
1777 health_poll_entry();
1778 ret
= lttng_consumer_poll_socket(consumer_sockpoll
);
1781 goto error_push_metadata_fatal
;
1784 health_code_update();
1786 ret
= lttng_ustconsumer_recv_metadata(sock
, key
, offset
,
1787 len
, version
, channel
, 0, 1);
1789 /* error receiving from sessiond */
1790 goto error_push_metadata_fatal
;
1793 goto end_push_metadata_msg_sessiond
;
1795 end_push_metadata_msg_sessiond
:
1796 goto end_msg_sessiond
;
1797 error_push_metadata_fatal
:
1800 case LTTNG_CONSUMER_SETUP_METADATA
:
1804 ret
= setup_metadata(ctx
, msg
.u
.setup_metadata
.key
);
1808 goto end_msg_sessiond
;
1810 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL
:
1812 struct lttng_consumer_channel
*channel
;
1813 uint64_t key
= msg
.u
.snapshot_channel
.key
;
1815 channel
= consumer_find_channel(key
);
1817 DBG("UST snapshot channel not found for key %" PRIu64
, key
);
1818 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
1820 if (msg
.u
.snapshot_channel
.metadata
) {
1821 ret
= snapshot_metadata(channel
, key
,
1822 msg
.u
.snapshot_channel
.pathname
,
1823 msg
.u
.snapshot_channel
.relayd_id
,
1826 ERR("Snapshot metadata failed");
1827 ret_code
= LTTCOMM_CONSUMERD_SNAPSHOT_FAILED
;
1830 ret
= snapshot_channel(channel
, key
,
1831 msg
.u
.snapshot_channel
.pathname
,
1832 msg
.u
.snapshot_channel
.relayd_id
,
1833 msg
.u
.snapshot_channel
.nb_packets_per_stream
,
1836 ERR("Snapshot channel failed");
1837 ret_code
= LTTCOMM_CONSUMERD_SNAPSHOT_FAILED
;
1841 health_code_update();
1842 ret
= consumer_send_status_msg(sock
, ret_code
);
1844 /* Somehow, the session daemon is not responding anymore. */
1847 health_code_update();
1850 case LTTNG_CONSUMER_DISCARDED_EVENTS
:
1853 uint64_t discarded_events
;
1854 struct lttng_ht_iter iter
;
1855 struct lttng_ht
*ht
;
1856 struct lttng_consumer_stream
*stream
;
1857 uint64_t id
= msg
.u
.discarded_events
.session_id
;
1858 uint64_t key
= msg
.u
.discarded_events
.channel_key
;
1860 DBG("UST consumer discarded events command for session id %"
1863 pthread_mutex_lock(&consumer_data
.lock
);
1865 ht
= consumer_data
.stream_list_ht
;
1868 * We only need a reference to the channel, but they are not
1869 * directly indexed, so we just use the first matching stream
1870 * to extract the information we need, we default to 0 if not
1871 * found (no events are dropped if the channel is not yet in
1874 discarded_events
= 0;
1875 cds_lfht_for_each_entry_duplicate(ht
->ht
,
1876 ht
->hash_fct(&id
, lttng_ht_seed
),
1878 &iter
.iter
, stream
, node_session_id
.node
) {
1879 if (stream
->chan
->key
== key
) {
1880 discarded_events
= stream
->chan
->discarded_events
;
1884 pthread_mutex_unlock(&consumer_data
.lock
);
1887 DBG("UST consumer discarded events command for session id %"
1888 PRIu64
", channel key %" PRIu64
, id
, key
);
1890 health_code_update();
1892 /* Send back returned value to session daemon */
1893 ret
= lttcomm_send_unix_sock(sock
, &discarded_events
, sizeof(discarded_events
));
1895 PERROR("send discarded events");
1901 case LTTNG_CONSUMER_LOST_PACKETS
:
1904 uint64_t lost_packets
;
1905 struct lttng_ht_iter iter
;
1906 struct lttng_ht
*ht
;
1907 struct lttng_consumer_stream
*stream
;
1908 uint64_t id
= msg
.u
.lost_packets
.session_id
;
1909 uint64_t key
= msg
.u
.lost_packets
.channel_key
;
1911 DBG("UST consumer lost packets command for session id %"
1914 pthread_mutex_lock(&consumer_data
.lock
);
1916 ht
= consumer_data
.stream_list_ht
;
1919 * We only need a reference to the channel, but they are not
1920 * directly indexed, so we just use the first matching stream
1921 * to extract the information we need, we default to 0 if not
1922 * found (no packets lost if the channel is not yet in use).
1925 cds_lfht_for_each_entry_duplicate(ht
->ht
,
1926 ht
->hash_fct(&id
, lttng_ht_seed
),
1928 &iter
.iter
, stream
, node_session_id
.node
) {
1929 if (stream
->chan
->key
== key
) {
1930 lost_packets
= stream
->chan
->lost_packets
;
1934 pthread_mutex_unlock(&consumer_data
.lock
);
1937 DBG("UST consumer lost packets command for session id %"
1938 PRIu64
", channel key %" PRIu64
, id
, key
);
1940 health_code_update();
1942 /* Send back returned value to session daemon */
1943 ret
= lttcomm_send_unix_sock(sock
, &lost_packets
,
1944 sizeof(lost_packets
));
1946 PERROR("send lost packets");
1952 case LTTNG_CONSUMER_SET_CHANNEL_MONITOR_PIPE
:
1954 int channel_monitor_pipe
;
1956 ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1957 /* Successfully received the command's type. */
1958 ret
= consumer_send_status_msg(sock
, ret_code
);
1963 ret
= lttcomm_recv_fds_unix_sock(sock
, &channel_monitor_pipe
,
1965 if (ret
!= sizeof(channel_monitor_pipe
)) {
1966 ERR("Failed to receive channel monitor pipe");
1970 DBG("Received channel monitor pipe (%d)", channel_monitor_pipe
);
1971 ret
= consumer_timer_thread_set_channel_monitor_pipe(
1972 channel_monitor_pipe
);
1976 ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1977 /* Set the pipe as non-blocking. */
1978 ret
= fcntl(channel_monitor_pipe
, F_GETFL
, 0);
1980 PERROR("fcntl get flags of the channel monitoring pipe");
1985 ret
= fcntl(channel_monitor_pipe
, F_SETFL
,
1986 flags
| O_NONBLOCK
);
1988 PERROR("fcntl set O_NONBLOCK flag of the channel monitoring pipe");
1991 DBG("Channel monitor pipe set as non-blocking");
1993 ret_code
= LTTCOMM_CONSUMERD_ALREADY_SET
;
1995 goto end_msg_sessiond
;
1997 case LTTNG_CONSUMER_ROTATE_CHANNEL
:
1999 struct lttng_consumer_channel
*channel
;
2000 uint64_t key
= msg
.u
.rotate_channel
.key
;
2002 channel
= consumer_find_channel(key
);
2004 DBG("Channel %" PRIu64
" not found", key
);
2005 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
2008 * Sample the rotate position of all the streams in
2011 ret
= lttng_consumer_rotate_channel(channel
, key
,
2012 msg
.u
.rotate_channel
.relayd_id
,
2013 msg
.u
.rotate_channel
.metadata
,
2016 ERR("Rotate channel failed");
2017 ret_code
= LTTCOMM_CONSUMERD_ROTATION_FAIL
;
2020 health_code_update();
2022 ret
= consumer_send_status_msg(sock
, ret_code
);
2024 /* Somehow, the session daemon is not responding anymore. */
2025 goto end_rotate_channel_nosignal
;
2029 * Rotate the streams that are ready right now.
2030 * FIXME: this is a second consecutive iteration over the
2031 * streams in a channel, there is probably a better way to
2032 * handle this, but it needs to be after the
2033 * consumer_send_status_msg() call.
2036 ret
= lttng_consumer_rotate_ready_streams(
2039 ERR("Rotate channel failed");
2043 end_rotate_channel_nosignal
:
2046 case LTTNG_CONSUMER_CLEAR_CHANNEL
:
2048 struct lttng_consumer_channel
*channel
;
2049 uint64_t key
= msg
.u
.clear_channel
.key
;
2051 channel
= consumer_find_channel(key
);
2053 DBG("Channel %" PRIu64
" not found", key
);
2054 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
2056 ret
= lttng_consumer_clear_channel(channel
);
2058 ERR("Clear channel failed key %" PRIu64
, key
);
2062 health_code_update();
2064 ret
= consumer_send_status_msg(sock
, ret_code
);
2066 /* Somehow, the session daemon is not responding anymore. */
2071 case LTTNG_CONSUMER_INIT
:
2073 ret_code
= lttng_consumer_init_command(ctx
,
2074 msg
.u
.init
.sessiond_uuid
);
2075 health_code_update();
2076 ret
= consumer_send_status_msg(sock
, ret_code
);
2078 /* Somehow, the session daemon is not responding anymore. */
2083 case LTTNG_CONSUMER_CREATE_TRACE_CHUNK
:
2085 const struct lttng_credentials credentials
= {
2086 .uid
= msg
.u
.create_trace_chunk
.credentials
.value
.uid
,
2087 .gid
= msg
.u
.create_trace_chunk
.credentials
.value
.gid
,
2089 const bool is_local_trace
=
2090 !msg
.u
.create_trace_chunk
.relayd_id
.is_set
;
2091 const uint64_t relayd_id
=
2092 msg
.u
.create_trace_chunk
.relayd_id
.value
;
2093 const char *chunk_override_name
=
2094 *msg
.u
.create_trace_chunk
.override_name
?
2095 msg
.u
.create_trace_chunk
.override_name
:
2097 struct lttng_directory_handle
*chunk_directory_handle
= NULL
;
2100 * The session daemon will only provide a chunk directory file
2101 * descriptor for local traces.
2103 if (is_local_trace
) {
2106 /* Acnowledge the reception of the command. */
2107 ret
= consumer_send_status_msg(sock
,
2108 LTTCOMM_CONSUMERD_SUCCESS
);
2110 /* Somehow, the session daemon is not responding anymore. */
2115 * Receive trace chunk domain dirfd.
2117 ret
= lttcomm_recv_fds_unix_sock(sock
, &chunk_dirfd
, 1);
2118 if (ret
!= sizeof(chunk_dirfd
)) {
2119 ERR("Failed to receive trace chunk domain directory file descriptor");
2123 DBG("Received trace chunk domain directory fd (%d)",
2125 chunk_directory_handle
= lttng_directory_handle_create_from_dirfd(
2127 if (!chunk_directory_handle
) {
2128 ERR("Failed to initialize chunk domain directory handle from directory file descriptor");
2129 if (close(chunk_dirfd
)) {
2130 PERROR("Failed to close chunk directory file descriptor");
2136 ret_code
= lttng_consumer_create_trace_chunk(
2137 !is_local_trace
? &relayd_id
: NULL
,
2138 msg
.u
.create_trace_chunk
.session_id
,
2139 msg
.u
.create_trace_chunk
.chunk_id
,
2140 (time_t) msg
.u
.create_trace_chunk
2141 .creation_timestamp
,
2142 chunk_override_name
,
2143 msg
.u
.create_trace_chunk
.credentials
.is_set
?
2146 chunk_directory_handle
);
2147 lttng_directory_handle_put(chunk_directory_handle
);
2148 goto end_msg_sessiond
;
2150 case LTTNG_CONSUMER_CLOSE_TRACE_CHUNK
:
2152 enum lttng_trace_chunk_command_type close_command
=
2153 msg
.u
.close_trace_chunk
.close_command
.value
;
2154 const uint64_t relayd_id
=
2155 msg
.u
.close_trace_chunk
.relayd_id
.value
;
2156 struct lttcomm_consumer_close_trace_chunk_reply reply
;
2157 char closed_trace_chunk_path
[LTTNG_PATH_MAX
];
2160 ret_code
= lttng_consumer_close_trace_chunk(
2161 msg
.u
.close_trace_chunk
.relayd_id
.is_set
?
2164 msg
.u
.close_trace_chunk
.session_id
,
2165 msg
.u
.close_trace_chunk
.chunk_id
,
2166 (time_t) msg
.u
.close_trace_chunk
.close_timestamp
,
2167 msg
.u
.close_trace_chunk
.close_command
.is_set
?
2169 NULL
, closed_trace_chunk_path
);
2170 reply
.ret_code
= ret_code
;
2171 reply
.path_length
= strlen(closed_trace_chunk_path
) + 1;
2172 ret
= lttcomm_send_unix_sock(sock
, &reply
, sizeof(reply
));
2173 if (ret
!= sizeof(reply
)) {
2176 ret
= lttcomm_send_unix_sock(sock
, closed_trace_chunk_path
,
2178 if (ret
!= reply
.path_length
) {
2183 case LTTNG_CONSUMER_TRACE_CHUNK_EXISTS
:
2185 const uint64_t relayd_id
=
2186 msg
.u
.trace_chunk_exists
.relayd_id
.value
;
2188 ret_code
= lttng_consumer_trace_chunk_exists(
2189 msg
.u
.trace_chunk_exists
.relayd_id
.is_set
?
2191 msg
.u
.trace_chunk_exists
.session_id
,
2192 msg
.u
.trace_chunk_exists
.chunk_id
);
2193 goto end_msg_sessiond
;
2201 * Return 1 to indicate success since the 0 value can be a socket
2202 * shutdown during the recv() or send() call.
2209 * The returned value here is not useful since either way we'll return 1 to
2210 * the caller because the session daemon socket management is done
2211 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
2213 ret
= consumer_send_status_msg(sock
, ret_code
);
2223 * Free channel here since no one has a reference to it. We don't
2224 * free after that because a stream can store this pointer.
2226 destroy_channel(channel
);
2228 /* We have to send a status channel message indicating an error. */
2229 ret
= consumer_send_status_channel(sock
, NULL
);
2231 /* Stop everything if session daemon can not be notified. */
2238 /* This will issue a consumer stop. */
2244 health_code_update();
2248 void lttng_ustctl_flush_buffer(struct lttng_consumer_stream
*stream
,
2249 int producer_active
)
2252 assert(stream
->ustream
);
2254 ustctl_flush_buffer(stream
->ustream
, producer_active
);
2258 * Take a snapshot for a specific stream.
2260 * Returns 0 on success, < 0 on error
2262 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream
*stream
)
2265 assert(stream
->ustream
);
2267 return ustctl_snapshot(stream
->ustream
);
2271 * Sample consumed and produced positions for a specific stream.
2273 * Returns 0 on success, < 0 on error.
2275 int lttng_ustconsumer_sample_snapshot_positions(
2276 struct lttng_consumer_stream
*stream
)
2279 assert(stream
->ustream
);
2281 return ustctl_snapshot_sample_positions(stream
->ustream
);
2285 * Get the produced position
2287 * Returns 0 on success, < 0 on error
2289 int lttng_ustconsumer_get_produced_snapshot(
2290 struct lttng_consumer_stream
*stream
, unsigned long *pos
)
2293 assert(stream
->ustream
);
2296 return ustctl_snapshot_get_produced(stream
->ustream
, pos
);
2300 * Get the consumed position
2302 * Returns 0 on success, < 0 on error
2304 int lttng_ustconsumer_get_consumed_snapshot(
2305 struct lttng_consumer_stream
*stream
, unsigned long *pos
)
2308 assert(stream
->ustream
);
2311 return ustctl_snapshot_get_consumed(stream
->ustream
, pos
);
2314 void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream
*stream
,
2318 assert(stream
->ustream
);
2320 ustctl_flush_buffer(stream
->ustream
, producer
);
2323 void lttng_ustconsumer_clear_buffer(struct lttng_consumer_stream
*stream
)
2326 assert(stream
->ustream
);
2328 ustctl_clear_buffer(stream
->ustream
);
2331 int lttng_ustconsumer_get_current_timestamp(
2332 struct lttng_consumer_stream
*stream
, uint64_t *ts
)
2335 assert(stream
->ustream
);
2338 return ustctl_get_current_timestamp(stream
->ustream
, ts
);
2341 int lttng_ustconsumer_get_sequence_number(
2342 struct lttng_consumer_stream
*stream
, uint64_t *seq
)
2345 assert(stream
->ustream
);
2348 return ustctl_get_sequence_number(stream
->ustream
, seq
);
2352 * Called when the stream signals the consumer that it has hung up.
2354 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream
*stream
)
2357 assert(stream
->ustream
);
2359 pthread_mutex_lock(&stream
->lock
);
2360 if (!stream
->quiescent
) {
2361 ustctl_flush_buffer(stream
->ustream
, 0);
2362 stream
->quiescent
= true;
2364 pthread_mutex_unlock(&stream
->lock
);
2365 stream
->hangup_flush_done
= 1;
2368 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel
*chan
)
2373 assert(chan
->uchan
);
2374 assert(chan
->buffer_credentials
.is_set
);
2376 if (chan
->switch_timer_enabled
== 1) {
2377 consumer_timer_switch_stop(chan
);
2379 for (i
= 0; i
< chan
->nr_stream_fds
; i
++) {
2382 ret
= close(chan
->stream_fds
[i
]);
2386 if (chan
->shm_path
[0]) {
2387 char shm_path
[PATH_MAX
];
2389 ret
= get_stream_shm_path(shm_path
, chan
->shm_path
, i
);
2391 ERR("Cannot get stream shm path");
2393 ret
= run_as_unlink(shm_path
,
2394 chan
->buffer_credentials
.value
.uid
,
2395 chan
->buffer_credentials
.value
.gid
);
2397 PERROR("unlink %s", shm_path
);
2403 void lttng_ustconsumer_free_channel(struct lttng_consumer_channel
*chan
)
2406 assert(chan
->uchan
);
2407 assert(chan
->buffer_credentials
.is_set
);
2409 consumer_metadata_cache_destroy(chan
);
2410 ustctl_destroy_channel(chan
->uchan
);
2411 /* Try to rmdir all directories under shm_path root. */
2412 if (chan
->root_shm_path
[0]) {
2413 (void) run_as_rmdir_recursive(chan
->root_shm_path
,
2414 chan
->buffer_credentials
.value
.uid
,
2415 chan
->buffer_credentials
.value
.gid
,
2416 LTTNG_DIRECTORY_HANDLE_SKIP_NON_EMPTY_FLAG
);
2418 free(chan
->stream_fds
);
2421 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream
*stream
)
2424 assert(stream
->ustream
);
2426 if (stream
->chan
->switch_timer_enabled
== 1) {
2427 consumer_timer_switch_stop(stream
->chan
);
2429 ustctl_destroy_stream(stream
->ustream
);
2432 int lttng_ustconsumer_get_wakeup_fd(struct lttng_consumer_stream
*stream
)
2435 assert(stream
->ustream
);
2437 return ustctl_stream_get_wakeup_fd(stream
->ustream
);
2440 int lttng_ustconsumer_close_wakeup_fd(struct lttng_consumer_stream
*stream
)
2443 assert(stream
->ustream
);
2445 return ustctl_stream_close_wakeup_fd(stream
->ustream
);
2449 * Populate index values of a UST stream. Values are set in big endian order.
2451 * Return 0 on success or else a negative value.
2453 static int get_index_values(struct ctf_packet_index
*index
,
2454 struct ustctl_consumer_stream
*ustream
)
2457 uint64_t packet_size
, content_size
, timestamp_begin
, timestamp_end
,
2458 events_discarded
, stream_id
, stream_instance_id
,
2461 ret
= ustctl_get_timestamp_begin(ustream
, ×tamp_begin
);
2463 PERROR("ustctl_get_timestamp_begin");
2467 ret
= ustctl_get_timestamp_end(ustream
, ×tamp_end
);
2469 PERROR("ustctl_get_timestamp_end");
2473 ret
= ustctl_get_events_discarded(ustream
, &events_discarded
);
2475 PERROR("ustctl_get_events_discarded");
2479 ret
= ustctl_get_content_size(ustream
, &content_size
);
2481 PERROR("ustctl_get_content_size");
2485 ret
= ustctl_get_packet_size(ustream
, &packet_size
);
2487 PERROR("ustctl_get_packet_size");
2491 ret
= ustctl_get_stream_id(ustream
, &stream_id
);
2493 PERROR("ustctl_get_stream_id");
2497 ret
= ustctl_get_instance_id(ustream
, &stream_instance_id
);
2499 PERROR("ustctl_get_instance_id");
2503 ret
= ustctl_get_sequence_number(ustream
, &packet_seq_num
);
2505 PERROR("ustctl_get_sequence_number");
2509 *index
= (typeof(*index
)) {
2510 .offset
= index
->offset
,
2511 .packet_size
= htobe64(packet_size
),
2512 .content_size
= htobe64(content_size
),
2513 .timestamp_begin
= htobe64(timestamp_begin
),
2514 .timestamp_end
= htobe64(timestamp_end
),
2515 .events_discarded
= htobe64(events_discarded
),
2516 .stream_id
= htobe64(stream_id
),
2517 .stream_instance_id
= htobe64(stream_instance_id
),
2518 .packet_seq_num
= htobe64(packet_seq_num
),
2526 void metadata_stream_reset_cache(struct lttng_consumer_stream
*stream
,
2527 struct consumer_metadata_cache
*cache
)
2529 DBG("Metadata stream update to version %" PRIu64
,
2531 stream
->ust_metadata_pushed
= 0;
2532 stream
->metadata_version
= cache
->version
;
2533 stream
->reset_metadata_flag
= 1;
2537 * Check if the version of the metadata stream and metadata cache match.
2538 * If the cache got updated, reset the metadata stream.
2539 * The stream lock and metadata cache lock MUST be held.
2540 * Return 0 on success, a negative value on error.
2543 int metadata_stream_check_version(struct lttng_consumer_stream
*stream
)
2546 struct consumer_metadata_cache
*cache
= stream
->chan
->metadata_cache
;
2548 if (cache
->version
== stream
->metadata_version
) {
2551 metadata_stream_reset_cache(stream
, cache
);
2558 * Write up to one packet from the metadata cache to the channel.
2560 * Returns the number of bytes pushed in the cache, or a negative value
2564 int commit_one_metadata_packet(struct lttng_consumer_stream
*stream
)
2569 pthread_mutex_lock(&stream
->chan
->metadata_cache
->lock
);
2570 ret
= metadata_stream_check_version(stream
);
2574 if (stream
->chan
->metadata_cache
->max_offset
2575 == stream
->ust_metadata_pushed
) {
2580 write_len
= ustctl_write_one_packet_to_channel(stream
->chan
->uchan
,
2581 &stream
->chan
->metadata_cache
->data
[stream
->ust_metadata_pushed
],
2582 stream
->chan
->metadata_cache
->max_offset
2583 - stream
->ust_metadata_pushed
);
2584 assert(write_len
!= 0);
2585 if (write_len
< 0) {
2586 ERR("Writing one metadata packet");
2590 stream
->ust_metadata_pushed
+= write_len
;
2592 assert(stream
->chan
->metadata_cache
->max_offset
>=
2593 stream
->ust_metadata_pushed
);
2597 * Switch packet (but don't open the next one) on every commit of
2598 * a metadata packet. Since the subbuffer is fully filled (with padding,
2599 * if needed), the stream is "quiescent" after this commit.
2601 ustctl_flush_buffer(stream
->ustream
, 1);
2602 stream
->quiescent
= true;
2604 pthread_mutex_unlock(&stream
->chan
->metadata_cache
->lock
);
2610 * Sync metadata meaning request them to the session daemon and snapshot to the
2611 * metadata thread can consumer them.
2613 * Metadata stream lock is held here, but we need to release it when
2614 * interacting with sessiond, else we cause a deadlock with live
2615 * awaiting on metadata to be pushed out.
2617 * The RCU read side lock must be held by the caller.
2619 * Return 0 if new metadatda is available, EAGAIN if the metadata stream
2620 * is empty or a negative value on error.
2622 int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data
*ctx
,
2623 struct lttng_consumer_stream
*metadata_stream
)
2627 struct lttng_consumer_channel
*metadata_channel
;
2630 assert(metadata_stream
);
2632 metadata_channel
= metadata_stream
->chan
;
2633 pthread_mutex_unlock(&metadata_stream
->lock
);
2635 * Request metadata from the sessiond, but don't wait for the flush
2636 * because we locked the metadata thread.
2638 ret
= lttng_ustconsumer_request_metadata(ctx
, metadata_channel
, 0, 0);
2639 pthread_mutex_lock(&metadata_stream
->lock
);
2645 * The metadata stream and channel can be deleted while the
2646 * metadata stream lock was released. The streamed is checked
2647 * for deletion before we use it further.
2649 * Note that it is safe to access a logically-deleted stream since its
2650 * existence is still guaranteed by the RCU read side lock. However,
2651 * it should no longer be used. The close/deletion of the metadata
2652 * channel and stream already guarantees that all metadata has been
2653 * consumed. Therefore, there is nothing left to do in this function.
2655 if (consumer_stream_is_deleted(metadata_stream
)) {
2656 DBG("Metadata stream %" PRIu64
" was deleted during the metadata synchronization",
2657 metadata_stream
->key
);
2662 ret
= commit_one_metadata_packet(metadata_stream
);
2665 } else if (ret
> 0) {
2669 ret
= ustctl_snapshot(metadata_stream
->ustream
);
2671 if (errno
!= EAGAIN
) {
2672 ERR("Sync metadata, taking UST snapshot");
2675 DBG("No new metadata when syncing them.");
2676 /* No new metadata, exit. */
2682 * After this flush, we still need to extract metadata.
2693 * Return 0 on success else a negative value.
2695 static int notify_if_more_data(struct lttng_consumer_stream
*stream
,
2696 struct lttng_consumer_local_data
*ctx
)
2699 struct ustctl_consumer_stream
*ustream
;
2704 ustream
= stream
->ustream
;
2707 * First, we are going to check if there is a new subbuffer available
2708 * before reading the stream wait_fd.
2710 /* Get the next subbuffer */
2711 ret
= ustctl_get_next_subbuf(ustream
);
2713 /* No more data found, flag the stream. */
2714 stream
->has_data
= 0;
2719 ret
= ustctl_put_subbuf(ustream
);
2722 /* This stream still has data. Flag it and wake up the data thread. */
2723 stream
->has_data
= 1;
2725 if (stream
->monitor
&& !stream
->hangup_flush_done
&& !ctx
->has_wakeup
) {
2728 writelen
= lttng_pipe_write(ctx
->consumer_wakeup_pipe
, "!", 1);
2729 if (writelen
< 0 && errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
2734 /* The wake up pipe has been notified. */
2735 ctx
->has_wakeup
= 1;
2744 int update_stream_stats(struct lttng_consumer_stream
*stream
)
2747 uint64_t seq
, discarded
;
2749 ret
= ustctl_get_sequence_number(stream
->ustream
, &seq
);
2751 PERROR("ustctl_get_sequence_number");
2755 * Start the sequence when we extract the first packet in case we don't
2756 * start at 0 (for example if a consumer is not connected to the
2757 * session immediately after the beginning).
2759 if (stream
->last_sequence_number
== -1ULL) {
2760 stream
->last_sequence_number
= seq
;
2761 } else if (seq
> stream
->last_sequence_number
) {
2762 stream
->chan
->lost_packets
+= seq
-
2763 stream
->last_sequence_number
- 1;
2765 /* seq <= last_sequence_number */
2766 ERR("Sequence number inconsistent : prev = %" PRIu64
2767 ", current = %" PRIu64
,
2768 stream
->last_sequence_number
, seq
);
2772 stream
->last_sequence_number
= seq
;
2774 ret
= ustctl_get_events_discarded(stream
->ustream
, &discarded
);
2776 PERROR("kernctl_get_events_discarded");
2779 if (discarded
< stream
->last_discarded_events
) {
2781 * Overflow has occurred. We assume only one wrap-around
2784 stream
->chan
->discarded_events
+=
2785 (1ULL << (CAA_BITS_PER_LONG
- 1)) -
2786 stream
->last_discarded_events
+ discarded
;
2788 stream
->chan
->discarded_events
+= discarded
-
2789 stream
->last_discarded_events
;
2791 stream
->last_discarded_events
= discarded
;
2799 * Read subbuffer from the given stream.
2801 * Stream and channel locks MUST be acquired by the caller.
2803 * Return 0 on success else a negative value.
2805 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream
*stream
,
2806 struct lttng_consumer_local_data
*ctx
)
2808 unsigned long len
, subbuf_size
, padding
;
2809 int err
, write_index
= 1, rotation_ret
;
2811 struct ustctl_consumer_stream
*ustream
;
2812 struct ctf_packet_index index
;
2813 const char *subbuf_addr
;
2814 struct lttng_buffer_view subbuf_view
;
2817 assert(stream
->ustream
);
2820 DBG("In UST read_subbuffer (wait_fd: %d, name: %s)", stream
->wait_fd
,
2823 /* Ease our life for what's next. */
2824 ustream
= stream
->ustream
;
2827 * We can consume the 1 byte written into the wait_fd by UST. Don't trigger
2828 * error if we cannot read this one byte (read returns 0), or if the error
2829 * is EAGAIN or EWOULDBLOCK.
2831 * This is only done when the stream is monitored by a thread, before the
2832 * flush is done after a hangup and if the stream is not flagged with data
2833 * since there might be nothing to consume in the wait fd but still have
2834 * data available flagged by the consumer wake up pipe.
2836 if (stream
->monitor
&& !stream
->hangup_flush_done
&& !stream
->has_data
) {
2840 readlen
= lttng_read(stream
->wait_fd
, &dummy
, 1);
2841 if (readlen
< 0 && errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
2848 * If the stream was flagged to be ready for rotation before we extract the
2849 * next packet, rotate it now.
2851 if (stream
->rotate_ready
) {
2852 DBG("Rotate stream before extracting data");
2853 rotation_ret
= lttng_consumer_rotate_stream(ctx
, stream
);
2854 if (rotation_ret
< 0) {
2855 ERR("Stream rotation error");
2862 /* Get the next subbuffer */
2863 err
= ustctl_get_next_subbuf(ustream
);
2866 * Populate metadata info if the existing info has
2867 * already been read.
2869 if (stream
->metadata_flag
) {
2870 ret
= commit_one_metadata_packet(stream
);
2877 ret
= err
; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
2879 * This is a debug message even for single-threaded consumer,
2880 * because poll() have more relaxed criterions than get subbuf,
2881 * so get_subbuf may fail for short race windows where poll()
2882 * would issue wakeups.
2884 DBG("Reserving sub buffer failed (everything is normal, "
2885 "it is due to concurrency) [ret: %d]", err
);
2888 assert(stream
->chan
->output
== CONSUMER_CHANNEL_MMAP
);
2890 if (!stream
->metadata_flag
) {
2891 index
.offset
= htobe64(stream
->out_fd_offset
);
2892 ret
= get_index_values(&index
, ustream
);
2894 err
= ustctl_put_subbuf(ustream
);
2899 /* Update the stream's sequence and discarded events count. */
2900 ret
= update_stream_stats(stream
);
2902 PERROR("kernctl_get_events_discarded");
2903 err
= ustctl_put_subbuf(ustream
);
2911 /* Get the full padded subbuffer size */
2912 err
= ustctl_get_padded_subbuf_size(ustream
, &len
);
2915 /* Get subbuffer data size (without padding) */
2916 err
= ustctl_get_subbuf_size(ustream
, &subbuf_size
);
2919 /* Make sure we don't get a subbuffer size bigger than the padded */
2920 assert(len
>= subbuf_size
);
2922 padding
= len
- subbuf_size
;
2924 ret
= get_current_subbuf_addr(stream
, &subbuf_addr
);
2927 goto error_put_subbuf
;
2930 subbuf_view
= lttng_buffer_view_init(subbuf_addr
, 0, len
);
2932 /* write the subbuffer to the tracefile */
2933 ret
= lttng_consumer_on_read_subbuffer_mmap(
2934 ctx
, stream
, &subbuf_view
, padding
, &index
);
2936 * The mmap operation should write subbuf_size amount of data when
2937 * network streaming or the full padding (len) size when we are _not_
2940 if ((ret
!= subbuf_size
&& stream
->net_seq_idx
!= (uint64_t) -1ULL) ||
2941 (ret
!= len
&& stream
->net_seq_idx
== (uint64_t) -1ULL)) {
2943 * Display the error but continue processing to try to release the
2944 * subbuffer. This is a DBG statement since any unexpected kill or
2945 * signal, the application gets unregistered, relayd gets closed or
2946 * anything that affects the buffer lifetime will trigger this error.
2947 * So, for the sake of the user, don't print this error since it can
2948 * happen and it is OK with the code flow.
2950 DBG("Error writing to tracefile "
2951 "(ret: %ld != len: %lu != subbuf_size: %lu)",
2952 ret
, len
, subbuf_size
);
2956 err
= ustctl_put_next_subbuf(ustream
);
2960 * This will consumer the byte on the wait_fd if and only if there is not
2961 * next subbuffer to be acquired.
2963 if (!stream
->metadata_flag
) {
2964 ret
= notify_if_more_data(stream
, ctx
);
2970 /* Write index if needed. */
2975 if (stream
->chan
->live_timer_interval
&& !stream
->metadata_flag
) {
2977 * In live, block until all the metadata is sent.
2979 pthread_mutex_lock(&stream
->metadata_timer_lock
);
2980 assert(!stream
->missed_metadata_flush
);
2981 stream
->waiting_on_metadata
= true;
2982 pthread_mutex_unlock(&stream
->metadata_timer_lock
);
2984 err
= consumer_stream_sync_metadata(ctx
, stream
->session_id
);
2986 pthread_mutex_lock(&stream
->metadata_timer_lock
);
2987 stream
->waiting_on_metadata
= false;
2988 if (stream
->missed_metadata_flush
) {
2989 stream
->missed_metadata_flush
= false;
2990 pthread_mutex_unlock(&stream
->metadata_timer_lock
);
2991 (void) consumer_flush_ust_index(stream
);
2993 pthread_mutex_unlock(&stream
->metadata_timer_lock
);
3001 assert(!stream
->metadata_flag
);
3002 err
= consumer_stream_write_index(stream
, &index
);
3009 * After extracting the packet, we check if the stream is now ready to be
3010 * rotated and perform the action immediately.
3012 rotation_ret
= lttng_consumer_stream_is_rotate_ready(stream
);
3013 if (rotation_ret
== 1) {
3014 rotation_ret
= lttng_consumer_rotate_stream(ctx
, stream
);
3015 if (rotation_ret
< 0) {
3016 ERR("Stream rotation error");
3020 } else if (rotation_ret
< 0) {
3021 ERR("Checking if stream is ready to rotate");
3030 * Called when a stream is created.
3032 * Return 0 on success or else a negative value.
3034 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
)
3041 * Don't create anything if this is set for streaming or if there is
3042 * no current trace chunk on the parent channel.
3044 if (stream
->net_seq_idx
== (uint64_t) -1ULL && stream
->chan
->monitor
&&
3045 stream
->chan
->trace_chunk
) {
3046 ret
= consumer_stream_create_output_files(stream
, true);
3058 * Check if data is still being extracted from the buffers for a specific
3059 * stream. Consumer data lock MUST be acquired before calling this function
3060 * and the stream lock.
3062 * Return 1 if the traced data are still getting read else 0 meaning that the
3063 * data is available for trace viewer reading.
3065 int lttng_ustconsumer_data_pending(struct lttng_consumer_stream
*stream
)
3070 assert(stream
->ustream
);
3072 DBG("UST consumer checking data pending");
3074 if (stream
->endpoint_status
!= CONSUMER_ENDPOINT_ACTIVE
) {
3079 if (stream
->chan
->type
== CONSUMER_CHANNEL_TYPE_METADATA
) {
3080 uint64_t contiguous
, pushed
;
3082 /* Ease our life a bit. */
3083 contiguous
= stream
->chan
->metadata_cache
->max_offset
;
3084 pushed
= stream
->ust_metadata_pushed
;
3087 * We can simply check whether all contiguously available data
3088 * has been pushed to the ring buffer, since the push operation
3089 * is performed within get_next_subbuf(), and because both
3090 * get_next_subbuf() and put_next_subbuf() are issued atomically
3091 * thanks to the stream lock within
3092 * lttng_ustconsumer_read_subbuffer(). This basically means that
3093 * whetnever ust_metadata_pushed is incremented, the associated
3094 * metadata has been consumed from the metadata stream.
3096 DBG("UST consumer metadata pending check: contiguous %" PRIu64
" vs pushed %" PRIu64
,
3097 contiguous
, pushed
);
3098 assert(((int64_t) (contiguous
- pushed
)) >= 0);
3099 if ((contiguous
!= pushed
) ||
3100 (((int64_t) contiguous
- pushed
) > 0 || contiguous
== 0)) {
3101 ret
= 1; /* Data is pending */
3105 ret
= ustctl_get_next_subbuf(stream
->ustream
);
3108 * There is still data so let's put back this
3111 ret
= ustctl_put_subbuf(stream
->ustream
);
3113 ret
= 1; /* Data is pending */
3118 /* Data is NOT pending so ready to be read. */
3126 * Stop a given metadata channel timer if enabled and close the wait fd which
3127 * is the poll pipe of the metadata stream.
3129 * This MUST be called with the metadata channel lock acquired.
3131 void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel
*metadata
)
3136 assert(metadata
->type
== CONSUMER_CHANNEL_TYPE_METADATA
);
3138 DBG("Closing metadata channel key %" PRIu64
, metadata
->key
);
3140 if (metadata
->switch_timer_enabled
== 1) {
3141 consumer_timer_switch_stop(metadata
);
3144 if (!metadata
->metadata_stream
) {
3149 * Closing write side so the thread monitoring the stream wakes up if any
3150 * and clean the metadata stream.
3152 if (metadata
->metadata_stream
->ust_metadata_poll_pipe
[1] >= 0) {
3153 ret
= close(metadata
->metadata_stream
->ust_metadata_poll_pipe
[1]);
3155 PERROR("closing metadata pipe write side");
3157 metadata
->metadata_stream
->ust_metadata_poll_pipe
[1] = -1;
3165 * Close every metadata stream wait fd of the metadata hash table. This
3166 * function MUST be used very carefully so not to run into a race between the
3167 * metadata thread handling streams and this function closing their wait fd.
3169 * For UST, this is used when the session daemon hangs up. Its the metadata