2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * 2012 - David Goulet <dgoulet@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, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
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.
27 #include <sys/socket.h>
28 #include <sys/types.h>
32 #include <common/common.h>
33 #include <common/utils.h>
34 #include <common/compat/poll.h>
35 #include <common/kernel-ctl/kernel-ctl.h>
36 #include <common/sessiond-comm/relayd.h>
37 #include <common/sessiond-comm/sessiond-comm.h>
38 #include <common/kernel-consumer/kernel-consumer.h>
39 #include <common/relayd/relayd.h>
40 #include <common/ust-consumer/ust-consumer.h>
44 struct lttng_consumer_global_data consumer_data
= {
47 .type
= LTTNG_CONSUMER_UNKNOWN
,
50 /* timeout parameter, to control the polling thread grace period. */
51 int consumer_poll_timeout
= -1;
54 * Flag to inform the polling thread to quit when all fd hung up. Updated by
55 * the consumer_thread_receive_fds when it notices that all fds has hung up.
56 * Also updated by the signal handler (consumer_should_exit()). Read by the
59 volatile int consumer_quit
;
62 * The following two hash tables are visible by all threads which are separated
63 * in different source files.
65 * Global hash table containing respectively metadata and data streams. The
66 * stream element in this ht should only be updated by the metadata poll thread
67 * for the metadata and the data poll thread for the data.
69 struct lttng_ht
*metadata_ht
;
70 struct lttng_ht
*data_ht
;
73 * Find a stream. The consumer_data.lock must be locked during this
76 static struct lttng_consumer_stream
*consumer_find_stream(int key
,
79 struct lttng_ht_iter iter
;
80 struct lttng_ht_node_ulong
*node
;
81 struct lttng_consumer_stream
*stream
= NULL
;
85 /* Negative keys are lookup failures */
92 lttng_ht_lookup(ht
, (void *)((unsigned long) key
), &iter
);
93 node
= lttng_ht_iter_get_node_ulong(&iter
);
95 stream
= caa_container_of(node
, struct lttng_consumer_stream
, node
);
103 void consumer_steal_stream_key(int key
, struct lttng_ht
*ht
)
105 struct lttng_consumer_stream
*stream
;
108 stream
= consumer_find_stream(key
, ht
);
112 * We don't want the lookup to match, but we still need
113 * to iterate on this stream when iterating over the hash table. Just
114 * change the node key.
116 stream
->node
.key
= -1;
121 static struct lttng_consumer_channel
*consumer_find_channel(int key
)
123 struct lttng_ht_iter iter
;
124 struct lttng_ht_node_ulong
*node
;
125 struct lttng_consumer_channel
*channel
= NULL
;
127 /* Negative keys are lookup failures */
134 lttng_ht_lookup(consumer_data
.channel_ht
, (void *)((unsigned long) key
),
136 node
= lttng_ht_iter_get_node_ulong(&iter
);
138 channel
= caa_container_of(node
, struct lttng_consumer_channel
, node
);
146 static void consumer_steal_channel_key(int key
)
148 struct lttng_consumer_channel
*channel
;
151 channel
= consumer_find_channel(key
);
155 * We don't want the lookup to match, but we still need
156 * to iterate on this channel when iterating over the hash table. Just
157 * change the node key.
159 channel
->node
.key
= -1;
165 void consumer_free_stream(struct rcu_head
*head
)
167 struct lttng_ht_node_ulong
*node
=
168 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
169 struct lttng_consumer_stream
*stream
=
170 caa_container_of(node
, struct lttng_consumer_stream
, node
);
176 * RCU protected relayd socket pair free.
178 static void consumer_rcu_free_relayd(struct rcu_head
*head
)
180 struct lttng_ht_node_ulong
*node
=
181 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
182 struct consumer_relayd_sock_pair
*relayd
=
183 caa_container_of(node
, struct consumer_relayd_sock_pair
, node
);
189 * Destroy and free relayd socket pair object.
191 * This function MUST be called with the consumer_data lock acquired.
193 static void destroy_relayd(struct consumer_relayd_sock_pair
*relayd
)
196 struct lttng_ht_iter iter
;
198 if (relayd
== NULL
) {
202 DBG("Consumer destroy and close relayd socket pair");
204 iter
.iter
.node
= &relayd
->node
.node
;
205 ret
= lttng_ht_del(consumer_data
.relayd_ht
, &iter
);
207 /* We assume the relayd was already destroyed */
211 /* Close all sockets */
212 pthread_mutex_lock(&relayd
->ctrl_sock_mutex
);
213 (void) relayd_close(&relayd
->control_sock
);
214 pthread_mutex_unlock(&relayd
->ctrl_sock_mutex
);
215 (void) relayd_close(&relayd
->data_sock
);
217 /* RCU free() call */
218 call_rcu(&relayd
->node
.head
, consumer_rcu_free_relayd
);
222 * Flag a relayd socket pair for destruction. Destroy it if the refcount
225 * RCU read side lock MUST be aquired before calling this function.
227 void consumer_flag_relayd_for_destroy(struct consumer_relayd_sock_pair
*relayd
)
231 /* Set destroy flag for this object */
232 uatomic_set(&relayd
->destroy_flag
, 1);
234 /* Destroy the relayd if refcount is 0 */
235 if (uatomic_read(&relayd
->refcount
) == 0) {
236 destroy_relayd(relayd
);
241 * Remove a stream from the global list protected by a mutex. This
242 * function is also responsible for freeing its data structures.
244 void consumer_del_stream(struct lttng_consumer_stream
*stream
,
248 struct lttng_ht_iter iter
;
249 struct lttng_consumer_channel
*free_chan
= NULL
;
250 struct consumer_relayd_sock_pair
*relayd
;
255 /* Means the stream was allocated but not successfully added */
259 pthread_mutex_lock(&consumer_data
.lock
);
261 switch (consumer_data
.type
) {
262 case LTTNG_CONSUMER_KERNEL
:
263 if (stream
->mmap_base
!= NULL
) {
264 ret
= munmap(stream
->mmap_base
, stream
->mmap_len
);
270 case LTTNG_CONSUMER32_UST
:
271 case LTTNG_CONSUMER64_UST
:
272 lttng_ustconsumer_del_stream(stream
);
275 ERR("Unknown consumer_data type");
281 iter
.iter
.node
= &stream
->node
.node
;
282 ret
= lttng_ht_del(ht
, &iter
);
285 /* Remove node session id from the consumer_data stream ht */
286 iter
.iter
.node
= &stream
->node_session_id
.node
;
287 ret
= lttng_ht_del(consumer_data
.stream_list_ht
, &iter
);
291 assert(consumer_data
.stream_count
> 0);
292 consumer_data
.stream_count
--;
294 if (stream
->out_fd
>= 0) {
295 ret
= close(stream
->out_fd
);
300 if (stream
->wait_fd
>= 0 && !stream
->wait_fd_is_copy
) {
301 ret
= close(stream
->wait_fd
);
306 if (stream
->shm_fd
>= 0 && stream
->wait_fd
!= stream
->shm_fd
) {
307 ret
= close(stream
->shm_fd
);
313 /* Check and cleanup relayd */
315 relayd
= consumer_find_relayd(stream
->net_seq_idx
);
316 if (relayd
!= NULL
) {
317 uatomic_dec(&relayd
->refcount
);
318 assert(uatomic_read(&relayd
->refcount
) >= 0);
320 /* Closing streams requires to lock the control socket. */
321 pthread_mutex_lock(&relayd
->ctrl_sock_mutex
);
322 ret
= relayd_send_close_stream(&relayd
->control_sock
,
323 stream
->relayd_stream_id
,
324 stream
->next_net_seq_num
- 1);
325 pthread_mutex_unlock(&relayd
->ctrl_sock_mutex
);
327 DBG("Unable to close stream on the relayd. Continuing");
329 * Continue here. There is nothing we can do for the relayd.
330 * Chances are that the relayd has closed the socket so we just
331 * continue cleaning up.
335 /* Both conditions are met, we destroy the relayd. */
336 if (uatomic_read(&relayd
->refcount
) == 0 &&
337 uatomic_read(&relayd
->destroy_flag
)) {
338 destroy_relayd(relayd
);
343 uatomic_dec(&stream
->chan
->refcount
);
344 if (!uatomic_read(&stream
->chan
->refcount
)
345 && !uatomic_read(&stream
->chan
->nb_init_streams
)) {
346 free_chan
= stream
->chan
;
350 consumer_data
.need_update
= 1;
351 pthread_mutex_unlock(&consumer_data
.lock
);
354 consumer_del_channel(free_chan
);
358 call_rcu(&stream
->node
.head
, consumer_free_stream
);
361 struct lttng_consumer_stream
*consumer_allocate_stream(
362 int channel_key
, int stream_key
,
363 int shm_fd
, int wait_fd
,
364 enum lttng_consumer_stream_state state
,
366 enum lttng_event_output output
,
367 const char *path_name
,
375 struct lttng_consumer_stream
*stream
;
377 stream
= zmalloc(sizeof(*stream
));
378 if (stream
== NULL
) {
379 PERROR("malloc struct lttng_consumer_stream");
380 *alloc_ret
= -ENOMEM
;
385 * Get stream's channel reference. Needed when adding the stream to the
388 stream
->chan
= consumer_find_channel(channel_key
);
390 *alloc_ret
= -ENOENT
;
391 ERR("Unable to find channel for stream %d", stream_key
);
395 stream
->key
= stream_key
;
396 stream
->shm_fd
= shm_fd
;
397 stream
->wait_fd
= wait_fd
;
399 stream
->out_fd_offset
= 0;
400 stream
->state
= state
;
401 stream
->mmap_len
= mmap_len
;
402 stream
->mmap_base
= NULL
;
403 stream
->output
= output
;
406 stream
->net_seq_idx
= net_index
;
407 stream
->metadata_flag
= metadata_flag
;
408 stream
->session_id
= session_id
;
409 strncpy(stream
->path_name
, path_name
, sizeof(stream
->path_name
));
410 stream
->path_name
[sizeof(stream
->path_name
) - 1] = '\0';
411 pthread_mutex_init(&stream
->lock
, NULL
);
414 * Index differently the metadata node because the thread is using an
415 * internal hash table to match streams in the metadata_ht to the epoll set
419 lttng_ht_node_init_ulong(&stream
->node
, stream
->wait_fd
);
421 lttng_ht_node_init_ulong(&stream
->node
, stream
->key
);
424 /* Init session id node with the stream session id */
425 lttng_ht_node_init_ulong(&stream
->node_session_id
, stream
->session_id
);
428 * The cpu number is needed before using any ustctl_* actions. Ignored for
429 * the kernel so the value does not matter.
431 pthread_mutex_lock(&consumer_data
.lock
);
432 stream
->cpu
= stream
->chan
->cpucount
++;
433 pthread_mutex_unlock(&consumer_data
.lock
);
435 DBG3("Allocated stream %s (key %d, shm_fd %d, wait_fd %d, mmap_len %llu,"
436 " out_fd %d, net_seq_idx %d, session_id %" PRIu64
,
437 stream
->path_name
, stream
->key
, stream
->shm_fd
, stream
->wait_fd
,
438 (unsigned long long) stream
->mmap_len
, stream
->out_fd
,
439 stream
->net_seq_idx
, stream
->session_id
);
449 * Add a stream to the global list protected by a mutex.
451 static int consumer_add_stream(struct lttng_consumer_stream
*stream
,
455 struct consumer_relayd_sock_pair
*relayd
;
460 DBG3("Adding consumer stream %d", stream
->key
);
462 pthread_mutex_lock(&consumer_data
.lock
);
465 /* Steal stream identifier to avoid having streams with the same key */
466 consumer_steal_stream_key(stream
->key
, ht
);
468 lttng_ht_add_unique_ulong(ht
, &stream
->node
);
471 * Add stream to the stream_list_ht of the consumer data. No need to steal
472 * the key since the HT does not use it and we allow to add redundant keys
475 lttng_ht_add_ulong(consumer_data
.stream_list_ht
, &stream
->node_session_id
);
477 /* Check and cleanup relayd */
478 relayd
= consumer_find_relayd(stream
->net_seq_idx
);
479 if (relayd
!= NULL
) {
480 uatomic_inc(&relayd
->refcount
);
483 /* Update channel refcount once added without error(s). */
484 uatomic_inc(&stream
->chan
->refcount
);
487 * When nb_init_streams reaches 0, we don't need to trigger any action in
488 * terms of destroying the associated channel, because the action that
489 * causes the count to become 0 also causes a stream to be added. The
490 * channel deletion will thus be triggered by the following removal of this
493 if (uatomic_read(&stream
->chan
->nb_init_streams
) > 0) {
494 uatomic_dec(&stream
->chan
->nb_init_streams
);
497 /* Update consumer data once the node is inserted. */
498 consumer_data
.stream_count
++;
499 consumer_data
.need_update
= 1;
502 pthread_mutex_unlock(&consumer_data
.lock
);
508 * Add relayd socket to global consumer data hashtable. RCU read side lock MUST
509 * be acquired before calling this.
511 static int add_relayd(struct consumer_relayd_sock_pair
*relayd
)
514 struct lttng_ht_node_ulong
*node
;
515 struct lttng_ht_iter iter
;
517 if (relayd
== NULL
) {
522 lttng_ht_lookup(consumer_data
.relayd_ht
,
523 (void *)((unsigned long) relayd
->net_seq_idx
), &iter
);
524 node
= lttng_ht_iter_get_node_ulong(&iter
);
526 /* Relayd already exist. Ignore the insertion */
529 lttng_ht_add_unique_ulong(consumer_data
.relayd_ht
, &relayd
->node
);
536 * Allocate and return a consumer relayd socket.
538 struct consumer_relayd_sock_pair
*consumer_allocate_relayd_sock_pair(
541 struct consumer_relayd_sock_pair
*obj
= NULL
;
543 /* Negative net sequence index is a failure */
544 if (net_seq_idx
< 0) {
548 obj
= zmalloc(sizeof(struct consumer_relayd_sock_pair
));
550 PERROR("zmalloc relayd sock");
554 obj
->net_seq_idx
= net_seq_idx
;
556 obj
->destroy_flag
= 0;
557 lttng_ht_node_init_ulong(&obj
->node
, obj
->net_seq_idx
);
558 pthread_mutex_init(&obj
->ctrl_sock_mutex
, NULL
);
565 * Find a relayd socket pair in the global consumer data.
567 * Return the object if found else NULL.
568 * RCU read-side lock must be held across this call and while using the
571 struct consumer_relayd_sock_pair
*consumer_find_relayd(int key
)
573 struct lttng_ht_iter iter
;
574 struct lttng_ht_node_ulong
*node
;
575 struct consumer_relayd_sock_pair
*relayd
= NULL
;
577 /* Negative keys are lookup failures */
582 lttng_ht_lookup(consumer_data
.relayd_ht
, (void *)((unsigned long) key
),
584 node
= lttng_ht_iter_get_node_ulong(&iter
);
586 relayd
= caa_container_of(node
, struct consumer_relayd_sock_pair
, node
);
594 * Handle stream for relayd transmission if the stream applies for network
595 * streaming where the net sequence index is set.
597 * Return destination file descriptor or negative value on error.
599 static int write_relayd_stream_header(struct lttng_consumer_stream
*stream
,
600 size_t data_size
, unsigned long padding
,
601 struct consumer_relayd_sock_pair
*relayd
)
604 struct lttcomm_relayd_data_hdr data_hdr
;
610 /* Reset data header */
611 memset(&data_hdr
, 0, sizeof(data_hdr
));
613 if (stream
->metadata_flag
) {
614 /* Caller MUST acquire the relayd control socket lock */
615 ret
= relayd_send_metadata(&relayd
->control_sock
, data_size
);
620 /* Metadata are always sent on the control socket. */
621 outfd
= relayd
->control_sock
.fd
;
623 /* Set header with stream information */
624 data_hdr
.stream_id
= htobe64(stream
->relayd_stream_id
);
625 data_hdr
.data_size
= htobe32(data_size
);
626 data_hdr
.padding_size
= htobe32(padding
);
627 data_hdr
.net_seq_num
= htobe64(stream
->next_net_seq_num
++);
628 /* Other fields are zeroed previously */
630 ret
= relayd_send_data_hdr(&relayd
->data_sock
, &data_hdr
,
636 /* Set to go on data socket */
637 outfd
= relayd
->data_sock
.fd
;
645 void consumer_free_channel(struct rcu_head
*head
)
647 struct lttng_ht_node_ulong
*node
=
648 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
649 struct lttng_consumer_channel
*channel
=
650 caa_container_of(node
, struct lttng_consumer_channel
, node
);
656 * Remove a channel from the global list protected by a mutex. This
657 * function is also responsible for freeing its data structures.
659 void consumer_del_channel(struct lttng_consumer_channel
*channel
)
662 struct lttng_ht_iter iter
;
664 pthread_mutex_lock(&consumer_data
.lock
);
666 switch (consumer_data
.type
) {
667 case LTTNG_CONSUMER_KERNEL
:
669 case LTTNG_CONSUMER32_UST
:
670 case LTTNG_CONSUMER64_UST
:
671 lttng_ustconsumer_del_channel(channel
);
674 ERR("Unknown consumer_data type");
680 iter
.iter
.node
= &channel
->node
.node
;
681 ret
= lttng_ht_del(consumer_data
.channel_ht
, &iter
);
685 if (channel
->mmap_base
!= NULL
) {
686 ret
= munmap(channel
->mmap_base
, channel
->mmap_len
);
691 if (channel
->wait_fd
>= 0 && !channel
->wait_fd_is_copy
) {
692 ret
= close(channel
->wait_fd
);
697 if (channel
->shm_fd
>= 0 && channel
->wait_fd
!= channel
->shm_fd
) {
698 ret
= close(channel
->shm_fd
);
704 call_rcu(&channel
->node
.head
, consumer_free_channel
);
706 pthread_mutex_unlock(&consumer_data
.lock
);
709 struct lttng_consumer_channel
*consumer_allocate_channel(
711 int shm_fd
, int wait_fd
,
713 uint64_t max_sb_size
,
714 unsigned int nb_init_streams
)
716 struct lttng_consumer_channel
*channel
;
719 channel
= zmalloc(sizeof(*channel
));
720 if (channel
== NULL
) {
721 PERROR("malloc struct lttng_consumer_channel");
724 channel
->key
= channel_key
;
725 channel
->shm_fd
= shm_fd
;
726 channel
->wait_fd
= wait_fd
;
727 channel
->mmap_len
= mmap_len
;
728 channel
->max_sb_size
= max_sb_size
;
729 channel
->refcount
= 0;
730 channel
->nb_init_streams
= nb_init_streams
;
731 lttng_ht_node_init_ulong(&channel
->node
, channel
->key
);
733 switch (consumer_data
.type
) {
734 case LTTNG_CONSUMER_KERNEL
:
735 channel
->mmap_base
= NULL
;
736 channel
->mmap_len
= 0;
738 case LTTNG_CONSUMER32_UST
:
739 case LTTNG_CONSUMER64_UST
:
740 ret
= lttng_ustconsumer_allocate_channel(channel
);
747 ERR("Unknown consumer_data type");
751 DBG("Allocated channel (key %d, shm_fd %d, wait_fd %d, mmap_len %llu, max_sb_size %llu)",
752 channel
->key
, channel
->shm_fd
, channel
->wait_fd
,
753 (unsigned long long) channel
->mmap_len
,
754 (unsigned long long) channel
->max_sb_size
);
760 * Add a channel to the global list protected by a mutex.
762 int consumer_add_channel(struct lttng_consumer_channel
*channel
)
764 struct lttng_ht_node_ulong
*node
;
765 struct lttng_ht_iter iter
;
767 pthread_mutex_lock(&consumer_data
.lock
);
768 /* Steal channel identifier, for UST */
769 consumer_steal_channel_key(channel
->key
);
772 lttng_ht_lookup(consumer_data
.channel_ht
,
773 (void *)((unsigned long) channel
->key
), &iter
);
774 node
= lttng_ht_iter_get_node_ulong(&iter
);
776 /* Channel already exist. Ignore the insertion */
780 lttng_ht_add_unique_ulong(consumer_data
.channel_ht
, &channel
->node
);
784 pthread_mutex_unlock(&consumer_data
.lock
);
790 * Allocate the pollfd structure and the local view of the out fds to avoid
791 * doing a lookup in the linked list and concurrency issues when writing is
792 * needed. Called with consumer_data.lock held.
794 * Returns the number of fds in the structures.
796 static int consumer_update_poll_array(
797 struct lttng_consumer_local_data
*ctx
, struct pollfd
**pollfd
,
798 struct lttng_consumer_stream
**local_stream
, struct lttng_ht
*ht
)
801 struct lttng_ht_iter iter
;
802 struct lttng_consumer_stream
*stream
;
804 DBG("Updating poll fd array");
806 cds_lfht_for_each_entry(ht
->ht
, &iter
.iter
, stream
, node
.node
) {
807 if (stream
->state
!= LTTNG_CONSUMER_ACTIVE_STREAM
) {
810 DBG("Active FD %d", stream
->wait_fd
);
811 (*pollfd
)[i
].fd
= stream
->wait_fd
;
812 (*pollfd
)[i
].events
= POLLIN
| POLLPRI
;
813 local_stream
[i
] = stream
;
819 * Insert the consumer_data_pipe at the end of the array and don't
820 * increment i so nb_fd is the number of real FD.
822 (*pollfd
)[i
].fd
= ctx
->consumer_data_pipe
[0];
823 (*pollfd
)[i
].events
= POLLIN
| POLLPRI
;
828 * Poll on the should_quit pipe and the command socket return -1 on error and
829 * should exit, 0 if data is available on the command socket
831 int lttng_consumer_poll_socket(struct pollfd
*consumer_sockpoll
)
836 num_rdy
= poll(consumer_sockpoll
, 2, -1);
839 * Restart interrupted system call.
841 if (errno
== EINTR
) {
844 PERROR("Poll error");
847 if (consumer_sockpoll
[0].revents
& (POLLIN
| POLLPRI
)) {
848 DBG("consumer_should_quit wake up");
858 * Set the error socket.
860 void lttng_consumer_set_error_sock(
861 struct lttng_consumer_local_data
*ctx
, int sock
)
863 ctx
->consumer_error_socket
= sock
;
867 * Set the command socket path.
869 void lttng_consumer_set_command_sock_path(
870 struct lttng_consumer_local_data
*ctx
, char *sock
)
872 ctx
->consumer_command_sock_path
= sock
;
876 * Send return code to the session daemon.
877 * If the socket is not defined, we return 0, it is not a fatal error
879 int lttng_consumer_send_error(
880 struct lttng_consumer_local_data
*ctx
, int cmd
)
882 if (ctx
->consumer_error_socket
> 0) {
883 return lttcomm_send_unix_sock(ctx
->consumer_error_socket
, &cmd
,
884 sizeof(enum lttcomm_sessiond_command
));
891 * Close all the tracefiles and stream fds, should be called when all instances
894 void lttng_consumer_cleanup(void)
896 struct lttng_ht_iter iter
;
897 struct lttng_ht_node_ulong
*node
;
901 cds_lfht_for_each_entry(consumer_data
.channel_ht
->ht
, &iter
.iter
, node
,
903 struct lttng_consumer_channel
*channel
=
904 caa_container_of(node
, struct lttng_consumer_channel
, node
);
905 consumer_del_channel(channel
);
910 lttng_ht_destroy(consumer_data
.channel_ht
);
914 * Called from signal handler.
916 void lttng_consumer_should_exit(struct lttng_consumer_local_data
*ctx
)
921 ret
= write(ctx
->consumer_should_quit
[1], "4", 1);
922 } while (ret
< 0 && errno
== EINTR
);
924 PERROR("write consumer quit");
928 void lttng_consumer_sync_trace_file(struct lttng_consumer_stream
*stream
,
931 int outfd
= stream
->out_fd
;
934 * This does a blocking write-and-wait on any page that belongs to the
935 * subbuffer prior to the one we just wrote.
936 * Don't care about error values, as these are just hints and ways to
937 * limit the amount of page cache used.
939 if (orig_offset
< stream
->chan
->max_sb_size
) {
942 lttng_sync_file_range(outfd
, orig_offset
- stream
->chan
->max_sb_size
,
943 stream
->chan
->max_sb_size
,
944 SYNC_FILE_RANGE_WAIT_BEFORE
945 | SYNC_FILE_RANGE_WRITE
946 | SYNC_FILE_RANGE_WAIT_AFTER
);
948 * Give hints to the kernel about how we access the file:
949 * POSIX_FADV_DONTNEED : we won't re-access data in a near future after
952 * We need to call fadvise again after the file grows because the
953 * kernel does not seem to apply fadvise to non-existing parts of the
956 * Call fadvise _after_ having waited for the page writeback to
957 * complete because the dirty page writeback semantic is not well
958 * defined. So it can be expected to lead to lower throughput in
961 posix_fadvise(outfd
, orig_offset
- stream
->chan
->max_sb_size
,
962 stream
->chan
->max_sb_size
, POSIX_FADV_DONTNEED
);
966 * Initialise the necessary environnement :
967 * - create a new context
968 * - create the poll_pipe
969 * - create the should_quit pipe (for signal handler)
970 * - create the thread pipe (for splice)
972 * Takes a function pointer as argument, this function is called when data is
973 * available on a buffer. This function is responsible to do the
974 * kernctl_get_next_subbuf, read the data with mmap or splice depending on the
975 * buffer configuration and then kernctl_put_next_subbuf at the end.
977 * Returns a pointer to the new context or NULL on error.
979 struct lttng_consumer_local_data
*lttng_consumer_create(
980 enum lttng_consumer_type type
,
981 ssize_t (*buffer_ready
)(struct lttng_consumer_stream
*stream
,
982 struct lttng_consumer_local_data
*ctx
),
983 int (*recv_channel
)(struct lttng_consumer_channel
*channel
),
984 int (*recv_stream
)(struct lttng_consumer_stream
*stream
),
985 int (*update_stream
)(int stream_key
, uint32_t state
))
988 struct lttng_consumer_local_data
*ctx
;
990 assert(consumer_data
.type
== LTTNG_CONSUMER_UNKNOWN
||
991 consumer_data
.type
== type
);
992 consumer_data
.type
= type
;
994 ctx
= zmalloc(sizeof(struct lttng_consumer_local_data
));
996 PERROR("allocating context");
1000 ctx
->consumer_error_socket
= -1;
1001 /* assign the callbacks */
1002 ctx
->on_buffer_ready
= buffer_ready
;
1003 ctx
->on_recv_channel
= recv_channel
;
1004 ctx
->on_recv_stream
= recv_stream
;
1005 ctx
->on_update_stream
= update_stream
;
1007 ret
= pipe(ctx
->consumer_data_pipe
);
1009 PERROR("Error creating poll pipe");
1010 goto error_poll_pipe
;
1013 /* set read end of the pipe to non-blocking */
1014 ret
= fcntl(ctx
->consumer_data_pipe
[0], F_SETFL
, O_NONBLOCK
);
1016 PERROR("fcntl O_NONBLOCK");
1017 goto error_poll_fcntl
;
1020 /* set write end of the pipe to non-blocking */
1021 ret
= fcntl(ctx
->consumer_data_pipe
[1], F_SETFL
, O_NONBLOCK
);
1023 PERROR("fcntl O_NONBLOCK");
1024 goto error_poll_fcntl
;
1027 ret
= pipe(ctx
->consumer_should_quit
);
1029 PERROR("Error creating recv pipe");
1030 goto error_quit_pipe
;
1033 ret
= pipe(ctx
->consumer_thread_pipe
);
1035 PERROR("Error creating thread pipe");
1036 goto error_thread_pipe
;
1039 ret
= utils_create_pipe(ctx
->consumer_metadata_pipe
);
1041 goto error_metadata_pipe
;
1044 ret
= utils_create_pipe(ctx
->consumer_splice_metadata_pipe
);
1046 goto error_splice_pipe
;
1052 utils_close_pipe(ctx
->consumer_metadata_pipe
);
1053 error_metadata_pipe
:
1054 utils_close_pipe(ctx
->consumer_thread_pipe
);
1056 for (i
= 0; i
< 2; i
++) {
1059 err
= close(ctx
->consumer_should_quit
[i
]);
1066 for (i
= 0; i
< 2; i
++) {
1069 err
= close(ctx
->consumer_data_pipe
[i
]);
1081 * Close all fds associated with the instance and free the context.
1083 void lttng_consumer_destroy(struct lttng_consumer_local_data
*ctx
)
1087 ret
= close(ctx
->consumer_error_socket
);
1091 ret
= close(ctx
->consumer_thread_pipe
[0]);
1095 ret
= close(ctx
->consumer_thread_pipe
[1]);
1099 ret
= close(ctx
->consumer_data_pipe
[0]);
1103 ret
= close(ctx
->consumer_data_pipe
[1]);
1107 ret
= close(ctx
->consumer_should_quit
[0]);
1111 ret
= close(ctx
->consumer_should_quit
[1]);
1115 utils_close_pipe(ctx
->consumer_splice_metadata_pipe
);
1117 unlink(ctx
->consumer_command_sock_path
);
1122 * Write the metadata stream id on the specified file descriptor.
1124 static int write_relayd_metadata_id(int fd
,
1125 struct lttng_consumer_stream
*stream
,
1126 struct consumer_relayd_sock_pair
*relayd
,
1127 unsigned long padding
)
1130 struct lttcomm_relayd_metadata_payload hdr
;
1132 hdr
.stream_id
= htobe64(stream
->relayd_stream_id
);
1133 hdr
.padding_size
= htobe32(padding
);
1135 ret
= write(fd
, (void *) &hdr
, sizeof(hdr
));
1136 } while (ret
< 0 && errno
== EINTR
);
1138 PERROR("write metadata stream id");
1141 DBG("Metadata stream id %" PRIu64
" with padding %lu written before data",
1142 stream
->relayd_stream_id
, padding
);
1149 * Mmap the ring buffer, read it and write the data to the tracefile. This is a
1150 * core function for writing trace buffers to either the local filesystem or
1153 * Careful review MUST be put if any changes occur!
1155 * Returns the number of bytes written
1157 ssize_t
lttng_consumer_on_read_subbuffer_mmap(
1158 struct lttng_consumer_local_data
*ctx
,
1159 struct lttng_consumer_stream
*stream
, unsigned long len
,
1160 unsigned long padding
)
1162 unsigned long mmap_offset
;
1163 ssize_t ret
= 0, written
= 0;
1164 off_t orig_offset
= stream
->out_fd_offset
;
1165 /* Default is on the disk */
1166 int outfd
= stream
->out_fd
;
1167 struct consumer_relayd_sock_pair
*relayd
= NULL
;
1169 /* RCU lock for the relayd pointer */
1172 pthread_mutex_lock(&stream
->lock
);
1174 /* Flag that the current stream if set for network streaming. */
1175 if (stream
->net_seq_idx
!= -1) {
1176 relayd
= consumer_find_relayd(stream
->net_seq_idx
);
1177 if (relayd
== NULL
) {
1182 /* get the offset inside the fd to mmap */
1183 switch (consumer_data
.type
) {
1184 case LTTNG_CONSUMER_KERNEL
:
1185 ret
= kernctl_get_mmap_read_offset(stream
->wait_fd
, &mmap_offset
);
1187 case LTTNG_CONSUMER32_UST
:
1188 case LTTNG_CONSUMER64_UST
:
1189 ret
= lttng_ustctl_get_mmap_read_offset(stream
->chan
->handle
,
1190 stream
->buf
, &mmap_offset
);
1193 ERR("Unknown consumer_data type");
1198 PERROR("tracer ctl get_mmap_read_offset");
1203 /* Handle stream on the relayd if the output is on the network */
1205 unsigned long netlen
= len
;
1208 * Lock the control socket for the complete duration of the function
1209 * since from this point on we will use the socket.
1211 if (stream
->metadata_flag
) {
1212 /* Metadata requires the control socket. */
1213 pthread_mutex_lock(&relayd
->ctrl_sock_mutex
);
1214 netlen
+= sizeof(struct lttcomm_relayd_metadata_payload
);
1217 ret
= write_relayd_stream_header(stream
, netlen
, padding
, relayd
);
1219 /* Use the returned socket. */
1222 /* Write metadata stream id before payload */
1223 if (stream
->metadata_flag
) {
1224 ret
= write_relayd_metadata_id(outfd
, stream
, relayd
, padding
);
1231 /* Else, use the default set before which is the filesystem. */
1233 /* No streaming, we have to set the len with the full padding */
1239 ret
= write(outfd
, stream
->mmap_base
+ mmap_offset
, len
);
1240 } while (ret
< 0 && errno
== EINTR
);
1241 DBG("Consumer mmap write() ret %zd (len %lu)", ret
, len
);
1243 PERROR("Error in file write");
1248 } else if (ret
> len
) {
1249 PERROR("Error in file write (ret %zd > len %lu)", ret
, len
);
1257 /* This call is useless on a socket so better save a syscall. */
1259 /* This won't block, but will start writeout asynchronously */
1260 lttng_sync_file_range(outfd
, stream
->out_fd_offset
, ret
,
1261 SYNC_FILE_RANGE_WRITE
);
1262 stream
->out_fd_offset
+= ret
;
1266 lttng_consumer_sync_trace_file(stream
, orig_offset
);
1269 /* Unlock only if ctrl socket used */
1270 if (relayd
&& stream
->metadata_flag
) {
1271 pthread_mutex_unlock(&relayd
->ctrl_sock_mutex
);
1273 pthread_mutex_unlock(&stream
->lock
);
1280 * Splice the data from the ring buffer to the tracefile.
1282 * Returns the number of bytes spliced.
1284 ssize_t
lttng_consumer_on_read_subbuffer_splice(
1285 struct lttng_consumer_local_data
*ctx
,
1286 struct lttng_consumer_stream
*stream
, unsigned long len
,
1287 unsigned long padding
)
1289 ssize_t ret
= 0, written
= 0, ret_splice
= 0;
1291 off_t orig_offset
= stream
->out_fd_offset
;
1292 int fd
= stream
->wait_fd
;
1293 /* Default is on the disk */
1294 int outfd
= stream
->out_fd
;
1295 struct consumer_relayd_sock_pair
*relayd
= NULL
;
1298 switch (consumer_data
.type
) {
1299 case LTTNG_CONSUMER_KERNEL
:
1301 case LTTNG_CONSUMER32_UST
:
1302 case LTTNG_CONSUMER64_UST
:
1303 /* Not supported for user space tracing */
1306 ERR("Unknown consumer_data type");
1310 /* RCU lock for the relayd pointer */
1313 pthread_mutex_lock(&stream
->lock
);
1315 /* Flag that the current stream if set for network streaming. */
1316 if (stream
->net_seq_idx
!= -1) {
1317 relayd
= consumer_find_relayd(stream
->net_seq_idx
);
1318 if (relayd
== NULL
) {
1324 * Choose right pipe for splice. Metadata and trace data are handled by
1325 * different threads hence the use of two pipes in order not to race or
1326 * corrupt the written data.
1328 if (stream
->metadata_flag
) {
1329 splice_pipe
= ctx
->consumer_splice_metadata_pipe
;
1331 splice_pipe
= ctx
->consumer_thread_pipe
;
1334 /* Write metadata stream id before payload */
1336 int total_len
= len
;
1338 if (stream
->metadata_flag
) {
1340 * Lock the control socket for the complete duration of the function
1341 * since from this point on we will use the socket.
1343 pthread_mutex_lock(&relayd
->ctrl_sock_mutex
);
1345 ret
= write_relayd_metadata_id(splice_pipe
[1], stream
, relayd
,
1352 total_len
+= sizeof(struct lttcomm_relayd_metadata_payload
);
1355 ret
= write_relayd_stream_header(stream
, total_len
, padding
, relayd
);
1357 /* Use the returned socket. */
1360 ERR("Remote relayd disconnected. Stopping");
1364 /* No streaming, we have to set the len with the full padding */
1369 DBG("splice chan to pipe offset %lu of len %lu (fd : %d, pipe: %d)",
1370 (unsigned long)offset
, len
, fd
, splice_pipe
[1]);
1371 ret_splice
= splice(fd
, &offset
, splice_pipe
[1], NULL
, len
,
1372 SPLICE_F_MOVE
| SPLICE_F_MORE
);
1373 DBG("splice chan to pipe, ret %zd", ret_splice
);
1374 if (ret_splice
< 0) {
1375 PERROR("Error in relay splice");
1377 written
= ret_splice
;
1383 /* Handle stream on the relayd if the output is on the network */
1385 if (stream
->metadata_flag
) {
1386 size_t metadata_payload_size
=
1387 sizeof(struct lttcomm_relayd_metadata_payload
);
1389 /* Update counter to fit the spliced data */
1390 ret_splice
+= metadata_payload_size
;
1391 len
+= metadata_payload_size
;
1393 * We do this so the return value can match the len passed as
1394 * argument to this function.
1396 written
-= metadata_payload_size
;
1400 /* Splice data out */
1401 ret_splice
= splice(splice_pipe
[0], NULL
, outfd
, NULL
,
1402 ret_splice
, SPLICE_F_MOVE
| SPLICE_F_MORE
);
1403 DBG("Consumer splice pipe to file, ret %zd", ret_splice
);
1404 if (ret_splice
< 0) {
1405 PERROR("Error in file splice");
1407 written
= ret_splice
;
1411 } else if (ret_splice
> len
) {
1413 PERROR("Wrote more data than requested %zd (len: %lu)",
1415 written
+= ret_splice
;
1421 /* This call is useless on a socket so better save a syscall. */
1423 /* This won't block, but will start writeout asynchronously */
1424 lttng_sync_file_range(outfd
, stream
->out_fd_offset
, ret_splice
,
1425 SYNC_FILE_RANGE_WRITE
);
1426 stream
->out_fd_offset
+= ret_splice
;
1428 written
+= ret_splice
;
1430 lttng_consumer_sync_trace_file(stream
, orig_offset
);
1437 /* send the appropriate error description to sessiond */
1440 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_SPLICE_EBADF
);
1443 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_SPLICE_EINVAL
);
1446 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_SPLICE_ENOMEM
);
1449 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_SPLICE_ESPIPE
);
1454 if (relayd
&& stream
->metadata_flag
) {
1455 pthread_mutex_unlock(&relayd
->ctrl_sock_mutex
);
1457 pthread_mutex_unlock(&stream
->lock
);
1464 * Take a snapshot for a specific fd
1466 * Returns 0 on success, < 0 on error
1468 int lttng_consumer_take_snapshot(struct lttng_consumer_local_data
*ctx
,
1469 struct lttng_consumer_stream
*stream
)
1471 switch (consumer_data
.type
) {
1472 case LTTNG_CONSUMER_KERNEL
:
1473 return lttng_kconsumer_take_snapshot(ctx
, stream
);
1474 case LTTNG_CONSUMER32_UST
:
1475 case LTTNG_CONSUMER64_UST
:
1476 return lttng_ustconsumer_take_snapshot(ctx
, stream
);
1478 ERR("Unknown consumer_data type");
1486 * Get the produced position
1488 * Returns 0 on success, < 0 on error
1490 int lttng_consumer_get_produced_snapshot(
1491 struct lttng_consumer_local_data
*ctx
,
1492 struct lttng_consumer_stream
*stream
,
1495 switch (consumer_data
.type
) {
1496 case LTTNG_CONSUMER_KERNEL
:
1497 return lttng_kconsumer_get_produced_snapshot(ctx
, stream
, pos
);
1498 case LTTNG_CONSUMER32_UST
:
1499 case LTTNG_CONSUMER64_UST
:
1500 return lttng_ustconsumer_get_produced_snapshot(ctx
, stream
, pos
);
1502 ERR("Unknown consumer_data type");
1508 int lttng_consumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
1509 int sock
, struct pollfd
*consumer_sockpoll
)
1511 switch (consumer_data
.type
) {
1512 case LTTNG_CONSUMER_KERNEL
:
1513 return lttng_kconsumer_recv_cmd(ctx
, sock
, consumer_sockpoll
);
1514 case LTTNG_CONSUMER32_UST
:
1515 case LTTNG_CONSUMER64_UST
:
1516 return lttng_ustconsumer_recv_cmd(ctx
, sock
, consumer_sockpoll
);
1518 ERR("Unknown consumer_data type");
1525 * Iterate over all streams of the hashtable and free them properly.
1527 * WARNING: *MUST* be used with data stream only.
1529 static void destroy_data_stream_ht(struct lttng_ht
*ht
)
1532 struct lttng_ht_iter iter
;
1533 struct lttng_consumer_stream
*stream
;
1540 cds_lfht_for_each_entry(ht
->ht
, &iter
.iter
, stream
, node
.node
) {
1541 ret
= lttng_ht_del(ht
, &iter
);
1544 call_rcu(&stream
->node
.head
, consumer_free_stream
);
1548 lttng_ht_destroy(ht
);
1552 * Iterate over all streams of the hashtable and free them properly.
1554 * XXX: Should not be only for metadata stream or else use an other name.
1556 static void destroy_stream_ht(struct lttng_ht
*ht
)
1559 struct lttng_ht_iter iter
;
1560 struct lttng_consumer_stream
*stream
;
1567 cds_lfht_for_each_entry(ht
->ht
, &iter
.iter
, stream
, node
.node
) {
1568 ret
= lttng_ht_del(ht
, &iter
);
1571 call_rcu(&stream
->node
.head
, consumer_free_stream
);
1575 lttng_ht_destroy(ht
);
1579 * Clean up a metadata stream and free its memory.
1581 void consumer_del_metadata_stream(struct lttng_consumer_stream
*stream
,
1582 struct lttng_ht
*ht
)
1585 struct lttng_ht_iter iter
;
1586 struct lttng_consumer_channel
*free_chan
= NULL
;
1587 struct consumer_relayd_sock_pair
*relayd
;
1591 * This call should NEVER receive regular stream. It must always be
1592 * metadata stream and this is crucial for data structure synchronization.
1594 assert(stream
->metadata_flag
);
1596 DBG3("Consumer delete metadata stream %d", stream
->wait_fd
);
1599 /* Means the stream was allocated but not successfully added */
1603 pthread_mutex_lock(&consumer_data
.lock
);
1604 switch (consumer_data
.type
) {
1605 case LTTNG_CONSUMER_KERNEL
:
1606 if (stream
->mmap_base
!= NULL
) {
1607 ret
= munmap(stream
->mmap_base
, stream
->mmap_len
);
1609 PERROR("munmap metadata stream");
1613 case LTTNG_CONSUMER32_UST
:
1614 case LTTNG_CONSUMER64_UST
:
1615 lttng_ustconsumer_del_stream(stream
);
1618 ERR("Unknown consumer_data type");
1624 iter
.iter
.node
= &stream
->node
.node
;
1625 ret
= lttng_ht_del(ht
, &iter
);
1628 /* Remove node session id from the consumer_data stream ht */
1629 iter
.iter
.node
= &stream
->node_session_id
.node
;
1630 ret
= lttng_ht_del(consumer_data
.stream_list_ht
, &iter
);
1634 if (stream
->out_fd
>= 0) {
1635 ret
= close(stream
->out_fd
);
1641 if (stream
->wait_fd
>= 0 && !stream
->wait_fd_is_copy
) {
1642 ret
= close(stream
->wait_fd
);
1648 if (stream
->shm_fd
>= 0 && stream
->wait_fd
!= stream
->shm_fd
) {
1649 ret
= close(stream
->shm_fd
);
1655 /* Check and cleanup relayd */
1657 relayd
= consumer_find_relayd(stream
->net_seq_idx
);
1658 if (relayd
!= NULL
) {
1659 uatomic_dec(&relayd
->refcount
);
1660 assert(uatomic_read(&relayd
->refcount
) >= 0);
1662 /* Closing streams requires to lock the control socket. */
1663 pthread_mutex_lock(&relayd
->ctrl_sock_mutex
);
1664 ret
= relayd_send_close_stream(&relayd
->control_sock
,
1665 stream
->relayd_stream_id
, stream
->next_net_seq_num
- 1);
1666 pthread_mutex_unlock(&relayd
->ctrl_sock_mutex
);
1668 DBG("Unable to close stream on the relayd. Continuing");
1670 * Continue here. There is nothing we can do for the relayd.
1671 * Chances are that the relayd has closed the socket so we just
1672 * continue cleaning up.
1676 /* Both conditions are met, we destroy the relayd. */
1677 if (uatomic_read(&relayd
->refcount
) == 0 &&
1678 uatomic_read(&relayd
->destroy_flag
)) {
1679 destroy_relayd(relayd
);
1684 /* Atomically decrement channel refcount since other threads can use it. */
1685 uatomic_dec(&stream
->chan
->refcount
);
1686 if (!uatomic_read(&stream
->chan
->refcount
)
1687 && !uatomic_read(&stream
->chan
->nb_init_streams
)) {
1688 /* Go for channel deletion! */
1689 free_chan
= stream
->chan
;
1693 pthread_mutex_unlock(&consumer_data
.lock
);
1696 consumer_del_channel(free_chan
);
1700 call_rcu(&stream
->node
.head
, consumer_free_stream
);
1704 * Action done with the metadata stream when adding it to the consumer internal
1705 * data structures to handle it.
1707 static int consumer_add_metadata_stream(struct lttng_consumer_stream
*stream
,
1708 struct lttng_ht
*ht
)
1711 struct consumer_relayd_sock_pair
*relayd
;
1716 DBG3("Adding metadata stream %d to hash table", stream
->wait_fd
);
1718 pthread_mutex_lock(&consumer_data
.lock
);
1721 * From here, refcounts are updated so be _careful_ when returning an error
1726 /* Find relayd and, if one is found, increment refcount. */
1727 relayd
= consumer_find_relayd(stream
->net_seq_idx
);
1728 if (relayd
!= NULL
) {
1729 uatomic_inc(&relayd
->refcount
);
1732 /* Update channel refcount once added without error(s). */
1733 uatomic_inc(&stream
->chan
->refcount
);
1736 * When nb_init_streams reaches 0, we don't need to trigger any action in
1737 * terms of destroying the associated channel, because the action that
1738 * causes the count to become 0 also causes a stream to be added. The
1739 * channel deletion will thus be triggered by the following removal of this
1742 if (uatomic_read(&stream
->chan
->nb_init_streams
) > 0) {
1743 uatomic_dec(&stream
->chan
->nb_init_streams
);
1746 /* Steal stream identifier to avoid having streams with the same key */
1747 consumer_steal_stream_key(stream
->key
, ht
);
1749 lttng_ht_add_unique_ulong(ht
, &stream
->node
);
1752 * Add stream to the stream_list_ht of the consumer data. No need to steal
1753 * the key since the HT does not use it and we allow to add redundant keys
1756 lttng_ht_add_ulong(consumer_data
.stream_list_ht
, &stream
->node_session_id
);
1760 pthread_mutex_unlock(&consumer_data
.lock
);
1765 * Thread polls on metadata file descriptor and write them on disk or on the
1768 void *consumer_thread_metadata_poll(void *data
)
1771 uint32_t revents
, nb_fd
;
1772 struct lttng_consumer_stream
*stream
= NULL
;
1773 struct lttng_ht_iter iter
;
1774 struct lttng_ht_node_ulong
*node
;
1775 struct lttng_poll_event events
;
1776 struct lttng_consumer_local_data
*ctx
= data
;
1779 rcu_register_thread();
1781 DBG("Thread metadata poll started");
1783 /* Size is set to 1 for the consumer_metadata pipe */
1784 ret
= lttng_poll_create(&events
, 2, LTTNG_CLOEXEC
);
1786 ERR("Poll set creation failed");
1790 ret
= lttng_poll_add(&events
, ctx
->consumer_metadata_pipe
[0], LPOLLIN
);
1796 DBG("Metadata main loop started");
1799 lttng_poll_reset(&events
);
1801 nb_fd
= LTTNG_POLL_GETNB(&events
);
1803 /* Only the metadata pipe is set */
1804 if (nb_fd
== 0 && consumer_quit
== 1) {
1809 DBG("Metadata poll wait with %d fd(s)", nb_fd
);
1810 ret
= lttng_poll_wait(&events
, -1);
1811 DBG("Metadata event catched in thread");
1813 if (errno
== EINTR
) {
1814 ERR("Poll EINTR catched");
1820 /* From here, the event is a metadata wait fd */
1821 for (i
= 0; i
< nb_fd
; i
++) {
1822 revents
= LTTNG_POLL_GETEV(&events
, i
);
1823 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1825 /* Just don't waste time if no returned events for the fd */
1830 if (pollfd
== ctx
->consumer_metadata_pipe
[0]) {
1831 if (revents
& (LPOLLERR
| LPOLLHUP
)) {
1832 DBG("Metadata thread pipe hung up");
1834 * Remove the pipe from the poll set and continue the loop
1835 * since their might be data to consume.
1837 lttng_poll_del(&events
, ctx
->consumer_metadata_pipe
[0]);
1838 close(ctx
->consumer_metadata_pipe
[0]);
1840 } else if (revents
& LPOLLIN
) {
1842 /* Get the stream pointer received */
1843 ret
= read(pollfd
, &stream
, sizeof(stream
));
1844 } while (ret
< 0 && errno
== EINTR
);
1846 ret
< sizeof(struct lttng_consumer_stream
*)) {
1847 PERROR("read metadata stream");
1849 * Let's continue here and hope we can still work
1850 * without stopping the consumer. XXX: Should we?
1855 DBG("Adding metadata stream %d to poll set",
1858 ret
= consumer_add_metadata_stream(stream
, metadata_ht
);
1860 ERR("Unable to add metadata stream");
1861 /* Stream was not setup properly. Continuing. */
1862 consumer_del_metadata_stream(stream
, NULL
);
1866 /* Add metadata stream to the global poll events list */
1867 lttng_poll_add(&events
, stream
->wait_fd
,
1868 LPOLLIN
| LPOLLPRI
);
1871 /* Handle other stream */
1876 lttng_ht_lookup(metadata_ht
, (void *)((unsigned long) pollfd
),
1878 node
= lttng_ht_iter_get_node_ulong(&iter
);
1881 stream
= caa_container_of(node
, struct lttng_consumer_stream
,
1884 /* Check for error event */
1885 if (revents
& (LPOLLERR
| LPOLLHUP
)) {
1886 DBG("Metadata fd %d is hup|err.", pollfd
);
1887 if (!stream
->hangup_flush_done
1888 && (consumer_data
.type
== LTTNG_CONSUMER32_UST
1889 || consumer_data
.type
== LTTNG_CONSUMER64_UST
)) {
1890 DBG("Attempting to flush and consume the UST buffers");
1891 lttng_ustconsumer_on_stream_hangup(stream
);
1893 /* We just flushed the stream now read it. */
1895 len
= ctx
->on_buffer_ready(stream
, ctx
);
1897 * We don't check the return value here since if we get
1898 * a negative len, it means an error occured thus we
1899 * simply remove it from the poll set and free the
1905 lttng_poll_del(&events
, stream
->wait_fd
);
1907 * This call update the channel states, closes file descriptors
1908 * and securely free the stream.
1910 consumer_del_metadata_stream(stream
, metadata_ht
);
1911 } else if (revents
& (LPOLLIN
| LPOLLPRI
)) {
1912 /* Get the data out of the metadata file descriptor */
1913 DBG("Metadata available on fd %d", pollfd
);
1914 assert(stream
->wait_fd
== pollfd
);
1916 len
= ctx
->on_buffer_ready(stream
, ctx
);
1917 /* It's ok to have an unavailable sub-buffer */
1918 if (len
< 0 && len
!= -EAGAIN
&& len
!= -ENODATA
) {
1921 } else if (len
> 0) {
1922 stream
->data_read
= 1;
1926 /* Release RCU lock for the stream looked up */
1933 DBG("Metadata poll thread exiting");
1934 lttng_poll_clean(&events
);
1937 destroy_stream_ht(metadata_ht
);
1940 rcu_unregister_thread();
1945 * This thread polls the fds in the set to consume the data and write
1946 * it to tracefile if necessary.
1948 void *consumer_thread_data_poll(void *data
)
1950 int num_rdy
, num_hup
, high_prio
, ret
, i
;
1951 struct pollfd
*pollfd
= NULL
;
1952 /* local view of the streams */
1953 struct lttng_consumer_stream
**local_stream
= NULL
, *new_stream
= NULL
;
1954 /* local view of consumer_data.fds_count */
1956 struct lttng_consumer_local_data
*ctx
= data
;
1959 rcu_register_thread();
1961 data_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1962 if (data_ht
== NULL
) {
1966 local_stream
= zmalloc(sizeof(struct lttng_consumer_stream
));
1973 * the fds set has been updated, we need to update our
1974 * local array as well
1976 pthread_mutex_lock(&consumer_data
.lock
);
1977 if (consumer_data
.need_update
) {
1978 if (pollfd
!= NULL
) {
1982 if (local_stream
!= NULL
) {
1984 local_stream
= NULL
;
1987 /* allocate for all fds + 1 for the consumer_data_pipe */
1988 pollfd
= zmalloc((consumer_data
.stream_count
+ 1) * sizeof(struct pollfd
));
1989 if (pollfd
== NULL
) {
1990 PERROR("pollfd malloc");
1991 pthread_mutex_unlock(&consumer_data
.lock
);
1995 /* allocate for all fds + 1 for the consumer_data_pipe */
1996 local_stream
= zmalloc((consumer_data
.stream_count
+ 1) *
1997 sizeof(struct lttng_consumer_stream
));
1998 if (local_stream
== NULL
) {
1999 PERROR("local_stream malloc");
2000 pthread_mutex_unlock(&consumer_data
.lock
);
2003 ret
= consumer_update_poll_array(ctx
, &pollfd
, local_stream
,
2006 ERR("Error in allocating pollfd or local_outfds");
2007 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_POLL_ERROR
);
2008 pthread_mutex_unlock(&consumer_data
.lock
);
2012 consumer_data
.need_update
= 0;
2014 pthread_mutex_unlock(&consumer_data
.lock
);
2016 /* No FDs and consumer_quit, consumer_cleanup the thread */
2017 if (nb_fd
== 0 && consumer_quit
== 1) {
2020 /* poll on the array of fds */
2022 DBG("polling on %d fd", nb_fd
+ 1);
2023 num_rdy
= poll(pollfd
, nb_fd
+ 1, consumer_poll_timeout
);
2024 DBG("poll num_rdy : %d", num_rdy
);
2025 if (num_rdy
== -1) {
2027 * Restart interrupted system call.
2029 if (errno
== EINTR
) {
2032 PERROR("Poll error");
2033 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_POLL_ERROR
);
2035 } else if (num_rdy
== 0) {
2036 DBG("Polling thread timed out");
2041 * If the consumer_data_pipe triggered poll go directly to the
2042 * beginning of the loop to update the array. We want to prioritize
2043 * array update over low-priority reads.
2045 if (pollfd
[nb_fd
].revents
& (POLLIN
| POLLPRI
)) {
2046 size_t pipe_readlen
;
2048 DBG("consumer_data_pipe wake up");
2049 /* Consume 1 byte of pipe data */
2051 pipe_readlen
= read(ctx
->consumer_data_pipe
[0], &new_stream
,
2052 sizeof(new_stream
));
2053 } while (pipe_readlen
== -1 && errno
== EINTR
);
2056 * If the stream is NULL, just ignore it. It's also possible that
2057 * the sessiond poll thread changed the consumer_quit state and is
2058 * waking us up to test it.
2060 if (new_stream
== NULL
) {
2064 ret
= consumer_add_stream(new_stream
, data_ht
);
2066 ERR("Consumer add stream %d failed. Continuing",
2069 * At this point, if the add_stream fails, it is not in the
2070 * hash table thus passing the NULL value here.
2072 consumer_del_stream(new_stream
, NULL
);
2075 /* Continue to update the local streams and handle prio ones */
2079 /* Take care of high priority channels first. */
2080 for (i
= 0; i
< nb_fd
; i
++) {
2081 if (pollfd
[i
].revents
& POLLPRI
) {
2082 DBG("Urgent read on fd %d", pollfd
[i
].fd
);
2084 len
= ctx
->on_buffer_ready(local_stream
[i
], ctx
);
2085 /* it's ok to have an unavailable sub-buffer */
2086 if (len
< 0 && len
!= -EAGAIN
&& len
!= -ENODATA
) {
2088 } else if (len
> 0) {
2089 local_stream
[i
]->data_read
= 1;
2095 * If we read high prio channel in this loop, try again
2096 * for more high prio data.
2102 /* Take care of low priority channels. */
2103 for (i
= 0; i
< nb_fd
; i
++) {
2104 if ((pollfd
[i
].revents
& POLLIN
) ||
2105 local_stream
[i
]->hangup_flush_done
) {
2106 DBG("Normal read on fd %d", pollfd
[i
].fd
);
2107 len
= ctx
->on_buffer_ready(local_stream
[i
], ctx
);
2108 /* it's ok to have an unavailable sub-buffer */
2109 if (len
< 0 && len
!= -EAGAIN
&& len
!= -ENODATA
) {
2111 } else if (len
> 0) {
2112 local_stream
[i
]->data_read
= 1;
2117 /* Handle hangup and errors */
2118 for (i
= 0; i
< nb_fd
; i
++) {
2119 if (!local_stream
[i
]->hangup_flush_done
2120 && (pollfd
[i
].revents
& (POLLHUP
| POLLERR
| POLLNVAL
))
2121 && (consumer_data
.type
== LTTNG_CONSUMER32_UST
2122 || consumer_data
.type
== LTTNG_CONSUMER64_UST
)) {
2123 DBG("fd %d is hup|err|nval. Attempting flush and read.",
2125 lttng_ustconsumer_on_stream_hangup(local_stream
[i
]);
2126 /* Attempt read again, for the data we just flushed. */
2127 local_stream
[i
]->data_read
= 1;
2130 * If the poll flag is HUP/ERR/NVAL and we have
2131 * read no data in this pass, we can remove the
2132 * stream from its hash table.
2134 if ((pollfd
[i
].revents
& POLLHUP
)) {
2135 DBG("Polling fd %d tells it has hung up.", pollfd
[i
].fd
);
2136 if (!local_stream
[i
]->data_read
) {
2137 consumer_del_stream(local_stream
[i
], data_ht
);
2140 } else if (pollfd
[i
].revents
& POLLERR
) {
2141 ERR("Error returned in polling fd %d.", pollfd
[i
].fd
);
2142 if (!local_stream
[i
]->data_read
) {
2143 consumer_del_stream(local_stream
[i
], data_ht
);
2146 } else if (pollfd
[i
].revents
& POLLNVAL
) {
2147 ERR("Polling fd %d tells fd is not open.", pollfd
[i
].fd
);
2148 if (!local_stream
[i
]->data_read
) {
2149 consumer_del_stream(local_stream
[i
], data_ht
);
2153 local_stream
[i
]->data_read
= 0;
2157 DBG("polling thread exiting");
2158 if (pollfd
!= NULL
) {
2162 if (local_stream
!= NULL
) {
2164 local_stream
= NULL
;
2168 * Close the write side of the pipe so epoll_wait() in
2169 * consumer_thread_metadata_poll can catch it. The thread is monitoring the
2170 * read side of the pipe. If we close them both, epoll_wait strangely does
2171 * not return and could create a endless wait period if the pipe is the
2172 * only tracked fd in the poll set. The thread will take care of closing
2175 close(ctx
->consumer_metadata_pipe
[1]);
2178 destroy_data_stream_ht(data_ht
);
2181 rcu_unregister_thread();
2186 * This thread listens on the consumerd socket and receives the file
2187 * descriptors from the session daemon.
2189 void *consumer_thread_sessiond_poll(void *data
)
2191 int sock
, client_socket
, ret
;
2193 * structure to poll for incoming data on communication socket avoids
2194 * making blocking sockets.
2196 struct pollfd consumer_sockpoll
[2];
2197 struct lttng_consumer_local_data
*ctx
= data
;
2199 rcu_register_thread();
2201 DBG("Creating command socket %s", ctx
->consumer_command_sock_path
);
2202 unlink(ctx
->consumer_command_sock_path
);
2203 client_socket
= lttcomm_create_unix_sock(ctx
->consumer_command_sock_path
);
2204 if (client_socket
< 0) {
2205 ERR("Cannot create command socket");
2209 ret
= lttcomm_listen_unix_sock(client_socket
);
2214 DBG("Sending ready command to lttng-sessiond");
2215 ret
= lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_COMMAND_SOCK_READY
);
2216 /* return < 0 on error, but == 0 is not fatal */
2218 ERR("Error sending ready command to lttng-sessiond");
2222 ret
= fcntl(client_socket
, F_SETFL
, O_NONBLOCK
);
2224 PERROR("fcntl O_NONBLOCK");
2228 /* prepare the FDs to poll : to client socket and the should_quit pipe */
2229 consumer_sockpoll
[0].fd
= ctx
->consumer_should_quit
[0];
2230 consumer_sockpoll
[0].events
= POLLIN
| POLLPRI
;
2231 consumer_sockpoll
[1].fd
= client_socket
;
2232 consumer_sockpoll
[1].events
= POLLIN
| POLLPRI
;
2234 if (lttng_consumer_poll_socket(consumer_sockpoll
) < 0) {
2237 DBG("Connection on client_socket");
2239 /* Blocking call, waiting for transmission */
2240 sock
= lttcomm_accept_unix_sock(client_socket
);
2245 ret
= fcntl(sock
, F_SETFL
, O_NONBLOCK
);
2247 PERROR("fcntl O_NONBLOCK");
2251 /* update the polling structure to poll on the established socket */
2252 consumer_sockpoll
[1].fd
= sock
;
2253 consumer_sockpoll
[1].events
= POLLIN
| POLLPRI
;
2256 if (lttng_consumer_poll_socket(consumer_sockpoll
) < 0) {
2259 DBG("Incoming command on sock");
2260 ret
= lttng_consumer_recv_cmd(ctx
, sock
, consumer_sockpoll
);
2261 if (ret
== -ENOENT
) {
2262 DBG("Received STOP command");
2267 * This could simply be a session daemon quitting. Don't output
2270 DBG("Communication interrupted on command socket");
2273 if (consumer_quit
) {
2274 DBG("consumer_thread_receive_fds received quit from signal");
2277 DBG("received fds on sock");
2280 DBG("consumer_thread_receive_fds exiting");
2283 * when all fds have hung up, the polling thread
2289 * 2s of grace period, if no polling events occur during
2290 * this period, the polling thread will exit even if there
2291 * are still open FDs (should not happen, but safety mechanism).
2293 consumer_poll_timeout
= LTTNG_CONSUMER_POLL_TIMEOUT
;
2296 * Notify the data poll thread to poll back again and test the
2297 * consumer_quit state to quit gracefully.
2300 struct lttng_consumer_stream
*null_stream
= NULL
;
2302 ret
= write(ctx
->consumer_data_pipe
[1], &null_stream
,
2303 sizeof(null_stream
));
2304 } while (ret
< 0 && errno
== EINTR
);
2306 rcu_unregister_thread();
2310 ssize_t
lttng_consumer_read_subbuffer(struct lttng_consumer_stream
*stream
,
2311 struct lttng_consumer_local_data
*ctx
)
2313 switch (consumer_data
.type
) {
2314 case LTTNG_CONSUMER_KERNEL
:
2315 return lttng_kconsumer_read_subbuffer(stream
, ctx
);
2316 case LTTNG_CONSUMER32_UST
:
2317 case LTTNG_CONSUMER64_UST
:
2318 return lttng_ustconsumer_read_subbuffer(stream
, ctx
);
2320 ERR("Unknown consumer_data type");
2326 int lttng_consumer_on_recv_stream(struct lttng_consumer_stream
*stream
)
2328 switch (consumer_data
.type
) {
2329 case LTTNG_CONSUMER_KERNEL
:
2330 return lttng_kconsumer_on_recv_stream(stream
);
2331 case LTTNG_CONSUMER32_UST
:
2332 case LTTNG_CONSUMER64_UST
:
2333 return lttng_ustconsumer_on_recv_stream(stream
);
2335 ERR("Unknown consumer_data type");
2342 * Allocate and set consumer data hash tables.
2344 void lttng_consumer_init(void)
2346 consumer_data
.channel_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
2347 consumer_data
.relayd_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
2348 consumer_data
.stream_list_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
2350 metadata_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
2351 assert(metadata_ht
);
2352 data_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
2357 * Process the ADD_RELAYD command receive by a consumer.
2359 * This will create a relayd socket pair and add it to the relayd hash table.
2360 * The caller MUST acquire a RCU read side lock before calling it.
2362 int consumer_add_relayd_socket(int net_seq_idx
, int sock_type
,
2363 struct lttng_consumer_local_data
*ctx
, int sock
,
2364 struct pollfd
*consumer_sockpoll
, struct lttcomm_sock
*relayd_sock
)
2367 struct consumer_relayd_sock_pair
*relayd
;
2369 DBG("Consumer adding relayd socket (idx: %d)", net_seq_idx
);
2371 /* Get relayd reference if exists. */
2372 relayd
= consumer_find_relayd(net_seq_idx
);
2373 if (relayd
== NULL
) {
2374 /* Not found. Allocate one. */
2375 relayd
= consumer_allocate_relayd_sock_pair(net_seq_idx
);
2376 if (relayd
== NULL
) {
2377 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
2382 /* Poll on consumer socket. */
2383 if (lttng_consumer_poll_socket(consumer_sockpoll
) < 0) {
2388 /* Get relayd socket from session daemon */
2389 ret
= lttcomm_recv_fds_unix_sock(sock
, &fd
, 1);
2390 if (ret
!= sizeof(fd
)) {
2391 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_FD
);
2396 /* Copy socket information and received FD */
2397 switch (sock_type
) {
2398 case LTTNG_STREAM_CONTROL
:
2399 /* Copy received lttcomm socket */
2400 lttcomm_copy_sock(&relayd
->control_sock
, relayd_sock
);
2401 ret
= lttcomm_create_sock(&relayd
->control_sock
);
2406 /* Close the created socket fd which is useless */
2407 close(relayd
->control_sock
.fd
);
2409 /* Assign new file descriptor */
2410 relayd
->control_sock
.fd
= fd
;
2412 case LTTNG_STREAM_DATA
:
2413 /* Copy received lttcomm socket */
2414 lttcomm_copy_sock(&relayd
->data_sock
, relayd_sock
);
2415 ret
= lttcomm_create_sock(&relayd
->data_sock
);
2420 /* Close the created socket fd which is useless */
2421 close(relayd
->data_sock
.fd
);
2423 /* Assign new file descriptor */
2424 relayd
->data_sock
.fd
= fd
;
2427 ERR("Unknown relayd socket type (%d)", sock_type
);
2431 DBG("Consumer %s socket created successfully with net idx %d (fd: %d)",
2432 sock_type
== LTTNG_STREAM_CONTROL
? "control" : "data",
2433 relayd
->net_seq_idx
, fd
);
2436 * Add relayd socket pair to consumer data hashtable. If object already
2437 * exists or on error, the function gracefully returns.
2449 * Check if for a given session id there is still data needed to be extract
2452 * Return 1 if data is in fact available to be read or else 0.
2454 int consumer_data_available(uint64_t id
)
2457 struct lttng_ht_iter iter
;
2458 struct lttng_ht
*ht
;
2459 struct lttng_consumer_stream
*stream
;
2460 struct consumer_relayd_sock_pair
*relayd
;
2461 int (*data_available
)(struct lttng_consumer_stream
*);
2463 DBG("Consumer data available command on session id %" PRIu64
, id
);
2466 pthread_mutex_lock(&consumer_data
.lock
);
2468 switch (consumer_data
.type
) {
2469 case LTTNG_CONSUMER_KERNEL
:
2470 data_available
= lttng_kconsumer_data_available
;
2472 case LTTNG_CONSUMER32_UST
:
2473 case LTTNG_CONSUMER64_UST
:
2474 data_available
= lttng_ustconsumer_data_available
;
2477 ERR("Unknown consumer data type");
2481 /* Ease our life a bit */
2482 ht
= consumer_data
.stream_list_ht
;
2484 cds_lfht_for_each_entry_duplicate(ht
->ht
,
2485 ht
->hash_fct((void *)((unsigned long) id
), 0x42UL
),
2486 ht
->match_fct
, (void *)((unsigned long) id
),
2487 &iter
.iter
, stream
, node_session_id
.node
) {
2488 /* Check the stream for data. */
2489 ret
= data_available(stream
);
2491 goto data_not_available
;
2494 if (stream
->net_seq_idx
!= -1) {
2495 relayd
= consumer_find_relayd(stream
->net_seq_idx
);
2498 pthread_mutex_lock(&stream
->lock
);
2499 pthread_mutex_lock(&relayd
->ctrl_sock_mutex
);
2500 if (stream
->metadata_flag
) {
2501 ret
= relayd_quiescent_control(&relayd
->control_sock
);
2503 ret
= relayd_data_available(&relayd
->control_sock
,
2504 stream
->relayd_stream_id
, stream
->next_net_seq_num
);
2506 pthread_mutex_unlock(&relayd
->ctrl_sock_mutex
);
2507 pthread_mutex_unlock(&stream
->lock
);
2509 goto data_not_available
;
2515 * Finding _no_ node in the hash table means that the stream(s) have been
2516 * removed thus data is guaranteed to be available for analysis from the
2517 * trace files. This is *only* true for local consumer and not network
2521 /* Data is available to be read by a viewer. */
2522 pthread_mutex_unlock(&consumer_data
.lock
);
2527 /* Data is still being extracted from buffers. */
2528 pthread_mutex_unlock(&consumer_data
.lock
);