2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <lttng/ust-ctl.h>
27 #include <sys/socket.h>
29 #include <sys/types.h>
32 #include <urcu/list.h>
35 #include <common/common.h>
36 #include <common/sessiond-comm/sessiond-comm.h>
37 #include <common/relayd/relayd.h>
38 #include <common/compat/fcntl.h>
39 #include <common/consumer-metadata-cache.h>
40 #include <common/consumer-stream.h>
41 #include <common/consumer-timer.h>
42 #include <common/utils.h>
44 #include "ust-consumer.h"
46 extern struct lttng_consumer_global_data consumer_data
;
47 extern int consumer_poll_timeout
;
48 extern volatile int consumer_quit
;
51 * Free channel object and all streams associated with it. This MUST be used
52 * only and only if the channel has _NEVER_ been added to the global channel
55 static void destroy_channel(struct lttng_consumer_channel
*channel
)
57 struct lttng_consumer_stream
*stream
, *stmp
;
61 DBG("UST consumer cleaning stream list");
63 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->streams
.head
,
65 cds_list_del(&stream
->send_node
);
66 ustctl_destroy_stream(stream
->ustream
);
71 * If a channel is available meaning that was created before the streams
75 lttng_ustconsumer_del_channel(channel
);
81 * Add channel to internal consumer state.
83 * Returns 0 on success or else a negative value.
85 static int add_channel(struct lttng_consumer_channel
*channel
,
86 struct lttng_consumer_local_data
*ctx
)
93 if (ctx
->on_recv_channel
!= NULL
) {
94 ret
= ctx
->on_recv_channel(channel
);
96 ret
= consumer_add_channel(channel
, ctx
);
98 /* Most likely an ENOMEM. */
99 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
103 ret
= consumer_add_channel(channel
, ctx
);
106 DBG("UST consumer channel added (key: %" PRIu64
")", channel
->key
);
113 * Allocate and return a consumer channel object.
115 static struct lttng_consumer_channel
*allocate_channel(uint64_t session_id
,
116 const char *pathname
, const char *name
, uid_t uid
, gid_t gid
,
117 uint64_t relayd_id
, uint64_t key
, enum lttng_event_output output
,
118 uint64_t tracefile_size
, uint64_t tracefile_count
,
119 uint64_t session_id_per_pid
, unsigned int monitor
)
124 return consumer_allocate_channel(key
, session_id
, pathname
, name
, uid
,
125 gid
, relayd_id
, output
, tracefile_size
,
126 tracefile_count
, session_id_per_pid
, monitor
);
130 * Allocate and return a consumer stream object. If _alloc_ret is not NULL, the
131 * error value if applicable is set in it else it is kept untouched.
133 * Return NULL on error else the newly allocated stream object.
135 static struct lttng_consumer_stream
*allocate_stream(int cpu
, int key
,
136 struct lttng_consumer_channel
*channel
,
137 struct lttng_consumer_local_data
*ctx
, int *_alloc_ret
)
140 struct lttng_consumer_stream
*stream
= NULL
;
145 stream
= consumer_allocate_stream(channel
->key
,
147 LTTNG_CONSUMER_ACTIVE_STREAM
,
157 if (stream
== NULL
) {
161 * We could not find the channel. Can happen if cpu hotplug
162 * happens while tearing down.
164 DBG3("Could not find channel");
169 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
175 stream
->chan
= channel
;
179 *_alloc_ret
= alloc_ret
;
185 * Send the given stream pointer to the corresponding thread.
187 * Returns 0 on success else a negative value.
189 static int send_stream_to_thread(struct lttng_consumer_stream
*stream
,
190 struct lttng_consumer_local_data
*ctx
)
193 struct lttng_pipe
*stream_pipe
;
195 /* Get the right pipe where the stream will be sent. */
196 if (stream
->metadata_flag
) {
197 stream_pipe
= ctx
->consumer_metadata_pipe
;
199 stream_pipe
= ctx
->consumer_data_pipe
;
202 ret
= lttng_pipe_write(stream_pipe
, &stream
, sizeof(stream
));
204 ERR("Consumer write %s stream to pipe %d",
205 stream
->metadata_flag
? "metadata" : "data",
206 lttng_pipe_get_writefd(stream_pipe
));
213 * Create streams for the given channel using liblttng-ust-ctl.
215 * Return 0 on success else a negative value.
217 static int create_ust_streams(struct lttng_consumer_channel
*channel
,
218 struct lttng_consumer_local_data
*ctx
)
221 struct ustctl_consumer_stream
*ustream
;
222 struct lttng_consumer_stream
*stream
;
228 * While a stream is available from ustctl. When NULL is returned, we've
229 * reached the end of the possible stream for the channel.
231 while ((ustream
= ustctl_create_stream(channel
->uchan
, cpu
))) {
233 int ust_metadata_pipe
[2];
235 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
&& channel
->monitor
) {
236 ret
= utils_create_pipe_cloexec_nonblock(ust_metadata_pipe
);
238 ERR("Create ust metadata poll pipe");
241 wait_fd
= ust_metadata_pipe
[0];
243 wait_fd
= ustctl_stream_get_wait_fd(ustream
);
246 /* Allocate consumer stream object. */
247 stream
= allocate_stream(cpu
, wait_fd
, channel
, ctx
, &ret
);
251 stream
->ustream
= ustream
;
253 * Store it so we can save multiple function calls afterwards since
254 * this value is used heavily in the stream threads. This is UST
255 * specific so this is why it's done after allocation.
257 stream
->wait_fd
= wait_fd
;
260 * Increment channel refcount since the channel reference has now been
261 * assigned in the allocation process above.
263 if (stream
->chan
->monitor
) {
264 uatomic_inc(&stream
->chan
->refcount
);
268 * Order is important this is why a list is used. On error, the caller
269 * should clean this list.
271 cds_list_add_tail(&stream
->send_node
, &channel
->streams
.head
);
273 ret
= ustctl_get_max_subbuf_size(stream
->ustream
,
274 &stream
->max_sb_size
);
276 ERR("ustctl_get_max_subbuf_size failed for stream %s",
281 /* Do actions once stream has been received. */
282 if (ctx
->on_recv_stream
) {
283 ret
= ctx
->on_recv_stream(stream
);
289 DBG("UST consumer add stream %s (key: %" PRIu64
") with relayd id %" PRIu64
,
290 stream
->name
, stream
->key
, stream
->relayd_stream_id
);
292 /* Set next CPU stream. */
293 channel
->streams
.count
= ++cpu
;
295 /* Keep stream reference when creating metadata. */
296 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
) {
297 channel
->metadata_stream
= stream
;
298 stream
->ust_metadata_poll_pipe
[0] = ust_metadata_pipe
[0];
299 stream
->ust_metadata_poll_pipe
[1] = ust_metadata_pipe
[1];
311 * Create an UST channel with the given attributes and send it to the session
312 * daemon using the ust ctl API.
314 * Return 0 on success or else a negative value.
316 static int create_ust_channel(struct ustctl_consumer_channel_attr
*attr
,
317 struct ustctl_consumer_channel
**chanp
)
320 struct ustctl_consumer_channel
*channel
;
325 DBG3("Creating channel to ustctl with attr: [overwrite: %d, "
326 "subbuf_size: %" PRIu64
", num_subbuf: %" PRIu64
", "
327 "switch_timer_interval: %u, read_timer_interval: %u, "
328 "output: %d, type: %d", attr
->overwrite
, attr
->subbuf_size
,
329 attr
->num_subbuf
, attr
->switch_timer_interval
,
330 attr
->read_timer_interval
, attr
->output
, attr
->type
);
332 channel
= ustctl_create_channel(attr
);
347 * Send a single given stream to the session daemon using the sock.
349 * Return 0 on success else a negative value.
351 static int send_sessiond_stream(int sock
, struct lttng_consumer_stream
*stream
)
358 DBG("UST consumer sending stream %" PRIu64
" to sessiond", stream
->key
);
360 /* Send stream to session daemon. */
361 ret
= ustctl_send_stream_to_sessiond(sock
, stream
->ustream
);
371 * Send channel to sessiond.
373 * Return 0 on success or else a negative value.
375 static int send_sessiond_channel(int sock
,
376 struct lttng_consumer_channel
*channel
,
377 struct lttng_consumer_local_data
*ctx
, int *relayd_error
)
379 int ret
, ret_code
= LTTNG_OK
;
380 struct lttng_consumer_stream
*stream
;
386 DBG("UST consumer sending channel %s to sessiond", channel
->name
);
388 if (channel
->relayd_id
!= (uint64_t) -1ULL) {
389 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
390 /* Try to send the stream to the relayd if one is available. */
391 ret
= consumer_send_relayd_stream(stream
, stream
->chan
->pathname
);
394 * Flag that the relayd was the problem here probably due to a
395 * communicaton error on the socket.
400 ret_code
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
405 /* Inform sessiond that we are about to send channel and streams. */
406 ret
= consumer_send_status_msg(sock
, ret_code
);
407 if (ret
< 0 || ret_code
!= LTTNG_OK
) {
409 * Either the session daemon is not responding or the relayd died so we
415 /* Send channel to sessiond. */
416 ret
= ustctl_send_channel_to_sessiond(sock
, channel
->uchan
);
421 ret
= ustctl_channel_close_wakeup_fd(channel
->uchan
);
426 /* The channel was sent successfully to the sessiond at this point. */
427 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
428 /* Send stream to session daemon. */
429 ret
= send_sessiond_stream(sock
, stream
);
435 /* Tell sessiond there is no more stream. */
436 ret
= ustctl_send_stream_to_sessiond(sock
, NULL
);
441 DBG("UST consumer NULL stream sent to sessiond");
446 if (ret_code
!= LTTNG_OK
) {
453 * Creates a channel and streams and add the channel it to the channel internal
454 * state. The created stream must ONLY be sent once the GET_CHANNEL command is
457 * Return 0 on success or else, a negative value is returned and the channel
458 * MUST be destroyed by consumer_del_channel().
460 static int ask_channel(struct lttng_consumer_local_data
*ctx
, int sock
,
461 struct lttng_consumer_channel
*channel
,
462 struct ustctl_consumer_channel_attr
*attr
)
471 * This value is still used by the kernel consumer since for the kernel,
472 * the stream ownership is not IN the consumer so we need to have the
473 * number of left stream that needs to be initialized so we can know when
474 * to delete the channel (see consumer.c).
476 * As for the user space tracer now, the consumer creates and sends the
477 * stream to the session daemon which only sends them to the application
478 * once every stream of a channel is received making this value useless
479 * because we they will be added to the poll thread before the application
480 * receives them. This ensures that a stream can not hang up during
481 * initilization of a channel.
483 channel
->nb_init_stream_left
= 0;
485 /* The reply msg status is handled in the following call. */
486 ret
= create_ust_channel(attr
, &channel
->uchan
);
491 channel
->wait_fd
= ustctl_channel_get_wait_fd(channel
->uchan
);
494 * For the snapshots (no monitor), we create the metadata streams
495 * on demand, not during the channel creation.
497 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
&& !channel
->monitor
) {
502 /* Open all streams for this channel. */
503 ret
= create_ust_streams(channel
, ctx
);
513 * Send all stream of a channel to the right thread handling it.
515 * On error, return a negative value else 0 on success.
517 static int send_streams_to_thread(struct lttng_consumer_channel
*channel
,
518 struct lttng_consumer_local_data
*ctx
)
521 struct lttng_consumer_stream
*stream
, *stmp
;
526 /* Send streams to the corresponding thread. */
527 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->streams
.head
,
529 /* Sending the stream to the thread. */
530 ret
= send_stream_to_thread(stream
, ctx
);
533 * If we are unable to send the stream to the thread, there is
534 * a big problem so just stop everything.
539 /* Remove node from the channel stream list. */
540 cds_list_del(&stream
->send_node
);
543 * From this point on, the stream's ownership has been moved away from
544 * the channel and becomes globally visible.
546 stream
->globally_visible
= 1;
554 * Flush channel's streams using the given key to retrieve the channel.
556 * Return 0 on success else an LTTng error code.
558 static int flush_channel(uint64_t chan_key
)
561 struct lttng_consumer_channel
*channel
;
562 struct lttng_consumer_stream
*stream
;
564 struct lttng_ht_iter iter
;
566 DBG("UST consumer flush channel key %" PRIu64
, chan_key
);
569 channel
= consumer_find_channel(chan_key
);
571 ERR("UST consumer flush channel %" PRIu64
" not found", chan_key
);
572 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
576 ht
= consumer_data
.stream_per_chan_id_ht
;
578 /* For each stream of the channel id, flush it. */
579 cds_lfht_for_each_entry_duplicate(ht
->ht
,
580 ht
->hash_fct(&channel
->key
, lttng_ht_seed
), ht
->match_fct
,
581 &channel
->key
, &iter
.iter
, stream
, node_channel_id
.node
) {
582 ustctl_flush_buffer(stream
->ustream
, 1);
590 * Close metadata stream wakeup_fd using the given key to retrieve the channel.
591 * RCU read side lock MUST be acquired before calling this function.
593 * Return 0 on success else an LTTng error code.
595 static int close_metadata(uint64_t chan_key
)
598 struct lttng_consumer_channel
*channel
;
600 DBG("UST consumer close metadata key %" PRIu64
, chan_key
);
602 channel
= consumer_find_channel(chan_key
);
605 * This is possible if the metadata thread has issue a delete because
606 * the endpoint point of the stream hung up. There is no way the
607 * session daemon can know about it thus use a DBG instead of an actual
610 DBG("UST consumer close metadata %" PRIu64
" not found", chan_key
);
611 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
615 pthread_mutex_lock(&consumer_data
.lock
);
616 pthread_mutex_lock(&channel
->lock
);
618 if (cds_lfht_is_node_deleted(&channel
->node
.node
)) {
622 if (channel
->switch_timer_enabled
== 1) {
623 DBG("Deleting timer on metadata channel");
624 consumer_timer_switch_stop(channel
);
627 if (channel
->metadata_stream
) {
628 ret
= ustctl_stream_close_wakeup_fd(channel
->metadata_stream
->ustream
);
630 ERR("UST consumer unable to close fd of metadata (ret: %d)", ret
);
631 ret
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
634 if (channel
->monitor
) {
635 /* close the read-side in consumer_del_metadata_stream */
636 ret
= close(channel
->metadata_stream
->ust_metadata_poll_pipe
[1]);
638 PERROR("Close UST metadata write-side poll pipe");
644 pthread_mutex_unlock(&channel
->lock
);
645 pthread_mutex_unlock(&consumer_data
.lock
);
651 * RCU read side lock MUST be acquired before calling this function.
653 * Return 0 on success else an LTTng error code.
655 static int setup_metadata(struct lttng_consumer_local_data
*ctx
, uint64_t key
)
658 struct lttng_consumer_channel
*metadata
;
660 DBG("UST consumer setup metadata key %" PRIu64
, key
);
662 metadata
= consumer_find_channel(key
);
664 ERR("UST consumer push metadata %" PRIu64
" not found", key
);
665 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
670 * In no monitor mode, the metadata channel has no stream(s) so skip the
671 * ownership transfer to the metadata thread.
673 if (!metadata
->monitor
) {
674 DBG("Metadata channel in no monitor");
680 * Send metadata stream to relayd if one available. Availability is
681 * known if the stream is still in the list of the channel.
683 if (cds_list_empty(&metadata
->streams
.head
)) {
684 ERR("Metadata channel key %" PRIu64
", no stream available.", key
);
685 ret
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
686 goto error_no_stream
;
689 /* Send metadata stream to relayd if needed. */
690 if (metadata
->metadata_stream
->net_seq_idx
!= (uint64_t) -1ULL) {
691 ret
= consumer_send_relayd_stream(metadata
->metadata_stream
,
694 ret
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
699 ret
= send_streams_to_thread(metadata
, ctx
);
702 * If we are unable to send the stream to the thread, there is
703 * a big problem so just stop everything.
705 ret
= LTTCOMM_CONSUMERD_FATAL
;
708 /* List MUST be empty after or else it could be reused. */
709 assert(cds_list_empty(&metadata
->streams
.head
));
716 * Delete metadata channel on error. At this point, the metadata stream can
717 * NOT be monitored by the metadata thread thus having the guarantee that
718 * the stream is still in the local stream list of the channel. This call
719 * will make sure to clean that list.
721 cds_list_del(&metadata
->metadata_stream
->send_node
);
722 consumer_stream_destroy(metadata
->metadata_stream
, NULL
);
729 * Snapshot the whole metadata.
731 * Returns 0 on success, < 0 on error
733 static int snapshot_metadata(uint64_t key
, char *path
, uint64_t relayd_id
,
734 struct lttng_consumer_local_data
*ctx
)
737 struct lttng_consumer_channel
*metadata_channel
;
738 struct lttng_consumer_stream
*metadata_stream
;
743 DBG("UST consumer snapshot metadata with key %" PRIu64
" at path %s",
748 metadata_channel
= consumer_find_channel(key
);
749 if (!metadata_channel
) {
750 ERR("UST snapshot metadata channel not found for key %lu", key
);
754 assert(!metadata_channel
->monitor
);
757 * Ask the sessiond if we have new metadata waiting and update the
758 * consumer metadata cache.
760 ret
= lttng_ustconsumer_request_metadata(ctx
, metadata_channel
, 0);
766 * The metadata stream is NOT created in no monitor mode when the channel
767 * is created on a sessiond ask channel command.
769 ret
= create_ust_streams(metadata_channel
, ctx
);
774 metadata_stream
= metadata_channel
->metadata_stream
;
775 assert(metadata_stream
);
777 if (relayd_id
!= (uint64_t) -1ULL) {
778 metadata_stream
->net_seq_idx
= relayd_id
;
779 ret
= consumer_send_relayd_stream(metadata_stream
, path
);
784 ret
= utils_create_stream_file(path
, metadata_stream
->name
,
785 metadata_stream
->chan
->tracefile_size
,
786 metadata_stream
->tracefile_count_current
,
787 metadata_stream
->uid
, metadata_stream
->gid
);
791 metadata_stream
->out_fd
= ret
;
792 metadata_stream
->tracefile_size_current
= 0;
795 pthread_mutex_lock(&metadata_channel
->metadata_cache
->lock
);
798 ret
= lttng_consumer_read_subbuffer(metadata_stream
, ctx
);
805 pthread_mutex_unlock(&metadata_channel
->metadata_cache
->lock
);
809 * Clean up the stream completly because the next snapshot will use a new
812 cds_list_del(&metadata_stream
->send_node
);
813 consumer_stream_destroy(metadata_stream
, NULL
);
814 metadata_channel
->metadata_stream
= NULL
;
822 * Take a snapshot of all the stream of a channel.
824 * Returns 0 on success, < 0 on error
826 static int snapshot_channel(uint64_t key
, char *path
, uint64_t relayd_id
,
827 uint64_t max_stream_size
, struct lttng_consumer_local_data
*ctx
)
830 unsigned use_relayd
= 0;
831 unsigned long consumed_pos
, produced_pos
;
832 struct lttng_consumer_channel
*channel
;
833 struct lttng_consumer_stream
*stream
;
840 if (relayd_id
!= (uint64_t) -1ULL) {
844 channel
= consumer_find_channel(key
);
846 ERR("UST snapshot channel not found for key %lu", key
);
850 assert(!channel
->monitor
);
851 DBG("UST consumer snapshot channel %lu", key
);
853 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
854 /* Lock stream because we are about to change its state. */
855 pthread_mutex_lock(&stream
->lock
);
856 stream
->net_seq_idx
= relayd_id
;
859 ret
= consumer_send_relayd_stream(stream
, path
);
864 ret
= utils_create_stream_file(path
, stream
->name
,
865 stream
->chan
->tracefile_size
,
866 stream
->tracefile_count_current
,
867 stream
->uid
, stream
->gid
);
871 stream
->out_fd
= ret
;
872 stream
->tracefile_size_current
= 0;
874 DBG("UST consumer snapshot stream %s/%s (%" PRIu64
")", path
,
875 stream
->name
, stream
->key
);
878 ustctl_flush_buffer(stream
->ustream
, 1);
880 ret
= lttng_ustconsumer_take_snapshot(stream
);
882 ERR("Taking UST snapshot");
886 ret
= lttng_ustconsumer_get_produced_snapshot(stream
, &produced_pos
);
888 ERR("Produced UST snapshot position");
892 ret
= lttng_ustconsumer_get_consumed_snapshot(stream
, &consumed_pos
);
894 ERR("Consumerd UST snapshot position");
899 * The original value is sent back if max stream size is larger than
900 * the possible size of the snapshot. Also, we asume that the session
901 * daemon should never send a maximum stream size that is lower than
904 consumed_pos
= consumer_get_consumed_maxsize(consumed_pos
,
905 produced_pos
, max_stream_size
);
907 while (consumed_pos
< produced_pos
) {
909 unsigned long len
, padded_len
;
911 DBG("UST consumer taking snapshot at pos %lu", consumed_pos
);
913 ret
= ustctl_get_subbuf(stream
->ustream
, &consumed_pos
);
915 if (ret
!= -EAGAIN
) {
916 PERROR("ustctl_get_subbuf snapshot");
917 goto error_close_stream
;
919 DBG("UST consumer get subbuf failed. Skipping it.");
920 consumed_pos
+= stream
->max_sb_size
;
924 ret
= ustctl_get_subbuf_size(stream
->ustream
, &len
);
926 ERR("Snapshot ustctl_get_subbuf_size");
927 goto error_put_subbuf
;
930 ret
= ustctl_get_padded_subbuf_size(stream
->ustream
, &padded_len
);
932 ERR("Snapshot ustctl_get_padded_subbuf_size");
933 goto error_put_subbuf
;
936 read_len
= lttng_consumer_on_read_subbuffer_mmap(ctx
, stream
, len
,
939 if (read_len
!= len
) {
941 goto error_put_subbuf
;
944 if (read_len
!= padded_len
) {
946 goto error_put_subbuf
;
950 ret
= ustctl_put_subbuf(stream
->ustream
);
952 ERR("Snapshot ustctl_put_subbuf");
953 goto error_close_stream
;
955 consumed_pos
+= stream
->max_sb_size
;
958 /* Simply close the stream so we can use it on the next snapshot. */
959 consumer_stream_close(stream
);
960 pthread_mutex_unlock(&stream
->lock
);
967 if (ustctl_put_subbuf(stream
->ustream
) < 0) {
968 ERR("Snapshot ustctl_put_subbuf");
971 consumer_stream_close(stream
);
973 pthread_mutex_unlock(&stream
->lock
);
980 * Receive the metadata updates from the sessiond.
982 int lttng_ustconsumer_recv_metadata(int sock
, uint64_t key
, uint64_t offset
,
983 uint64_t len
, struct lttng_consumer_channel
*channel
,
986 int ret
, ret_code
= LTTNG_OK
;
989 DBG("UST consumer push metadata key %" PRIu64
" of len %" PRIu64
, key
, len
);
991 metadata_str
= zmalloc(len
* sizeof(char));
993 PERROR("zmalloc metadata string");
994 ret_code
= LTTCOMM_CONSUMERD_ENOMEM
;
998 /* Receive metadata string. */
999 ret
= lttcomm_recv_unix_sock(sock
, metadata_str
, len
);
1001 /* Session daemon is dead so return gracefully. */
1006 pthread_mutex_lock(&channel
->metadata_cache
->lock
);
1007 ret
= consumer_metadata_cache_write(channel
, offset
, len
, metadata_str
);
1009 /* Unable to handle metadata. Notify session daemon. */
1010 ret_code
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
1012 * Skip metadata flush on write error since the offset and len might
1013 * not have been updated which could create an infinite loop below when
1014 * waiting for the metadata cache to be flushed.
1016 pthread_mutex_unlock(&channel
->metadata_cache
->lock
);
1019 pthread_mutex_unlock(&channel
->metadata_cache
->lock
);
1021 while (consumer_metadata_cache_flushed(channel
, offset
+ len
, timer
)) {
1022 DBG("Waiting for metadata to be flushed");
1023 usleep(DEFAULT_METADATA_AVAILABILITY_WAIT_TIME
);
1033 * Receive command from session daemon and process it.
1035 * Return 1 on success else a negative value or 0.
1037 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
1038 int sock
, struct pollfd
*consumer_sockpoll
)
1041 enum lttng_error_code ret_code
= LTTNG_OK
;
1042 struct lttcomm_consumer_msg msg
;
1043 struct lttng_consumer_channel
*channel
= NULL
;
1045 ret
= lttcomm_recv_unix_sock(sock
, &msg
, sizeof(msg
));
1046 if (ret
!= sizeof(msg
)) {
1047 DBG("Consumer received unexpected message size %zd (expects %zu)",
1050 * The ret value might 0 meaning an orderly shutdown but this is ok
1051 * since the caller handles this.
1054 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_CMD
);
1059 if (msg
.cmd_type
== LTTNG_CONSUMER_STOP
) {
1061 * Notify the session daemon that the command is completed.
1063 * On transport layer error, the function call will print an error
1064 * message so handling the returned code is a bit useless since we
1065 * return an error code anyway.
1067 (void) consumer_send_status_msg(sock
, ret_code
);
1071 /* relayd needs RCU read-side lock */
1074 switch (msg
.cmd_type
) {
1075 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET
:
1077 /* Session daemon status message are handled in the following call. */
1078 ret
= consumer_add_relayd_socket(msg
.u
.relayd_sock
.net_index
,
1079 msg
.u
.relayd_sock
.type
, ctx
, sock
, consumer_sockpoll
,
1080 &msg
.u
.relayd_sock
.sock
, msg
.u
.relayd_sock
.session_id
);
1083 case LTTNG_CONSUMER_DESTROY_RELAYD
:
1085 uint64_t index
= msg
.u
.destroy_relayd
.net_seq_idx
;
1086 struct consumer_relayd_sock_pair
*relayd
;
1088 DBG("UST consumer destroying relayd %" PRIu64
, index
);
1090 /* Get relayd reference if exists. */
1091 relayd
= consumer_find_relayd(index
);
1092 if (relayd
== NULL
) {
1093 DBG("Unable to find relayd %" PRIu64
, index
);
1094 ret_code
= LTTNG_ERR_NO_CONSUMER
;
1098 * Each relayd socket pair has a refcount of stream attached to it
1099 * which tells if the relayd is still active or not depending on the
1102 * This will set the destroy flag of the relayd object and destroy it
1103 * if the refcount reaches zero when called.
1105 * The destroy can happen either here or when a stream fd hangs up.
1108 consumer_flag_relayd_for_destroy(relayd
);
1111 goto end_msg_sessiond
;
1113 case LTTNG_CONSUMER_UPDATE_STREAM
:
1118 case LTTNG_CONSUMER_DATA_PENDING
:
1120 int ret
, is_data_pending
;
1121 uint64_t id
= msg
.u
.data_pending
.session_id
;
1123 DBG("UST consumer data pending command for id %" PRIu64
, id
);
1125 is_data_pending
= consumer_data_pending(id
);
1127 /* Send back returned value to session daemon */
1128 ret
= lttcomm_send_unix_sock(sock
, &is_data_pending
,
1129 sizeof(is_data_pending
));
1131 DBG("Error when sending the data pending ret code: %d", ret
);
1136 * No need to send back a status message since the data pending
1137 * returned value is the response.
1141 case LTTNG_CONSUMER_ASK_CHANNEL_CREATION
:
1144 struct ustctl_consumer_channel_attr attr
;
1146 /* Create a plain object and reserve a channel key. */
1147 channel
= allocate_channel(msg
.u
.ask_channel
.session_id
,
1148 msg
.u
.ask_channel
.pathname
, msg
.u
.ask_channel
.name
,
1149 msg
.u
.ask_channel
.uid
, msg
.u
.ask_channel
.gid
,
1150 msg
.u
.ask_channel
.relayd_id
, msg
.u
.ask_channel
.key
,
1151 (enum lttng_event_output
) msg
.u
.ask_channel
.output
,
1152 msg
.u
.ask_channel
.tracefile_size
,
1153 msg
.u
.ask_channel
.tracefile_count
,
1154 msg
.u
.ask_channel
.session_id_per_pid
,
1155 msg
.u
.ask_channel
.monitor
);
1157 goto end_channel_error
;
1160 /* Build channel attributes from received message. */
1161 attr
.subbuf_size
= msg
.u
.ask_channel
.subbuf_size
;
1162 attr
.num_subbuf
= msg
.u
.ask_channel
.num_subbuf
;
1163 attr
.overwrite
= msg
.u
.ask_channel
.overwrite
;
1164 attr
.switch_timer_interval
= msg
.u
.ask_channel
.switch_timer_interval
;
1165 attr
.read_timer_interval
= msg
.u
.ask_channel
.read_timer_interval
;
1166 attr
.chan_id
= msg
.u
.ask_channel
.chan_id
;
1167 attr
.output
= msg
.u
.ask_channel
.output
;
1168 memcpy(attr
.uuid
, msg
.u
.ask_channel
.uuid
, sizeof(attr
.uuid
));
1170 /* Translate and save channel type. */
1171 switch (msg
.u
.ask_channel
.type
) {
1172 case LTTNG_UST_CHAN_PER_CPU
:
1173 channel
->type
= CONSUMER_CHANNEL_TYPE_DATA
;
1174 attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1176 * Set refcount to 1 for owner. Below, we will
1177 * pass ownership to the
1178 * consumer_thread_channel_poll() thread.
1180 channel
->refcount
= 1;
1182 case LTTNG_UST_CHAN_METADATA
:
1183 channel
->type
= CONSUMER_CHANNEL_TYPE_METADATA
;
1184 attr
.type
= LTTNG_UST_CHAN_METADATA
;
1191 ret
= ask_channel(ctx
, sock
, channel
, &attr
);
1193 goto end_channel_error
;
1196 if (msg
.u
.ask_channel
.type
== LTTNG_UST_CHAN_METADATA
) {
1197 ret
= consumer_metadata_cache_allocate(channel
);
1199 ERR("Allocating metadata cache");
1200 goto end_channel_error
;
1202 consumer_timer_switch_start(channel
, attr
.switch_timer_interval
);
1203 attr
.switch_timer_interval
= 0;
1207 * Add the channel to the internal state AFTER all streams were created
1208 * and successfully sent to session daemon. This way, all streams must
1209 * be ready before this channel is visible to the threads.
1210 * If add_channel succeeds, ownership of the channel is
1211 * passed to consumer_thread_channel_poll().
1213 ret
= add_channel(channel
, ctx
);
1215 if (msg
.u
.ask_channel
.type
== LTTNG_UST_CHAN_METADATA
) {
1216 if (channel
->switch_timer_enabled
== 1) {
1217 consumer_timer_switch_stop(channel
);
1219 consumer_metadata_cache_destroy(channel
);
1221 goto end_channel_error
;
1225 * Channel and streams are now created. Inform the session daemon that
1226 * everything went well and should wait to receive the channel and
1227 * streams with ustctl API.
1229 ret
= consumer_send_status_channel(sock
, channel
);
1232 * There is probably a problem on the socket.
1239 case LTTNG_CONSUMER_GET_CHANNEL
:
1241 int ret
, relayd_err
= 0;
1242 uint64_t key
= msg
.u
.get_channel
.key
;
1243 struct lttng_consumer_channel
*channel
;
1245 channel
= consumer_find_channel(key
);
1247 ERR("UST consumer get channel key %" PRIu64
" not found", key
);
1248 ret_code
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1249 goto end_msg_sessiond
;
1252 /* Send everything to sessiond. */
1253 ret
= send_sessiond_channel(sock
, channel
, ctx
, &relayd_err
);
1257 * We were unable to send to the relayd the stream so avoid
1258 * sending back a fatal error to the thread since this is OK
1259 * and the consumer can continue its work. The above call
1260 * has sent the error status message to the sessiond.
1265 * The communicaton was broken hence there is a bad state between
1266 * the consumer and sessiond so stop everything.
1272 * In no monitor mode, the streams ownership is kept inside the channel
1273 * so don't send them to the data thread.
1275 if (!channel
->monitor
) {
1276 goto end_msg_sessiond
;
1279 ret
= send_streams_to_thread(channel
, ctx
);
1282 * If we are unable to send the stream to the thread, there is
1283 * a big problem so just stop everything.
1287 /* List MUST be empty after or else it could be reused. */
1288 assert(cds_list_empty(&channel
->streams
.head
));
1289 goto end_msg_sessiond
;
1291 case LTTNG_CONSUMER_DESTROY_CHANNEL
:
1293 uint64_t key
= msg
.u
.destroy_channel
.key
;
1296 * Only called if streams have not been sent to stream
1297 * manager thread. However, channel has been sent to
1298 * channel manager thread.
1300 notify_thread_del_channel(ctx
, key
);
1301 goto end_msg_sessiond
;
1303 case LTTNG_CONSUMER_CLOSE_METADATA
:
1307 ret
= close_metadata(msg
.u
.close_metadata
.key
);
1312 goto end_msg_sessiond
;
1314 case LTTNG_CONSUMER_FLUSH_CHANNEL
:
1318 ret
= flush_channel(msg
.u
.flush_channel
.key
);
1323 goto end_msg_sessiond
;
1325 case LTTNG_CONSUMER_PUSH_METADATA
:
1328 uint64_t len
= msg
.u
.push_metadata
.len
;
1329 uint64_t key
= msg
.u
.push_metadata
.key
;
1330 uint64_t offset
= msg
.u
.push_metadata
.target_offset
;
1331 struct lttng_consumer_channel
*channel
;
1333 DBG("UST consumer push metadata key %" PRIu64
" of len %" PRIu64
, key
,
1336 channel
= consumer_find_channel(key
);
1338 ERR("UST consumer push metadata %" PRIu64
" not found", key
);
1339 ret_code
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1340 goto end_msg_sessiond
;
1343 /* Tell session daemon we are ready to receive the metadata. */
1344 ret
= consumer_send_status_msg(sock
, LTTNG_OK
);
1346 /* Somehow, the session daemon is not responding anymore. */
1350 /* Wait for more data. */
1351 if (lttng_consumer_poll_socket(consumer_sockpoll
) < 0) {
1355 ret
= lttng_ustconsumer_recv_metadata(sock
, key
, offset
,
1358 /* error receiving from sessiond */
1362 goto end_msg_sessiond
;
1365 case LTTNG_CONSUMER_SETUP_METADATA
:
1369 ret
= setup_metadata(ctx
, msg
.u
.setup_metadata
.key
);
1373 goto end_msg_sessiond
;
1375 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL
:
1377 if (msg
.u
.snapshot_channel
.metadata
) {
1378 ret
= snapshot_metadata(msg
.u
.snapshot_channel
.key
,
1379 msg
.u
.snapshot_channel
.pathname
,
1380 msg
.u
.snapshot_channel
.relayd_id
,
1383 ERR("Snapshot metadata failed");
1384 ret_code
= LTTNG_ERR_UST_META_FAIL
;
1387 ret
= snapshot_channel(msg
.u
.snapshot_channel
.key
,
1388 msg
.u
.snapshot_channel
.pathname
,
1389 msg
.u
.snapshot_channel
.relayd_id
,
1390 msg
.u
.snapshot_channel
.max_stream_size
,
1393 ERR("Snapshot channel failed");
1394 ret_code
= LTTNG_ERR_UST_CHAN_FAIL
;
1398 ret
= consumer_send_status_msg(sock
, ret_code
);
1400 /* Somehow, the session daemon is not responding anymore. */
1413 * Return 1 to indicate success since the 0 value can be a socket
1414 * shutdown during the recv() or send() call.
1420 * The returned value here is not useful since either way we'll return 1 to
1421 * the caller because the session daemon socket management is done
1422 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
1424 ret
= consumer_send_status_msg(sock
, ret_code
);
1433 * Free channel here since no one has a reference to it. We don't
1434 * free after that because a stream can store this pointer.
1436 destroy_channel(channel
);
1438 /* We have to send a status channel message indicating an error. */
1439 ret
= consumer_send_status_channel(sock
, NULL
);
1441 /* Stop everything if session daemon can not be notified. */
1448 /* This will issue a consumer stop. */
1453 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1454 * compiled out, we isolate it in this library.
1456 int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream
*stream
,
1460 assert(stream
->ustream
);
1462 return ustctl_get_mmap_read_offset(stream
->ustream
, off
);
1466 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1467 * compiled out, we isolate it in this library.
1469 void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream
*stream
)
1472 assert(stream
->ustream
);
1474 return ustctl_get_mmap_base(stream
->ustream
);
1478 * Take a snapshot for a specific fd
1480 * Returns 0 on success, < 0 on error
1482 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream
*stream
)
1485 assert(stream
->ustream
);
1487 return ustctl_snapshot(stream
->ustream
);
1491 * Get the produced position
1493 * Returns 0 on success, < 0 on error
1495 int lttng_ustconsumer_get_produced_snapshot(
1496 struct lttng_consumer_stream
*stream
, unsigned long *pos
)
1499 assert(stream
->ustream
);
1502 return ustctl_snapshot_get_produced(stream
->ustream
, pos
);
1506 * Get the consumed position
1508 * Returns 0 on success, < 0 on error
1510 int lttng_ustconsumer_get_consumed_snapshot(
1511 struct lttng_consumer_stream
*stream
, unsigned long *pos
)
1514 assert(stream
->ustream
);
1517 return ustctl_snapshot_get_consumed(stream
->ustream
, pos
);
1521 * Called when the stream signal the consumer that it has hang up.
1523 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream
*stream
)
1526 assert(stream
->ustream
);
1528 ustctl_flush_buffer(stream
->ustream
, 0);
1529 stream
->hangup_flush_done
= 1;
1532 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel
*chan
)
1535 assert(chan
->uchan
);
1537 if (chan
->switch_timer_enabled
== 1) {
1538 consumer_timer_switch_stop(chan
);
1540 consumer_metadata_cache_destroy(chan
);
1541 ustctl_destroy_channel(chan
->uchan
);
1544 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream
*stream
)
1547 assert(stream
->ustream
);
1549 if (stream
->chan
->switch_timer_enabled
== 1) {
1550 consumer_timer_switch_stop(stream
->chan
);
1552 ustctl_destroy_stream(stream
->ustream
);
1555 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream
*stream
,
1556 struct lttng_consumer_local_data
*ctx
)
1558 unsigned long len
, subbuf_size
, padding
;
1562 struct ustctl_consumer_stream
*ustream
;
1565 assert(stream
->ustream
);
1568 DBG("In UST read_subbuffer (wait_fd: %d, name: %s)", stream
->wait_fd
,
1571 /* Ease our life for what's next. */
1572 ustream
= stream
->ustream
;
1574 /* We can consume the 1 byte written into the wait_fd by UST */
1575 if (stream
->monitor
&& !stream
->hangup_flush_done
) {
1579 readlen
= read(stream
->wait_fd
, &dummy
, 1);
1580 } while (readlen
== -1 && errno
== EINTR
);
1581 if (readlen
== -1 && errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
1588 /* Get the next subbuffer */
1589 err
= ustctl_get_next_subbuf(ustream
);
1592 * Populate metadata info if the existing info has
1593 * already been read.
1595 if (stream
->metadata_flag
) {
1598 if (stream
->chan
->metadata_cache
->contiguous
1599 == stream
->ust_metadata_pushed
) {
1604 write_len
= ustctl_write_one_packet_to_channel(stream
->chan
->uchan
,
1605 &stream
->chan
->metadata_cache
->data
[stream
->ust_metadata_pushed
],
1606 stream
->chan
->metadata_cache
->contiguous
1607 - stream
->ust_metadata_pushed
);
1608 assert(write_len
!= 0);
1609 if (write_len
< 0) {
1610 ERR("Writing one metadata packet");
1614 stream
->ust_metadata_pushed
+= write_len
;
1615 ustctl_flush_buffer(stream
->ustream
, 1);
1619 ret
= err
; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
1621 * This is a debug message even for single-threaded consumer,
1622 * because poll() have more relaxed criterions than get subbuf,
1623 * so get_subbuf may fail for short race windows where poll()
1624 * would issue wakeups.
1626 DBG("Reserving sub buffer failed (everything is normal, "
1627 "it is due to concurrency) [ret: %d]", err
);
1630 assert(stream
->chan
->output
== CONSUMER_CHANNEL_MMAP
);
1631 /* Get the full padded subbuffer size */
1632 err
= ustctl_get_padded_subbuf_size(ustream
, &len
);
1635 /* Get subbuffer data size (without padding) */
1636 err
= ustctl_get_subbuf_size(ustream
, &subbuf_size
);
1639 /* Make sure we don't get a subbuffer size bigger than the padded */
1640 assert(len
>= subbuf_size
);
1642 padding
= len
- subbuf_size
;
1643 /* write the subbuffer to the tracefile */
1644 ret
= lttng_consumer_on_read_subbuffer_mmap(ctx
, stream
, subbuf_size
, padding
);
1646 * The mmap operation should write subbuf_size amount of data when network
1647 * streaming or the full padding (len) size when we are _not_ streaming.
1649 if ((ret
!= subbuf_size
&& stream
->net_seq_idx
!= (uint64_t) -1ULL) ||
1650 (ret
!= len
&& stream
->net_seq_idx
== (uint64_t) -1ULL)) {
1652 * Display the error but continue processing to try to release the
1653 * subbuffer. This is a DBG statement since any unexpected kill or
1654 * signal, the application gets unregistered, relayd gets closed or
1655 * anything that affects the buffer lifetime will trigger this error.
1656 * So, for the sake of the user, don't print this error since it can
1657 * happen and it is OK with the code flow.
1659 DBG("Error writing to tracefile "
1660 "(ret: %ld != len: %lu != subbuf_size: %lu)",
1661 ret
, len
, subbuf_size
);
1663 err
= ustctl_put_next_subbuf(ustream
);
1671 * Called when a stream is created.
1673 * Return 0 on success or else a negative value.
1675 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
)
1681 /* Don't create anything if this is set for streaming. */
1682 if (stream
->net_seq_idx
== (uint64_t) -1ULL && stream
->chan
->monitor
) {
1683 ret
= utils_create_stream_file(stream
->chan
->pathname
, stream
->name
,
1684 stream
->chan
->tracefile_size
, stream
->tracefile_count_current
,
1685 stream
->uid
, stream
->gid
);
1689 stream
->out_fd
= ret
;
1690 stream
->tracefile_size_current
= 0;
1699 * Check if data is still being extracted from the buffers for a specific
1700 * stream. Consumer data lock MUST be acquired before calling this function
1701 * and the stream lock.
1703 * Return 1 if the traced data are still getting read else 0 meaning that the
1704 * data is available for trace viewer reading.
1706 int lttng_ustconsumer_data_pending(struct lttng_consumer_stream
*stream
)
1711 assert(stream
->ustream
);
1713 DBG("UST consumer checking data pending");
1715 if (stream
->endpoint_status
!= CONSUMER_ENDPOINT_ACTIVE
) {
1720 if (stream
->chan
->type
== CONSUMER_CHANNEL_TYPE_METADATA
) {
1722 * We can simply check whether all contiguously available data
1723 * has been pushed to the ring buffer, since the push operation
1724 * is performed within get_next_subbuf(), and because both
1725 * get_next_subbuf() and put_next_subbuf() are issued atomically
1726 * thanks to the stream lock within
1727 * lttng_ustconsumer_read_subbuffer(). This basically means that
1728 * whetnever ust_metadata_pushed is incremented, the associated
1729 * metadata has been consumed from the metadata stream.
1731 DBG("UST consumer metadata pending check: contiguous %" PRIu64
" vs pushed %" PRIu64
,
1732 stream
->chan
->metadata_cache
->contiguous
,
1733 stream
->ust_metadata_pushed
);
1734 if (stream
->chan
->metadata_cache
->contiguous
1735 != stream
->ust_metadata_pushed
) {
1736 ret
= 1; /* Data is pending */
1740 ret
= ustctl_get_next_subbuf(stream
->ustream
);
1743 * There is still data so let's put back this
1746 ret
= ustctl_put_subbuf(stream
->ustream
);
1748 ret
= 1; /* Data is pending */
1753 /* Data is NOT pending so ready to be read. */
1761 * Close every metadata stream wait fd of the metadata hash table. This
1762 * function MUST be used very carefully so not to run into a race between the
1763 * metadata thread handling streams and this function closing their wait fd.
1765 * For UST, this is used when the session daemon hangs up. Its the metadata
1766 * producer so calling this is safe because we are assured that no state change
1767 * can occur in the metadata thread for the streams in the hash table.
1769 void lttng_ustconsumer_close_metadata(struct lttng_ht
*metadata_ht
)
1772 struct lttng_ht_iter iter
;
1773 struct lttng_consumer_stream
*stream
;
1775 assert(metadata_ht
);
1776 assert(metadata_ht
->ht
);
1778 DBG("UST consumer closing all metadata streams");
1781 cds_lfht_for_each_entry(metadata_ht
->ht
, &iter
.iter
, stream
,
1783 int fd
= stream
->wait_fd
;
1786 * Whatever happens here we have to continue to try to close every
1787 * streams. Let's report at least the error on failure.
1789 ret
= ustctl_stream_close_wakeup_fd(stream
->ustream
);
1791 ERR("Unable to close metadata stream fd %d ret %d", fd
, ret
);
1793 DBG("Metadata wait fd %d closed", fd
);
1798 void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream
*stream
)
1802 ret
= ustctl_stream_close_wakeup_fd(stream
->ustream
);
1804 ERR("Unable to close wakeup fd");
1809 * Please refer to consumer-timer.c before adding any lock within this
1810 * function or any of its callees. Timers have a very strict locking
1811 * semantic with respect to teardown. Failure to respect this semantic
1812 * introduces deadlocks.
1814 int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data
*ctx
,
1815 struct lttng_consumer_channel
*channel
, int timer
)
1817 struct lttcomm_metadata_request_msg request
;
1818 struct lttcomm_consumer_msg msg
;
1819 enum lttng_error_code ret_code
= LTTNG_OK
;
1820 uint64_t len
, key
, offset
;
1824 assert(channel
->metadata_cache
);
1826 /* send the metadata request to sessiond */
1827 switch (consumer_data
.type
) {
1828 case LTTNG_CONSUMER64_UST
:
1829 request
.bits_per_long
= 64;
1831 case LTTNG_CONSUMER32_UST
:
1832 request
.bits_per_long
= 32;
1835 request
.bits_per_long
= 0;
1839 request
.session_id
= channel
->session_id
;
1840 request
.session_id_per_pid
= channel
->session_id_per_pid
;
1841 request
.uid
= channel
->uid
;
1842 request
.key
= channel
->key
;
1843 DBG("Sending metadata request to sessiond, session id %" PRIu64
1844 ", per-pid %" PRIu64
,
1845 channel
->session_id
,
1846 channel
->session_id_per_pid
);
1848 pthread_mutex_lock(&ctx
->metadata_socket_lock
);
1849 ret
= lttcomm_send_unix_sock(ctx
->consumer_metadata_socket
, &request
,
1852 ERR("Asking metadata to sessiond");
1856 /* Receive the metadata from sessiond */
1857 ret
= lttcomm_recv_unix_sock(ctx
->consumer_metadata_socket
, &msg
,
1859 if (ret
!= sizeof(msg
)) {
1860 DBG("Consumer received unexpected message size %d (expects %zu)",
1862 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_CMD
);
1864 * The ret value might 0 meaning an orderly shutdown but this is ok
1865 * since the caller handles this.
1870 if (msg
.cmd_type
== LTTNG_ERR_UND
) {
1871 /* No registry found */
1872 (void) consumer_send_status_msg(ctx
->consumer_metadata_socket
,
1876 } else if (msg
.cmd_type
!= LTTNG_CONSUMER_PUSH_METADATA
) {
1877 ERR("Unexpected cmd_type received %d", msg
.cmd_type
);
1882 len
= msg
.u
.push_metadata
.len
;
1883 key
= msg
.u
.push_metadata
.key
;
1884 offset
= msg
.u
.push_metadata
.target_offset
;
1886 assert(key
== channel
->key
);
1888 DBG("No new metadata to receive for key %" PRIu64
, key
);
1891 /* Tell session daemon we are ready to receive the metadata. */
1892 ret
= consumer_send_status_msg(ctx
->consumer_metadata_socket
,
1894 if (ret
< 0 || len
== 0) {
1896 * Somehow, the session daemon is not responding anymore or there is
1897 * nothing to receive.
1902 ret_code
= lttng_ustconsumer_recv_metadata(ctx
->consumer_metadata_socket
,
1903 key
, offset
, len
, channel
, timer
);
1904 if (ret_code
>= 0) {
1906 * Only send the status msg if the sessiond is alive meaning a positive
1909 (void) consumer_send_status_msg(ctx
->consumer_metadata_socket
, ret_code
);
1914 pthread_mutex_unlock(&ctx
->metadata_socket_lock
);