2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * Copyright (C) 2017 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <lttng/ust-ctl.h>
28 #include <sys/socket.h>
30 #include <sys/types.h>
33 #include <urcu/list.h>
36 #include <bin/lttng-consumerd/health-consumerd.h>
37 #include <common/common.h>
38 #include <common/sessiond-comm/sessiond-comm.h>
39 #include <common/relayd/relayd.h>
40 #include <common/compat/fcntl.h>
41 #include <common/compat/endian.h>
42 #include <common/consumer/consumer-metadata-cache.h>
43 #include <common/consumer/consumer-stream.h>
44 #include <common/consumer/consumer-timer.h>
45 #include <common/utils.h>
46 #include <common/index/index.h>
48 #include "ust-consumer.h"
50 #define INT_MAX_STR_LEN 12 /* includes \0 */
52 extern struct lttng_consumer_global_data consumer_data
;
53 extern int consumer_poll_timeout
;
56 * Free channel object and all streams associated with it. This MUST be used
57 * only and only if the channel has _NEVER_ been added to the global channel
60 static void destroy_channel(struct lttng_consumer_channel
*channel
)
62 struct lttng_consumer_stream
*stream
, *stmp
;
66 DBG("UST consumer cleaning stream list");
68 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->streams
.head
,
73 cds_list_del(&stream
->send_node
);
74 ustctl_destroy_stream(stream
->ustream
);
79 * If a channel is available meaning that was created before the streams
83 lttng_ustconsumer_del_channel(channel
);
84 lttng_ustconsumer_free_channel(channel
);
90 * Add channel to internal consumer state.
92 * Returns 0 on success or else a negative value.
94 static int add_channel(struct lttng_consumer_channel
*channel
,
95 struct lttng_consumer_local_data
*ctx
)
102 if (ctx
->on_recv_channel
!= NULL
) {
103 ret
= ctx
->on_recv_channel(channel
);
105 ret
= consumer_add_channel(channel
, ctx
);
106 } else if (ret
< 0) {
107 /* Most likely an ENOMEM. */
108 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
112 ret
= consumer_add_channel(channel
, ctx
);
115 DBG("UST consumer channel added (key: %" PRIu64
")", channel
->key
);
122 * Allocate and return a consumer channel object.
124 static struct lttng_consumer_channel
*allocate_channel(uint64_t session_id
,
125 const char *pathname
, const char *name
, uid_t uid
, gid_t gid
,
126 uint64_t relayd_id
, uint64_t key
, enum lttng_event_output output
,
127 uint64_t tracefile_size
, uint64_t tracefile_count
,
128 uint64_t session_id_per_pid
, unsigned int monitor
,
129 unsigned int live_timer_interval
,
130 const char *root_shm_path
, const char *shm_path
)
135 return consumer_allocate_channel(key
, session_id
, pathname
, name
, uid
,
136 gid
, relayd_id
, output
, tracefile_size
,
137 tracefile_count
, session_id_per_pid
, monitor
,
138 live_timer_interval
, root_shm_path
, shm_path
);
142 * Allocate and return a consumer stream object. If _alloc_ret is not NULL, the
143 * error value if applicable is set in it else it is kept untouched.
145 * Return NULL on error else the newly allocated stream object.
147 static struct lttng_consumer_stream
*allocate_stream(int cpu
, int key
,
148 struct lttng_consumer_channel
*channel
,
149 struct lttng_consumer_local_data
*ctx
, int *_alloc_ret
)
152 struct lttng_consumer_stream
*stream
= NULL
;
157 stream
= consumer_allocate_stream(channel
->key
,
159 LTTNG_CONSUMER_ACTIVE_STREAM
,
169 if (stream
== NULL
) {
173 * We could not find the channel. Can happen if cpu hotplug
174 * happens while tearing down.
176 DBG3("Could not find channel");
181 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
187 stream
->chan
= channel
;
191 *_alloc_ret
= alloc_ret
;
197 * Send the given stream pointer to the corresponding thread.
199 * Returns 0 on success else a negative value.
201 static int send_stream_to_thread(struct lttng_consumer_stream
*stream
,
202 struct lttng_consumer_local_data
*ctx
)
205 struct lttng_pipe
*stream_pipe
;
207 /* Get the right pipe where the stream will be sent. */
208 if (stream
->metadata_flag
) {
209 consumer_add_metadata_stream(stream
);
210 stream_pipe
= ctx
->consumer_metadata_pipe
;
212 consumer_add_data_stream(stream
);
213 stream_pipe
= ctx
->consumer_data_pipe
;
217 * From this point on, the stream's ownership has been moved away from
218 * the channel and it becomes globally visible. Hence, remove it from
219 * the local stream list to prevent the stream from being both local and
222 stream
->globally_visible
= 1;
223 cds_list_del(&stream
->send_node
);
225 ret
= lttng_pipe_write(stream_pipe
, &stream
, sizeof(stream
));
227 ERR("Consumer write %s stream to pipe %d",
228 stream
->metadata_flag
? "metadata" : "data",
229 lttng_pipe_get_writefd(stream_pipe
));
230 if (stream
->metadata_flag
) {
231 consumer_del_stream_for_metadata(stream
);
233 consumer_del_stream_for_data(stream
);
243 int get_stream_shm_path(char *stream_shm_path
, const char *shm_path
, int cpu
)
245 char cpu_nr
[INT_MAX_STR_LEN
]; /* int max len */
248 strncpy(stream_shm_path
, shm_path
, PATH_MAX
);
249 stream_shm_path
[PATH_MAX
- 1] = '\0';
250 ret
= snprintf(cpu_nr
, INT_MAX_STR_LEN
, "%i", cpu
);
255 strncat(stream_shm_path
, cpu_nr
,
256 PATH_MAX
- strlen(stream_shm_path
) - 1);
263 * Create streams for the given channel using liblttng-ust-ctl.
265 * Return 0 on success else a negative value.
267 static int create_ust_streams(struct lttng_consumer_channel
*channel
,
268 struct lttng_consumer_local_data
*ctx
)
271 struct ustctl_consumer_stream
*ustream
;
272 struct lttng_consumer_stream
*stream
;
278 * While a stream is available from ustctl. When NULL is returned, we've
279 * reached the end of the possible stream for the channel.
281 while ((ustream
= ustctl_create_stream(channel
->uchan
, cpu
))) {
283 int ust_metadata_pipe
[2];
285 health_code_update();
287 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
&& channel
->monitor
) {
288 ret
= utils_create_pipe_cloexec_nonblock(ust_metadata_pipe
);
290 ERR("Create ust metadata poll pipe");
293 wait_fd
= ust_metadata_pipe
[0];
295 wait_fd
= ustctl_stream_get_wait_fd(ustream
);
298 /* Allocate consumer stream object. */
299 stream
= allocate_stream(cpu
, wait_fd
, channel
, ctx
, &ret
);
303 stream
->ustream
= ustream
;
305 * Store it so we can save multiple function calls afterwards since
306 * this value is used heavily in the stream threads. This is UST
307 * specific so this is why it's done after allocation.
309 stream
->wait_fd
= wait_fd
;
312 * Increment channel refcount since the channel reference has now been
313 * assigned in the allocation process above.
315 if (stream
->chan
->monitor
) {
316 uatomic_inc(&stream
->chan
->refcount
);
320 * Order is important this is why a list is used. On error, the caller
321 * should clean this list.
323 cds_list_add_tail(&stream
->send_node
, &channel
->streams
.head
);
325 ret
= ustctl_get_max_subbuf_size(stream
->ustream
,
326 &stream
->max_sb_size
);
328 ERR("ustctl_get_max_subbuf_size failed for stream %s",
333 /* Do actions once stream has been received. */
334 if (ctx
->on_recv_stream
) {
335 ret
= ctx
->on_recv_stream(stream
);
341 DBG("UST consumer add stream %s (key: %" PRIu64
") with relayd id %" PRIu64
,
342 stream
->name
, stream
->key
, stream
->relayd_stream_id
);
344 /* Set next CPU stream. */
345 channel
->streams
.count
= ++cpu
;
347 /* Keep stream reference when creating metadata. */
348 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
) {
349 channel
->metadata_stream
= stream
;
350 if (channel
->monitor
) {
351 /* Set metadata poll pipe if we created one */
352 memcpy(stream
->ust_metadata_poll_pipe
,
354 sizeof(ust_metadata_pipe
));
367 * create_posix_shm is never called concurrently within a process.
370 int create_posix_shm(void)
372 char tmp_name
[NAME_MAX
];
375 ret
= snprintf(tmp_name
, NAME_MAX
, "/ust-shm-consumer-%d", getpid());
381 * Allocate shm, and immediately unlink its shm oject, keeping
382 * only the file descriptor as a reference to the object.
383 * We specifically do _not_ use the / at the beginning of the
384 * pathname so that some OS implementations can keep it local to
385 * the process (POSIX leaves this implementation-defined).
387 shmfd
= shm_open(tmp_name
, O_CREAT
| O_EXCL
| O_RDWR
, 0700);
392 ret
= shm_unlink(tmp_name
);
393 if (ret
< 0 && errno
!= ENOENT
) {
394 PERROR("shm_unlink");
395 goto error_shm_release
;
408 static int open_ust_stream_fd(struct lttng_consumer_channel
*channel
,
409 struct ustctl_consumer_channel_attr
*attr
,
412 char shm_path
[PATH_MAX
];
415 if (!channel
->shm_path
[0]) {
416 return create_posix_shm();
418 ret
= get_stream_shm_path(shm_path
, channel
->shm_path
, cpu
);
422 return run_as_open(shm_path
,
423 O_RDWR
| O_CREAT
| O_EXCL
, S_IRUSR
| S_IWUSR
,
424 channel
->uid
, channel
->gid
);
431 * Create an UST channel with the given attributes and send it to the session
432 * daemon using the ust ctl API.
434 * Return 0 on success or else a negative value.
436 static int create_ust_channel(struct lttng_consumer_channel
*channel
,
437 struct ustctl_consumer_channel_attr
*attr
,
438 struct ustctl_consumer_channel
**ust_chanp
)
440 int ret
, nr_stream_fds
, i
, j
;
442 struct ustctl_consumer_channel
*ust_channel
;
448 DBG3("Creating channel to ustctl with attr: [overwrite: %d, "
449 "subbuf_size: %" PRIu64
", num_subbuf: %" PRIu64
", "
450 "switch_timer_interval: %u, read_timer_interval: %u, "
451 "output: %d, type: %d", attr
->overwrite
, attr
->subbuf_size
,
452 attr
->num_subbuf
, attr
->switch_timer_interval
,
453 attr
->read_timer_interval
, attr
->output
, attr
->type
);
455 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
)
458 nr_stream_fds
= ustctl_get_nr_stream_per_channel();
459 stream_fds
= zmalloc(nr_stream_fds
* sizeof(*stream_fds
));
464 for (i
= 0; i
< nr_stream_fds
; i
++) {
465 stream_fds
[i
] = open_ust_stream_fd(channel
, attr
, i
);
466 if (stream_fds
[i
] < 0) {
471 ust_channel
= ustctl_create_channel(attr
, stream_fds
, nr_stream_fds
);
476 channel
->nr_stream_fds
= nr_stream_fds
;
477 channel
->stream_fds
= stream_fds
;
478 *ust_chanp
= ust_channel
;
484 for (j
= i
- 1; j
>= 0; j
--) {
487 closeret
= close(stream_fds
[j
]);
491 if (channel
->shm_path
[0]) {
492 char shm_path
[PATH_MAX
];
494 closeret
= get_stream_shm_path(shm_path
,
495 channel
->shm_path
, j
);
497 ERR("Cannot get stream shm path");
499 closeret
= run_as_unlink(shm_path
,
500 channel
->uid
, channel
->gid
);
502 PERROR("unlink %s", shm_path
);
506 /* Try to rmdir all directories under shm_path root. */
507 if (channel
->root_shm_path
[0]) {
508 (void) run_as_rmdir_recursive(channel
->root_shm_path
,
509 channel
->uid
, channel
->gid
);
517 * Send a single given stream to the session daemon using the sock.
519 * Return 0 on success else a negative value.
521 static int send_sessiond_stream(int sock
, struct lttng_consumer_stream
*stream
)
528 DBG("UST consumer sending stream %" PRIu64
" to sessiond", stream
->key
);
530 /* Send stream to session daemon. */
531 ret
= ustctl_send_stream_to_sessiond(sock
, stream
->ustream
);
541 * Send channel to sessiond.
543 * Return 0 on success or else a negative value.
545 static int send_sessiond_channel(int sock
,
546 struct lttng_consumer_channel
*channel
,
547 struct lttng_consumer_local_data
*ctx
, int *relayd_error
)
549 int ret
, ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
550 struct lttng_consumer_stream
*stream
;
551 uint64_t net_seq_idx
= -1ULL;
557 DBG("UST consumer sending channel %s to sessiond", channel
->name
);
559 if (channel
->relayd_id
!= (uint64_t) -1ULL) {
560 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
562 health_code_update();
564 /* Try to send the stream to the relayd if one is available. */
565 ret
= consumer_send_relayd_stream(stream
, stream
->chan
->pathname
);
568 * Flag that the relayd was the problem here probably due to a
569 * communicaton error on the socket.
574 ret_code
= LTTCOMM_CONSUMERD_RELAYD_FAIL
;
576 if (net_seq_idx
== -1ULL) {
577 net_seq_idx
= stream
->net_seq_idx
;
582 /* Inform sessiond that we are about to send channel and streams. */
583 ret
= consumer_send_status_msg(sock
, ret_code
);
584 if (ret
< 0 || ret_code
!= LTTCOMM_CONSUMERD_SUCCESS
) {
586 * Either the session daemon is not responding or the relayd died so we
592 /* Send channel to sessiond. */
593 ret
= ustctl_send_channel_to_sessiond(sock
, channel
->uchan
);
598 ret
= ustctl_channel_close_wakeup_fd(channel
->uchan
);
603 /* The channel was sent successfully to the sessiond at this point. */
604 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
606 health_code_update();
608 /* Send stream to session daemon. */
609 ret
= send_sessiond_stream(sock
, stream
);
615 /* Tell sessiond there is no more stream. */
616 ret
= ustctl_send_stream_to_sessiond(sock
, NULL
);
621 DBG("UST consumer NULL stream sent to sessiond");
626 if (ret_code
!= LTTCOMM_CONSUMERD_SUCCESS
) {
633 * Creates a channel and streams and add the channel it to the channel internal
634 * state. The created stream must ONLY be sent once the GET_CHANNEL command is
637 * Return 0 on success or else, a negative value is returned and the channel
638 * MUST be destroyed by consumer_del_channel().
640 static int ask_channel(struct lttng_consumer_local_data
*ctx
, int sock
,
641 struct lttng_consumer_channel
*channel
,
642 struct ustctl_consumer_channel_attr
*attr
)
651 * This value is still used by the kernel consumer since for the kernel,
652 * the stream ownership is not IN the consumer so we need to have the
653 * number of left stream that needs to be initialized so we can know when
654 * to delete the channel (see consumer.c).
656 * As for the user space tracer now, the consumer creates and sends the
657 * stream to the session daemon which only sends them to the application
658 * once every stream of a channel is received making this value useless
659 * because we they will be added to the poll thread before the application
660 * receives them. This ensures that a stream can not hang up during
661 * initilization of a channel.
663 channel
->nb_init_stream_left
= 0;
665 /* The reply msg status is handled in the following call. */
666 ret
= create_ust_channel(channel
, attr
, &channel
->uchan
);
671 channel
->wait_fd
= ustctl_channel_get_wait_fd(channel
->uchan
);
674 * For the snapshots (no monitor), we create the metadata streams
675 * on demand, not during the channel creation.
677 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
&& !channel
->monitor
) {
682 /* Open all streams for this channel. */
683 ret
= create_ust_streams(channel
, ctx
);
693 * Send all stream of a channel to the right thread handling it.
695 * On error, return a negative value else 0 on success.
697 static int send_streams_to_thread(struct lttng_consumer_channel
*channel
,
698 struct lttng_consumer_local_data
*ctx
)
701 struct lttng_consumer_stream
*stream
, *stmp
;
706 /* Send streams to the corresponding thread. */
707 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->streams
.head
,
710 health_code_update();
712 /* Sending the stream to the thread. */
713 ret
= send_stream_to_thread(stream
, ctx
);
716 * If we are unable to send the stream to the thread, there is
717 * a big problem so just stop everything.
728 * Flush channel's streams using the given key to retrieve the channel.
730 * Return 0 on success else an LTTng error code.
732 static int flush_channel(uint64_t chan_key
)
735 struct lttng_consumer_channel
*channel
;
736 struct lttng_consumer_stream
*stream
;
738 struct lttng_ht_iter iter
;
740 DBG("UST consumer flush channel key %" PRIu64
, chan_key
);
743 channel
= consumer_find_channel(chan_key
);
745 ERR("UST consumer flush channel %" PRIu64
" not found", chan_key
);
746 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
750 ht
= consumer_data
.stream_per_chan_id_ht
;
752 /* For each stream of the channel id, flush it. */
753 cds_lfht_for_each_entry_duplicate(ht
->ht
,
754 ht
->hash_fct(&channel
->key
, lttng_ht_seed
), ht
->match_fct
,
755 &channel
->key
, &iter
.iter
, stream
, node_channel_id
.node
) {
757 health_code_update();
759 pthread_mutex_lock(&stream
->lock
);
760 if (!stream
->quiescent
) {
761 ustctl_flush_buffer(stream
->ustream
, 0);
762 stream
->quiescent
= true;
764 pthread_mutex_unlock(&stream
->lock
);
772 * Clear quiescent state from channel's streams using the given key to
773 * retrieve the channel.
775 * Return 0 on success else an LTTng error code.
777 static int clear_quiescent_channel(uint64_t chan_key
)
780 struct lttng_consumer_channel
*channel
;
781 struct lttng_consumer_stream
*stream
;
783 struct lttng_ht_iter iter
;
785 DBG("UST consumer clear quiescent channel key %" PRIu64
, chan_key
);
788 channel
= consumer_find_channel(chan_key
);
790 ERR("UST consumer clear quiescent channel %" PRIu64
" not found", chan_key
);
791 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
795 ht
= consumer_data
.stream_per_chan_id_ht
;
797 /* For each stream of the channel id, clear quiescent state. */
798 cds_lfht_for_each_entry_duplicate(ht
->ht
,
799 ht
->hash_fct(&channel
->key
, lttng_ht_seed
), ht
->match_fct
,
800 &channel
->key
, &iter
.iter
, stream
, node_channel_id
.node
) {
802 health_code_update();
804 pthread_mutex_lock(&stream
->lock
);
805 stream
->quiescent
= false;
806 pthread_mutex_unlock(&stream
->lock
);
814 * Close metadata stream wakeup_fd using the given key to retrieve the channel.
815 * RCU read side lock MUST be acquired before calling this function.
817 * Return 0 on success else an LTTng error code.
819 static int close_metadata(uint64_t chan_key
)
822 struct lttng_consumer_channel
*channel
;
823 unsigned int channel_monitor
;
825 DBG("UST consumer close metadata key %" PRIu64
, chan_key
);
827 channel
= consumer_find_channel(chan_key
);
830 * This is possible if the metadata thread has issue a delete because
831 * the endpoint point of the stream hung up. There is no way the
832 * session daemon can know about it thus use a DBG instead of an actual
835 DBG("UST consumer close metadata %" PRIu64
" not found", chan_key
);
836 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
840 pthread_mutex_lock(&consumer_data
.lock
);
841 pthread_mutex_lock(&channel
->lock
);
842 channel_monitor
= channel
->monitor
;
843 if (cds_lfht_is_node_deleted(&channel
->node
.node
)) {
847 lttng_ustconsumer_close_metadata(channel
);
848 pthread_mutex_unlock(&channel
->lock
);
849 pthread_mutex_unlock(&consumer_data
.lock
);
852 * The ownership of a metadata channel depends on the type of
853 * session to which it belongs. In effect, the monitor flag is checked
854 * to determine if this metadata channel is in "snapshot" mode or not.
856 * In the non-snapshot case, the metadata channel is created along with
857 * a single stream which will remain present until the metadata channel
858 * is destroyed (on the destruction of its session). In this case, the
859 * metadata stream in "monitored" by the metadata poll thread and holds
860 * the ownership of its channel.
862 * Closing the metadata will cause the metadata stream's "metadata poll
863 * pipe" to be closed. Closing this pipe will wake-up the metadata poll
864 * thread which will teardown the metadata stream which, in return,
865 * deletes the metadata channel.
867 * In the snapshot case, the metadata stream is created and destroyed
868 * on every snapshot record. Since the channel doesn't have an owner
869 * other than the session daemon, it is safe to destroy it immediately
870 * on reception of the CLOSE_METADATA command.
872 if (!channel_monitor
) {
874 * The channel and consumer_data locks must be
875 * released before this call since consumer_del_channel
876 * re-acquires the channel and consumer_data locks to teardown
877 * the channel and queue its reclamation by the "call_rcu"
880 consumer_del_channel(channel
);
885 pthread_mutex_unlock(&channel
->lock
);
886 pthread_mutex_unlock(&consumer_data
.lock
);
892 * RCU read side lock MUST be acquired before calling this function.
894 * Return 0 on success else an LTTng error code.
896 static int setup_metadata(struct lttng_consumer_local_data
*ctx
, uint64_t key
)
899 struct lttng_consumer_channel
*metadata
;
901 DBG("UST consumer setup metadata key %" PRIu64
, key
);
903 metadata
= consumer_find_channel(key
);
905 ERR("UST consumer push metadata %" PRIu64
" not found", key
);
906 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
911 * In no monitor mode, the metadata channel has no stream(s) so skip the
912 * ownership transfer to the metadata thread.
914 if (!metadata
->monitor
) {
915 DBG("Metadata channel in no monitor");
921 * Send metadata stream to relayd if one available. Availability is
922 * known if the stream is still in the list of the channel.
924 if (cds_list_empty(&metadata
->streams
.head
)) {
925 ERR("Metadata channel key %" PRIu64
", no stream available.", key
);
926 ret
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
927 goto error_no_stream
;
930 /* Send metadata stream to relayd if needed. */
931 if (metadata
->metadata_stream
->net_seq_idx
!= (uint64_t) -1ULL) {
932 ret
= consumer_send_relayd_stream(metadata
->metadata_stream
,
935 ret
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
938 ret
= consumer_send_relayd_streams_sent(
939 metadata
->metadata_stream
->net_seq_idx
);
941 ret
= LTTCOMM_CONSUMERD_RELAYD_FAIL
;
947 * Ownership of metadata stream is passed along. Freeing is handled by
950 ret
= send_streams_to_thread(metadata
, ctx
);
953 * If we are unable to send the stream to the thread, there is
954 * a big problem so just stop everything.
956 ret
= LTTCOMM_CONSUMERD_FATAL
;
957 goto send_streams_error
;
959 /* List MUST be empty after or else it could be reused. */
960 assert(cds_list_empty(&metadata
->streams
.head
));
967 * Delete metadata channel on error. At this point, the metadata stream can
968 * NOT be monitored by the metadata thread thus having the guarantee that
969 * the stream is still in the local stream list of the channel. This call
970 * will make sure to clean that list.
972 consumer_stream_destroy(metadata
->metadata_stream
, NULL
);
973 cds_list_del(&metadata
->metadata_stream
->send_node
);
974 metadata
->metadata_stream
= NULL
;
982 * Snapshot the whole metadata.
984 * Returns 0 on success, < 0 on error
986 static int snapshot_metadata(uint64_t key
, char *path
, uint64_t relayd_id
,
987 struct lttng_consumer_local_data
*ctx
)
990 struct lttng_consumer_channel
*metadata_channel
;
991 struct lttng_consumer_stream
*metadata_stream
;
996 DBG("UST consumer snapshot metadata with key %" PRIu64
" at path %s",
1001 metadata_channel
= consumer_find_channel(key
);
1002 if (!metadata_channel
) {
1003 ERR("UST snapshot metadata channel not found for key %" PRIu64
,
1008 assert(!metadata_channel
->monitor
);
1010 health_code_update();
1013 * Ask the sessiond if we have new metadata waiting and update the
1014 * consumer metadata cache.
1016 ret
= lttng_ustconsumer_request_metadata(ctx
, metadata_channel
, 0, 1);
1021 health_code_update();
1024 * The metadata stream is NOT created in no monitor mode when the channel
1025 * is created on a sessiond ask channel command.
1027 ret
= create_ust_streams(metadata_channel
, ctx
);
1032 metadata_stream
= metadata_channel
->metadata_stream
;
1033 assert(metadata_stream
);
1035 if (relayd_id
!= (uint64_t) -1ULL) {
1036 metadata_stream
->net_seq_idx
= relayd_id
;
1037 ret
= consumer_send_relayd_stream(metadata_stream
, path
);
1042 ret
= utils_create_stream_file(path
, metadata_stream
->name
,
1043 metadata_stream
->chan
->tracefile_size
,
1044 metadata_stream
->tracefile_count_current
,
1045 metadata_stream
->uid
, metadata_stream
->gid
, NULL
);
1049 metadata_stream
->out_fd
= ret
;
1050 metadata_stream
->tracefile_size_current
= 0;
1054 health_code_update();
1056 ret
= lttng_consumer_read_subbuffer(metadata_stream
, ctx
);
1064 * Clean up the stream completly because the next snapshot will use a new
1067 consumer_stream_destroy(metadata_stream
, NULL
);
1068 cds_list_del(&metadata_stream
->send_node
);
1069 metadata_channel
->metadata_stream
= NULL
;
1077 * Take a snapshot of all the stream of a channel.
1079 * Returns 0 on success, < 0 on error
1081 static int snapshot_channel(uint64_t key
, char *path
, uint64_t relayd_id
,
1082 uint64_t nb_packets_per_stream
, struct lttng_consumer_local_data
*ctx
)
1085 unsigned use_relayd
= 0;
1086 unsigned long consumed_pos
, produced_pos
;
1087 struct lttng_consumer_channel
*channel
;
1088 struct lttng_consumer_stream
*stream
;
1095 if (relayd_id
!= (uint64_t) -1ULL) {
1099 channel
= consumer_find_channel(key
);
1101 ERR("UST snapshot channel not found for key %" PRIu64
, key
);
1105 assert(!channel
->monitor
);
1106 DBG("UST consumer snapshot channel %" PRIu64
, key
);
1108 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
1109 health_code_update();
1111 /* Lock stream because we are about to change its state. */
1112 pthread_mutex_lock(&stream
->lock
);
1113 stream
->net_seq_idx
= relayd_id
;
1116 ret
= consumer_send_relayd_stream(stream
, path
);
1121 ret
= utils_create_stream_file(path
, stream
->name
,
1122 stream
->chan
->tracefile_size
,
1123 stream
->tracefile_count_current
,
1124 stream
->uid
, stream
->gid
, NULL
);
1128 stream
->out_fd
= ret
;
1129 stream
->tracefile_size_current
= 0;
1131 DBG("UST consumer snapshot stream %s/%s (%" PRIu64
")", path
,
1132 stream
->name
, stream
->key
);
1136 * If tracing is active, we want to perform a "full" buffer flush.
1137 * Else, if quiescent, it has already been done by the prior stop.
1139 if (!stream
->quiescent
) {
1140 ustctl_flush_buffer(stream
->ustream
, 0);
1143 ret
= lttng_ustconsumer_take_snapshot(stream
);
1145 ERR("Taking UST snapshot");
1149 ret
= lttng_ustconsumer_get_produced_snapshot(stream
, &produced_pos
);
1151 ERR("Produced UST snapshot position");
1155 ret
= lttng_ustconsumer_get_consumed_snapshot(stream
, &consumed_pos
);
1157 ERR("Consumerd UST snapshot position");
1162 * The original value is sent back if max stream size is larger than
1163 * the possible size of the snapshot. Also, we assume that the session
1164 * daemon should never send a maximum stream size that is lower than
1167 consumed_pos
= consumer_get_consume_start_pos(consumed_pos
,
1168 produced_pos
, nb_packets_per_stream
,
1169 stream
->max_sb_size
);
1171 while (consumed_pos
< produced_pos
) {
1173 unsigned long len
, padded_len
;
1175 health_code_update();
1177 DBG("UST consumer taking snapshot at pos %lu", consumed_pos
);
1179 ret
= ustctl_get_subbuf(stream
->ustream
, &consumed_pos
);
1181 if (ret
!= -EAGAIN
) {
1182 PERROR("ustctl_get_subbuf snapshot");
1183 goto error_close_stream
;
1185 DBG("UST consumer get subbuf failed. Skipping it.");
1186 consumed_pos
+= stream
->max_sb_size
;
1187 stream
->chan
->lost_packets
++;
1191 ret
= ustctl_get_subbuf_size(stream
->ustream
, &len
);
1193 ERR("Snapshot ustctl_get_subbuf_size");
1194 goto error_put_subbuf
;
1197 ret
= ustctl_get_padded_subbuf_size(stream
->ustream
, &padded_len
);
1199 ERR("Snapshot ustctl_get_padded_subbuf_size");
1200 goto error_put_subbuf
;
1203 read_len
= lttng_consumer_on_read_subbuffer_mmap(ctx
, stream
, len
,
1204 padded_len
- len
, NULL
);
1206 if (read_len
!= len
) {
1208 goto error_put_subbuf
;
1211 if (read_len
!= padded_len
) {
1213 goto error_put_subbuf
;
1217 ret
= ustctl_put_subbuf(stream
->ustream
);
1219 ERR("Snapshot ustctl_put_subbuf");
1220 goto error_close_stream
;
1222 consumed_pos
+= stream
->max_sb_size
;
1225 /* Simply close the stream so we can use it on the next snapshot. */
1226 consumer_stream_close(stream
);
1227 pthread_mutex_unlock(&stream
->lock
);
1234 if (ustctl_put_subbuf(stream
->ustream
) < 0) {
1235 ERR("Snapshot ustctl_put_subbuf");
1238 consumer_stream_close(stream
);
1240 pthread_mutex_unlock(&stream
->lock
);
1247 * Receive the metadata updates from the sessiond. Supports receiving
1248 * overlapping metadata, but is needs to always belong to a contiguous
1249 * range starting from 0.
1250 * Be careful about the locks held when calling this function: it needs
1251 * the metadata cache flush to concurrently progress in order to
1254 int lttng_ustconsumer_recv_metadata(int sock
, uint64_t key
, uint64_t offset
,
1255 uint64_t len
, uint64_t version
,
1256 struct lttng_consumer_channel
*channel
, int timer
, int wait
)
1258 int ret
, ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1261 DBG("UST consumer push metadata key %" PRIu64
" of len %" PRIu64
, key
, len
);
1263 metadata_str
= zmalloc(len
* sizeof(char));
1264 if (!metadata_str
) {
1265 PERROR("zmalloc metadata string");
1266 ret_code
= LTTCOMM_CONSUMERD_ENOMEM
;
1270 health_code_update();
1272 /* Receive metadata string. */
1273 ret
= lttcomm_recv_unix_sock(sock
, metadata_str
, len
);
1275 /* Session daemon is dead so return gracefully. */
1280 health_code_update();
1282 pthread_mutex_lock(&channel
->metadata_cache
->lock
);
1283 ret
= consumer_metadata_cache_write(channel
, offset
, len
, version
,
1286 /* Unable to handle metadata. Notify session daemon. */
1287 ret_code
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
1289 * Skip metadata flush on write error since the offset and len might
1290 * not have been updated which could create an infinite loop below when
1291 * waiting for the metadata cache to be flushed.
1293 pthread_mutex_unlock(&channel
->metadata_cache
->lock
);
1296 pthread_mutex_unlock(&channel
->metadata_cache
->lock
);
1301 while (consumer_metadata_cache_flushed(channel
, offset
+ len
, timer
)) {
1302 DBG("Waiting for metadata to be flushed");
1304 health_code_update();
1306 usleep(DEFAULT_METADATA_AVAILABILITY_WAIT_TIME
);
1316 * Receive command from session daemon and process it.
1318 * Return 1 on success else a negative value or 0.
1320 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
1321 int sock
, struct pollfd
*consumer_sockpoll
)
1324 enum lttcomm_return_code ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1325 struct lttcomm_consumer_msg msg
;
1326 struct lttng_consumer_channel
*channel
= NULL
;
1328 health_code_update();
1330 ret
= lttcomm_recv_unix_sock(sock
, &msg
, sizeof(msg
));
1331 if (ret
!= sizeof(msg
)) {
1332 DBG("Consumer received unexpected message size %zd (expects %zu)",
1335 * The ret value might 0 meaning an orderly shutdown but this is ok
1336 * since the caller handles this.
1339 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_CMD
);
1345 health_code_update();
1348 assert(msg
.cmd_type
!= LTTNG_CONSUMER_STOP
);
1350 health_code_update();
1352 /* relayd needs RCU read-side lock */
1355 switch (msg
.cmd_type
) {
1356 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET
:
1358 /* Session daemon status message are handled in the following call. */
1359 consumer_add_relayd_socket(msg
.u
.relayd_sock
.net_index
,
1360 msg
.u
.relayd_sock
.type
, ctx
, sock
, consumer_sockpoll
,
1361 &msg
.u
.relayd_sock
.sock
, msg
.u
.relayd_sock
.session_id
,
1362 msg
.u
.relayd_sock
.relayd_session_id
);
1365 case LTTNG_CONSUMER_DESTROY_RELAYD
:
1367 uint64_t index
= msg
.u
.destroy_relayd
.net_seq_idx
;
1368 struct consumer_relayd_sock_pair
*relayd
;
1370 DBG("UST consumer destroying relayd %" PRIu64
, index
);
1372 /* Get relayd reference if exists. */
1373 relayd
= consumer_find_relayd(index
);
1374 if (relayd
== NULL
) {
1375 DBG("Unable to find relayd %" PRIu64
, index
);
1376 ret_code
= LTTCOMM_CONSUMERD_RELAYD_FAIL
;
1380 * Each relayd socket pair has a refcount of stream attached to it
1381 * which tells if the relayd is still active or not depending on the
1384 * This will set the destroy flag of the relayd object and destroy it
1385 * if the refcount reaches zero when called.
1387 * The destroy can happen either here or when a stream fd hangs up.
1390 consumer_flag_relayd_for_destroy(relayd
);
1393 goto end_msg_sessiond
;
1395 case LTTNG_CONSUMER_UPDATE_STREAM
:
1400 case LTTNG_CONSUMER_DATA_PENDING
:
1402 int ret
, is_data_pending
;
1403 uint64_t id
= msg
.u
.data_pending
.session_id
;
1405 DBG("UST consumer data pending command for id %" PRIu64
, id
);
1407 is_data_pending
= consumer_data_pending(id
);
1409 /* Send back returned value to session daemon */
1410 ret
= lttcomm_send_unix_sock(sock
, &is_data_pending
,
1411 sizeof(is_data_pending
));
1413 DBG("Error when sending the data pending ret code: %d", ret
);
1418 * No need to send back a status message since the data pending
1419 * returned value is the response.
1423 case LTTNG_CONSUMER_ASK_CHANNEL_CREATION
:
1426 struct ustctl_consumer_channel_attr attr
;
1428 /* Create a plain object and reserve a channel key. */
1429 channel
= allocate_channel(msg
.u
.ask_channel
.session_id
,
1430 msg
.u
.ask_channel
.pathname
, msg
.u
.ask_channel
.name
,
1431 msg
.u
.ask_channel
.uid
, msg
.u
.ask_channel
.gid
,
1432 msg
.u
.ask_channel
.relayd_id
, msg
.u
.ask_channel
.key
,
1433 (enum lttng_event_output
) msg
.u
.ask_channel
.output
,
1434 msg
.u
.ask_channel
.tracefile_size
,
1435 msg
.u
.ask_channel
.tracefile_count
,
1436 msg
.u
.ask_channel
.session_id_per_pid
,
1437 msg
.u
.ask_channel
.monitor
,
1438 msg
.u
.ask_channel
.live_timer_interval
,
1439 msg
.u
.ask_channel
.root_shm_path
,
1440 msg
.u
.ask_channel
.shm_path
);
1442 goto end_channel_error
;
1446 * Assign UST application UID to the channel. This value is ignored for
1447 * per PID buffers. This is specific to UST thus setting this after the
1450 channel
->ust_app_uid
= msg
.u
.ask_channel
.ust_app_uid
;
1452 /* Build channel attributes from received message. */
1453 attr
.subbuf_size
= msg
.u
.ask_channel
.subbuf_size
;
1454 attr
.num_subbuf
= msg
.u
.ask_channel
.num_subbuf
;
1455 attr
.overwrite
= msg
.u
.ask_channel
.overwrite
;
1456 attr
.switch_timer_interval
= msg
.u
.ask_channel
.switch_timer_interval
;
1457 attr
.read_timer_interval
= msg
.u
.ask_channel
.read_timer_interval
;
1458 attr
.chan_id
= msg
.u
.ask_channel
.chan_id
;
1459 memcpy(attr
.uuid
, msg
.u
.ask_channel
.uuid
, sizeof(attr
.uuid
));
1460 attr
.blocking_timeout
= msg
.u
.ask_channel
.blocking_timeout
;
1462 /* Match channel buffer type to the UST abi. */
1463 switch (msg
.u
.ask_channel
.output
) {
1464 case LTTNG_EVENT_MMAP
:
1466 attr
.output
= LTTNG_UST_MMAP
;
1470 /* Translate and save channel type. */
1471 switch (msg
.u
.ask_channel
.type
) {
1472 case LTTNG_UST_CHAN_PER_CPU
:
1473 channel
->type
= CONSUMER_CHANNEL_TYPE_DATA
;
1474 attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1476 * Set refcount to 1 for owner. Below, we will
1477 * pass ownership to the
1478 * consumer_thread_channel_poll() thread.
1480 channel
->refcount
= 1;
1482 case LTTNG_UST_CHAN_METADATA
:
1483 channel
->type
= CONSUMER_CHANNEL_TYPE_METADATA
;
1484 attr
.type
= LTTNG_UST_CHAN_METADATA
;
1491 health_code_update();
1493 ret
= ask_channel(ctx
, sock
, channel
, &attr
);
1495 goto end_channel_error
;
1498 if (msg
.u
.ask_channel
.type
== LTTNG_UST_CHAN_METADATA
) {
1499 ret
= consumer_metadata_cache_allocate(channel
);
1501 ERR("Allocating metadata cache");
1502 goto end_channel_error
;
1504 consumer_timer_switch_start(channel
, attr
.switch_timer_interval
);
1505 attr
.switch_timer_interval
= 0;
1507 int monitor_start_ret
;
1509 consumer_timer_live_start(channel
,
1510 msg
.u
.ask_channel
.live_timer_interval
);
1511 monitor_start_ret
= consumer_timer_monitor_start(
1513 msg
.u
.ask_channel
.monitor_timer_interval
);
1514 if (monitor_start_ret
< 0) {
1515 ERR("Starting channel monitoring timer failed");
1516 goto end_channel_error
;
1520 health_code_update();
1523 * Add the channel to the internal state AFTER all streams were created
1524 * and successfully sent to session daemon. This way, all streams must
1525 * be ready before this channel is visible to the threads.
1526 * If add_channel succeeds, ownership of the channel is
1527 * passed to consumer_thread_channel_poll().
1529 ret
= add_channel(channel
, ctx
);
1531 if (msg
.u
.ask_channel
.type
== LTTNG_UST_CHAN_METADATA
) {
1532 if (channel
->switch_timer_enabled
== 1) {
1533 consumer_timer_switch_stop(channel
);
1535 consumer_metadata_cache_destroy(channel
);
1537 if (channel
->live_timer_enabled
== 1) {
1538 consumer_timer_live_stop(channel
);
1540 if (channel
->monitor_timer_enabled
== 1) {
1541 consumer_timer_monitor_stop(channel
);
1543 goto end_channel_error
;
1546 health_code_update();
1549 * Channel and streams are now created. Inform the session daemon that
1550 * everything went well and should wait to receive the channel and
1551 * streams with ustctl API.
1553 ret
= consumer_send_status_channel(sock
, channel
);
1556 * There is probably a problem on the socket.
1563 case LTTNG_CONSUMER_GET_CHANNEL
:
1565 int ret
, relayd_err
= 0;
1566 uint64_t key
= msg
.u
.get_channel
.key
;
1567 struct lttng_consumer_channel
*channel
;
1569 channel
= consumer_find_channel(key
);
1571 ERR("UST consumer get channel key %" PRIu64
" not found", key
);
1572 ret_code
= LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
;
1573 goto end_msg_sessiond
;
1576 health_code_update();
1578 /* Send everything to sessiond. */
1579 ret
= send_sessiond_channel(sock
, channel
, ctx
, &relayd_err
);
1583 * We were unable to send to the relayd the stream so avoid
1584 * sending back a fatal error to the thread since this is OK
1585 * and the consumer can continue its work. The above call
1586 * has sent the error status message to the sessiond.
1591 * The communicaton was broken hence there is a bad state between
1592 * the consumer and sessiond so stop everything.
1597 health_code_update();
1600 * In no monitor mode, the streams ownership is kept inside the channel
1601 * so don't send them to the data thread.
1603 if (!channel
->monitor
) {
1604 goto end_msg_sessiond
;
1607 ret
= send_streams_to_thread(channel
, ctx
);
1610 * If we are unable to send the stream to the thread, there is
1611 * a big problem so just stop everything.
1615 /* List MUST be empty after or else it could be reused. */
1616 assert(cds_list_empty(&channel
->streams
.head
));
1617 goto end_msg_sessiond
;
1619 case LTTNG_CONSUMER_DESTROY_CHANNEL
:
1621 uint64_t key
= msg
.u
.destroy_channel
.key
;
1624 * Only called if streams have not been sent to stream
1625 * manager thread. However, channel has been sent to
1626 * channel manager thread.
1628 notify_thread_del_channel(ctx
, key
);
1629 goto end_msg_sessiond
;
1631 case LTTNG_CONSUMER_CLOSE_METADATA
:
1635 ret
= close_metadata(msg
.u
.close_metadata
.key
);
1640 goto end_msg_sessiond
;
1642 case LTTNG_CONSUMER_FLUSH_CHANNEL
:
1646 ret
= flush_channel(msg
.u
.flush_channel
.key
);
1651 goto end_msg_sessiond
;
1653 case LTTNG_CONSUMER_CLEAR_QUIESCENT_CHANNEL
:
1657 ret
= clear_quiescent_channel(
1658 msg
.u
.clear_quiescent_channel
.key
);
1663 goto end_msg_sessiond
;
1665 case LTTNG_CONSUMER_PUSH_METADATA
:
1668 uint64_t len
= msg
.u
.push_metadata
.len
;
1669 uint64_t key
= msg
.u
.push_metadata
.key
;
1670 uint64_t offset
= msg
.u
.push_metadata
.target_offset
;
1671 uint64_t version
= msg
.u
.push_metadata
.version
;
1672 struct lttng_consumer_channel
*channel
;
1674 DBG("UST consumer push metadata key %" PRIu64
" of len %" PRIu64
, key
,
1677 channel
= consumer_find_channel(key
);
1680 * This is possible if the metadata creation on the consumer side
1681 * is in flight vis-a-vis a concurrent push metadata from the
1682 * session daemon. Simply return that the channel failed and the
1683 * session daemon will handle that message correctly considering
1684 * that this race is acceptable thus the DBG() statement here.
1686 DBG("UST consumer push metadata %" PRIu64
" not found", key
);
1687 ret_code
= LTTCOMM_CONSUMERD_CHANNEL_FAIL
;
1688 goto end_msg_sessiond
;
1691 health_code_update();
1695 * There is nothing to receive. We have simply
1696 * checked whether the channel can be found.
1698 ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1699 goto end_msg_sessiond
;
1702 /* Tell session daemon we are ready to receive the metadata. */
1703 ret
= consumer_send_status_msg(sock
, LTTCOMM_CONSUMERD_SUCCESS
);
1705 /* Somehow, the session daemon is not responding anymore. */
1709 health_code_update();
1711 /* Wait for more data. */
1712 health_poll_entry();
1713 ret
= lttng_consumer_poll_socket(consumer_sockpoll
);
1719 health_code_update();
1721 ret
= lttng_ustconsumer_recv_metadata(sock
, key
, offset
,
1722 len
, version
, channel
, 0, 1);
1724 /* error receiving from sessiond */
1728 goto end_msg_sessiond
;
1731 case LTTNG_CONSUMER_SETUP_METADATA
:
1735 ret
= setup_metadata(ctx
, msg
.u
.setup_metadata
.key
);
1739 goto end_msg_sessiond
;
1741 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL
:
1743 if (msg
.u
.snapshot_channel
.metadata
) {
1744 ret
= snapshot_metadata(msg
.u
.snapshot_channel
.key
,
1745 msg
.u
.snapshot_channel
.pathname
,
1746 msg
.u
.snapshot_channel
.relayd_id
,
1749 ERR("Snapshot metadata failed");
1750 ret_code
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
1753 ret
= snapshot_channel(msg
.u
.snapshot_channel
.key
,
1754 msg
.u
.snapshot_channel
.pathname
,
1755 msg
.u
.snapshot_channel
.relayd_id
,
1756 msg
.u
.snapshot_channel
.nb_packets_per_stream
,
1759 ERR("Snapshot channel failed");
1760 ret_code
= LTTCOMM_CONSUMERD_CHANNEL_FAIL
;
1764 health_code_update();
1765 ret
= consumer_send_status_msg(sock
, ret_code
);
1767 /* Somehow, the session daemon is not responding anymore. */
1770 health_code_update();
1773 case LTTNG_CONSUMER_DISCARDED_EVENTS
:
1776 uint64_t discarded_events
;
1777 struct lttng_ht_iter iter
;
1778 struct lttng_ht
*ht
;
1779 struct lttng_consumer_stream
*stream
;
1780 uint64_t id
= msg
.u
.discarded_events
.session_id
;
1781 uint64_t key
= msg
.u
.discarded_events
.channel_key
;
1783 DBG("UST consumer discarded events command for session id %"
1786 pthread_mutex_lock(&consumer_data
.lock
);
1788 ht
= consumer_data
.stream_list_ht
;
1791 * We only need a reference to the channel, but they are not
1792 * directly indexed, so we just use the first matching stream
1793 * to extract the information we need, we default to 0 if not
1794 * found (no events are dropped if the channel is not yet in
1797 discarded_events
= 0;
1798 cds_lfht_for_each_entry_duplicate(ht
->ht
,
1799 ht
->hash_fct(&id
, lttng_ht_seed
),
1801 &iter
.iter
, stream
, node_session_id
.node
) {
1802 if (stream
->chan
->key
== key
) {
1803 discarded_events
= stream
->chan
->discarded_events
;
1807 pthread_mutex_unlock(&consumer_data
.lock
);
1810 DBG("UST consumer discarded events command for session id %"
1811 PRIu64
", channel key %" PRIu64
, id
, key
);
1813 health_code_update();
1815 /* Send back returned value to session daemon */
1816 ret
= lttcomm_send_unix_sock(sock
, &discarded_events
, sizeof(discarded_events
));
1818 PERROR("send discarded events");
1824 case LTTNG_CONSUMER_LOST_PACKETS
:
1827 uint64_t lost_packets
;
1828 struct lttng_ht_iter iter
;
1829 struct lttng_ht
*ht
;
1830 struct lttng_consumer_stream
*stream
;
1831 uint64_t id
= msg
.u
.lost_packets
.session_id
;
1832 uint64_t key
= msg
.u
.lost_packets
.channel_key
;
1834 DBG("UST consumer lost packets command for session id %"
1837 pthread_mutex_lock(&consumer_data
.lock
);
1839 ht
= consumer_data
.stream_list_ht
;
1842 * We only need a reference to the channel, but they are not
1843 * directly indexed, so we just use the first matching stream
1844 * to extract the information we need, we default to 0 if not
1845 * found (no packets lost if the channel is not yet in use).
1848 cds_lfht_for_each_entry_duplicate(ht
->ht
,
1849 ht
->hash_fct(&id
, lttng_ht_seed
),
1851 &iter
.iter
, stream
, node_session_id
.node
) {
1852 if (stream
->chan
->key
== key
) {
1853 lost_packets
= stream
->chan
->lost_packets
;
1857 pthread_mutex_unlock(&consumer_data
.lock
);
1860 DBG("UST consumer lost packets command for session id %"
1861 PRIu64
", channel key %" PRIu64
, id
, key
);
1863 health_code_update();
1865 /* Send back returned value to session daemon */
1866 ret
= lttcomm_send_unix_sock(sock
, &lost_packets
,
1867 sizeof(lost_packets
));
1869 PERROR("send lost packets");
1875 case LTTNG_CONSUMER_SET_CHANNEL_MONITOR_PIPE
:
1877 int channel_monitor_pipe
;
1879 ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1880 /* Successfully received the command's type. */
1881 ret
= consumer_send_status_msg(sock
, ret_code
);
1886 ret
= lttcomm_recv_fds_unix_sock(sock
, &channel_monitor_pipe
,
1888 if (ret
!= sizeof(channel_monitor_pipe
)) {
1889 ERR("Failed to receive channel monitor pipe");
1893 DBG("Received channel monitor pipe (%d)", channel_monitor_pipe
);
1894 ret
= consumer_timer_thread_set_channel_monitor_pipe(
1895 channel_monitor_pipe
);
1899 ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
1900 /* Set the pipe as non-blocking. */
1901 ret
= fcntl(channel_monitor_pipe
, F_GETFL
, 0);
1903 PERROR("fcntl get flags of the channel monitoring pipe");
1908 ret
= fcntl(channel_monitor_pipe
, F_SETFL
,
1909 flags
| O_NONBLOCK
);
1911 PERROR("fcntl set O_NONBLOCK flag of the channel monitoring pipe");
1914 DBG("Channel monitor pipe set as non-blocking");
1916 ret_code
= LTTCOMM_CONSUMERD_ALREADY_SET
;
1918 goto end_msg_sessiond
;
1927 health_code_update();
1930 * Return 1 to indicate success since the 0 value can be a socket
1931 * shutdown during the recv() or send() call.
1937 * The returned value here is not useful since either way we'll return 1 to
1938 * the caller because the session daemon socket management is done
1939 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
1941 ret
= consumer_send_status_msg(sock
, ret_code
);
1947 health_code_update();
1953 * Free channel here since no one has a reference to it. We don't
1954 * free after that because a stream can store this pointer.
1956 destroy_channel(channel
);
1958 /* We have to send a status channel message indicating an error. */
1959 ret
= consumer_send_status_channel(sock
, NULL
);
1961 /* Stop everything if session daemon can not be notified. */
1966 health_code_update();
1971 /* This will issue a consumer stop. */
1976 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1977 * compiled out, we isolate it in this library.
1979 int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream
*stream
,
1983 assert(stream
->ustream
);
1985 return ustctl_get_mmap_read_offset(stream
->ustream
, off
);
1989 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1990 * compiled out, we isolate it in this library.
1992 void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream
*stream
)
1995 assert(stream
->ustream
);
1997 return ustctl_get_mmap_base(stream
->ustream
);
2001 * Take a snapshot for a specific stream.
2003 * Returns 0 on success, < 0 on error
2005 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream
*stream
)
2008 assert(stream
->ustream
);
2010 return ustctl_snapshot(stream
->ustream
);
2014 * Sample consumed and produced positions for a specific stream.
2016 * Returns 0 on success, < 0 on error.
2018 int lttng_ustconsumer_sample_snapshot_positions(
2019 struct lttng_consumer_stream
*stream
)
2022 assert(stream
->ustream
);
2024 return ustctl_snapshot_sample_positions(stream
->ustream
);
2028 * Get the produced position
2030 * Returns 0 on success, < 0 on error
2032 int lttng_ustconsumer_get_produced_snapshot(
2033 struct lttng_consumer_stream
*stream
, unsigned long *pos
)
2036 assert(stream
->ustream
);
2039 return ustctl_snapshot_get_produced(stream
->ustream
, pos
);
2043 * Get the consumed position
2045 * Returns 0 on success, < 0 on error
2047 int lttng_ustconsumer_get_consumed_snapshot(
2048 struct lttng_consumer_stream
*stream
, unsigned long *pos
)
2051 assert(stream
->ustream
);
2054 return ustctl_snapshot_get_consumed(stream
->ustream
, pos
);
2057 void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream
*stream
,
2061 assert(stream
->ustream
);
2063 ustctl_flush_buffer(stream
->ustream
, producer
);
2066 int lttng_ustconsumer_get_current_timestamp(
2067 struct lttng_consumer_stream
*stream
, uint64_t *ts
)
2070 assert(stream
->ustream
);
2073 return ustctl_get_current_timestamp(stream
->ustream
, ts
);
2076 int lttng_ustconsumer_get_sequence_number(
2077 struct lttng_consumer_stream
*stream
, uint64_t *seq
)
2080 assert(stream
->ustream
);
2083 return ustctl_get_sequence_number(stream
->ustream
, seq
);
2087 * Called when the stream signals the consumer that it has hung up.
2089 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream
*stream
)
2092 assert(stream
->ustream
);
2094 pthread_mutex_lock(&stream
->lock
);
2095 if (!stream
->quiescent
) {
2096 ustctl_flush_buffer(stream
->ustream
, 0);
2097 stream
->quiescent
= true;
2099 pthread_mutex_unlock(&stream
->lock
);
2100 stream
->hangup_flush_done
= 1;
2103 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel
*chan
)
2108 assert(chan
->uchan
);
2110 if (chan
->switch_timer_enabled
== 1) {
2111 consumer_timer_switch_stop(chan
);
2113 for (i
= 0; i
< chan
->nr_stream_fds
; i
++) {
2116 ret
= close(chan
->stream_fds
[i
]);
2120 if (chan
->shm_path
[0]) {
2121 char shm_path
[PATH_MAX
];
2123 ret
= get_stream_shm_path(shm_path
, chan
->shm_path
, i
);
2125 ERR("Cannot get stream shm path");
2127 ret
= run_as_unlink(shm_path
, chan
->uid
, chan
->gid
);
2129 PERROR("unlink %s", shm_path
);
2135 void lttng_ustconsumer_free_channel(struct lttng_consumer_channel
*chan
)
2138 assert(chan
->uchan
);
2140 consumer_metadata_cache_destroy(chan
);
2141 ustctl_destroy_channel(chan
->uchan
);
2142 /* Try to rmdir all directories under shm_path root. */
2143 if (chan
->root_shm_path
[0]) {
2144 (void) run_as_rmdir_recursive(chan
->root_shm_path
,
2145 chan
->uid
, chan
->gid
);
2147 free(chan
->stream_fds
);
2150 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream
*stream
)
2153 assert(stream
->ustream
);
2155 if (stream
->chan
->switch_timer_enabled
== 1) {
2156 consumer_timer_switch_stop(stream
->chan
);
2158 ustctl_destroy_stream(stream
->ustream
);
2161 int lttng_ustconsumer_get_wakeup_fd(struct lttng_consumer_stream
*stream
)
2164 assert(stream
->ustream
);
2166 return ustctl_stream_get_wakeup_fd(stream
->ustream
);
2169 int lttng_ustconsumer_close_wakeup_fd(struct lttng_consumer_stream
*stream
)
2172 assert(stream
->ustream
);
2174 return ustctl_stream_close_wakeup_fd(stream
->ustream
);
2178 * Populate index values of a UST stream. Values are set in big endian order.
2180 * Return 0 on success or else a negative value.
2182 static int get_index_values(struct ctf_packet_index
*index
,
2183 struct ustctl_consumer_stream
*ustream
)
2187 ret
= ustctl_get_timestamp_begin(ustream
, &index
->timestamp_begin
);
2189 PERROR("ustctl_get_timestamp_begin");
2192 index
->timestamp_begin
= htobe64(index
->timestamp_begin
);
2194 ret
= ustctl_get_timestamp_end(ustream
, &index
->timestamp_end
);
2196 PERROR("ustctl_get_timestamp_end");
2199 index
->timestamp_end
= htobe64(index
->timestamp_end
);
2201 ret
= ustctl_get_events_discarded(ustream
, &index
->events_discarded
);
2203 PERROR("ustctl_get_events_discarded");
2206 index
->events_discarded
= htobe64(index
->events_discarded
);
2208 ret
= ustctl_get_content_size(ustream
, &index
->content_size
);
2210 PERROR("ustctl_get_content_size");
2213 index
->content_size
= htobe64(index
->content_size
);
2215 ret
= ustctl_get_packet_size(ustream
, &index
->packet_size
);
2217 PERROR("ustctl_get_packet_size");
2220 index
->packet_size
= htobe64(index
->packet_size
);
2222 ret
= ustctl_get_stream_id(ustream
, &index
->stream_id
);
2224 PERROR("ustctl_get_stream_id");
2227 index
->stream_id
= htobe64(index
->stream_id
);
2229 ret
= ustctl_get_instance_id(ustream
, &index
->stream_instance_id
);
2231 PERROR("ustctl_get_instance_id");
2234 index
->stream_instance_id
= htobe64(index
->stream_instance_id
);
2236 ret
= ustctl_get_sequence_number(ustream
, &index
->packet_seq_num
);
2238 PERROR("ustctl_get_sequence_number");
2241 index
->packet_seq_num
= htobe64(index
->packet_seq_num
);
2248 void metadata_stream_reset_cache(struct lttng_consumer_stream
*stream
,
2249 struct consumer_metadata_cache
*cache
)
2251 DBG("Metadata stream update to version %" PRIu64
,
2253 stream
->ust_metadata_pushed
= 0;
2254 stream
->metadata_version
= cache
->version
;
2255 stream
->reset_metadata_flag
= 1;
2259 * Check if the version of the metadata stream and metadata cache match.
2260 * If the cache got updated, reset the metadata stream.
2261 * The stream lock and metadata cache lock MUST be held.
2262 * Return 0 on success, a negative value on error.
2265 int metadata_stream_check_version(struct lttng_consumer_stream
*stream
)
2268 struct consumer_metadata_cache
*cache
= stream
->chan
->metadata_cache
;
2270 if (cache
->version
== stream
->metadata_version
) {
2273 metadata_stream_reset_cache(stream
, cache
);
2280 * Write up to one packet from the metadata cache to the channel.
2282 * Returns the number of bytes pushed in the cache, or a negative value
2286 int commit_one_metadata_packet(struct lttng_consumer_stream
*stream
)
2291 pthread_mutex_lock(&stream
->chan
->metadata_cache
->lock
);
2292 ret
= metadata_stream_check_version(stream
);
2296 if (stream
->chan
->metadata_cache
->max_offset
2297 == stream
->ust_metadata_pushed
) {
2302 write_len
= ustctl_write_one_packet_to_channel(stream
->chan
->uchan
,
2303 &stream
->chan
->metadata_cache
->data
[stream
->ust_metadata_pushed
],
2304 stream
->chan
->metadata_cache
->max_offset
2305 - stream
->ust_metadata_pushed
);
2306 assert(write_len
!= 0);
2307 if (write_len
< 0) {
2308 ERR("Writing one metadata packet");
2312 stream
->ust_metadata_pushed
+= write_len
;
2314 assert(stream
->chan
->metadata_cache
->max_offset
>=
2315 stream
->ust_metadata_pushed
);
2319 pthread_mutex_unlock(&stream
->chan
->metadata_cache
->lock
);
2325 * Sync metadata meaning request them to the session daemon and snapshot to the
2326 * metadata thread can consumer them.
2328 * Metadata stream lock is held here, but we need to release it when
2329 * interacting with sessiond, else we cause a deadlock with live
2330 * awaiting on metadata to be pushed out.
2332 * Return 0 if new metadatda is available, EAGAIN if the metadata stream
2333 * is empty or a negative value on error.
2335 int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data
*ctx
,
2336 struct lttng_consumer_stream
*metadata
)
2344 pthread_mutex_unlock(&metadata
->lock
);
2346 * Request metadata from the sessiond, but don't wait for the flush
2347 * because we locked the metadata thread.
2349 ret
= lttng_ustconsumer_request_metadata(ctx
, metadata
->chan
, 0, 0);
2350 pthread_mutex_lock(&metadata
->lock
);
2355 ret
= commit_one_metadata_packet(metadata
);
2358 } else if (ret
> 0) {
2362 ustctl_flush_buffer(metadata
->ustream
, 1);
2363 ret
= ustctl_snapshot(metadata
->ustream
);
2365 if (errno
!= EAGAIN
) {
2366 ERR("Sync metadata, taking UST snapshot");
2369 DBG("No new metadata when syncing them.");
2370 /* No new metadata, exit. */
2376 * After this flush, we still need to extract metadata.
2387 * Return 0 on success else a negative value.
2389 static int notify_if_more_data(struct lttng_consumer_stream
*stream
,
2390 struct lttng_consumer_local_data
*ctx
)
2393 struct ustctl_consumer_stream
*ustream
;
2398 ustream
= stream
->ustream
;
2401 * First, we are going to check if there is a new subbuffer available
2402 * before reading the stream wait_fd.
2404 /* Get the next subbuffer */
2405 ret
= ustctl_get_next_subbuf(ustream
);
2407 /* No more data found, flag the stream. */
2408 stream
->has_data
= 0;
2413 ret
= ustctl_put_subbuf(ustream
);
2416 /* This stream still has data. Flag it and wake up the data thread. */
2417 stream
->has_data
= 1;
2419 if (stream
->monitor
&& !stream
->hangup_flush_done
&& !ctx
->has_wakeup
) {
2422 writelen
= lttng_pipe_write(ctx
->consumer_wakeup_pipe
, "!", 1);
2423 if (writelen
< 0 && errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
2428 /* The wake up pipe has been notified. */
2429 ctx
->has_wakeup
= 1;
2438 int update_stream_stats(struct lttng_consumer_stream
*stream
)
2441 uint64_t seq
, discarded
;
2443 ret
= ustctl_get_sequence_number(stream
->ustream
, &seq
);
2445 PERROR("ustctl_get_sequence_number");
2449 * Start the sequence when we extract the first packet in case we don't
2450 * start at 0 (for example if a consumer is not connected to the
2451 * session immediately after the beginning).
2453 if (stream
->last_sequence_number
== -1ULL) {
2454 stream
->last_sequence_number
= seq
;
2455 } else if (seq
> stream
->last_sequence_number
) {
2456 stream
->chan
->lost_packets
+= seq
-
2457 stream
->last_sequence_number
- 1;
2459 /* seq <= last_sequence_number */
2460 ERR("Sequence number inconsistent : prev = %" PRIu64
2461 ", current = %" PRIu64
,
2462 stream
->last_sequence_number
, seq
);
2466 stream
->last_sequence_number
= seq
;
2468 ret
= ustctl_get_events_discarded(stream
->ustream
, &discarded
);
2470 PERROR("kernctl_get_events_discarded");
2473 if (discarded
< stream
->last_discarded_events
) {
2475 * Overflow has occurred. We assume only one wrap-around
2478 stream
->chan
->discarded_events
+=
2479 (1ULL << (CAA_BITS_PER_LONG
- 1)) -
2480 stream
->last_discarded_events
+ discarded
;
2482 stream
->chan
->discarded_events
+= discarded
-
2483 stream
->last_discarded_events
;
2485 stream
->last_discarded_events
= discarded
;
2493 * Read subbuffer from the given stream.
2495 * Stream lock MUST be acquired.
2497 * Return 0 on success else a negative value.
2499 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream
*stream
,
2500 struct lttng_consumer_local_data
*ctx
)
2502 unsigned long len
, subbuf_size
, padding
;
2503 int err
, write_index
= 1;
2505 struct ustctl_consumer_stream
*ustream
;
2506 struct ctf_packet_index index
;
2509 assert(stream
->ustream
);
2512 DBG("In UST read_subbuffer (wait_fd: %d, name: %s)", stream
->wait_fd
,
2515 /* Ease our life for what's next. */
2516 ustream
= stream
->ustream
;
2519 * We can consume the 1 byte written into the wait_fd by UST. Don't trigger
2520 * error if we cannot read this one byte (read returns 0), or if the error
2521 * is EAGAIN or EWOULDBLOCK.
2523 * This is only done when the stream is monitored by a thread, before the
2524 * flush is done after a hangup and if the stream is not flagged with data
2525 * since there might be nothing to consume in the wait fd but still have
2526 * data available flagged by the consumer wake up pipe.
2528 if (stream
->monitor
&& !stream
->hangup_flush_done
&& !stream
->has_data
) {
2532 readlen
= lttng_read(stream
->wait_fd
, &dummy
, 1);
2533 if (readlen
< 0 && errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
2540 /* Get the next subbuffer */
2541 err
= ustctl_get_next_subbuf(ustream
);
2544 * Populate metadata info if the existing info has
2545 * already been read.
2547 if (stream
->metadata_flag
) {
2548 ret
= commit_one_metadata_packet(stream
);
2552 ustctl_flush_buffer(stream
->ustream
, 1);
2556 ret
= err
; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
2558 * This is a debug message even for single-threaded consumer,
2559 * because poll() have more relaxed criterions than get subbuf,
2560 * so get_subbuf may fail for short race windows where poll()
2561 * would issue wakeups.
2563 DBG("Reserving sub buffer failed (everything is normal, "
2564 "it is due to concurrency) [ret: %d]", err
);
2567 assert(stream
->chan
->output
== CONSUMER_CHANNEL_MMAP
);
2569 if (!stream
->metadata_flag
) {
2570 index
.offset
= htobe64(stream
->out_fd_offset
);
2571 ret
= get_index_values(&index
, ustream
);
2573 err
= ustctl_put_subbuf(ustream
);
2578 /* Update the stream's sequence and discarded events count. */
2579 ret
= update_stream_stats(stream
);
2581 PERROR("kernctl_get_events_discarded");
2582 err
= ustctl_put_subbuf(ustream
);
2590 /* Get the full padded subbuffer size */
2591 err
= ustctl_get_padded_subbuf_size(ustream
, &len
);
2594 /* Get subbuffer data size (without padding) */
2595 err
= ustctl_get_subbuf_size(ustream
, &subbuf_size
);
2598 /* Make sure we don't get a subbuffer size bigger than the padded */
2599 assert(len
>= subbuf_size
);
2601 padding
= len
- subbuf_size
;
2602 /* write the subbuffer to the tracefile */
2603 ret
= lttng_consumer_on_read_subbuffer_mmap(ctx
, stream
, subbuf_size
, padding
, &index
);
2605 * The mmap operation should write subbuf_size amount of data when network
2606 * streaming or the full padding (len) size when we are _not_ streaming.
2608 if ((ret
!= subbuf_size
&& stream
->net_seq_idx
!= (uint64_t) -1ULL) ||
2609 (ret
!= len
&& stream
->net_seq_idx
== (uint64_t) -1ULL)) {
2611 * Display the error but continue processing to try to release the
2612 * subbuffer. This is a DBG statement since any unexpected kill or
2613 * signal, the application gets unregistered, relayd gets closed or
2614 * anything that affects the buffer lifetime will trigger this error.
2615 * So, for the sake of the user, don't print this error since it can
2616 * happen and it is OK with the code flow.
2618 DBG("Error writing to tracefile "
2619 "(ret: %ld != len: %lu != subbuf_size: %lu)",
2620 ret
, len
, subbuf_size
);
2623 err
= ustctl_put_next_subbuf(ustream
);
2627 * This will consumer the byte on the wait_fd if and only if there is not
2628 * next subbuffer to be acquired.
2630 if (!stream
->metadata_flag
) {
2631 ret
= notify_if_more_data(stream
, ctx
);
2637 /* Write index if needed. */
2642 if (stream
->chan
->live_timer_interval
&& !stream
->metadata_flag
) {
2644 * In live, block until all the metadata is sent.
2646 pthread_mutex_lock(&stream
->metadata_timer_lock
);
2647 assert(!stream
->missed_metadata_flush
);
2648 stream
->waiting_on_metadata
= true;
2649 pthread_mutex_unlock(&stream
->metadata_timer_lock
);
2651 err
= consumer_stream_sync_metadata(ctx
, stream
->session_id
);
2653 pthread_mutex_lock(&stream
->metadata_timer_lock
);
2654 stream
->waiting_on_metadata
= false;
2655 if (stream
->missed_metadata_flush
) {
2656 stream
->missed_metadata_flush
= false;
2657 pthread_mutex_unlock(&stream
->metadata_timer_lock
);
2658 (void) consumer_flush_ust_index(stream
);
2660 pthread_mutex_unlock(&stream
->metadata_timer_lock
);
2668 assert(!stream
->metadata_flag
);
2669 err
= consumer_stream_write_index(stream
, &index
);
2679 * Called when a stream is created.
2681 * Return 0 on success or else a negative value.
2683 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
)
2689 /* Don't create anything if this is set for streaming. */
2690 if (stream
->net_seq_idx
== (uint64_t) -1ULL && stream
->chan
->monitor
) {
2691 ret
= utils_create_stream_file(stream
->chan
->pathname
, stream
->name
,
2692 stream
->chan
->tracefile_size
, stream
->tracefile_count_current
,
2693 stream
->uid
, stream
->gid
, NULL
);
2697 stream
->out_fd
= ret
;
2698 stream
->tracefile_size_current
= 0;
2700 if (!stream
->metadata_flag
) {
2701 struct lttng_index_file
*index_file
;
2703 index_file
= lttng_index_file_create(stream
->chan
->pathname
,
2704 stream
->name
, stream
->uid
, stream
->gid
,
2705 stream
->chan
->tracefile_size
,
2706 stream
->tracefile_count_current
,
2707 CTF_INDEX_MAJOR
, CTF_INDEX_MINOR
);
2711 assert(!stream
->index_file
);
2712 stream
->index_file
= index_file
;
2722 * Check if data is still being extracted from the buffers for a specific
2723 * stream. Consumer data lock MUST be acquired before calling this function
2724 * and the stream lock.
2726 * Return 1 if the traced data are still getting read else 0 meaning that the
2727 * data is available for trace viewer reading.
2729 int lttng_ustconsumer_data_pending(struct lttng_consumer_stream
*stream
)
2734 assert(stream
->ustream
);
2736 DBG("UST consumer checking data pending");
2738 if (stream
->endpoint_status
!= CONSUMER_ENDPOINT_ACTIVE
) {
2743 if (stream
->chan
->type
== CONSUMER_CHANNEL_TYPE_METADATA
) {
2744 uint64_t contiguous
, pushed
;
2746 /* Ease our life a bit. */
2747 contiguous
= stream
->chan
->metadata_cache
->max_offset
;
2748 pushed
= stream
->ust_metadata_pushed
;
2751 * We can simply check whether all contiguously available data
2752 * has been pushed to the ring buffer, since the push operation
2753 * is performed within get_next_subbuf(), and because both
2754 * get_next_subbuf() and put_next_subbuf() are issued atomically
2755 * thanks to the stream lock within
2756 * lttng_ustconsumer_read_subbuffer(). This basically means that
2757 * whetnever ust_metadata_pushed is incremented, the associated
2758 * metadata has been consumed from the metadata stream.
2760 DBG("UST consumer metadata pending check: contiguous %" PRIu64
" vs pushed %" PRIu64
,
2761 contiguous
, pushed
);
2762 assert(((int64_t) (contiguous
- pushed
)) >= 0);
2763 if ((contiguous
!= pushed
) ||
2764 (((int64_t) contiguous
- pushed
) > 0 || contiguous
== 0)) {
2765 ret
= 1; /* Data is pending */
2769 ret
= ustctl_get_next_subbuf(stream
->ustream
);
2772 * There is still data so let's put back this
2775 ret
= ustctl_put_subbuf(stream
->ustream
);
2777 ret
= 1; /* Data is pending */
2782 /* Data is NOT pending so ready to be read. */
2790 * Stop a given metadata channel timer if enabled and close the wait fd which
2791 * is the poll pipe of the metadata stream.
2793 * This MUST be called with the metadata channel acquired.
2795 void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel
*metadata
)
2800 assert(metadata
->type
== CONSUMER_CHANNEL_TYPE_METADATA
);
2802 DBG("Closing metadata channel key %" PRIu64
, metadata
->key
);
2804 if (metadata
->switch_timer_enabled
== 1) {
2805 consumer_timer_switch_stop(metadata
);
2808 if (!metadata
->metadata_stream
) {
2813 * Closing write side so the thread monitoring the stream wakes up if any
2814 * and clean the metadata stream.
2816 if (metadata
->metadata_stream
->ust_metadata_poll_pipe
[1] >= 0) {
2817 ret
= close(metadata
->metadata_stream
->ust_metadata_poll_pipe
[1]);
2819 PERROR("closing metadata pipe write side");
2821 metadata
->metadata_stream
->ust_metadata_poll_pipe
[1] = -1;
2829 * Close every metadata stream wait fd of the metadata hash table. This
2830 * function MUST be used very carefully so not to run into a race between the
2831 * metadata thread handling streams and this function closing their wait fd.
2833 * For UST, this is used when the session daemon hangs up. Its the metadata
2834 * producer so calling this is safe because we are assured that no state change
2835 * can occur in the metadata thread for the streams in the hash table.
2837 void lttng_ustconsumer_close_all_metadata(struct lttng_ht
*metadata_ht
)
2839 struct lttng_ht_iter iter
;
2840 struct lttng_consumer_stream
*stream
;
2842 assert(metadata_ht
);
2843 assert(metadata_ht
->ht
);
2845 DBG("UST consumer closing all metadata streams");
2848 cds_lfht_for_each_entry(metadata_ht
->ht
, &iter
.iter
, stream
,
2851 health_code_update();
2853 pthread_mutex_lock(&stream
->chan
->lock
);
2854 lttng_ustconsumer_close_metadata(stream
->chan
);
2855 pthread_mutex_unlock(&stream
->chan
->lock
);
2861 void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream
*stream
)
2865 ret
= ustctl_stream_close_wakeup_fd(stream
->ustream
);
2867 ERR("Unable to close wakeup fd");
2872 * Please refer to consumer-timer.c before adding any lock within this
2873 * function or any of its callees. Timers have a very strict locking
2874 * semantic with respect to teardown. Failure to respect this semantic
2875 * introduces deadlocks.
2877 * DON'T hold the metadata lock when calling this function, else this
2878 * can cause deadlock involving consumer awaiting for metadata to be
2879 * pushed out due to concurrent interaction with the session daemon.
2881 int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data
*ctx
,
2882 struct lttng_consumer_channel
*channel
, int timer
, int wait
)
2884 struct lttcomm_metadata_request_msg request
;
2885 struct lttcomm_consumer_msg msg
;
2886 enum lttcomm_return_code ret_code
= LTTCOMM_CONSUMERD_SUCCESS
;
2887 uint64_t len
, key
, offset
, version
;
2891 assert(channel
->metadata_cache
);
2893 memset(&request
, 0, sizeof(request
));
2895 /* send the metadata request to sessiond */
2896 switch (consumer_data
.type
) {
2897 case LTTNG_CONSUMER64_UST
:
2898 request
.bits_per_long
= 64;
2900 case LTTNG_CONSUMER32_UST
:
2901 request
.bits_per_long
= 32;
2904 request
.bits_per_long
= 0;
2908 request
.session_id
= channel
->session_id
;
2909 request
.session_id_per_pid
= channel
->session_id_per_pid
;
2911 * Request the application UID here so the metadata of that application can
2912 * be sent back. The channel UID corresponds to the user UID of the session
2913 * used for the rights on the stream file(s).
2915 request
.uid
= channel
->ust_app_uid
;
2916 request
.key
= channel
->key
;
2918 DBG("Sending metadata request to sessiond, session id %" PRIu64
2919 ", per-pid %" PRIu64
", app UID %u and channek key %" PRIu64
,
2920 request
.session_id
, request
.session_id_per_pid
, request
.uid
,
2923 pthread_mutex_lock(&ctx
->metadata_socket_lock
);
2925 health_code_update();
2927 ret
= lttcomm_send_unix_sock(ctx
->consumer_metadata_socket
, &request
,
2930 ERR("Asking metadata to sessiond");
2934 health_code_update();
2936 /* Receive the metadata from sessiond */
2937 ret
= lttcomm_recv_unix_sock(ctx
->consumer_metadata_socket
, &msg
,
2939 if (ret
!= sizeof(msg
)) {
2940 DBG("Consumer received unexpected message size %d (expects %zu)",
2942 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_CMD
);
2944 * The ret value might 0 meaning an orderly shutdown but this is ok
2945 * since the caller handles this.
2950 health_code_update();
2952 if (msg
.cmd_type
== LTTNG_ERR_UND
) {
2953 /* No registry found */
2954 (void) consumer_send_status_msg(ctx
->consumer_metadata_socket
,
2958 } else if (msg
.cmd_type
!= LTTNG_CONSUMER_PUSH_METADATA
) {
2959 ERR("Unexpected cmd_type received %d", msg
.cmd_type
);
2964 len
= msg
.u
.push_metadata
.len
;
2965 key
= msg
.u
.push_metadata
.key
;
2966 offset
= msg
.u
.push_metadata
.target_offset
;
2967 version
= msg
.u
.push_metadata
.version
;
2969 assert(key
== channel
->key
);
2971 DBG("No new metadata to receive for key %" PRIu64
, key
);
2974 health_code_update();
2976 /* Tell session daemon we are ready to receive the metadata. */
2977 ret
= consumer_send_status_msg(ctx
->consumer_metadata_socket
,
2978 LTTCOMM_CONSUMERD_SUCCESS
);
2979 if (ret
< 0 || len
== 0) {
2981 * Somehow, the session daemon is not responding anymore or there is
2982 * nothing to receive.
2987 health_code_update();
2989 ret
= lttng_ustconsumer_recv_metadata(ctx
->consumer_metadata_socket
,
2990 key
, offset
, len
, version
, channel
, timer
, wait
);
2993 * Only send the status msg if the sessiond is alive meaning a positive
2996 (void) consumer_send_status_msg(ctx
->consumer_metadata_socket
, ret
);
3001 health_code_update();
3003 pthread_mutex_unlock(&ctx
->metadata_socket_lock
);
3008 * Return the ustctl call for the get stream id.
3010 int lttng_ustconsumer_get_stream_id(struct lttng_consumer_stream
*stream
,
3011 uint64_t *stream_id
)
3016 return ustctl_get_stream_id(stream
->ustream
, stream_id
);