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
17 #include <sys/socket.h>
18 #include <sys/types.h>
24 #include <bin/lttng-consumerd/health-consumerd.h>
25 #include <common/common.h>
26 #include <common/kernel-ctl/kernel-ctl.h>
27 #include <common/sessiond-comm/sessiond-comm.h>
28 #include <common/sessiond-comm/relayd.h>
29 #include <common/compat/fcntl.h>
30 #include <common/compat/endian.h>
31 #include <common/pipe.h>
32 #include <common/relayd/relayd.h>
33 #include <common/utils.h>
34 #include <common/consumer/consumer-stream.h>
35 #include <common/index/index.h>
36 #include <common/consumer/consumer-timer.h>
37 #include <common/optional.h>
38 #include <common/buffer-view.h>
39 #include <common/consumer/consumer.h>
40 #include <common/consumer/metadata-bucket.h>
42 #include "kernel-consumer.h"
44 extern struct lttng_consumer_global_data the_consumer_data
;
45 extern int consumer_poll_timeout
;
48 * Take a snapshot for a specific fd
50 * Returns 0 on success, < 0 on error
52 int lttng_kconsumer_take_snapshot(struct lttng_consumer_stream
*stream
)
55 int infd
= stream
->wait_fd
;
57 ret
= kernctl_snapshot(infd
);
59 * -EAGAIN is not an error, it just means that there is no data to
62 if (ret
!= 0 && ret
!= -EAGAIN
) {
63 PERROR("Getting sub-buffer snapshot.");
70 * Sample consumed and produced positions for a specific fd.
72 * Returns 0 on success, < 0 on error.
74 int lttng_kconsumer_sample_snapshot_positions(
75 struct lttng_consumer_stream
*stream
)
79 return kernctl_snapshot_sample_positions(stream
->wait_fd
);
83 * Get the produced position
85 * Returns 0 on success, < 0 on error
87 int lttng_kconsumer_get_produced_snapshot(struct lttng_consumer_stream
*stream
,
91 int infd
= stream
->wait_fd
;
93 ret
= kernctl_snapshot_get_produced(infd
, pos
);
95 PERROR("kernctl_snapshot_get_produced");
102 * Get the consumerd position
104 * Returns 0 on success, < 0 on error
106 int lttng_kconsumer_get_consumed_snapshot(struct lttng_consumer_stream
*stream
,
110 int infd
= stream
->wait_fd
;
112 ret
= kernctl_snapshot_get_consumed(infd
, pos
);
114 PERROR("kernctl_snapshot_get_consumed");
121 int get_current_subbuf_addr(struct lttng_consumer_stream
*stream
,
125 unsigned long mmap_offset
;
126 const char *mmap_base
= stream
->mmap_base
;
128 ret
= kernctl_get_mmap_read_offset(stream
->wait_fd
, &mmap_offset
);
130 PERROR("Failed to get mmap read offset");
134 *addr
= mmap_base
+ mmap_offset
;
140 * Take a snapshot of all the stream of a channel
141 * RCU read-side lock must be held across this function to ensure existence of
142 * channel. The channel lock must be held by the caller.
144 * Returns 0 on success, < 0 on error
146 static int lttng_kconsumer_snapshot_channel(
147 struct lttng_consumer_channel
*channel
,
148 uint64_t key
, char *path
, uint64_t relayd_id
,
149 uint64_t nb_packets_per_stream
,
150 struct lttng_consumer_local_data
*ctx
)
153 struct lttng_consumer_stream
*stream
;
155 DBG("Kernel consumer snapshot channel %" PRIu64
, key
);
159 /* Splice is not supported yet for channel snapshot. */
160 if (channel
->output
!= CONSUMER_CHANNEL_MMAP
) {
161 ERR("Unsupported output type for channel \"%s\": mmap output is required to record a snapshot",
167 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
168 unsigned long consumed_pos
, produced_pos
;
170 health_code_update();
173 * Lock stream because we are about to change its state.
175 pthread_mutex_lock(&stream
->lock
);
177 assert(channel
->trace_chunk
);
178 if (!lttng_trace_chunk_get(channel
->trace_chunk
)) {
180 * Can't happen barring an internal error as the channel
181 * holds a reference to the trace chunk.
183 ERR("Failed to acquire reference to channel's trace chunk");
187 assert(!stream
->trace_chunk
);
188 stream
->trace_chunk
= channel
->trace_chunk
;
191 * Assign the received relayd ID so we can use it for streaming. The streams
192 * are not visible to anyone so this is OK to change it.
194 stream
->net_seq_idx
= relayd_id
;
195 channel
->relayd_id
= relayd_id
;
196 if (relayd_id
!= (uint64_t) -1ULL) {
197 ret
= consumer_send_relayd_stream(stream
, path
);
199 ERR("sending stream to relayd");
203 ret
= consumer_stream_create_output_files(stream
,
208 DBG("Kernel consumer snapshot stream (%" PRIu64
")",
212 ret
= kernctl_buffer_flush_empty(stream
->wait_fd
);
215 * Doing a buffer flush which does not take into
216 * account empty packets. This is not perfect
217 * for stream intersection, but required as a
218 * fall-back when "flush_empty" is not
219 * implemented by lttng-modules.
221 ret
= kernctl_buffer_flush(stream
->wait_fd
);
223 ERR("Failed to flush kernel stream");
229 ret
= lttng_kconsumer_take_snapshot(stream
);
231 ERR("Taking kernel snapshot");
235 ret
= lttng_kconsumer_get_produced_snapshot(stream
, &produced_pos
);
237 ERR("Produced kernel snapshot position");
241 ret
= lttng_kconsumer_get_consumed_snapshot(stream
, &consumed_pos
);
243 ERR("Consumerd kernel snapshot position");
247 consumed_pos
= consumer_get_consume_start_pos(consumed_pos
,
248 produced_pos
, nb_packets_per_stream
,
249 stream
->max_sb_size
);
251 while ((long) (consumed_pos
- produced_pos
) < 0) {
253 unsigned long len
, padded_len
;
254 const char *subbuf_addr
;
255 struct lttng_buffer_view subbuf_view
;
257 health_code_update();
258 DBG("Kernel consumer taking snapshot at pos %lu", consumed_pos
);
260 ret
= kernctl_get_subbuf(stream
->wait_fd
, &consumed_pos
);
262 if (ret
!= -EAGAIN
) {
263 PERROR("kernctl_get_subbuf snapshot");
266 DBG("Kernel consumer get subbuf failed. Skipping it.");
267 consumed_pos
+= stream
->max_sb_size
;
268 stream
->chan
->lost_packets
++;
272 ret
= kernctl_get_subbuf_size(stream
->wait_fd
, &len
);
274 ERR("Snapshot kernctl_get_subbuf_size");
275 goto error_put_subbuf
;
278 ret
= kernctl_get_padded_subbuf_size(stream
->wait_fd
, &padded_len
);
280 ERR("Snapshot kernctl_get_padded_subbuf_size");
281 goto error_put_subbuf
;
284 ret
= get_current_subbuf_addr(stream
, &subbuf_addr
);
286 goto error_put_subbuf
;
289 subbuf_view
= lttng_buffer_view_init(
290 subbuf_addr
, 0, padded_len
);
291 read_len
= lttng_consumer_on_read_subbuffer_mmap(
292 stream
, &subbuf_view
,
295 * We write the padded len in local tracefiles but the data len
296 * when using a relay. Display the error but continue processing
297 * to try to release the subbuffer.
299 if (relayd_id
!= (uint64_t) -1ULL) {
300 if (read_len
!= len
) {
301 ERR("Error sending to the relay (ret: %zd != len: %lu)",
305 if (read_len
!= padded_len
) {
306 ERR("Error writing to tracefile (ret: %zd != len: %lu)",
307 read_len
, padded_len
);
311 ret
= kernctl_put_subbuf(stream
->wait_fd
);
313 ERR("Snapshot kernctl_put_subbuf");
316 consumed_pos
+= stream
->max_sb_size
;
319 if (relayd_id
== (uint64_t) -1ULL) {
320 if (stream
->out_fd
>= 0) {
321 ret
= close(stream
->out_fd
);
323 PERROR("Kernel consumer snapshot close out_fd");
329 close_relayd_stream(stream
);
330 stream
->net_seq_idx
= (uint64_t) -1ULL;
332 lttng_trace_chunk_put(stream
->trace_chunk
);
333 stream
->trace_chunk
= NULL
;
334 pthread_mutex_unlock(&stream
->lock
);
342 ret
= kernctl_put_subbuf(stream
->wait_fd
);
344 ERR("Snapshot kernctl_put_subbuf error path");
347 pthread_mutex_unlock(&stream
->lock
);
354 * Read the whole metadata available for a snapshot.
355 * RCU read-side lock must be held across this function to ensure existence of
356 * metadata_channel. The channel lock must be held by the caller.
358 * Returns 0 on success, < 0 on error
360 static int lttng_kconsumer_snapshot_metadata(
361 struct lttng_consumer_channel
*metadata_channel
,
362 uint64_t key
, char *path
, uint64_t relayd_id
,
363 struct lttng_consumer_local_data
*ctx
)
365 int ret
, use_relayd
= 0;
367 struct lttng_consumer_stream
*metadata_stream
;
371 DBG("Kernel consumer snapshot metadata with key %" PRIu64
" at path %s",
376 metadata_stream
= metadata_channel
->metadata_stream
;
377 assert(metadata_stream
);
379 pthread_mutex_lock(&metadata_stream
->lock
);
380 assert(metadata_channel
->trace_chunk
);
381 assert(metadata_stream
->trace_chunk
);
383 /* Flag once that we have a valid relayd for the stream. */
384 if (relayd_id
!= (uint64_t) -1ULL) {
389 ret
= consumer_send_relayd_stream(metadata_stream
, path
);
394 ret
= consumer_stream_create_output_files(metadata_stream
,
402 health_code_update();
404 ret_read
= lttng_consumer_read_subbuffer(metadata_stream
, ctx
, true);
406 ERR("Kernel snapshot reading metadata subbuffer (ret: %zd)",
411 } while (ret_read
> 0);
414 close_relayd_stream(metadata_stream
);
415 metadata_stream
->net_seq_idx
= (uint64_t) -1ULL;
417 if (metadata_stream
->out_fd
>= 0) {
418 ret
= close(metadata_stream
->out_fd
);
420 PERROR("Kernel consumer snapshot metadata close out_fd");
422 * Don't go on error here since the snapshot was successful at this
423 * point but somehow the close failed.
426 metadata_stream
->out_fd
= -1;
427 lttng_trace_chunk_put(metadata_stream
->trace_chunk
);
428 metadata_stream
->trace_chunk
= NULL
;
434 pthread_mutex_unlock(&metadata_stream
->lock
);
435 cds_list_del(&metadata_stream
->send_node
);
436 consumer_stream_destroy(metadata_stream
, NULL
);
437 metadata_channel
->metadata_stream
= NULL
;
443 * Receive command from session daemon and process it.
445 * Return 1 on success else a negative value or 0.
447 int lttng_kconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
448 int sock
, struct pollfd
*consumer_sockpoll
)
451 enum lttcomm_return_code ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
452 struct lttcomm_consumer_msg msg
;
454 health_code_update();
459 ret_recv
= lttcomm_recv_unix_sock(sock
, &msg
, sizeof(msg
));
460 if (ret_recv
!= sizeof(msg
)) {
462 lttng_consumer_send_error(ctx
,
463 LTTCOMM_CONSUMERD_ERROR_RECV_CMD
);
470 health_code_update();
472 /* Deprecated command */
473 assert(msg
.cmd_type
!= LTTNG_CONSUMER_STOP
);
475 health_code_update();
477 /* relayd needs RCU read-side protection */
480 switch (msg
.cmd_type
) {
481 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET
:
483 /* Session daemon status message are handled in the following call. */
484 consumer_add_relayd_socket(msg
.u
.relayd_sock
.net_index
,
485 msg
.u
.relayd_sock
.type
, ctx
, sock
, consumer_sockpoll
,
486 &msg
.u
.relayd_sock
.sock
, msg
.u
.relayd_sock
.session_id
,
487 msg
.u
.relayd_sock
.relayd_session_id
);
490 case LTTNG_CONSUMER_ADD_CHANNEL
:
492 struct lttng_consumer_channel
*new_channel
;
493 int ret_send_status
, ret_add_channel
= 0;
494 const uint64_t chunk_id
= msg
.u
.channel
.chunk_id
.value
;
496 health_code_update();
498 /* First send a status message before receiving the fds. */
499 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
500 if (ret_send_status
< 0) {
501 /* Somehow, the session daemon is not responding anymore. */
505 health_code_update();
507 DBG("consumer_add_channel %" PRIu64
, msg
.u
.channel
.channel_key
);
508 new_channel
= consumer_allocate_channel(msg
.u
.channel
.channel_key
,
509 msg
.u
.channel
.session_id
,
510 msg
.u
.channel
.chunk_id
.is_set
?
512 msg
.u
.channel
.pathname
,
514 msg
.u
.channel
.relayd_id
, msg
.u
.channel
.output
,
515 msg
.u
.channel
.tracefile_size
,
516 msg
.u
.channel
.tracefile_count
, 0,
517 msg
.u
.channel
.monitor
,
518 msg
.u
.channel
.live_timer_interval
,
519 msg
.u
.channel
.is_live
,
521 if (new_channel
== NULL
) {
522 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
525 new_channel
->nb_init_stream_left
= msg
.u
.channel
.nb_init_streams
;
526 switch (msg
.u
.channel
.output
) {
527 case LTTNG_EVENT_SPLICE
:
528 new_channel
->output
= CONSUMER_CHANNEL_SPLICE
;
530 case LTTNG_EVENT_MMAP
:
531 new_channel
->output
= CONSUMER_CHANNEL_MMAP
;
534 ERR("Channel output unknown %d", msg
.u
.channel
.output
);
538 /* Translate and save channel type. */
539 switch (msg
.u
.channel
.type
) {
540 case CONSUMER_CHANNEL_TYPE_DATA
:
541 case CONSUMER_CHANNEL_TYPE_METADATA
:
542 new_channel
->type
= msg
.u
.channel
.type
;
549 health_code_update();
551 if (ctx
->on_recv_channel
!= NULL
) {
552 int ret_recv_channel
=
553 ctx
->on_recv_channel(new_channel
);
554 if (ret_recv_channel
== 0) {
555 ret_add_channel
= consumer_add_channel(
557 } else if (ret_recv_channel
< 0) {
562 consumer_add_channel(new_channel
, ctx
);
564 if (msg
.u
.channel
.type
== CONSUMER_CHANNEL_TYPE_DATA
&&
566 int monitor_start_ret
;
568 DBG("Consumer starting monitor timer");
569 consumer_timer_live_start(new_channel
,
570 msg
.u
.channel
.live_timer_interval
);
571 monitor_start_ret
= consumer_timer_monitor_start(
573 msg
.u
.channel
.monitor_timer_interval
);
574 if (monitor_start_ret
< 0) {
575 ERR("Starting channel monitoring timer failed");
580 health_code_update();
582 /* If we received an error in add_channel, we need to report it. */
583 if (ret_add_channel
< 0) {
584 ret_send_status
= consumer_send_status_msg(
585 sock
, ret_add_channel
);
586 if (ret_send_status
< 0) {
594 case LTTNG_CONSUMER_ADD_STREAM
:
597 struct lttng_pipe
*stream_pipe
;
598 struct lttng_consumer_stream
*new_stream
;
599 struct lttng_consumer_channel
*channel
;
601 int ret_send_status
, ret_poll
, ret_get_max_subbuf_size
;
602 ssize_t ret_pipe_write
, ret_recv
;
605 * Get stream's channel reference. Needed when adding the stream to the
608 channel
= consumer_find_channel(msg
.u
.stream
.channel_key
);
611 * We could not find the channel. Can happen if cpu hotplug
612 * happens while tearing down.
614 ERR("Unable to find channel key %" PRIu64
, msg
.u
.stream
.channel_key
);
615 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
618 health_code_update();
620 /* First send a status message before receiving the fds. */
621 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
622 if (ret_send_status
< 0) {
623 /* Somehow, the session daemon is not responding anymore. */
624 goto error_add_stream_fatal
;
627 health_code_update();
629 if (ret_code
!= LTTCOMM_CONSUMERD_SUCCESS
) {
630 /* Channel was not found. */
631 goto error_add_stream_nosignal
;
636 ret_poll
= lttng_consumer_poll_socket(consumer_sockpoll
);
639 goto error_add_stream_fatal
;
642 health_code_update();
644 /* Get stream file descriptor from socket */
645 ret_recv
= lttcomm_recv_fds_unix_sock(sock
, &fd
, 1);
646 if (ret_recv
!= sizeof(fd
)) {
647 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_FD
);
652 health_code_update();
655 * Send status code to session daemon only if the recv works. If the
656 * above recv() failed, the session daemon is notified through the
657 * error socket and the teardown is eventually done.
659 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
660 if (ret_send_status
< 0) {
661 /* Somehow, the session daemon is not responding anymore. */
662 goto error_add_stream_nosignal
;
665 health_code_update();
667 pthread_mutex_lock(&channel
->lock
);
668 new_stream
= consumer_stream_create(
675 channel
->trace_chunk
,
680 if (new_stream
== NULL
) {
685 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
688 pthread_mutex_unlock(&channel
->lock
);
689 goto error_add_stream_nosignal
;
692 new_stream
->wait_fd
= fd
;
693 ret_get_max_subbuf_size
= kernctl_get_max_subbuf_size(
694 new_stream
->wait_fd
, &new_stream
->max_sb_size
);
695 if (ret_get_max_subbuf_size
< 0) {
696 pthread_mutex_unlock(&channel
->lock
);
697 ERR("Failed to get kernel maximal subbuffer size");
698 goto error_add_stream_nosignal
;
701 consumer_stream_update_channel_attributes(new_stream
,
705 * We've just assigned the channel to the stream so increment the
706 * refcount right now. We don't need to increment the refcount for
707 * streams in no monitor because we handle manually the cleanup of
708 * those. It is very important to make sure there is NO prior
709 * consumer_del_stream() calls or else the refcount will be unbalanced.
711 if (channel
->monitor
) {
712 uatomic_inc(&new_stream
->chan
->refcount
);
716 * The buffer flush is done on the session daemon side for the kernel
717 * so no need for the stream "hangup_flush_done" variable to be
718 * tracked. This is important for a kernel stream since we don't rely
719 * on the flush state of the stream to read data. It's not the case for
720 * user space tracing.
722 new_stream
->hangup_flush_done
= 0;
724 health_code_update();
726 pthread_mutex_lock(&new_stream
->lock
);
727 if (ctx
->on_recv_stream
) {
728 int ret_recv_stream
= ctx
->on_recv_stream(new_stream
);
729 if (ret_recv_stream
< 0) {
730 pthread_mutex_unlock(&new_stream
->lock
);
731 pthread_mutex_unlock(&channel
->lock
);
732 consumer_stream_free(new_stream
);
733 goto error_add_stream_nosignal
;
736 health_code_update();
738 if (new_stream
->metadata_flag
) {
739 channel
->metadata_stream
= new_stream
;
742 /* Do not monitor this stream. */
743 if (!channel
->monitor
) {
744 DBG("Kernel consumer add stream %s in no monitor mode with "
745 "relayd id %" PRIu64
, new_stream
->name
,
746 new_stream
->net_seq_idx
);
747 cds_list_add(&new_stream
->send_node
, &channel
->streams
.head
);
748 pthread_mutex_unlock(&new_stream
->lock
);
749 pthread_mutex_unlock(&channel
->lock
);
753 /* Send stream to relayd if the stream has an ID. */
754 if (new_stream
->net_seq_idx
!= (uint64_t) -1ULL) {
755 int ret_send_relayd_stream
;
757 ret_send_relayd_stream
= consumer_send_relayd_stream(
758 new_stream
, new_stream
->chan
->pathname
);
759 if (ret_send_relayd_stream
< 0) {
760 pthread_mutex_unlock(&new_stream
->lock
);
761 pthread_mutex_unlock(&channel
->lock
);
762 consumer_stream_free(new_stream
);
763 goto error_add_stream_nosignal
;
767 * If adding an extra stream to an already
768 * existing channel (e.g. cpu hotplug), we need
769 * to send the "streams_sent" command to relayd.
771 if (channel
->streams_sent_to_relayd
) {
772 int ret_send_relayd_streams_sent
;
774 ret_send_relayd_streams_sent
=
775 consumer_send_relayd_streams_sent(
776 new_stream
->net_seq_idx
);
777 if (ret_send_relayd_streams_sent
< 0) {
778 pthread_mutex_unlock(&new_stream
->lock
);
779 pthread_mutex_unlock(&channel
->lock
);
780 goto error_add_stream_nosignal
;
784 pthread_mutex_unlock(&new_stream
->lock
);
785 pthread_mutex_unlock(&channel
->lock
);
787 /* Get the right pipe where the stream will be sent. */
788 if (new_stream
->metadata_flag
) {
789 consumer_add_metadata_stream(new_stream
);
790 stream_pipe
= ctx
->consumer_metadata_pipe
;
792 consumer_add_data_stream(new_stream
);
793 stream_pipe
= ctx
->consumer_data_pipe
;
796 /* Visible to other threads */
797 new_stream
->globally_visible
= 1;
799 health_code_update();
801 ret_pipe_write
= lttng_pipe_write(
802 stream_pipe
, &new_stream
, sizeof(new_stream
));
803 if (ret_pipe_write
< 0) {
804 ERR("Consumer write %s stream to pipe %d",
805 new_stream
->metadata_flag
? "metadata" : "data",
806 lttng_pipe_get_writefd(stream_pipe
));
807 if (new_stream
->metadata_flag
) {
808 consumer_del_stream_for_metadata(new_stream
);
810 consumer_del_stream_for_data(new_stream
);
812 goto error_add_stream_nosignal
;
815 DBG("Kernel consumer ADD_STREAM %s (fd: %d) %s with relayd id %" PRIu64
,
816 new_stream
->name
, fd
, new_stream
->chan
->pathname
, new_stream
->relayd_stream_id
);
819 error_add_stream_nosignal
:
821 error_add_stream_fatal
:
824 case LTTNG_CONSUMER_STREAMS_SENT
:
826 struct lttng_consumer_channel
*channel
;
830 * Get stream's channel reference. Needed when adding the stream to the
833 channel
= consumer_find_channel(msg
.u
.sent_streams
.channel_key
);
836 * We could not find the channel. Can happen if cpu hotplug
837 * happens while tearing down.
839 ERR("Unable to find channel key %" PRIu64
,
840 msg
.u
.sent_streams
.channel_key
);
841 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
844 health_code_update();
847 * Send status code to session daemon.
849 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
850 if (ret_send_status
< 0 ||
851 ret_code
!= LTTCOMM_CONSUMERD_SUCCESS
) {
852 /* Somehow, the session daemon is not responding anymore. */
853 goto error_streams_sent_nosignal
;
856 health_code_update();
859 * We should not send this message if we don't monitor the
860 * streams in this channel.
862 if (!channel
->monitor
) {
863 goto end_error_streams_sent
;
866 health_code_update();
867 /* Send stream to relayd if the stream has an ID. */
868 if (msg
.u
.sent_streams
.net_seq_idx
!= (uint64_t) -1ULL) {
869 int ret_send_relay_streams
;
871 ret_send_relay_streams
= consumer_send_relayd_streams_sent(
872 msg
.u
.sent_streams
.net_seq_idx
);
873 if (ret_send_relay_streams
< 0) {
874 goto error_streams_sent_nosignal
;
876 channel
->streams_sent_to_relayd
= true;
878 end_error_streams_sent
:
880 error_streams_sent_nosignal
:
883 case LTTNG_CONSUMER_UPDATE_STREAM
:
888 case LTTNG_CONSUMER_DESTROY_RELAYD
:
890 uint64_t index
= msg
.u
.destroy_relayd
.net_seq_idx
;
891 struct consumer_relayd_sock_pair
*relayd
;
894 DBG("Kernel consumer destroying relayd %" PRIu64
, index
);
896 /* Get relayd reference if exists. */
897 relayd
= consumer_find_relayd(index
);
898 if (relayd
== NULL
) {
899 DBG("Unable to find relayd %" PRIu64
, index
);
900 ret_code
= LTTCOMM_CONSUMERD_RELAYD_FAIL
;
904 * Each relayd socket pair has a refcount of stream attached to it
905 * which tells if the relayd is still active or not depending on the
908 * This will set the destroy flag of the relayd object and destroy it
909 * if the refcount reaches zero when called.
911 * The destroy can happen either here or when a stream fd hangs up.
914 consumer_flag_relayd_for_destroy(relayd
);
917 health_code_update();
919 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
920 if (ret_send_status
< 0) {
921 /* Somehow, the session daemon is not responding anymore. */
927 case LTTNG_CONSUMER_DATA_PENDING
:
929 int32_t ret_data_pending
;
930 uint64_t id
= msg
.u
.data_pending
.session_id
;
933 DBG("Kernel consumer data pending command for id %" PRIu64
, id
);
935 ret_data_pending
= consumer_data_pending(id
);
937 health_code_update();
939 /* Send back returned value to session daemon */
940 ret_send
= lttcomm_send_unix_sock(sock
, &ret_data_pending
,
941 sizeof(ret_data_pending
));
943 PERROR("send data pending ret code");
948 * No need to send back a status message since the data pending
949 * returned value is the response.
953 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL
:
955 struct lttng_consumer_channel
*channel
;
956 uint64_t key
= msg
.u
.snapshot_channel
.key
;
959 channel
= consumer_find_channel(key
);
961 ERR("Channel %" PRIu64
" not found", key
);
962 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
964 pthread_mutex_lock(&channel
->lock
);
965 if (msg
.u
.snapshot_channel
.metadata
== 1) {
968 ret_snapshot
= lttng_kconsumer_snapshot_metadata(
970 msg
.u
.snapshot_channel
.pathname
,
971 msg
.u
.snapshot_channel
.relayd_id
,
973 if (ret_snapshot
< 0) {
974 ERR("Snapshot metadata failed");
975 ret_code
= LTTCOMM_CONSUMERD_SNAPSHOT_FAILED
;
980 ret_snapshot
= lttng_kconsumer_snapshot_channel(
982 msg
.u
.snapshot_channel
.pathname
,
983 msg
.u
.snapshot_channel
.relayd_id
,
984 msg
.u
.snapshot_channel
985 .nb_packets_per_stream
,
987 if (ret_snapshot
< 0) {
988 ERR("Snapshot channel failed");
989 ret_code
= LTTCOMM_CONSUMERD_SNAPSHOT_FAILED
;
992 pthread_mutex_unlock(&channel
->lock
);
994 health_code_update();
996 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
997 if (ret_send_status
< 0) {
998 /* Somehow, the session daemon is not responding anymore. */
1003 case LTTNG_CONSUMER_DESTROY_CHANNEL
:
1005 uint64_t key
= msg
.u
.destroy_channel
.key
;
1006 struct lttng_consumer_channel
*channel
;
1007 int ret_send_status
;
1009 channel
= consumer_find_channel(key
);
1011 ERR("Kernel consumer destroy channel %" PRIu64
" not found", key
);
1012 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
1015 health_code_update();
1017 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1018 if (ret_send_status
< 0) {
1019 /* Somehow, the session daemon is not responding anymore. */
1020 goto end_destroy_channel
;
1023 health_code_update();
1025 /* Stop right now if no channel was found. */
1027 goto end_destroy_channel
;
1031 * This command should ONLY be issued for channel with streams set in
1034 assert(!channel
->monitor
);
1037 * The refcount should ALWAYS be 0 in the case of a channel in no
1040 assert(!uatomic_sub_return(&channel
->refcount
, 1));
1042 consumer_del_channel(channel
);
1043 end_destroy_channel
:
1046 case LTTNG_CONSUMER_DISCARDED_EVENTS
:
1050 struct lttng_consumer_channel
*channel
;
1051 uint64_t id
= msg
.u
.discarded_events
.session_id
;
1052 uint64_t key
= msg
.u
.discarded_events
.channel_key
;
1054 DBG("Kernel consumer discarded events command for session id %"
1055 PRIu64
", channel key %" PRIu64
, id
, key
);
1057 channel
= consumer_find_channel(key
);
1059 ERR("Kernel consumer discarded events channel %"
1060 PRIu64
" not found", key
);
1063 count
= channel
->discarded_events
;
1066 health_code_update();
1068 /* Send back returned value to session daemon */
1069 ret
= lttcomm_send_unix_sock(sock
, &count
, sizeof(count
));
1071 PERROR("send discarded events");
1077 case LTTNG_CONSUMER_LOST_PACKETS
:
1081 struct lttng_consumer_channel
*channel
;
1082 uint64_t id
= msg
.u
.lost_packets
.session_id
;
1083 uint64_t key
= msg
.u
.lost_packets
.channel_key
;
1085 DBG("Kernel consumer lost packets command for session id %"
1086 PRIu64
", channel key %" PRIu64
, id
, key
);
1088 channel
= consumer_find_channel(key
);
1090 ERR("Kernel consumer lost packets channel %"
1091 PRIu64
" not found", key
);
1094 count
= channel
->lost_packets
;
1097 health_code_update();
1099 /* Send back returned value to session daemon */
1100 ret
= lttcomm_send_unix_sock(sock
, &count
, sizeof(count
));
1102 PERROR("send lost packets");
1108 case LTTNG_CONSUMER_SET_CHANNEL_MONITOR_PIPE
:
1110 int channel_monitor_pipe
;
1111 int ret_send_status
, ret_set_channel_monitor_pipe
;
1114 ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1115 /* Successfully received the command's type. */
1116 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1117 if (ret_send_status
< 0) {
1121 ret_recv
= lttcomm_recv_fds_unix_sock(
1122 sock
, &channel_monitor_pipe
, 1);
1123 if (ret_recv
!= sizeof(channel_monitor_pipe
)) {
1124 ERR("Failed to receive channel monitor pipe");
1128 DBG("Received channel monitor pipe (%d)", channel_monitor_pipe
);
1129 ret_set_channel_monitor_pipe
=
1130 consumer_timer_thread_set_channel_monitor_pipe(
1131 channel_monitor_pipe
);
1132 if (!ret_set_channel_monitor_pipe
) {
1136 ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1137 /* Set the pipe as non-blocking. */
1138 ret_fcntl
= fcntl(channel_monitor_pipe
, F_GETFL
, 0);
1139 if (ret_fcntl
== -1) {
1140 PERROR("fcntl get flags of the channel monitoring pipe");
1145 ret_fcntl
= fcntl(channel_monitor_pipe
, F_SETFL
,
1146 flags
| O_NONBLOCK
);
1147 if (ret_fcntl
== -1) {
1148 PERROR("fcntl set O_NONBLOCK flag of the channel monitoring pipe");
1151 DBG("Channel monitor pipe set as non-blocking");
1153 ret_code
= LTTCOMM_CONSUMERD_ALREADY_SET
;
1155 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1156 if (ret_send_status
< 0) {
1161 case LTTNG_CONSUMER_ROTATE_CHANNEL
:
1163 struct lttng_consumer_channel
*channel
;
1164 uint64_t key
= msg
.u
.rotate_channel
.key
;
1165 int ret_send_status
;
1167 DBG("Consumer rotate channel %" PRIu64
, key
);
1169 channel
= consumer_find_channel(key
);
1171 ERR("Channel %" PRIu64
" not found", key
);
1172 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
1175 * Sample the rotate position of all the streams in this channel.
1177 int ret_rotate_channel
;
1179 ret_rotate_channel
= lttng_consumer_rotate_channel(
1181 msg
.u
.rotate_channel
.relayd_id
,
1182 msg
.u
.rotate_channel
.metadata
, ctx
);
1183 if (ret_rotate_channel
< 0) {
1184 ERR("Rotate channel failed");
1185 ret_code
= LTTCOMM_CONSUMERD_ROTATION_FAIL
;
1188 health_code_update();
1191 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1192 if (ret_send_status
< 0) {
1193 /* Somehow, the session daemon is not responding anymore. */
1194 goto error_rotate_channel
;
1197 /* Rotate the streams that are ready right now. */
1200 ret_rotate
= lttng_consumer_rotate_ready_streams(
1202 if (ret_rotate
< 0) {
1203 ERR("Rotate ready streams failed");
1207 error_rotate_channel
:
1210 case LTTNG_CONSUMER_CLEAR_CHANNEL
:
1212 struct lttng_consumer_channel
*channel
;
1213 uint64_t key
= msg
.u
.clear_channel
.key
;
1214 int ret_send_status
;
1216 channel
= consumer_find_channel(key
);
1218 DBG("Channel %" PRIu64
" not found", key
);
1219 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
1221 int ret_clear_channel
;
1224 lttng_consumer_clear_channel(channel
);
1225 if (ret_clear_channel
) {
1226 ERR("Clear channel failed");
1227 ret_code
= ret_clear_channel
;
1230 health_code_update();
1233 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1234 if (ret_send_status
< 0) {
1235 /* Somehow, the session daemon is not responding anymore. */
1241 case LTTNG_CONSUMER_INIT
:
1243 int ret_send_status
;
1245 ret_code
= lttng_consumer_init_command(ctx
,
1246 msg
.u
.init
.sessiond_uuid
);
1247 health_code_update();
1248 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1249 if (ret_send_status
< 0) {
1250 /* Somehow, the session daemon is not responding anymore. */
1255 case LTTNG_CONSUMER_CREATE_TRACE_CHUNK
:
1257 const struct lttng_credentials credentials
= {
1258 .uid
= LTTNG_OPTIONAL_INIT_VALUE(msg
.u
.create_trace_chunk
.credentials
.value
.uid
),
1259 .gid
= LTTNG_OPTIONAL_INIT_VALUE(msg
.u
.create_trace_chunk
.credentials
.value
.gid
),
1261 const bool is_local_trace
=
1262 !msg
.u
.create_trace_chunk
.relayd_id
.is_set
;
1263 const uint64_t relayd_id
=
1264 msg
.u
.create_trace_chunk
.relayd_id
.value
;
1265 const char *chunk_override_name
=
1266 *msg
.u
.create_trace_chunk
.override_name
?
1267 msg
.u
.create_trace_chunk
.override_name
:
1269 struct lttng_directory_handle
*chunk_directory_handle
= NULL
;
1272 * The session daemon will only provide a chunk directory file
1273 * descriptor for local traces.
1275 if (is_local_trace
) {
1277 int ret_send_status
;
1280 /* Acnowledge the reception of the command. */
1281 ret_send_status
= consumer_send_status_msg(
1282 sock
, LTTCOMM_CONSUMERD_SUCCESS
);
1283 if (ret_send_status
< 0) {
1284 /* Somehow, the session daemon is not responding anymore. */
1288 ret_recv
= lttcomm_recv_fds_unix_sock(
1289 sock
, &chunk_dirfd
, 1);
1290 if (ret_recv
!= sizeof(chunk_dirfd
)) {
1291 ERR("Failed to receive trace chunk directory file descriptor");
1295 DBG("Received trace chunk directory fd (%d)",
1297 chunk_directory_handle
= lttng_directory_handle_create_from_dirfd(
1299 if (!chunk_directory_handle
) {
1300 ERR("Failed to initialize chunk directory handle from directory file descriptor");
1301 if (close(chunk_dirfd
)) {
1302 PERROR("Failed to close chunk directory file descriptor");
1308 ret_code
= lttng_consumer_create_trace_chunk(
1309 !is_local_trace
? &relayd_id
: NULL
,
1310 msg
.u
.create_trace_chunk
.session_id
,
1311 msg
.u
.create_trace_chunk
.chunk_id
,
1312 (time_t) msg
.u
.create_trace_chunk
1313 .creation_timestamp
,
1314 chunk_override_name
,
1315 msg
.u
.create_trace_chunk
.credentials
.is_set
?
1318 chunk_directory_handle
);
1319 lttng_directory_handle_put(chunk_directory_handle
);
1320 goto end_msg_sessiond
;
1322 case LTTNG_CONSUMER_CLOSE_TRACE_CHUNK
:
1324 enum lttng_trace_chunk_command_type close_command
=
1325 msg
.u
.close_trace_chunk
.close_command
.value
;
1326 const uint64_t relayd_id
=
1327 msg
.u
.close_trace_chunk
.relayd_id
.value
;
1328 struct lttcomm_consumer_close_trace_chunk_reply reply
;
1329 char path
[LTTNG_PATH_MAX
];
1332 ret_code
= lttng_consumer_close_trace_chunk(
1333 msg
.u
.close_trace_chunk
.relayd_id
.is_set
?
1336 msg
.u
.close_trace_chunk
.session_id
,
1337 msg
.u
.close_trace_chunk
.chunk_id
,
1338 (time_t) msg
.u
.close_trace_chunk
.close_timestamp
,
1339 msg
.u
.close_trace_chunk
.close_command
.is_set
?
1342 reply
.ret_code
= ret_code
;
1343 reply
.path_length
= strlen(path
) + 1;
1344 ret_send
= lttcomm_send_unix_sock(sock
, &reply
, sizeof(reply
));
1345 if (ret_send
!= sizeof(reply
)) {
1348 ret_send
= lttcomm_send_unix_sock(
1349 sock
, path
, reply
.path_length
);
1350 if (ret_send
!= reply
.path_length
) {
1355 case LTTNG_CONSUMER_TRACE_CHUNK_EXISTS
:
1357 const uint64_t relayd_id
=
1358 msg
.u
.trace_chunk_exists
.relayd_id
.value
;
1360 ret_code
= lttng_consumer_trace_chunk_exists(
1361 msg
.u
.trace_chunk_exists
.relayd_id
.is_set
?
1363 msg
.u
.trace_chunk_exists
.session_id
,
1364 msg
.u
.trace_chunk_exists
.chunk_id
);
1365 goto end_msg_sessiond
;
1367 case LTTNG_CONSUMER_OPEN_CHANNEL_PACKETS
:
1369 const uint64_t key
= msg
.u
.open_channel_packets
.key
;
1370 struct lttng_consumer_channel
*channel
=
1371 consumer_find_channel(key
);
1374 pthread_mutex_lock(&channel
->lock
);
1375 ret_code
= lttng_consumer_open_channel_packets(channel
);
1376 pthread_mutex_unlock(&channel
->lock
);
1378 WARN("Channel %" PRIu64
" not found", key
);
1379 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
1382 health_code_update();
1383 goto end_msg_sessiond
;
1391 * Return 1 to indicate success since the 0 value can be a socket
1392 * shutdown during the recv() or send() call.
1397 /* This will issue a consumer stop. */
1402 * The returned value here is not useful since either way we'll return 1 to
1403 * the caller because the session daemon socket management is done
1404 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
1407 int ret_send_status
;
1409 ret_send_status
= consumer_send_status_msg(sock
, ret_code
);
1410 if (ret_send_status
< 0) {
1418 health_code_update();
1424 * Sync metadata meaning request them to the session daemon and snapshot to the
1425 * metadata thread can consumer them.
1427 * Metadata stream lock MUST be acquired.
1429 enum sync_metadata_status
lttng_kconsumer_sync_metadata(
1430 struct lttng_consumer_stream
*metadata
)
1433 enum sync_metadata_status status
;
1437 ret
= kernctl_buffer_flush(metadata
->wait_fd
);
1439 ERR("Failed to flush kernel stream");
1440 status
= SYNC_METADATA_STATUS_ERROR
;
1444 ret
= kernctl_snapshot(metadata
->wait_fd
);
1446 if (errno
== EAGAIN
) {
1447 /* No new metadata, exit. */
1448 DBG("Sync metadata, no new kernel metadata");
1449 status
= SYNC_METADATA_STATUS_NO_DATA
;
1451 ERR("Sync metadata, taking kernel snapshot failed.");
1452 status
= SYNC_METADATA_STATUS_ERROR
;
1455 status
= SYNC_METADATA_STATUS_NEW_DATA
;
1463 int extract_common_subbuffer_info(struct lttng_consumer_stream
*stream
,
1464 struct stream_subbuffer
*subbuf
)
1468 ret
= kernctl_get_subbuf_size(
1469 stream
->wait_fd
, &subbuf
->info
.data
.subbuf_size
);
1474 ret
= kernctl_get_padded_subbuf_size(
1475 stream
->wait_fd
, &subbuf
->info
.data
.padded_subbuf_size
);
1485 int extract_metadata_subbuffer_info(struct lttng_consumer_stream
*stream
,
1486 struct stream_subbuffer
*subbuf
)
1490 ret
= extract_common_subbuffer_info(stream
, subbuf
);
1495 ret
= kernctl_get_metadata_version(
1496 stream
->wait_fd
, &subbuf
->info
.metadata
.version
);
1506 int extract_data_subbuffer_info(struct lttng_consumer_stream
*stream
,
1507 struct stream_subbuffer
*subbuf
)
1511 ret
= extract_common_subbuffer_info(stream
, subbuf
);
1516 ret
= kernctl_get_packet_size(
1517 stream
->wait_fd
, &subbuf
->info
.data
.packet_size
);
1519 PERROR("Failed to get sub-buffer packet size");
1523 ret
= kernctl_get_content_size(
1524 stream
->wait_fd
, &subbuf
->info
.data
.content_size
);
1526 PERROR("Failed to get sub-buffer content size");
1530 ret
= kernctl_get_timestamp_begin(
1531 stream
->wait_fd
, &subbuf
->info
.data
.timestamp_begin
);
1533 PERROR("Failed to get sub-buffer begin timestamp");
1537 ret
= kernctl_get_timestamp_end(
1538 stream
->wait_fd
, &subbuf
->info
.data
.timestamp_end
);
1540 PERROR("Failed to get sub-buffer end timestamp");
1544 ret
= kernctl_get_events_discarded(
1545 stream
->wait_fd
, &subbuf
->info
.data
.events_discarded
);
1547 PERROR("Failed to get sub-buffer events discarded count");
1551 ret
= kernctl_get_sequence_number(stream
->wait_fd
,
1552 &subbuf
->info
.data
.sequence_number
.value
);
1554 /* May not be supported by older LTTng-modules. */
1555 if (ret
!= -ENOTTY
) {
1556 PERROR("Failed to get sub-buffer sequence number");
1560 subbuf
->info
.data
.sequence_number
.is_set
= true;
1563 ret
= kernctl_get_stream_id(
1564 stream
->wait_fd
, &subbuf
->info
.data
.stream_id
);
1566 PERROR("Failed to get stream id");
1570 ret
= kernctl_get_instance_id(stream
->wait_fd
,
1571 &subbuf
->info
.data
.stream_instance_id
.value
);
1573 /* May not be supported by older LTTng-modules. */
1574 if (ret
!= -ENOTTY
) {
1575 PERROR("Failed to get stream instance id");
1579 subbuf
->info
.data
.stream_instance_id
.is_set
= true;
1586 int get_subbuffer_common(struct lttng_consumer_stream
*stream
,
1587 struct stream_subbuffer
*subbuffer
)
1591 ret
= kernctl_get_next_subbuf(stream
->wait_fd
);
1594 * The caller only expects -ENODATA when there is no data to
1595 * read, but the kernel tracer returns -EAGAIN when there is
1596 * currently no data for a non-finalized stream, and -ENODATA
1597 * when there is no data for a finalized stream. Those can be
1598 * combined into a -ENODATA return value.
1600 if (ret
== -EAGAIN
) {
1607 ret
= stream
->read_subbuffer_ops
.extract_subbuffer_info(
1614 int get_next_subbuffer_splice(struct lttng_consumer_stream
*stream
,
1615 struct stream_subbuffer
*subbuffer
)
1619 ret
= get_subbuffer_common(stream
, subbuffer
);
1624 subbuffer
->buffer
.fd
= stream
->wait_fd
;
1630 int get_next_subbuffer_mmap(struct lttng_consumer_stream
*stream
,
1631 struct stream_subbuffer
*subbuffer
)
1636 ret
= get_subbuffer_common(stream
, subbuffer
);
1641 ret
= get_current_subbuf_addr(stream
, &addr
);
1646 subbuffer
->buffer
.buffer
= lttng_buffer_view_init(
1647 addr
, 0, subbuffer
->info
.data
.padded_subbuf_size
);
1653 int get_next_subbuffer_metadata_check(struct lttng_consumer_stream
*stream
,
1654 struct stream_subbuffer
*subbuffer
)
1660 ret
= kernctl_get_next_subbuf_metadata_check(stream
->wait_fd
,
1666 ret
= stream
->read_subbuffer_ops
.extract_subbuffer_info(
1672 LTTNG_OPTIONAL_SET(&subbuffer
->info
.metadata
.coherent
, coherent
);
1674 ret
= get_current_subbuf_addr(stream
, &addr
);
1679 subbuffer
->buffer
.buffer
= lttng_buffer_view_init(
1680 addr
, 0, subbuffer
->info
.data
.padded_subbuf_size
);
1681 DBG("Got metadata packet with padded_subbuf_size = %lu, coherent = %s",
1682 subbuffer
->info
.metadata
.padded_subbuf_size
,
1683 coherent
? "true" : "false");
1686 * The caller only expects -ENODATA when there is no data to read, but
1687 * the kernel tracer returns -EAGAIN when there is currently no data
1688 * for a non-finalized stream, and -ENODATA when there is no data for a
1689 * finalized stream. Those can be combined into a -ENODATA return value.
1691 if (ret
== -EAGAIN
) {
1699 int put_next_subbuffer(struct lttng_consumer_stream
*stream
,
1700 struct stream_subbuffer
*subbuffer
)
1702 const int ret
= kernctl_put_next_subbuf(stream
->wait_fd
);
1705 if (ret
== -EFAULT
) {
1706 PERROR("Error in unreserving sub buffer");
1707 } else if (ret
== -EIO
) {
1708 /* Should never happen with newer LTTng versions */
1709 PERROR("Reader has been pushed by the writer, last sub-buffer corrupted");
1717 bool is_get_next_check_metadata_available(int tracer_fd
)
1719 const int ret
= kernctl_get_next_subbuf_metadata_check(tracer_fd
, NULL
);
1720 const bool available
= ret
!= -ENOTTY
;
1723 /* get succeeded, make sure to put the subbuffer. */
1724 kernctl_put_subbuf(tracer_fd
);
1731 int signal_metadata(struct lttng_consumer_stream
*stream
,
1732 struct lttng_consumer_local_data
*ctx
)
1734 ASSERT_LOCKED(stream
->metadata_rdv_lock
);
1735 return pthread_cond_broadcast(&stream
->metadata_rdv
) ? -errno
: 0;
1739 int lttng_kconsumer_set_stream_ops(
1740 struct lttng_consumer_stream
*stream
)
1744 if (stream
->metadata_flag
&& stream
->chan
->is_live
) {
1745 DBG("Attempting to enable metadata bucketization for live consumers");
1746 if (is_get_next_check_metadata_available(stream
->wait_fd
)) {
1747 DBG("Kernel tracer supports get_next_subbuffer_metadata_check, metadata will be accumulated until a coherent state is reached");
1748 stream
->read_subbuffer_ops
.get_next_subbuffer
=
1749 get_next_subbuffer_metadata_check
;
1750 ret
= consumer_stream_enable_metadata_bucketization(
1757 * The kernel tracer version is too old to indicate
1758 * when the metadata stream has reached a "coherent"
1759 * (parseable) point.
1761 * This means that a live viewer may see an incoherent
1762 * sequence of metadata and fail to parse it.
1764 WARN("Kernel tracer does not support get_next_subbuffer_metadata_check which may cause live clients to fail to parse the metadata stream");
1765 metadata_bucket_destroy(stream
->metadata_bucket
);
1766 stream
->metadata_bucket
= NULL
;
1769 stream
->read_subbuffer_ops
.on_sleep
= signal_metadata
;
1772 if (!stream
->read_subbuffer_ops
.get_next_subbuffer
) {
1773 if (stream
->chan
->output
== CONSUMER_CHANNEL_MMAP
) {
1774 stream
->read_subbuffer_ops
.get_next_subbuffer
=
1775 get_next_subbuffer_mmap
;
1777 stream
->read_subbuffer_ops
.get_next_subbuffer
=
1778 get_next_subbuffer_splice
;
1782 if (stream
->metadata_flag
) {
1783 stream
->read_subbuffer_ops
.extract_subbuffer_info
=
1784 extract_metadata_subbuffer_info
;
1786 stream
->read_subbuffer_ops
.extract_subbuffer_info
=
1787 extract_data_subbuffer_info
;
1788 if (stream
->chan
->is_live
) {
1789 stream
->read_subbuffer_ops
.send_live_beacon
=
1790 consumer_flush_kernel_index
;
1794 stream
->read_subbuffer_ops
.put_next_subbuffer
= put_next_subbuffer
;
1799 int lttng_kconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
)
1806 * Don't create anything if this is set for streaming or if there is
1807 * no current trace chunk on the parent channel.
1809 if (stream
->net_seq_idx
== (uint64_t) -1ULL && stream
->chan
->monitor
&&
1810 stream
->chan
->trace_chunk
) {
1811 ret
= consumer_stream_create_output_files(stream
, true);
1817 if (stream
->output
== LTTNG_EVENT_MMAP
) {
1818 /* get the len of the mmap region */
1819 unsigned long mmap_len
;
1821 ret
= kernctl_get_mmap_len(stream
->wait_fd
, &mmap_len
);
1823 PERROR("kernctl_get_mmap_len");
1824 goto error_close_fd
;
1826 stream
->mmap_len
= (size_t) mmap_len
;
1828 stream
->mmap_base
= mmap(NULL
, stream
->mmap_len
, PROT_READ
,
1829 MAP_PRIVATE
, stream
->wait_fd
, 0);
1830 if (stream
->mmap_base
== MAP_FAILED
) {
1831 PERROR("Error mmaping");
1833 goto error_close_fd
;
1837 ret
= lttng_kconsumer_set_stream_ops(stream
);
1839 goto error_close_fd
;
1842 /* we return 0 to let the library handle the FD internally */
1846 if (stream
->out_fd
>= 0) {
1849 err
= close(stream
->out_fd
);
1851 stream
->out_fd
= -1;
1858 * Check if data is still being extracted from the buffers for a specific
1859 * stream. Consumer data lock MUST be acquired before calling this function
1860 * and the stream lock.
1862 * Return 1 if the traced data are still getting read else 0 meaning that the
1863 * data is available for trace viewer reading.
1865 int lttng_kconsumer_data_pending(struct lttng_consumer_stream
*stream
)
1871 if (stream
->endpoint_status
!= CONSUMER_ENDPOINT_ACTIVE
) {
1876 ret
= kernctl_get_next_subbuf(stream
->wait_fd
);
1878 /* There is still data so let's put back this subbuffer. */
1879 ret
= kernctl_put_subbuf(stream
->wait_fd
);
1881 ret
= 1; /* Data is pending */
1885 /* Data is NOT pending and ready to be read. */