2 * Copyright (C) 2011 EfficiOS Inc.
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
16 #include <sys/socket.h>
17 #include <sys/types.h>
23 #include <bin/lttng-consumerd/health-consumerd.h>
24 #include <common/common.h>
25 #include <common/kernel-ctl/kernel-ctl.h>
26 #include <common/sessiond-comm/sessiond-comm.h>
27 #include <common/sessiond-comm/relayd.h>
28 #include <common/compat/fcntl.h>
29 #include <common/compat/endian.h>
30 #include <common/pipe.h>
31 #include <common/relayd/relayd.h>
32 #include <common/utils.h>
33 #include <common/consumer/consumer-stream.h>
34 #include <common/index/index.h>
35 #include <common/consumer/consumer-timer.h>
36 #include <common/optional.h>
37 #include <common/buffer-view.h>
38 #include <common/consumer/consumer.h>
39 #include <common/consumer/metadata-bucket.h>
41 #include "kernel-consumer.h"
43 extern struct lttng_consumer_global_data the_consumer_data
;
44 extern int consumer_poll_timeout
;
47 * Take a snapshot for a specific fd
49 * Returns 0 on success, < 0 on error
51 int lttng_kconsumer_take_snapshot(struct lttng_consumer_stream
*stream
)
54 int infd
= stream
->wait_fd
;
56 ret
= kernctl_snapshot(infd
);
58 * -EAGAIN is not an error, it just means that there is no data to
61 if (ret
!= 0 && ret
!= -EAGAIN
) {
62 PERROR("Getting sub-buffer snapshot.");
69 * Sample consumed and produced positions for a specific fd.
71 * Returns 0 on success, < 0 on error.
73 int lttng_kconsumer_sample_snapshot_positions(
74 struct lttng_consumer_stream
*stream
)
78 return kernctl_snapshot_sample_positions(stream
->wait_fd
);
82 * Get the produced position
84 * Returns 0 on success, < 0 on error
86 int lttng_kconsumer_get_produced_snapshot(struct lttng_consumer_stream
*stream
,
90 int infd
= stream
->wait_fd
;
92 ret
= kernctl_snapshot_get_produced(infd
, pos
);
94 PERROR("kernctl_snapshot_get_produced");
101 * Get the consumerd position
103 * Returns 0 on success, < 0 on error
105 int lttng_kconsumer_get_consumed_snapshot(struct lttng_consumer_stream
*stream
,
109 int infd
= stream
->wait_fd
;
111 ret
= kernctl_snapshot_get_consumed(infd
, pos
);
113 PERROR("kernctl_snapshot_get_consumed");
120 int get_current_subbuf_addr(struct lttng_consumer_stream
*stream
,
124 unsigned long mmap_offset
;
125 const char *mmap_base
= (const char *) stream
->mmap_base
;
127 ret
= kernctl_get_mmap_read_offset(stream
->wait_fd
, &mmap_offset
);
129 PERROR("Failed to get mmap read offset");
133 *addr
= mmap_base
+ mmap_offset
;
139 * Take a snapshot of all the stream of a channel
140 * RCU read-side lock must be held across this function to ensure existence of
143 * Returns 0 on success, < 0 on error
145 static int lttng_kconsumer_snapshot_channel(
146 struct lttng_consumer_channel
*channel
,
147 uint64_t key
, char *path
, uint64_t relayd_id
,
148 uint64_t nb_packets_per_stream
,
149 struct lttng_consumer_local_data
*ctx
)
152 struct lttng_consumer_stream
*stream
;
154 DBG("Kernel consumer snapshot channel %" PRIu64
, key
);
156 /* Prevent channel modifications while we perform the snapshot.*/
157 pthread_mutex_lock(&channel
->lock
);
161 /* Splice is not supported yet for channel snapshot. */
162 if (channel
->output
!= CONSUMER_CHANNEL_MMAP
) {
163 ERR("Unsupported output type for channel \"%s\": mmap output is required to record a snapshot",
169 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
170 unsigned long consumed_pos
, produced_pos
;
172 health_code_update();
175 * Lock stream because we are about to change its state.
177 pthread_mutex_lock(&stream
->lock
);
179 LTTNG_ASSERT(channel
->trace_chunk
);
180 if (!lttng_trace_chunk_get(channel
->trace_chunk
)) {
182 * Can't happen barring an internal error as the channel
183 * holds a reference to the trace chunk.
185 ERR("Failed to acquire reference to channel's trace chunk");
189 LTTNG_ASSERT(!stream
->trace_chunk
);
190 stream
->trace_chunk
= channel
->trace_chunk
;
193 * Assign the received relayd ID so we can use it for streaming. The streams
194 * are not visible to anyone so this is OK to change it.
196 stream
->net_seq_idx
= relayd_id
;
197 channel
->relayd_id
= relayd_id
;
198 if (relayd_id
!= (uint64_t) -1ULL) {
199 ret
= consumer_send_relayd_stream(stream
, path
);
201 ERR("sending stream to relayd");
205 ret
= consumer_stream_create_output_files(stream
,
210 DBG("Kernel consumer snapshot stream (%" PRIu64
")",
214 ret
= kernctl_buffer_flush_empty(stream
->wait_fd
);
217 * Doing a buffer flush which does not take into
218 * account empty packets. This is not perfect
219 * for stream intersection, but required as a
220 * fall-back when "flush_empty" is not
221 * implemented by lttng-modules.
223 ret
= kernctl_buffer_flush(stream
->wait_fd
);
225 ERR("Failed to flush kernel stream");
231 ret
= lttng_kconsumer_take_snapshot(stream
);
233 ERR("Taking kernel snapshot");
237 ret
= lttng_kconsumer_get_produced_snapshot(stream
, &produced_pos
);
239 ERR("Produced kernel snapshot position");
243 ret
= lttng_kconsumer_get_consumed_snapshot(stream
, &consumed_pos
);
245 ERR("Consumerd kernel snapshot position");
249 consumed_pos
= consumer_get_consume_start_pos(consumed_pos
,
250 produced_pos
, nb_packets_per_stream
,
251 stream
->max_sb_size
);
253 while ((long) (consumed_pos
- produced_pos
) < 0) {
255 unsigned long len
, padded_len
;
256 const char *subbuf_addr
;
257 struct lttng_buffer_view subbuf_view
;
259 health_code_update();
260 DBG("Kernel consumer taking snapshot at pos %lu", consumed_pos
);
262 ret
= kernctl_get_subbuf(stream
->wait_fd
, &consumed_pos
);
264 if (ret
!= -EAGAIN
) {
265 PERROR("kernctl_get_subbuf snapshot");
268 DBG("Kernel consumer get subbuf failed. Skipping it.");
269 consumed_pos
+= stream
->max_sb_size
;
270 stream
->chan
->lost_packets
++;
274 ret
= kernctl_get_subbuf_size(stream
->wait_fd
, &len
);
276 ERR("Snapshot kernctl_get_subbuf_size");
277 goto error_put_subbuf
;
280 ret
= kernctl_get_padded_subbuf_size(stream
->wait_fd
, &padded_len
);
282 ERR("Snapshot kernctl_get_padded_subbuf_size");
283 goto error_put_subbuf
;
286 ret
= get_current_subbuf_addr(stream
, &subbuf_addr
);
288 goto error_put_subbuf
;
291 subbuf_view
= lttng_buffer_view_init(
292 subbuf_addr
, 0, padded_len
);
293 read_len
= lttng_consumer_on_read_subbuffer_mmap(
294 stream
, &subbuf_view
,
297 * We write the padded len in local tracefiles but the data len
298 * when using a relay. Display the error but continue processing
299 * to try to release the subbuffer.
301 if (relayd_id
!= (uint64_t) -1ULL) {
302 if (read_len
!= len
) {
303 ERR("Error sending to the relay (ret: %zd != len: %lu)",
307 if (read_len
!= padded_len
) {
308 ERR("Error writing to tracefile (ret: %zd != len: %lu)",
309 read_len
, padded_len
);
313 ret
= kernctl_put_subbuf(stream
->wait_fd
);
315 ERR("Snapshot kernctl_put_subbuf");
318 consumed_pos
+= stream
->max_sb_size
;
321 if (relayd_id
== (uint64_t) -1ULL) {
322 if (stream
->out_fd
>= 0) {
323 ret
= close(stream
->out_fd
);
325 PERROR("Kernel consumer snapshot close out_fd");
331 close_relayd_stream(stream
);
332 stream
->net_seq_idx
= (uint64_t) -1ULL;
334 lttng_trace_chunk_put(stream
->trace_chunk
);
335 stream
->trace_chunk
= NULL
;
336 pthread_mutex_unlock(&stream
->lock
);
344 ret
= kernctl_put_subbuf(stream
->wait_fd
);
346 ERR("Snapshot kernctl_put_subbuf error path");
349 pthread_mutex_unlock(&stream
->lock
);
352 pthread_mutex_unlock(&channel
->lock
);
357 * Read the whole metadata available for a snapshot.
358 * RCU read-side lock must be held across this function to ensure existence of
361 * Returns 0 on success, < 0 on error
363 static int lttng_kconsumer_snapshot_metadata(
364 struct lttng_consumer_channel
*metadata_channel
,
365 uint64_t key
, char *path
, uint64_t relayd_id
,
366 struct lttng_consumer_local_data
*ctx
)
368 int ret
, use_relayd
= 0;
370 struct lttng_consumer_stream
*metadata_stream
;
374 DBG("Kernel consumer snapshot metadata with key %" PRIu64
" at path %s",
379 metadata_stream
= metadata_channel
->metadata_stream
;
380 LTTNG_ASSERT(metadata_stream
);
382 metadata_stream
->read_subbuffer_ops
.lock(metadata_stream
);
383 LTTNG_ASSERT(metadata_channel
->trace_chunk
);
384 LTTNG_ASSERT(metadata_stream
->trace_chunk
);
386 /* Flag once that we have a valid relayd for the stream. */
387 if (relayd_id
!= (uint64_t) -1ULL) {
392 ret
= consumer_send_relayd_stream(metadata_stream
, path
);
397 ret
= consumer_stream_create_output_files(metadata_stream
,
405 health_code_update();
407 ret_read
= lttng_consumer_read_subbuffer(metadata_stream
, ctx
, true);
409 ERR("Kernel snapshot reading metadata subbuffer (ret: %zd)",
414 } while (ret_read
> 0);
417 close_relayd_stream(metadata_stream
);
418 metadata_stream
->net_seq_idx
= (uint64_t) -1ULL;
420 if (metadata_stream
->out_fd
>= 0) {
421 ret
= close(metadata_stream
->out_fd
);
423 PERROR("Kernel consumer snapshot metadata close out_fd");
425 * Don't go on error here since the snapshot was successful at this
426 * point but somehow the close failed.
429 metadata_stream
->out_fd
= -1;
430 lttng_trace_chunk_put(metadata_stream
->trace_chunk
);
431 metadata_stream
->trace_chunk
= NULL
;
437 metadata_stream
->read_subbuffer_ops
.unlock(metadata_stream
);
438 cds_list_del(&metadata_stream
->send_node
);
439 consumer_stream_destroy(metadata_stream
, NULL
);
440 metadata_channel
->metadata_stream
= NULL
;
446 * Receive command from session daemon and process it.
448 * Return 1 on success else a negative value or 0.
450 int lttng_kconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
451 int sock
, struct pollfd
*consumer_sockpoll
)
454 enum lttcomm_return_code ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
455 struct lttcomm_consumer_msg msg
;
457 health_code_update();
462 ret_recv
= lttcomm_recv_unix_sock(sock
, &msg
, sizeof(msg
));
463 if (ret_recv
!= sizeof(msg
)) {
465 lttng_consumer_send_error(ctx
,
466 LTTCOMM_CONSUMERD_ERROR_RECV_CMD
);
473 health_code_update();
475 /* Deprecated command */
476 LTTNG_ASSERT(msg
.cmd_type
!= LTTNG_CONSUMER_STOP
);
478 health_code_update();
480 /* relayd needs RCU read-side protection */
483 switch (msg
.cmd_type
) {
484 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET
:
486 uint32_t major
= msg
.u
.relayd_sock
.major
;
487 uint32_t minor
= msg
.u
.relayd_sock
.minor
;
488 enum lttcomm_sock_proto protocol
= (enum lttcomm_sock_proto
)
489 msg
.u
.relayd_sock
.relayd_socket_protocol
;
491 /* Session daemon status message are handled in the following call. */
492 consumer_add_relayd_socket(msg
.u
.relayd_sock
.net_index
,
493 msg
.u
.relayd_sock
.type
, ctx
, sock
,
494 consumer_sockpoll
, msg
.u
.relayd_sock
.session_id
,
495 msg
.u
.relayd_sock
.relayd_session_id
, major
,
499 case LTTNG_CONSUMER_ADD_CHANNEL
:
501 struct lttng_consumer_channel
*new_channel
;
502 int ret_send_status
, ret_add_channel
= 0;
503 const uint64_t chunk_id
= msg
.u
.channel
.chunk_id
.value
;
505 health_code_update();
507 /* First send a status message before receiving the fds. */
508 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
509 if (ret_send_status
< 0) {
510 /* Somehow, the session daemon is not responding anymore. */
514 health_code_update();
516 DBG("consumer_add_channel %" PRIu64
, msg
.u
.channel
.channel_key
);
517 new_channel
= consumer_allocate_channel(msg
.u
.channel
.channel_key
,
518 msg
.u
.channel
.session_id
,
519 msg
.u
.channel
.chunk_id
.is_set
?
521 msg
.u
.channel
.pathname
,
523 msg
.u
.channel
.relayd_id
, msg
.u
.channel
.output
,
524 msg
.u
.channel
.tracefile_size
,
525 msg
.u
.channel
.tracefile_count
, 0,
526 msg
.u
.channel
.monitor
,
527 msg
.u
.channel
.live_timer_interval
,
528 msg
.u
.channel
.is_live
,
530 if (new_channel
== NULL
) {
531 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
534 new_channel
->nb_init_stream_left
= msg
.u
.channel
.nb_init_streams
;
535 switch (msg
.u
.channel
.output
) {
536 case LTTNG_EVENT_SPLICE
:
537 new_channel
->output
= CONSUMER_CHANNEL_SPLICE
;
539 case LTTNG_EVENT_MMAP
:
540 new_channel
->output
= CONSUMER_CHANNEL_MMAP
;
543 ERR("Channel output unknown %d", msg
.u
.channel
.output
);
547 /* Translate and save channel type. */
548 switch (msg
.u
.channel
.type
) {
549 case CONSUMER_CHANNEL_TYPE_DATA
:
550 case CONSUMER_CHANNEL_TYPE_METADATA
:
551 new_channel
->type
= (consumer_channel_type
) msg
.u
.channel
.type
;
558 health_code_update();
560 if (ctx
->on_recv_channel
!= NULL
) {
561 int ret_recv_channel
=
562 ctx
->on_recv_channel(new_channel
);
563 if (ret_recv_channel
== 0) {
564 ret_add_channel
= consumer_add_channel(
566 } else if (ret_recv_channel
< 0) {
571 consumer_add_channel(new_channel
, ctx
);
573 if (msg
.u
.channel
.type
== CONSUMER_CHANNEL_TYPE_DATA
&&
575 int monitor_start_ret
;
577 DBG("Consumer starting monitor timer");
578 consumer_timer_live_start(new_channel
,
579 msg
.u
.channel
.live_timer_interval
);
580 monitor_start_ret
= consumer_timer_monitor_start(
582 msg
.u
.channel
.monitor_timer_interval
);
583 if (monitor_start_ret
< 0) {
584 ERR("Starting channel monitoring timer failed");
589 health_code_update();
591 /* If we received an error in add_channel, we need to report it. */
592 if (ret_add_channel
< 0) {
593 ret_send_status
= consumer_send_status_msg(
594 sock
, ret_add_channel
);
595 if (ret_send_status
< 0) {
603 case LTTNG_CONSUMER_ADD_STREAM
:
606 struct lttng_pipe
*stream_pipe
;
607 struct lttng_consumer_stream
*new_stream
;
608 struct lttng_consumer_channel
*channel
;
610 int ret_send_status
, ret_poll
, ret_get_max_subbuf_size
;
611 ssize_t ret_pipe_write
, ret_recv
;
614 * Get stream's channel reference. Needed when adding the stream to the
617 channel
= consumer_find_channel(msg
.u
.stream
.channel_key
);
620 * We could not find the channel. Can happen if cpu hotplug
621 * happens while tearing down.
623 ERR("Unable to find channel key %" PRIu64
, msg
.u
.stream
.channel_key
);
624 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
627 health_code_update();
629 /* First send a status message before receiving the fds. */
630 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
631 if (ret_send_status
< 0) {
632 /* Somehow, the session daemon is not responding anymore. */
633 goto error_add_stream_fatal
;
636 health_code_update();
638 if (ret_code
!= LTTCOMM_CONSUMERD_SUCCESS
) {
639 /* Channel was not found. */
640 goto error_add_stream_nosignal
;
645 ret_poll
= lttng_consumer_poll_socket(consumer_sockpoll
);
648 goto error_add_stream_fatal
;
651 health_code_update();
653 /* Get stream file descriptor from socket */
654 ret_recv
= lttcomm_recv_fds_unix_sock(sock
, &fd
, 1);
655 if (ret_recv
!= sizeof(fd
)) {
656 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_FD
);
661 health_code_update();
664 * Send status code to session daemon only if the recv works. If the
665 * above recv() failed, the session daemon is notified through the
666 * error socket and the teardown is eventually done.
668 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
669 if (ret_send_status
< 0) {
670 /* Somehow, the session daemon is not responding anymore. */
671 goto error_add_stream_nosignal
;
674 health_code_update();
676 pthread_mutex_lock(&channel
->lock
);
677 new_stream
= consumer_stream_create(
684 channel
->trace_chunk
,
689 if (new_stream
== NULL
) {
694 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
697 pthread_mutex_unlock(&channel
->lock
);
698 goto error_add_stream_nosignal
;
701 new_stream
->wait_fd
= fd
;
702 ret_get_max_subbuf_size
= kernctl_get_max_subbuf_size(
703 new_stream
->wait_fd
, &new_stream
->max_sb_size
);
704 if (ret_get_max_subbuf_size
< 0) {
705 pthread_mutex_unlock(&channel
->lock
);
706 ERR("Failed to get kernel maximal subbuffer size");
707 goto error_add_stream_nosignal
;
710 consumer_stream_update_channel_attributes(new_stream
,
714 * We've just assigned the channel to the stream so increment the
715 * refcount right now. We don't need to increment the refcount for
716 * streams in no monitor because we handle manually the cleanup of
717 * those. It is very important to make sure there is NO prior
718 * consumer_del_stream() calls or else the refcount will be unbalanced.
720 if (channel
->monitor
) {
721 uatomic_inc(&new_stream
->chan
->refcount
);
725 * The buffer flush is done on the session daemon side for the kernel
726 * so no need for the stream "hangup_flush_done" variable to be
727 * tracked. This is important for a kernel stream since we don't rely
728 * on the flush state of the stream to read data. It's not the case for
729 * user space tracing.
731 new_stream
->hangup_flush_done
= 0;
733 health_code_update();
735 pthread_mutex_lock(&new_stream
->lock
);
736 if (ctx
->on_recv_stream
) {
737 int ret_recv_stream
= ctx
->on_recv_stream(new_stream
);
738 if (ret_recv_stream
< 0) {
739 pthread_mutex_unlock(&new_stream
->lock
);
740 pthread_mutex_unlock(&channel
->lock
);
741 consumer_stream_free(new_stream
);
742 goto error_add_stream_nosignal
;
745 health_code_update();
747 if (new_stream
->metadata_flag
) {
748 channel
->metadata_stream
= new_stream
;
751 /* Do not monitor this stream. */
752 if (!channel
->monitor
) {
753 DBG("Kernel consumer add stream %s in no monitor mode with "
754 "relayd id %" PRIu64
, new_stream
->name
,
755 new_stream
->net_seq_idx
);
756 cds_list_add(&new_stream
->send_node
, &channel
->streams
.head
);
757 pthread_mutex_unlock(&new_stream
->lock
);
758 pthread_mutex_unlock(&channel
->lock
);
762 /* Send stream to relayd if the stream has an ID. */
763 if (new_stream
->net_seq_idx
!= (uint64_t) -1ULL) {
764 int ret_send_relayd_stream
;
766 ret_send_relayd_stream
= consumer_send_relayd_stream(
767 new_stream
, new_stream
->chan
->pathname
);
768 if (ret_send_relayd_stream
< 0) {
769 pthread_mutex_unlock(&new_stream
->lock
);
770 pthread_mutex_unlock(&channel
->lock
);
771 consumer_stream_free(new_stream
);
772 goto error_add_stream_nosignal
;
776 * If adding an extra stream to an already
777 * existing channel (e.g. cpu hotplug), we need
778 * to send the "streams_sent" command to relayd.
780 if (channel
->streams_sent_to_relayd
) {
781 int ret_send_relayd_streams_sent
;
783 ret_send_relayd_streams_sent
=
784 consumer_send_relayd_streams_sent(
785 new_stream
->net_seq_idx
);
786 if (ret_send_relayd_streams_sent
< 0) {
787 pthread_mutex_unlock(&new_stream
->lock
);
788 pthread_mutex_unlock(&channel
->lock
);
789 goto error_add_stream_nosignal
;
793 pthread_mutex_unlock(&new_stream
->lock
);
794 pthread_mutex_unlock(&channel
->lock
);
796 /* Get the right pipe where the stream will be sent. */
797 if (new_stream
->metadata_flag
) {
798 consumer_add_metadata_stream(new_stream
);
799 stream_pipe
= ctx
->consumer_metadata_pipe
;
801 consumer_add_data_stream(new_stream
);
802 stream_pipe
= ctx
->consumer_data_pipe
;
805 /* Visible to other threads */
806 new_stream
->globally_visible
= 1;
808 health_code_update();
810 ret_pipe_write
= lttng_pipe_write(
811 stream_pipe
, &new_stream
, sizeof(new_stream
));
812 if (ret_pipe_write
< 0) {
813 ERR("Consumer write %s stream to pipe %d",
814 new_stream
->metadata_flag
? "metadata" : "data",
815 lttng_pipe_get_writefd(stream_pipe
));
816 if (new_stream
->metadata_flag
) {
817 consumer_del_stream_for_metadata(new_stream
);
819 consumer_del_stream_for_data(new_stream
);
821 goto error_add_stream_nosignal
;
824 DBG("Kernel consumer ADD_STREAM %s (fd: %d) %s with relayd id %" PRIu64
,
825 new_stream
->name
, fd
, new_stream
->chan
->pathname
, new_stream
->relayd_stream_id
);
828 error_add_stream_nosignal
:
830 error_add_stream_fatal
:
833 case LTTNG_CONSUMER_STREAMS_SENT
:
835 struct lttng_consumer_channel
*channel
;
839 * Get stream's channel reference. Needed when adding the stream to the
842 channel
= consumer_find_channel(msg
.u
.sent_streams
.channel_key
);
845 * We could not find the channel. Can happen if cpu hotplug
846 * happens while tearing down.
848 ERR("Unable to find channel key %" PRIu64
,
849 msg
.u
.sent_streams
.channel_key
);
850 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
853 health_code_update();
856 * Send status code to session daemon.
858 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
859 if (ret_send_status
< 0 ||
860 ret_code
!= LTTCOMM_CONSUMERD_SUCCESS
) {
861 /* Somehow, the session daemon is not responding anymore. */
862 goto error_streams_sent_nosignal
;
865 health_code_update();
868 * We should not send this message if we don't monitor the
869 * streams in this channel.
871 if (!channel
->monitor
) {
872 goto end_error_streams_sent
;
875 health_code_update();
876 /* Send stream to relayd if the stream has an ID. */
877 if (msg
.u
.sent_streams
.net_seq_idx
!= (uint64_t) -1ULL) {
878 int ret_send_relay_streams
;
880 ret_send_relay_streams
= consumer_send_relayd_streams_sent(
881 msg
.u
.sent_streams
.net_seq_idx
);
882 if (ret_send_relay_streams
< 0) {
883 goto error_streams_sent_nosignal
;
885 channel
->streams_sent_to_relayd
= true;
887 end_error_streams_sent
:
889 error_streams_sent_nosignal
:
892 case LTTNG_CONSUMER_UPDATE_STREAM
:
897 case LTTNG_CONSUMER_DESTROY_RELAYD
:
899 uint64_t index
= msg
.u
.destroy_relayd
.net_seq_idx
;
900 struct consumer_relayd_sock_pair
*relayd
;
903 DBG("Kernel consumer destroying relayd %" PRIu64
, index
);
905 /* Get relayd reference if exists. */
906 relayd
= consumer_find_relayd(index
);
907 if (relayd
== NULL
) {
908 DBG("Unable to find relayd %" PRIu64
, index
);
909 ret_code
= LTTCOMM_CONSUMERD_RELAYD_FAIL
;
913 * Each relayd socket pair has a refcount of stream attached to it
914 * which tells if the relayd is still active or not depending on the
917 * This will set the destroy flag of the relayd object and destroy it
918 * if the refcount reaches zero when called.
920 * The destroy can happen either here or when a stream fd hangs up.
923 consumer_flag_relayd_for_destroy(relayd
);
926 health_code_update();
928 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
929 if (ret_send_status
< 0) {
930 /* Somehow, the session daemon is not responding anymore. */
936 case LTTNG_CONSUMER_DATA_PENDING
:
938 int32_t ret_data_pending
;
939 uint64_t id
= msg
.u
.data_pending
.session_id
;
942 DBG("Kernel consumer data pending command for id %" PRIu64
, id
);
944 ret_data_pending
= consumer_data_pending(id
);
946 health_code_update();
948 /* Send back returned value to session daemon */
949 ret_send
= lttcomm_send_unix_sock(sock
, &ret_data_pending
,
950 sizeof(ret_data_pending
));
952 PERROR("send data pending ret code");
957 * No need to send back a status message since the data pending
958 * returned value is the response.
962 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL
:
964 struct lttng_consumer_channel
*channel
;
965 uint64_t key
= msg
.u
.snapshot_channel
.key
;
968 channel
= consumer_find_channel(key
);
970 ERR("Channel %" PRIu64
" not found", key
);
971 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
973 if (msg
.u
.snapshot_channel
.metadata
== 1) {
976 ret_snapshot
= lttng_kconsumer_snapshot_metadata(
978 msg
.u
.snapshot_channel
.pathname
,
979 msg
.u
.snapshot_channel
.relayd_id
,
981 if (ret_snapshot
< 0) {
982 ERR("Snapshot metadata failed");
983 ret_code
= LTTCOMM_CONSUMERD_SNAPSHOT_FAILED
;
988 ret_snapshot
= lttng_kconsumer_snapshot_channel(
990 msg
.u
.snapshot_channel
.pathname
,
991 msg
.u
.snapshot_channel
.relayd_id
,
992 msg
.u
.snapshot_channel
993 .nb_packets_per_stream
,
995 if (ret_snapshot
< 0) {
996 ERR("Snapshot channel failed");
997 ret_code
= LTTCOMM_CONSUMERD_SNAPSHOT_FAILED
;
1001 health_code_update();
1003 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1004 if (ret_send_status
< 0) {
1005 /* Somehow, the session daemon is not responding anymore. */
1010 case LTTNG_CONSUMER_DESTROY_CHANNEL
:
1012 uint64_t key
= msg
.u
.destroy_channel
.key
;
1013 struct lttng_consumer_channel
*channel
;
1014 int ret_send_status
;
1016 channel
= consumer_find_channel(key
);
1018 ERR("Kernel consumer destroy channel %" PRIu64
" not found", key
);
1019 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
1022 health_code_update();
1024 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1025 if (ret_send_status
< 0) {
1026 /* Somehow, the session daemon is not responding anymore. */
1027 goto end_destroy_channel
;
1030 health_code_update();
1032 /* Stop right now if no channel was found. */
1034 goto end_destroy_channel
;
1038 * This command should ONLY be issued for channel with streams set in
1041 LTTNG_ASSERT(!channel
->monitor
);
1044 * The refcount should ALWAYS be 0 in the case of a channel in no
1047 LTTNG_ASSERT(!uatomic_sub_return(&channel
->refcount
, 1));
1049 consumer_del_channel(channel
);
1050 end_destroy_channel
:
1053 case LTTNG_CONSUMER_DISCARDED_EVENTS
:
1057 struct lttng_consumer_channel
*channel
;
1058 uint64_t id
= msg
.u
.discarded_events
.session_id
;
1059 uint64_t key
= msg
.u
.discarded_events
.channel_key
;
1061 DBG("Kernel consumer discarded events command for session id %"
1062 PRIu64
", channel key %" PRIu64
, id
, key
);
1064 channel
= consumer_find_channel(key
);
1066 ERR("Kernel consumer discarded events channel %"
1067 PRIu64
" not found", key
);
1070 count
= channel
->discarded_events
;
1073 health_code_update();
1075 /* Send back returned value to session daemon */
1076 ret
= lttcomm_send_unix_sock(sock
, &count
, sizeof(count
));
1078 PERROR("send discarded events");
1084 case LTTNG_CONSUMER_LOST_PACKETS
:
1088 struct lttng_consumer_channel
*channel
;
1089 uint64_t id
= msg
.u
.lost_packets
.session_id
;
1090 uint64_t key
= msg
.u
.lost_packets
.channel_key
;
1092 DBG("Kernel consumer lost packets command for session id %"
1093 PRIu64
", channel key %" PRIu64
, id
, key
);
1095 channel
= consumer_find_channel(key
);
1097 ERR("Kernel consumer lost packets channel %"
1098 PRIu64
" not found", key
);
1101 count
= channel
->lost_packets
;
1104 health_code_update();
1106 /* Send back returned value to session daemon */
1107 ret
= lttcomm_send_unix_sock(sock
, &count
, sizeof(count
));
1109 PERROR("send lost packets");
1115 case LTTNG_CONSUMER_SET_CHANNEL_MONITOR_PIPE
:
1117 int channel_monitor_pipe
;
1118 int ret_send_status
, ret_set_channel_monitor_pipe
;
1121 ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1122 /* Successfully received the command's type. */
1123 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1124 if (ret_send_status
< 0) {
1128 ret_recv
= lttcomm_recv_fds_unix_sock(
1129 sock
, &channel_monitor_pipe
, 1);
1130 if (ret_recv
!= sizeof(channel_monitor_pipe
)) {
1131 ERR("Failed to receive channel monitor pipe");
1135 DBG("Received channel monitor pipe (%d)", channel_monitor_pipe
);
1136 ret_set_channel_monitor_pipe
=
1137 consumer_timer_thread_set_channel_monitor_pipe(
1138 channel_monitor_pipe
);
1139 if (!ret_set_channel_monitor_pipe
) {
1143 ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1144 /* Set the pipe as non-blocking. */
1145 ret_fcntl
= fcntl(channel_monitor_pipe
, F_GETFL
, 0);
1146 if (ret_fcntl
== -1) {
1147 PERROR("fcntl get flags of the channel monitoring pipe");
1152 ret_fcntl
= fcntl(channel_monitor_pipe
, F_SETFL
,
1153 flags
| O_NONBLOCK
);
1154 if (ret_fcntl
== -1) {
1155 PERROR("fcntl set O_NONBLOCK flag of the channel monitoring pipe");
1158 DBG("Channel monitor pipe set as non-blocking");
1160 ret_code
= LTTCOMM_CONSUMERD_ALREADY_SET
;
1162 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1163 if (ret_send_status
< 0) {
1168 case LTTNG_CONSUMER_ROTATE_CHANNEL
:
1170 struct lttng_consumer_channel
*channel
;
1171 uint64_t key
= msg
.u
.rotate_channel
.key
;
1172 int ret_send_status
;
1174 DBG("Consumer rotate channel %" PRIu64
, key
);
1176 channel
= consumer_find_channel(key
);
1178 ERR("Channel %" PRIu64
" not found", key
);
1179 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
1182 * Sample the rotate position of all the streams in this channel.
1184 int ret_rotate_channel
;
1186 ret_rotate_channel
= lttng_consumer_rotate_channel(
1188 msg
.u
.rotate_channel
.relayd_id
,
1189 msg
.u
.rotate_channel
.metadata
, ctx
);
1190 if (ret_rotate_channel
< 0) {
1191 ERR("Rotate channel failed");
1192 ret_code
= LTTCOMM_CONSUMERD_ROTATION_FAIL
;
1195 health_code_update();
1198 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1199 if (ret_send_status
< 0) {
1200 /* Somehow, the session daemon is not responding anymore. */
1201 goto error_rotate_channel
;
1204 /* Rotate the streams that are ready right now. */
1207 ret_rotate
= lttng_consumer_rotate_ready_streams(
1209 if (ret_rotate
< 0) {
1210 ERR("Rotate ready streams failed");
1214 error_rotate_channel
:
1217 case LTTNG_CONSUMER_CLEAR_CHANNEL
:
1219 struct lttng_consumer_channel
*channel
;
1220 uint64_t key
= msg
.u
.clear_channel
.key
;
1221 int ret_send_status
;
1223 channel
= consumer_find_channel(key
);
1225 DBG("Channel %" PRIu64
" not found", key
);
1226 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
1228 int ret_clear_channel
;
1231 lttng_consumer_clear_channel(channel
);
1232 if (ret_clear_channel
) {
1233 ERR("Clear channel failed");
1234 ret_code
= (lttcomm_return_code
) ret_clear_channel
;
1237 health_code_update();
1240 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1241 if (ret_send_status
< 0) {
1242 /* Somehow, the session daemon is not responding anymore. */
1248 case LTTNG_CONSUMER_INIT
:
1250 int ret_send_status
;
1252 ret_code
= lttng_consumer_init_command(ctx
,
1253 msg
.u
.init
.sessiond_uuid
);
1254 health_code_update();
1255 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1256 if (ret_send_status
< 0) {
1257 /* Somehow, the session daemon is not responding anymore. */
1262 case LTTNG_CONSUMER_CREATE_TRACE_CHUNK
:
1264 const struct lttng_credentials credentials
= {
1265 .uid
= LTTNG_OPTIONAL_INIT_VALUE(msg
.u
.create_trace_chunk
.credentials
.value
.uid
),
1266 .gid
= LTTNG_OPTIONAL_INIT_VALUE(msg
.u
.create_trace_chunk
.credentials
.value
.gid
),
1268 const bool is_local_trace
=
1269 !msg
.u
.create_trace_chunk
.relayd_id
.is_set
;
1270 const uint64_t relayd_id
=
1271 msg
.u
.create_trace_chunk
.relayd_id
.value
;
1272 const char *chunk_override_name
=
1273 *msg
.u
.create_trace_chunk
.override_name
?
1274 msg
.u
.create_trace_chunk
.override_name
:
1276 struct lttng_directory_handle
*chunk_directory_handle
= NULL
;
1279 * The session daemon will only provide a chunk directory file
1280 * descriptor for local traces.
1282 if (is_local_trace
) {
1284 int ret_send_status
;
1287 /* Acnowledge the reception of the command. */
1288 ret_send_status
= consumer_send_status_msg(
1289 sock
, LTTCOMM_CONSUMERD_SUCCESS
);
1290 if (ret_send_status
< 0) {
1291 /* Somehow, the session daemon is not responding anymore. */
1295 ret_recv
= lttcomm_recv_fds_unix_sock(
1296 sock
, &chunk_dirfd
, 1);
1297 if (ret_recv
!= sizeof(chunk_dirfd
)) {
1298 ERR("Failed to receive trace chunk directory file descriptor");
1302 DBG("Received trace chunk directory fd (%d)",
1304 chunk_directory_handle
= lttng_directory_handle_create_from_dirfd(
1306 if (!chunk_directory_handle
) {
1307 ERR("Failed to initialize chunk directory handle from directory file descriptor");
1308 if (close(chunk_dirfd
)) {
1309 PERROR("Failed to close chunk directory file descriptor");
1315 ret_code
= lttng_consumer_create_trace_chunk(
1316 !is_local_trace
? &relayd_id
: NULL
,
1317 msg
.u
.create_trace_chunk
.session_id
,
1318 msg
.u
.create_trace_chunk
.chunk_id
,
1319 (time_t) msg
.u
.create_trace_chunk
1320 .creation_timestamp
,
1321 chunk_override_name
,
1322 msg
.u
.create_trace_chunk
.credentials
.is_set
?
1325 chunk_directory_handle
);
1326 lttng_directory_handle_put(chunk_directory_handle
);
1327 goto end_msg_sessiond
;
1329 case LTTNG_CONSUMER_CLOSE_TRACE_CHUNK
:
1331 enum lttng_trace_chunk_command_type close_command
=
1332 (lttng_trace_chunk_command_type
) msg
.u
.close_trace_chunk
.close_command
.value
;
1333 const uint64_t relayd_id
=
1334 msg
.u
.close_trace_chunk
.relayd_id
.value
;
1335 struct lttcomm_consumer_close_trace_chunk_reply reply
;
1336 char path
[LTTNG_PATH_MAX
];
1339 ret_code
= lttng_consumer_close_trace_chunk(
1340 msg
.u
.close_trace_chunk
.relayd_id
.is_set
?
1343 msg
.u
.close_trace_chunk
.session_id
,
1344 msg
.u
.close_trace_chunk
.chunk_id
,
1345 (time_t) msg
.u
.close_trace_chunk
.close_timestamp
,
1346 msg
.u
.close_trace_chunk
.close_command
.is_set
?
1349 reply
.ret_code
= ret_code
;
1350 reply
.path_length
= strlen(path
) + 1;
1351 ret_send
= lttcomm_send_unix_sock(sock
, &reply
, sizeof(reply
));
1352 if (ret_send
!= sizeof(reply
)) {
1355 ret_send
= lttcomm_send_unix_sock(
1356 sock
, path
, reply
.path_length
);
1357 if (ret_send
!= reply
.path_length
) {
1362 case LTTNG_CONSUMER_TRACE_CHUNK_EXISTS
:
1364 const uint64_t relayd_id
=
1365 msg
.u
.trace_chunk_exists
.relayd_id
.value
;
1367 ret_code
= lttng_consumer_trace_chunk_exists(
1368 msg
.u
.trace_chunk_exists
.relayd_id
.is_set
?
1370 msg
.u
.trace_chunk_exists
.session_id
,
1371 msg
.u
.trace_chunk_exists
.chunk_id
);
1372 goto end_msg_sessiond
;
1374 case LTTNG_CONSUMER_OPEN_CHANNEL_PACKETS
:
1376 const uint64_t key
= msg
.u
.open_channel_packets
.key
;
1377 struct lttng_consumer_channel
*channel
=
1378 consumer_find_channel(key
);
1381 pthread_mutex_lock(&channel
->lock
);
1382 ret_code
= lttng_consumer_open_channel_packets(channel
);
1383 pthread_mutex_unlock(&channel
->lock
);
1385 WARN("Channel %" PRIu64
" not found", key
);
1386 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
1389 health_code_update();
1390 goto end_msg_sessiond
;
1398 * Return 1 to indicate success since the 0 value can be a socket
1399 * shutdown during the recv() or send() call.
1404 /* This will issue a consumer stop. */
1409 * The returned value here is not useful since either way we'll return 1 to
1410 * the caller because the session daemon socket management is done
1411 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
1414 int ret_send_status
;
1416 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1417 if (ret_send_status
< 0) {
1425 health_code_update();
1431 * Sync metadata meaning request them to the session daemon and snapshot to the
1432 * metadata thread can consumer them.
1434 * Metadata stream lock MUST be acquired.
1436 enum sync_metadata_status
lttng_kconsumer_sync_metadata(
1437 struct lttng_consumer_stream
*metadata
)
1440 enum sync_metadata_status status
;
1442 LTTNG_ASSERT(metadata
);
1444 ret
= kernctl_buffer_flush(metadata
->wait_fd
);
1446 ERR("Failed to flush kernel stream");
1447 status
= SYNC_METADATA_STATUS_ERROR
;
1451 ret
= kernctl_snapshot(metadata
->wait_fd
);
1453 if (errno
== EAGAIN
) {
1454 /* No new metadata, exit. */
1455 DBG("Sync metadata, no new kernel metadata");
1456 status
= SYNC_METADATA_STATUS_NO_DATA
;
1458 ERR("Sync metadata, taking kernel snapshot failed.");
1459 status
= SYNC_METADATA_STATUS_ERROR
;
1462 status
= SYNC_METADATA_STATUS_NEW_DATA
;
1470 int extract_common_subbuffer_info(struct lttng_consumer_stream
*stream
,
1471 struct stream_subbuffer
*subbuf
)
1475 ret
= kernctl_get_subbuf_size(
1476 stream
->wait_fd
, &subbuf
->info
.data
.subbuf_size
);
1481 ret
= kernctl_get_padded_subbuf_size(
1482 stream
->wait_fd
, &subbuf
->info
.data
.padded_subbuf_size
);
1492 int extract_metadata_subbuffer_info(struct lttng_consumer_stream
*stream
,
1493 struct stream_subbuffer
*subbuf
)
1497 ret
= extract_common_subbuffer_info(stream
, subbuf
);
1502 ret
= kernctl_get_metadata_version(
1503 stream
->wait_fd
, &subbuf
->info
.metadata
.version
);
1513 int extract_data_subbuffer_info(struct lttng_consumer_stream
*stream
,
1514 struct stream_subbuffer
*subbuf
)
1518 ret
= extract_common_subbuffer_info(stream
, subbuf
);
1523 ret
= kernctl_get_packet_size(
1524 stream
->wait_fd
, &subbuf
->info
.data
.packet_size
);
1526 PERROR("Failed to get sub-buffer packet size");
1530 ret
= kernctl_get_content_size(
1531 stream
->wait_fd
, &subbuf
->info
.data
.content_size
);
1533 PERROR("Failed to get sub-buffer content size");
1537 ret
= kernctl_get_timestamp_begin(
1538 stream
->wait_fd
, &subbuf
->info
.data
.timestamp_begin
);
1540 PERROR("Failed to get sub-buffer begin timestamp");
1544 ret
= kernctl_get_timestamp_end(
1545 stream
->wait_fd
, &subbuf
->info
.data
.timestamp_end
);
1547 PERROR("Failed to get sub-buffer end timestamp");
1551 ret
= kernctl_get_events_discarded(
1552 stream
->wait_fd
, &subbuf
->info
.data
.events_discarded
);
1554 PERROR("Failed to get sub-buffer events discarded count");
1558 ret
= kernctl_get_sequence_number(stream
->wait_fd
,
1559 &subbuf
->info
.data
.sequence_number
.value
);
1561 /* May not be supported by older LTTng-modules. */
1562 if (ret
!= -ENOTTY
) {
1563 PERROR("Failed to get sub-buffer sequence number");
1567 subbuf
->info
.data
.sequence_number
.is_set
= true;
1570 ret
= kernctl_get_stream_id(
1571 stream
->wait_fd
, &subbuf
->info
.data
.stream_id
);
1573 PERROR("Failed to get stream id");
1577 ret
= kernctl_get_instance_id(stream
->wait_fd
,
1578 &subbuf
->info
.data
.stream_instance_id
.value
);
1580 /* May not be supported by older LTTng-modules. */
1581 if (ret
!= -ENOTTY
) {
1582 PERROR("Failed to get stream instance id");
1586 subbuf
->info
.data
.stream_instance_id
.is_set
= true;
1593 enum get_next_subbuffer_status
get_subbuffer_common(
1594 struct lttng_consumer_stream
*stream
,
1595 struct stream_subbuffer
*subbuffer
)
1598 enum get_next_subbuffer_status status
;
1600 ret
= kernctl_get_next_subbuf(stream
->wait_fd
);
1603 status
= GET_NEXT_SUBBUFFER_STATUS_OK
;
1608 * The caller only expects -ENODATA when there is no data to
1609 * read, but the kernel tracer returns -EAGAIN when there is
1610 * currently no data for a non-finalized stream, and -ENODATA
1611 * when there is no data for a finalized stream. Those can be
1612 * combined into a -ENODATA return value.
1614 status
= GET_NEXT_SUBBUFFER_STATUS_NO_DATA
;
1617 status
= GET_NEXT_SUBBUFFER_STATUS_ERROR
;
1621 ret
= stream
->read_subbuffer_ops
.extract_subbuffer_info(
1624 status
= GET_NEXT_SUBBUFFER_STATUS_ERROR
;
1631 enum get_next_subbuffer_status
get_next_subbuffer_splice(
1632 struct lttng_consumer_stream
*stream
,
1633 struct stream_subbuffer
*subbuffer
)
1635 const enum get_next_subbuffer_status status
=
1636 get_subbuffer_common(stream
, subbuffer
);
1638 if (status
!= GET_NEXT_SUBBUFFER_STATUS_OK
) {
1642 subbuffer
->buffer
.fd
= stream
->wait_fd
;
1648 enum get_next_subbuffer_status
get_next_subbuffer_mmap(
1649 struct lttng_consumer_stream
*stream
,
1650 struct stream_subbuffer
*subbuffer
)
1653 enum get_next_subbuffer_status status
;
1656 status
= get_subbuffer_common(stream
, subbuffer
);
1657 if (status
!= GET_NEXT_SUBBUFFER_STATUS_OK
) {
1661 ret
= get_current_subbuf_addr(stream
, &addr
);
1663 status
= GET_NEXT_SUBBUFFER_STATUS_ERROR
;
1667 subbuffer
->buffer
.buffer
= lttng_buffer_view_init(
1668 addr
, 0, subbuffer
->info
.data
.padded_subbuf_size
);
1674 enum get_next_subbuffer_status
get_next_subbuffer_metadata_check(struct lttng_consumer_stream
*stream
,
1675 struct stream_subbuffer
*subbuffer
)
1680 enum get_next_subbuffer_status status
;
1682 ret
= kernctl_get_next_subbuf_metadata_check(stream
->wait_fd
,
1688 ret
= stream
->read_subbuffer_ops
.extract_subbuffer_info(
1694 LTTNG_OPTIONAL_SET(&subbuffer
->info
.metadata
.coherent
, coherent
);
1696 ret
= get_current_subbuf_addr(stream
, &addr
);
1701 subbuffer
->buffer
.buffer
= lttng_buffer_view_init(
1702 addr
, 0, subbuffer
->info
.data
.padded_subbuf_size
);
1703 DBG("Got metadata packet with padded_subbuf_size = %lu, coherent = %s",
1704 subbuffer
->info
.metadata
.padded_subbuf_size
,
1705 coherent
? "true" : "false");
1708 * The caller only expects -ENODATA when there is no data to read, but
1709 * the kernel tracer returns -EAGAIN when there is currently no data
1710 * for a non-finalized stream, and -ENODATA when there is no data for a
1711 * finalized stream. Those can be combined into a -ENODATA return value.
1715 status
= GET_NEXT_SUBBUFFER_STATUS_OK
;
1720 * The caller only expects -ENODATA when there is no data to
1721 * read, but the kernel tracer returns -EAGAIN when there is
1722 * currently no data for a non-finalized stream, and -ENODATA
1723 * when there is no data for a finalized stream. Those can be
1724 * combined into a -ENODATA return value.
1726 status
= GET_NEXT_SUBBUFFER_STATUS_NO_DATA
;
1729 status
= GET_NEXT_SUBBUFFER_STATUS_ERROR
;
1737 int put_next_subbuffer(struct lttng_consumer_stream
*stream
,
1738 struct stream_subbuffer
*subbuffer
)
1740 const int ret
= kernctl_put_next_subbuf(stream
->wait_fd
);
1743 if (ret
== -EFAULT
) {
1744 PERROR("Error in unreserving sub buffer");
1745 } else if (ret
== -EIO
) {
1746 /* Should never happen with newer LTTng versions */
1747 PERROR("Reader has been pushed by the writer, last sub-buffer corrupted");
1755 bool is_get_next_check_metadata_available(int tracer_fd
)
1757 const int ret
= kernctl_get_next_subbuf_metadata_check(tracer_fd
, NULL
);
1758 const bool available
= ret
!= -ENOTTY
;
1761 /* get succeeded, make sure to put the subbuffer. */
1762 kernctl_put_subbuf(tracer_fd
);
1769 int signal_metadata(struct lttng_consumer_stream
*stream
,
1770 struct lttng_consumer_local_data
*ctx
)
1772 ASSERT_LOCKED(stream
->metadata_rdv_lock
);
1773 return pthread_cond_broadcast(&stream
->metadata_rdv
) ? -errno
: 0;
1777 int lttng_kconsumer_set_stream_ops(
1778 struct lttng_consumer_stream
*stream
)
1782 if (stream
->metadata_flag
&& stream
->chan
->is_live
) {
1783 DBG("Attempting to enable metadata bucketization for live consumers");
1784 if (is_get_next_check_metadata_available(stream
->wait_fd
)) {
1785 DBG("Kernel tracer supports get_next_subbuffer_metadata_check, metadata will be accumulated until a coherent state is reached");
1786 stream
->read_subbuffer_ops
.get_next_subbuffer
=
1787 get_next_subbuffer_metadata_check
;
1788 ret
= consumer_stream_enable_metadata_bucketization(
1795 * The kernel tracer version is too old to indicate
1796 * when the metadata stream has reached a "coherent"
1797 * (parseable) point.
1799 * This means that a live viewer may see an incoherent
1800 * sequence of metadata and fail to parse it.
1802 WARN("Kernel tracer does not support get_next_subbuffer_metadata_check which may cause live clients to fail to parse the metadata stream");
1803 metadata_bucket_destroy(stream
->metadata_bucket
);
1804 stream
->metadata_bucket
= NULL
;
1807 stream
->read_subbuffer_ops
.on_sleep
= signal_metadata
;
1810 if (!stream
->read_subbuffer_ops
.get_next_subbuffer
) {
1811 if (stream
->chan
->output
== CONSUMER_CHANNEL_MMAP
) {
1812 stream
->read_subbuffer_ops
.get_next_subbuffer
=
1813 get_next_subbuffer_mmap
;
1815 stream
->read_subbuffer_ops
.get_next_subbuffer
=
1816 get_next_subbuffer_splice
;
1820 if (stream
->metadata_flag
) {
1821 stream
->read_subbuffer_ops
.extract_subbuffer_info
=
1822 extract_metadata_subbuffer_info
;
1824 stream
->read_subbuffer_ops
.extract_subbuffer_info
=
1825 extract_data_subbuffer_info
;
1826 if (stream
->chan
->is_live
) {
1827 stream
->read_subbuffer_ops
.send_live_beacon
=
1828 consumer_flush_kernel_index
;
1832 stream
->read_subbuffer_ops
.put_next_subbuffer
= put_next_subbuffer
;
1837 int lttng_kconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
)
1841 LTTNG_ASSERT(stream
);
1844 * Don't create anything if this is set for streaming or if there is
1845 * no current trace chunk on the parent channel.
1847 if (stream
->net_seq_idx
== (uint64_t) -1ULL && stream
->chan
->monitor
&&
1848 stream
->chan
->trace_chunk
) {
1849 ret
= consumer_stream_create_output_files(stream
, true);
1855 if (stream
->output
== LTTNG_EVENT_MMAP
) {
1856 /* get the len of the mmap region */
1857 unsigned long mmap_len
;
1859 ret
= kernctl_get_mmap_len(stream
->wait_fd
, &mmap_len
);
1861 PERROR("kernctl_get_mmap_len");
1862 goto error_close_fd
;
1864 stream
->mmap_len
= (size_t) mmap_len
;
1866 stream
->mmap_base
= mmap(NULL
, stream
->mmap_len
, PROT_READ
,
1867 MAP_PRIVATE
, stream
->wait_fd
, 0);
1868 if (stream
->mmap_base
== MAP_FAILED
) {
1869 PERROR("Error mmaping");
1871 goto error_close_fd
;
1875 ret
= lttng_kconsumer_set_stream_ops(stream
);
1877 goto error_close_fd
;
1880 /* we return 0 to let the library handle the FD internally */
1884 if (stream
->out_fd
>= 0) {
1887 err
= close(stream
->out_fd
);
1889 stream
->out_fd
= -1;
1896 * Check if data is still being extracted from the buffers for a specific
1897 * stream. Consumer data lock MUST be acquired before calling this function
1898 * and the stream lock.
1900 * Return 1 if the traced data are still getting read else 0 meaning that the
1901 * data is available for trace viewer reading.
1903 int lttng_kconsumer_data_pending(struct lttng_consumer_stream
*stream
)
1907 LTTNG_ASSERT(stream
);
1909 if (stream
->endpoint_status
!= CONSUMER_ENDPOINT_ACTIVE
) {
1914 ret
= kernctl_get_next_subbuf(stream
->wait_fd
);
1916 /* There is still data so let's put back this subbuffer. */
1917 ret
= kernctl_put_subbuf(stream
->wait_fd
);
1918 LTTNG_ASSERT(ret
== 0);
1919 ret
= 1; /* Data is pending */
1923 /* Data is NOT pending and ready to be read. */