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-timer.h>
41 #include <common/utils.h>
43 #include "ust-consumer.h"
45 extern struct lttng_consumer_global_data consumer_data
;
46 extern int consumer_poll_timeout
;
47 extern volatile int consumer_quit
;
50 * Free channel object and all streams associated with it. This MUST be used
51 * only and only if the channel has _NEVER_ been added to the global channel
54 static void destroy_channel(struct lttng_consumer_channel
*channel
)
56 struct lttng_consumer_stream
*stream
, *stmp
;
60 DBG("UST consumer cleaning stream list");
62 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->streams
.head
,
64 cds_list_del(&stream
->send_node
);
65 ustctl_destroy_stream(stream
->ustream
);
70 * If a channel is available meaning that was created before the streams
74 lttng_ustconsumer_del_channel(channel
);
80 * Add channel to internal consumer state.
82 * Returns 0 on success or else a negative value.
84 static int add_channel(struct lttng_consumer_channel
*channel
,
85 struct lttng_consumer_local_data
*ctx
)
92 if (ctx
->on_recv_channel
!= NULL
) {
93 ret
= ctx
->on_recv_channel(channel
);
95 ret
= consumer_add_channel(channel
, ctx
);
97 /* Most likely an ENOMEM. */
98 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
102 ret
= consumer_add_channel(channel
, ctx
);
105 DBG("UST consumer channel added (key: %" PRIu64
")", channel
->key
);
112 * Allocate and return a consumer channel object.
114 static struct lttng_consumer_channel
*allocate_channel(uint64_t session_id
,
115 const char *pathname
, const char *name
, uid_t uid
, gid_t gid
,
116 int relayd_id
, uint64_t key
, enum lttng_event_output output
,
117 uint64_t tracefile_size
, uint64_t tracefile_count
)
122 return consumer_allocate_channel(key
, session_id
, pathname
, name
, uid
, gid
,
123 relayd_id
, output
, tracefile_size
, tracefile_count
);
127 * Allocate and return a consumer stream object. If _alloc_ret is not NULL, the
128 * error value if applicable is set in it else it is kept untouched.
130 * Return NULL on error else the newly allocated stream object.
132 static struct lttng_consumer_stream
*allocate_stream(int cpu
, int key
,
133 struct lttng_consumer_channel
*channel
,
134 struct lttng_consumer_local_data
*ctx
, int *_alloc_ret
)
137 struct lttng_consumer_stream
*stream
= NULL
;
142 stream
= consumer_allocate_stream(channel
->key
,
144 LTTNG_CONSUMER_ACTIVE_STREAM
,
153 if (stream
== NULL
) {
157 * We could not find the channel. Can happen if cpu hotplug
158 * happens while tearing down.
160 DBG3("Could not find channel");
165 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
171 stream
->chan
= channel
;
175 *_alloc_ret
= alloc_ret
;
181 * Send the given stream pointer to the corresponding thread.
183 * Returns 0 on success else a negative value.
185 static int send_stream_to_thread(struct lttng_consumer_stream
*stream
,
186 struct lttng_consumer_local_data
*ctx
)
188 int ret
, stream_pipe
;
190 /* Get the right pipe where the stream will be sent. */
191 if (stream
->metadata_flag
) {
192 stream_pipe
= ctx
->consumer_metadata_pipe
[1];
194 stream_pipe
= ctx
->consumer_data_pipe
[1];
198 ret
= write(stream_pipe
, &stream
, sizeof(stream
));
199 } while (ret
< 0 && errno
== EINTR
);
201 PERROR("Consumer write %s stream to pipe %d",
202 stream
->metadata_flag
? "metadata" : "data", stream_pipe
);
209 * Search for a relayd object related to the stream. If found, send the stream
212 * On success, returns 0 else a negative value.
214 static int send_stream_to_relayd(struct lttng_consumer_stream
*stream
)
217 struct consumer_relayd_sock_pair
*relayd
;
221 relayd
= consumer_find_relayd(stream
->net_seq_idx
);
222 if (relayd
!= NULL
) {
223 pthread_mutex_lock(&relayd
->ctrl_sock_mutex
);
224 /* Add stream on the relayd */
225 ret
= relayd_add_stream(&relayd
->control_sock
, stream
->name
,
226 stream
->chan
->pathname
, &stream
->relayd_stream_id
,
227 stream
->chan
->tracefile_size
,
228 stream
->chan
->tracefile_count
);
229 pthread_mutex_unlock(&relayd
->ctrl_sock_mutex
);
233 } else if (stream
->net_seq_idx
!= (uint64_t) -1ULL) {
234 ERR("Network sequence index %" PRIu64
" unknown. Not adding stream.",
235 stream
->net_seq_idx
);
245 * Create streams for the given channel using liblttng-ust-ctl.
247 * Return 0 on success else a negative value.
249 static int create_ust_streams(struct lttng_consumer_channel
*channel
,
250 struct lttng_consumer_local_data
*ctx
)
253 struct ustctl_consumer_stream
*ustream
;
254 struct lttng_consumer_stream
*stream
;
260 * While a stream is available from ustctl. When NULL is returned, we've
261 * reached the end of the possible stream for the channel.
263 while ((ustream
= ustctl_create_stream(channel
->uchan
, cpu
))) {
266 wait_fd
= ustctl_stream_get_wait_fd(ustream
);
268 /* Allocate consumer stream object. */
269 stream
= allocate_stream(cpu
, wait_fd
, channel
, ctx
, &ret
);
273 stream
->ustream
= ustream
;
275 * Store it so we can save multiple function calls afterwards since
276 * this value is used heavily in the stream threads. This is UST
277 * specific so this is why it's done after allocation.
279 stream
->wait_fd
= wait_fd
;
282 * Order is important this is why a list is used. On error, the caller
283 * should clean this list.
285 cds_list_add_tail(&stream
->send_node
, &channel
->streams
.head
);
287 ret
= ustctl_get_max_subbuf_size(stream
->ustream
,
288 &stream
->max_sb_size
);
290 ERR("ustctl_get_max_subbuf_size failed for stream %s",
295 /* Do actions once stream has been received. */
296 if (ctx
->on_recv_stream
) {
297 ret
= ctx
->on_recv_stream(stream
);
303 DBG("UST consumer add stream %s (key: %" PRIu64
") with relayd id %" PRIu64
,
304 stream
->name
, stream
->key
, stream
->relayd_stream_id
);
306 /* Set next CPU stream. */
307 channel
->streams
.count
= ++cpu
;
309 /* Keep stream reference when creating metadata. */
310 if (channel
->type
== CONSUMER_CHANNEL_TYPE_METADATA
) {
311 channel
->metadata_stream
= stream
;
323 * Create an UST channel with the given attributes and send it to the session
324 * daemon using the ust ctl API.
326 * Return 0 on success or else a negative value.
328 static int create_ust_channel(struct ustctl_consumer_channel_attr
*attr
,
329 struct ustctl_consumer_channel
**chanp
)
332 struct ustctl_consumer_channel
*channel
;
337 DBG3("Creating channel to ustctl with attr: [overwrite: %d, "
338 "subbuf_size: %" PRIu64
", num_subbuf: %" PRIu64
", "
339 "switch_timer_interval: %u, read_timer_interval: %u, "
340 "output: %d, type: %d", attr
->overwrite
, attr
->subbuf_size
,
341 attr
->num_subbuf
, attr
->switch_timer_interval
,
342 attr
->read_timer_interval
, attr
->output
, attr
->type
);
344 channel
= ustctl_create_channel(attr
);
359 * Send a single given stream to the session daemon using the sock.
361 * Return 0 on success else a negative value.
363 static int send_sessiond_stream(int sock
, struct lttng_consumer_stream
*stream
)
370 DBG2("UST consumer sending stream %" PRIu64
" to sessiond", stream
->key
);
372 /* Send stream to session daemon. */
373 ret
= ustctl_send_stream_to_sessiond(sock
, stream
->ustream
);
383 * Send channel to sessiond.
385 * Return 0 on success or else a negative value.
387 static int send_sessiond_channel(int sock
,
388 struct lttng_consumer_channel
*channel
,
389 struct lttng_consumer_local_data
*ctx
, int *relayd_error
)
392 struct lttng_consumer_stream
*stream
;
398 DBG("UST consumer sending channel %s to sessiond", channel
->name
);
400 /* Send channel to sessiond. */
401 ret
= ustctl_send_channel_to_sessiond(sock
, channel
->uchan
);
406 ret
= ustctl_channel_close_wakeup_fd(channel
->uchan
);
411 /* The channel was sent successfully to the sessiond at this point. */
412 cds_list_for_each_entry(stream
, &channel
->streams
.head
, send_node
) {
413 /* Try to send the stream to the relayd if one is available. */
414 ret
= send_stream_to_relayd(stream
);
417 * Flag that the relayd was the problem here probably due to a
418 * communicaton error on the socket.
426 /* Send stream to session daemon. */
427 ret
= send_sessiond_stream(sock
, stream
);
433 /* Tell sessiond there is no more stream. */
434 ret
= ustctl_send_stream_to_sessiond(sock
, NULL
);
439 DBG("UST consumer NULL stream sent to sessiond");
448 * Creates a channel and streams and add the channel it to the channel internal
449 * state. The created stream must ONLY be sent once the GET_CHANNEL command is
452 * Return 0 on success or else, a negative value is returned and the channel
453 * MUST be destroyed by consumer_del_channel().
455 static int ask_channel(struct lttng_consumer_local_data
*ctx
, int sock
,
456 struct lttng_consumer_channel
*channel
,
457 struct ustctl_consumer_channel_attr
*attr
)
466 * This value is still used by the kernel consumer since for the kernel,
467 * the stream ownership is not IN the consumer so we need to have the
468 * number of left stream that needs to be initialized so we can know when
469 * to delete the channel (see consumer.c).
471 * As for the user space tracer now, the consumer creates and sends the
472 * stream to the session daemon which only sends them to the application
473 * once every stream of a channel is received making this value useless
474 * because we they will be added to the poll thread before the application
475 * receives them. This ensures that a stream can not hang up during
476 * initilization of a channel.
478 channel
->nb_init_stream_left
= 0;
480 /* The reply msg status is handled in the following call. */
481 ret
= create_ust_channel(attr
, &channel
->uchan
);
486 channel
->wait_fd
= ustctl_channel_get_wait_fd(channel
->uchan
);
492 /* Open all streams for this channel. */
493 ret
= create_ust_streams(channel
, ctx
);
503 * Send all stream of a channel to the right thread handling it.
505 * On error, return a negative value else 0 on success.
507 static int send_streams_to_thread(struct lttng_consumer_channel
*channel
,
508 struct lttng_consumer_local_data
*ctx
)
511 struct lttng_consumer_stream
*stream
, *stmp
;
516 /* Send streams to the corresponding thread. */
517 cds_list_for_each_entry_safe(stream
, stmp
, &channel
->streams
.head
,
519 /* Sending the stream to the thread. */
520 ret
= send_stream_to_thread(stream
, ctx
);
523 * If we are unable to send the stream to the thread, there is
524 * a big problem so just stop everything.
529 /* Remove node from the channel stream list. */
530 cds_list_del(&stream
->send_node
);
538 * Write metadata to the given channel using ustctl to convert the string to
540 * Called only from consumer_metadata_cache_write.
541 * The metadata cache lock MUST be acquired to write in the cache.
543 * Return 0 on success else a negative value.
545 int lttng_ustconsumer_push_metadata(struct lttng_consumer_channel
*metadata
,
546 const char *metadata_str
, uint64_t target_offset
, uint64_t len
)
551 assert(metadata_str
);
553 DBG("UST consumer writing metadata to channel %s", metadata
->name
);
555 assert(target_offset
<= metadata
->metadata_cache
->max_offset
);
556 ret
= ustctl_write_metadata_to_channel(metadata
->uchan
,
557 metadata_str
+ target_offset
, len
);
559 ERR("ustctl write metadata fail with ret %d, len %" PRIu64
, ret
, len
);
563 ustctl_flush_buffer(metadata
->metadata_stream
->ustream
, 1);
570 * Flush channel's streams using the given key to retrieve the channel.
572 * Return 0 on success else an LTTng error code.
574 static int flush_channel(uint64_t chan_key
)
577 struct lttng_consumer_channel
*channel
;
578 struct lttng_consumer_stream
*stream
;
580 struct lttng_ht_iter iter
;
582 DBG("UST consumer flush channel key %" PRIu64
, chan_key
);
584 channel
= consumer_find_channel(chan_key
);
586 ERR("UST consumer flush channel %" PRIu64
" not found", chan_key
);
587 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
591 ht
= consumer_data
.stream_per_chan_id_ht
;
593 /* For each stream of the channel id, flush it. */
595 cds_lfht_for_each_entry_duplicate(ht
->ht
,
596 ht
->hash_fct(&channel
->key
, lttng_ht_seed
), ht
->match_fct
,
597 &channel
->key
, &iter
.iter
, stream
, node_channel_id
.node
) {
598 ustctl_flush_buffer(stream
->ustream
, 1);
607 * Close metadata stream wakeup_fd using the given key to retrieve the channel.
609 * Return 0 on success else an LTTng error code.
611 static int close_metadata(uint64_t chan_key
)
614 struct lttng_consumer_channel
*channel
;
616 DBG("UST consumer close metadata key %" PRIu64
, chan_key
);
618 channel
= consumer_find_channel(chan_key
);
620 ERR("UST consumer close metadata %" PRIu64
" not found", chan_key
);
621 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
625 ret
= ustctl_stream_close_wakeup_fd(channel
->metadata_stream
->ustream
);
627 ERR("UST consumer unable to close fd of metadata (ret: %d)", ret
);
628 ret
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
631 if (channel
->switch_timer_enabled
== 1) {
632 DBG("Deleting timer on metadata channel");
633 consumer_timer_switch_stop(channel
);
635 consumer_metadata_cache_destroy(channel
);
642 * RCU read side lock MUST be acquired before calling this function.
644 * Return 0 on success else an LTTng error code.
646 static int setup_metadata(struct lttng_consumer_local_data
*ctx
, uint64_t key
)
649 struct lttng_consumer_channel
*metadata
;
651 DBG("UST consumer setup metadata key %" PRIu64
, key
);
653 metadata
= consumer_find_channel(key
);
655 ERR("UST consumer push metadata %" PRIu64
" not found", key
);
656 ret
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
661 * Send metadata stream to relayd if one available. Availability is
662 * known if the stream is still in the list of the channel.
664 if (cds_list_empty(&metadata
->streams
.head
)) {
665 ERR("Metadata channel key %" PRIu64
", no stream available.", key
);
666 ret
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
670 /* Send metadata stream to relayd if needed. */
671 ret
= send_stream_to_relayd(metadata
->metadata_stream
);
673 ret
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
677 ret
= send_streams_to_thread(metadata
, ctx
);
680 * If we are unable to send the stream to the thread, there is
681 * a big problem so just stop everything.
683 ret
= LTTCOMM_CONSUMERD_FATAL
;
686 /* List MUST be empty after or else it could be reused. */
687 assert(cds_list_empty(&metadata
->streams
.head
));
696 * Receive the metadata updates from the sessiond.
698 int lttng_ustconsumer_recv_metadata(int sock
, uint64_t key
, uint64_t offset
,
699 uint64_t len
, struct lttng_consumer_channel
*channel
)
701 int ret
, ret_code
= LTTNG_OK
;
704 DBG("UST consumer push metadata key %" PRIu64
" of len %" PRIu64
, key
, len
);
706 metadata_str
= zmalloc(len
* sizeof(char));
708 PERROR("zmalloc metadata string");
709 ret_code
= LTTCOMM_CONSUMERD_ENOMEM
;
713 /* Receive metadata string. */
714 ret
= lttcomm_recv_unix_sock(sock
, metadata_str
, len
);
716 /* Session daemon is dead so return gracefully. */
721 pthread_mutex_lock(&channel
->metadata_cache
->lock
);
722 ret
= consumer_metadata_cache_write(channel
, offset
, len
, metadata_str
);
724 /* Unable to handle metadata. Notify session daemon. */
725 ret_code
= LTTCOMM_CONSUMERD_ERROR_METADATA
;
727 pthread_mutex_unlock(&channel
->metadata_cache
->lock
);
729 while (consumer_metadata_cache_flushed(channel
, offset
+ len
)) {
730 DBG("Waiting for metadata to be flushed");
731 usleep(DEFAULT_METADATA_AVAILABILITY_WAIT_TIME
);
741 * Receive command from session daemon and process it.
743 * Return 1 on success else a negative value or 0.
745 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
746 int sock
, struct pollfd
*consumer_sockpoll
)
749 enum lttng_error_code ret_code
= LTTNG_OK
;
750 struct lttcomm_consumer_msg msg
;
751 struct lttng_consumer_channel
*channel
= NULL
;
753 ret
= lttcomm_recv_unix_sock(sock
, &msg
, sizeof(msg
));
754 if (ret
!= sizeof(msg
)) {
755 DBG("Consumer received unexpected message size %zd (expects %zu)",
757 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_CMD
);
759 * The ret value might 0 meaning an orderly shutdown but this is ok
760 * since the caller handles this.
764 if (msg
.cmd_type
== LTTNG_CONSUMER_STOP
) {
766 * Notify the session daemon that the command is completed.
768 * On transport layer error, the function call will print an error
769 * message so handling the returned code is a bit useless since we
770 * return an error code anyway.
772 (void) consumer_send_status_msg(sock
, ret_code
);
776 /* relayd needs RCU read-side lock */
779 switch (msg
.cmd_type
) {
780 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET
:
782 /* Session daemon status message are handled in the following call. */
783 ret
= consumer_add_relayd_socket(msg
.u
.relayd_sock
.net_index
,
784 msg
.u
.relayd_sock
.type
, ctx
, sock
, consumer_sockpoll
,
785 &msg
.u
.relayd_sock
.sock
, msg
.u
.relayd_sock
.session_id
);
788 case LTTNG_CONSUMER_DESTROY_RELAYD
:
790 uint64_t index
= msg
.u
.destroy_relayd
.net_seq_idx
;
791 struct consumer_relayd_sock_pair
*relayd
;
793 DBG("UST consumer destroying relayd %" PRIu64
, index
);
795 /* Get relayd reference if exists. */
796 relayd
= consumer_find_relayd(index
);
797 if (relayd
== NULL
) {
798 DBG("Unable to find relayd %" PRIu64
, index
);
799 ret_code
= LTTNG_ERR_NO_CONSUMER
;
803 * Each relayd socket pair has a refcount of stream attached to it
804 * which tells if the relayd is still active or not depending on the
807 * This will set the destroy flag of the relayd object and destroy it
808 * if the refcount reaches zero when called.
810 * The destroy can happen either here or when a stream fd hangs up.
813 consumer_flag_relayd_for_destroy(relayd
);
816 goto end_msg_sessiond
;
818 case LTTNG_CONSUMER_UPDATE_STREAM
:
823 case LTTNG_CONSUMER_DATA_PENDING
:
825 int ret
, is_data_pending
;
826 uint64_t id
= msg
.u
.data_pending
.session_id
;
828 DBG("UST consumer data pending command for id %" PRIu64
, id
);
830 is_data_pending
= consumer_data_pending(id
);
832 /* Send back returned value to session daemon */
833 ret
= lttcomm_send_unix_sock(sock
, &is_data_pending
,
834 sizeof(is_data_pending
));
836 DBG("Error when sending the data pending ret code: %d", ret
);
840 * No need to send back a status message since the data pending
841 * returned value is the response.
845 case LTTNG_CONSUMER_ASK_CHANNEL_CREATION
:
848 struct ustctl_consumer_channel_attr attr
;
850 /* Create a plain object and reserve a channel key. */
851 channel
= allocate_channel(msg
.u
.ask_channel
.session_id
,
852 msg
.u
.ask_channel
.pathname
, msg
.u
.ask_channel
.name
,
853 msg
.u
.ask_channel
.uid
, msg
.u
.ask_channel
.gid
,
854 msg
.u
.ask_channel
.relayd_id
, msg
.u
.ask_channel
.key
,
855 (enum lttng_event_output
) msg
.u
.ask_channel
.output
,
856 msg
.u
.ask_channel
.tracefile_size
,
857 msg
.u
.ask_channel
.tracefile_count
);
859 goto end_channel_error
;
863 * Set refcount to 1 for owner. Below, we will pass
864 * ownership to the consumer_thread_channel_poll()
867 channel
->refcount
= 1;
869 /* Build channel attributes from received message. */
870 attr
.subbuf_size
= msg
.u
.ask_channel
.subbuf_size
;
871 attr
.num_subbuf
= msg
.u
.ask_channel
.num_subbuf
;
872 attr
.overwrite
= msg
.u
.ask_channel
.overwrite
;
873 attr
.switch_timer_interval
= msg
.u
.ask_channel
.switch_timer_interval
;
874 attr
.read_timer_interval
= msg
.u
.ask_channel
.read_timer_interval
;
875 attr
.chan_id
= msg
.u
.ask_channel
.chan_id
;
876 memcpy(attr
.uuid
, msg
.u
.ask_channel
.uuid
, sizeof(attr
.uuid
));
878 /* Translate the event output type to UST. */
879 switch (channel
->output
) {
880 case LTTNG_EVENT_SPLICE
:
881 /* Splice not supported so fallback on mmap(). */
882 case LTTNG_EVENT_MMAP
:
884 attr
.output
= CONSUMER_CHANNEL_MMAP
;
888 /* Translate and save channel type. */
889 switch (msg
.u
.ask_channel
.type
) {
890 case LTTNG_UST_CHAN_PER_CPU
:
891 channel
->type
= CONSUMER_CHANNEL_TYPE_DATA
;
892 attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
894 case LTTNG_UST_CHAN_METADATA
:
895 channel
->type
= CONSUMER_CHANNEL_TYPE_METADATA
;
896 attr
.type
= LTTNG_UST_CHAN_METADATA
;
903 ret
= ask_channel(ctx
, sock
, channel
, &attr
);
905 goto end_channel_error
;
908 if (msg
.u
.ask_channel
.type
== LTTNG_UST_CHAN_METADATA
) {
909 ret
= consumer_metadata_cache_allocate(channel
);
911 ERR("Allocating metadata cache");
912 goto end_channel_error
;
914 consumer_timer_switch_start(channel
, attr
.switch_timer_interval
);
915 attr
.switch_timer_interval
= 0;
919 * Add the channel to the internal state AFTER all streams were created
920 * and successfully sent to session daemon. This way, all streams must
921 * be ready before this channel is visible to the threads.
922 * If add_channel succeeds, ownership of the channel is
923 * passed to consumer_thread_channel_poll().
925 ret
= add_channel(channel
, ctx
);
927 goto end_channel_error
;
932 * Channel and streams are now created. Inform the session daemon that
933 * everything went well and should wait to receive the channel and
934 * streams with ustctl API.
936 ret
= consumer_send_status_channel(sock
, channel
);
939 * There is probably a problem on the socket so the poll will get
940 * it and clean everything up.
947 case LTTNG_CONSUMER_GET_CHANNEL
:
949 int ret
, relayd_err
= 0;
950 uint64_t key
= msg
.u
.get_channel
.key
;
951 struct lttng_consumer_channel
*channel
;
953 channel
= consumer_find_channel(key
);
955 ERR("UST consumer get channel key %" PRIu64
" not found", key
);
956 ret_code
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
957 goto end_msg_sessiond
;
960 /* Inform sessiond that we are about to send channel and streams. */
961 ret
= consumer_send_status_msg(sock
, LTTNG_OK
);
963 /* Somehow, the session daemon is not responding anymore. */
967 /* Send everything to sessiond. */
968 ret
= send_sessiond_channel(sock
, channel
, ctx
, &relayd_err
);
972 * We were unable to send to the relayd the stream so avoid
973 * sending back a fatal error to the thread since this is OK
974 * and the consumer can continue its work.
976 ret_code
= LTTNG_ERR_RELAYD_CONNECT_FAIL
;
977 goto end_msg_sessiond
;
980 * The communicaton was broken hence there is a bad state between
981 * the consumer and sessiond so stop everything.
986 ret
= send_streams_to_thread(channel
, ctx
);
989 * If we are unable to send the stream to the thread, there is
990 * a big problem so just stop everything.
994 /* List MUST be empty after or else it could be reused. */
995 assert(cds_list_empty(&channel
->streams
.head
));
997 goto end_msg_sessiond
;
999 case LTTNG_CONSUMER_DESTROY_CHANNEL
:
1001 uint64_t key
= msg
.u
.destroy_channel
.key
;
1002 struct lttng_consumer_channel
*channel
;
1004 channel
= consumer_find_channel(key
);
1006 ERR("UST consumer get channel key %" PRIu64
" not found", key
);
1007 ret_code
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1008 goto end_msg_sessiond
;
1011 destroy_channel(channel
);
1013 goto end_msg_sessiond
;
1015 case LTTNG_CONSUMER_CLOSE_METADATA
:
1019 ret
= close_metadata(msg
.u
.close_metadata
.key
);
1024 goto end_msg_sessiond
;
1026 case LTTNG_CONSUMER_FLUSH_CHANNEL
:
1030 ret
= flush_channel(msg
.u
.flush_channel
.key
);
1035 goto end_msg_sessiond
;
1037 case LTTNG_CONSUMER_PUSH_METADATA
:
1040 uint64_t len
= msg
.u
.push_metadata
.len
;
1041 uint64_t key
= msg
.u
.push_metadata
.key
;
1042 uint64_t offset
= msg
.u
.push_metadata
.target_offset
;
1043 struct lttng_consumer_channel
*channel
;
1045 DBG("UST consumer push metadata key %" PRIu64
" of len %" PRIu64
, key
,
1048 channel
= consumer_find_channel(key
);
1050 ERR("UST consumer push metadata %" PRIu64
" not found", key
);
1051 ret_code
= LTTNG_ERR_UST_CHAN_NOT_FOUND
;
1052 goto end_msg_sessiond
;
1055 /* Tell session daemon we are ready to receive the metadata. */
1056 ret
= consumer_send_status_msg(sock
, LTTNG_OK
);
1058 /* Somehow, the session daemon is not responding anymore. */
1062 /* Wait for more data. */
1063 if (lttng_consumer_poll_socket(consumer_sockpoll
) < 0) {
1067 ret
= lttng_ustconsumer_recv_metadata(sock
, key
, offset
,
1070 /* error receiving from sessiond */
1074 goto end_msg_sessiond
;
1077 case LTTNG_CONSUMER_SETUP_METADATA
:
1081 ret
= setup_metadata(ctx
, msg
.u
.setup_metadata
.key
);
1085 goto end_msg_sessiond
;
1095 * Return 1 to indicate success since the 0 value can be a socket
1096 * shutdown during the recv() or send() call.
1102 * The returned value here is not useful since either way we'll return 1 to
1103 * the caller because the session daemon socket management is done
1104 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
1106 (void) consumer_send_status_msg(sock
, ret_code
);
1112 * Free channel here since no one has a reference to it. We don't
1113 * free after that because a stream can store this pointer.
1115 destroy_channel(channel
);
1117 /* We have to send a status channel message indicating an error. */
1118 ret
= consumer_send_status_channel(sock
, NULL
);
1120 /* Stop everything if session daemon can not be notified. */
1127 /* This will issue a consumer stop. */
1132 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1133 * compiled out, we isolate it in this library.
1135 int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream
*stream
,
1139 assert(stream
->ustream
);
1141 return ustctl_get_mmap_read_offset(stream
->ustream
, off
);
1145 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1146 * compiled out, we isolate it in this library.
1148 void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream
*stream
)
1151 assert(stream
->ustream
);
1153 return ustctl_get_mmap_base(stream
->ustream
);
1157 * Take a snapshot for a specific fd
1159 * Returns 0 on success, < 0 on error
1161 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream
*stream
)
1164 assert(stream
->ustream
);
1166 return ustctl_snapshot(stream
->ustream
);
1170 * Get the produced position
1172 * Returns 0 on success, < 0 on error
1174 int lttng_ustconsumer_get_produced_snapshot(
1175 struct lttng_consumer_stream
*stream
, unsigned long *pos
)
1178 assert(stream
->ustream
);
1181 return ustctl_snapshot_get_produced(stream
->ustream
, pos
);
1185 * Called when the stream signal the consumer that it has hang up.
1187 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream
*stream
)
1190 assert(stream
->ustream
);
1192 ustctl_flush_buffer(stream
->ustream
, 0);
1193 stream
->hangup_flush_done
= 1;
1196 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel
*chan
)
1199 assert(chan
->uchan
);
1201 ustctl_destroy_channel(chan
->uchan
);
1204 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream
*stream
)
1207 assert(stream
->ustream
);
1209 ustctl_destroy_stream(stream
->ustream
);
1212 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream
*stream
,
1213 struct lttng_consumer_local_data
*ctx
)
1215 unsigned long len
, subbuf_size
, padding
;
1219 struct ustctl_consumer_stream
*ustream
;
1222 assert(stream
->ustream
);
1225 DBG2("In UST read_subbuffer (wait_fd: %d, name: %s)", stream
->wait_fd
,
1228 /* Ease our life for what's next. */
1229 ustream
= stream
->ustream
;
1231 /* We can consume the 1 byte written into the wait_fd by UST */
1232 if (!stream
->hangup_flush_done
) {
1236 readlen
= read(stream
->wait_fd
, &dummy
, 1);
1237 } while (readlen
== -1 && errno
== EINTR
);
1238 if (readlen
== -1) {
1244 /* Get the next subbuffer */
1245 err
= ustctl_get_next_subbuf(ustream
);
1247 ret
= err
; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
1249 * This is a debug message even for single-threaded consumer,
1250 * because poll() have more relaxed criterions than get subbuf,
1251 * so get_subbuf may fail for short race windows where poll()
1252 * would issue wakeups.
1254 DBG("Reserving sub buffer failed (everything is normal, "
1255 "it is due to concurrency) [ret: %d]", err
);
1258 assert(stream
->chan
->output
== CONSUMER_CHANNEL_MMAP
);
1259 /* Get the full padded subbuffer size */
1260 err
= ustctl_get_padded_subbuf_size(ustream
, &len
);
1263 /* Get subbuffer data size (without padding) */
1264 err
= ustctl_get_subbuf_size(ustream
, &subbuf_size
);
1267 /* Make sure we don't get a subbuffer size bigger than the padded */
1268 assert(len
>= subbuf_size
);
1270 padding
= len
- subbuf_size
;
1271 /* write the subbuffer to the tracefile */
1272 ret
= lttng_consumer_on_read_subbuffer_mmap(ctx
, stream
, subbuf_size
, padding
);
1274 * The mmap operation should write subbuf_size amount of data when network
1275 * streaming or the full padding (len) size when we are _not_ streaming.
1277 if ((ret
!= subbuf_size
&& stream
->net_seq_idx
!= (uint64_t) -1ULL) ||
1278 (ret
!= len
&& stream
->net_seq_idx
== (uint64_t) -1ULL)) {
1280 * Display the error but continue processing to try to release the
1281 * subbuffer. This is a DBG statement since any unexpected kill or
1282 * signal, the application gets unregistered, relayd gets closed or
1283 * anything that affects the buffer lifetime will trigger this error.
1284 * So, for the sake of the user, don't print this error since it can
1285 * happen and it is OK with the code flow.
1287 DBG("Error writing to tracefile "
1288 "(ret: %ld != len: %lu != subbuf_size: %lu)",
1289 ret
, len
, subbuf_size
);
1291 err
= ustctl_put_next_subbuf(ustream
);
1299 * Called when a stream is created.
1301 * Return 0 on success or else a negative value.
1303 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
)
1307 /* Don't create anything if this is set for streaming. */
1308 if (stream
->net_seq_idx
== (uint64_t) -1ULL) {
1309 ret
= utils_create_stream_file(stream
->chan
->pathname
, stream
->name
,
1310 stream
->chan
->tracefile_size
, stream
->tracefile_count_current
,
1311 stream
->uid
, stream
->gid
);
1315 stream
->out_fd
= ret
;
1316 stream
->tracefile_size_current
= 0;
1325 * Check if data is still being extracted from the buffers for a specific
1326 * stream. Consumer data lock MUST be acquired before calling this function
1327 * and the stream lock.
1329 * Return 1 if the traced data are still getting read else 0 meaning that the
1330 * data is available for trace viewer reading.
1332 int lttng_ustconsumer_data_pending(struct lttng_consumer_stream
*stream
)
1337 assert(stream
->ustream
);
1339 DBG("UST consumer checking data pending");
1341 ret
= ustctl_get_next_subbuf(stream
->ustream
);
1343 /* There is still data so let's put back this subbuffer. */
1344 ret
= ustctl_put_subbuf(stream
->ustream
);
1346 ret
= 1; /* Data is pending */
1350 /* Data is NOT pending so ready to be read. */
1358 * Close every metadata stream wait fd of the metadata hash table. This
1359 * function MUST be used very carefully so not to run into a race between the
1360 * metadata thread handling streams and this function closing their wait fd.
1362 * For UST, this is used when the session daemon hangs up. Its the metadata
1363 * producer so calling this is safe because we are assured that no state change
1364 * can occur in the metadata thread for the streams in the hash table.
1366 void lttng_ustconsumer_close_metadata(struct lttng_ht
*metadata_ht
)
1369 struct lttng_ht_iter iter
;
1370 struct lttng_consumer_stream
*stream
;
1372 assert(metadata_ht
);
1373 assert(metadata_ht
->ht
);
1375 DBG("UST consumer closing all metadata streams");
1378 cds_lfht_for_each_entry(metadata_ht
->ht
, &iter
.iter
, stream
,
1380 int fd
= stream
->wait_fd
;
1383 * Whatever happens here we have to continue to try to close every
1384 * streams. Let's report at least the error on failure.
1386 ret
= ustctl_stream_close_wakeup_fd(stream
->ustream
);
1388 ERR("Unable to close metadata stream fd %d ret %d", fd
, ret
);
1390 DBG("Metadata wait fd %d closed", fd
);
1395 void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream
*stream
)
1399 ret
= ustctl_stream_close_wakeup_fd(stream
->ustream
);
1401 ERR("Unable to close wakeup fd");
1405 int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data
*ctx
,
1406 struct lttng_consumer_channel
*channel
)
1408 struct lttcomm_metadata_request_msg request
;
1409 struct lttcomm_consumer_msg msg
;
1410 enum lttng_error_code ret_code
= LTTNG_OK
;
1411 uint64_t len
, key
, offset
;
1415 assert(channel
->metadata_cache
);
1417 /* send the metadata request to sessiond */
1418 switch (consumer_data
.type
) {
1419 case LTTNG_CONSUMER64_UST
:
1420 request
.bits_per_long
= 64;
1422 case LTTNG_CONSUMER32_UST
:
1423 request
.bits_per_long
= 32;
1426 request
.bits_per_long
= 0;
1430 request
.session_id
= channel
->session_id
;
1431 request
.uid
= channel
->uid
;
1432 request
.key
= channel
->key
;
1433 DBG("Sending metadata request to sessiond, session %" PRIu64
,
1434 channel
->session_id
);
1436 ret
= lttcomm_send_unix_sock(ctx
->consumer_metadata_socket
, &request
,
1439 ERR("Asking metadata to sessiond");
1443 /* Receive the metadata from sessiond */
1444 ret
= lttcomm_recv_unix_sock(ctx
->consumer_metadata_socket
, &msg
,
1446 if (ret
!= sizeof(msg
)) {
1447 DBG("Consumer received unexpected message size %d (expects %zu)",
1449 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_CMD
);
1451 * The ret value might 0 meaning an orderly shutdown but this is ok
1452 * since the caller handles this.
1457 if (msg
.cmd_type
== LTTNG_ERR_UND
) {
1458 /* No registry found */
1459 (void) consumer_send_status_msg(ctx
->consumer_metadata_socket
,
1463 } else if (msg
.cmd_type
!= LTTNG_CONSUMER_PUSH_METADATA
) {
1464 ERR("Unexpected cmd_type received %d", msg
.cmd_type
);
1469 len
= msg
.u
.push_metadata
.len
;
1470 key
= msg
.u
.push_metadata
.key
;
1471 offset
= msg
.u
.push_metadata
.target_offset
;
1473 assert(key
== channel
->key
);
1475 DBG("No new metadata to receive for key %" PRIu64
, key
);
1478 /* Tell session daemon we are ready to receive the metadata. */
1479 ret
= consumer_send_status_msg(ctx
->consumer_metadata_socket
,
1481 if (ret
< 0 || len
== 0) {
1483 * Somehow, the session daemon is not responding anymore or there is
1484 * nothing to receive.
1489 ret_code
= lttng_ustconsumer_recv_metadata(ctx
->consumer_metadata_socket
,
1490 key
, offset
, len
, channel
);
1491 (void) consumer_send_status_msg(ctx
->consumer_metadata_socket
, ret_code
);