2 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
3 * Copyright (C) 2018 Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * SPDX-License-Identifier: GPL-2.0-only
15 #include <sys/types.h>
19 #include <common/common.h>
20 #include <common/defaults.h>
21 #include <common/uri.h>
22 #include <common/relayd/relayd.h>
23 #include <common/string-utils/format.h>
26 #include "health-sessiond.h"
29 #include "lttng-sessiond.h"
32 * Return allocated full pathname of the session using the consumer trace path
33 * and subdir if available.
35 * The caller can safely free(3) the returned value. On error, NULL is
38 char *setup_channel_trace_path(struct consumer_output
*consumer
,
39 const char *session_path
, size_t *consumer_path_offset
)
50 * Allocate the string ourself to make sure we never exceed
53 pathname
= zmalloc(LTTNG_PATH_MAX
);
58 /* Get correct path name destination */
59 if (consumer
->type
== CONSUMER_DST_NET
&&
60 consumer
->relay_major_version
== 2 &&
61 consumer
->relay_minor_version
< 11) {
62 ret
= snprintf(pathname
, LTTNG_PATH_MAX
, "%s%s/%s/%s",
63 consumer
->dst
.net
.base_dir
,
64 consumer
->chunk_path
, consumer
->domain_subdir
,
66 *consumer_path_offset
= 0;
68 ret
= snprintf(pathname
, LTTNG_PATH_MAX
, "%s/%s",
69 consumer
->domain_subdir
, session_path
);
70 *consumer_path_offset
= strlen(consumer
->domain_subdir
) + 1;
72 DBG3("Consumer trace path relative to current trace chunk: \"%s\"",
75 PERROR("Failed to format channel path");
77 } else if (ret
>= LTTNG_PATH_MAX
) {
78 ERR("Truncation occurred while formatting channel path");
89 * Send a data payload using a given consumer socket of size len.
91 * The consumer socket lock MUST be acquired before calling this since this
92 * function can change the fd value.
94 * Return 0 on success else a negative value on error.
96 int consumer_socket_send(
97 struct consumer_socket
*socket
, const void *msg
, size_t len
)
103 assert(socket
->fd_ptr
);
106 /* Consumer socket is invalid. Stopping. */
107 fd
= *socket
->fd_ptr
;
112 size
= lttcomm_send_unix_sock(fd
, msg
, len
);
114 /* The above call will print a PERROR on error. */
115 DBG("Error when sending data to consumer on sock %d", fd
);
117 * At this point, the socket is not usable anymore thus closing it and
118 * setting the file descriptor to -1 so it is not reused.
121 /* This call will PERROR on error. */
122 (void) lttcomm_close_unix_sock(fd
);
123 *socket
->fd_ptr
= -1;
134 * Receive a data payload using a given consumer socket of size len.
136 * The consumer socket lock MUST be acquired before calling this since this
137 * function can change the fd value.
139 * Return 0 on success else a negative value on error.
141 int consumer_socket_recv(struct consumer_socket
*socket
, void *msg
, size_t len
)
147 assert(socket
->fd_ptr
);
150 /* Consumer socket is invalid. Stopping. */
151 fd
= *socket
->fd_ptr
;
156 size
= lttcomm_recv_unix_sock(fd
, msg
, len
);
158 /* The above call will print a PERROR on error. */
159 DBG("Error when receiving data from the consumer socket %d", fd
);
161 * At this point, the socket is not usable anymore thus closing it and
162 * setting the file descriptor to -1 so it is not reused.
165 /* This call will PERROR on error. */
166 (void) lttcomm_close_unix_sock(fd
);
167 *socket
->fd_ptr
= -1;
178 * Receive a reply command status message from the consumer. Consumer socket
179 * lock MUST be acquired before calling this function.
181 * Return 0 on success, -1 on recv error or a negative lttng error code which
182 * was possibly returned by the consumer.
184 int consumer_recv_status_reply(struct consumer_socket
*sock
)
187 struct lttcomm_consumer_status_msg reply
;
191 ret
= consumer_socket_recv(sock
, &reply
, sizeof(reply
));
196 if (reply
.ret_code
== LTTCOMM_CONSUMERD_SUCCESS
) {
200 ret
= -reply
.ret_code
;
201 DBG("Consumer ret code %d", ret
);
209 * Once the ASK_CHANNEL command is sent to the consumer, the channel
210 * information are sent back. This call receives that data and populates key
213 * On success return 0 and both key and stream_count are set. On error, a
214 * negative value is sent back and both parameters are untouched.
216 int consumer_recv_status_channel(struct consumer_socket
*sock
,
217 uint64_t *key
, unsigned int *stream_count
)
220 struct lttcomm_consumer_status_channel reply
;
223 assert(stream_count
);
226 ret
= consumer_socket_recv(sock
, &reply
, sizeof(reply
));
231 /* An error is possible so don't touch the key and stream_count. */
232 if (reply
.ret_code
!= LTTCOMM_CONSUMERD_SUCCESS
) {
238 *stream_count
= reply
.stream_count
;
246 * Send destroy relayd command to consumer.
248 * On success return positive value. On error, negative value.
250 int consumer_send_destroy_relayd(struct consumer_socket
*sock
,
251 struct consumer_output
*consumer
)
254 struct lttcomm_consumer_msg msg
;
259 DBG2("Sending destroy relayd command to consumer sock %d", *sock
->fd_ptr
);
261 memset(&msg
, 0, sizeof(msg
));
262 msg
.cmd_type
= LTTNG_CONSUMER_DESTROY_RELAYD
;
263 msg
.u
.destroy_relayd
.net_seq_idx
= consumer
->net_seq_index
;
265 pthread_mutex_lock(sock
->lock
);
266 ret
= consumer_socket_send(sock
, &msg
, sizeof(msg
));
271 /* Don't check the return value. The caller will do it. */
272 ret
= consumer_recv_status_reply(sock
);
274 DBG2("Consumer send destroy relayd command done");
277 pthread_mutex_unlock(sock
->lock
);
282 * For each consumer socket in the consumer output object, send a destroy
285 void consumer_output_send_destroy_relayd(struct consumer_output
*consumer
)
287 struct lttng_ht_iter iter
;
288 struct consumer_socket
*socket
;
292 /* Destroy any relayd connection */
293 if (consumer
->type
== CONSUMER_DST_NET
) {
295 cds_lfht_for_each_entry(consumer
->socks
->ht
, &iter
.iter
, socket
,
299 /* Send destroy relayd command */
300 ret
= consumer_send_destroy_relayd(socket
, consumer
);
302 DBG("Unable to send destroy relayd command to consumer");
303 /* Continue since we MUST delete everything at this point. */
311 * From a consumer_data structure, allocate and add a consumer socket to the
314 * Return 0 on success, else negative value on error
316 int consumer_create_socket(struct consumer_data
*data
,
317 struct consumer_output
*output
)
320 struct consumer_socket
*socket
;
324 if (output
== NULL
|| data
->cmd_sock
< 0) {
326 * Not an error. Possible there is simply not spawned consumer or it's
327 * disabled for the tracing session asking the socket.
333 socket
= consumer_find_socket(data
->cmd_sock
, output
);
335 if (socket
== NULL
) {
336 socket
= consumer_allocate_socket(&data
->cmd_sock
);
337 if (socket
== NULL
) {
342 socket
->registered
= 0;
343 socket
->lock
= &data
->lock
;
345 consumer_add_socket(socket
, output
);
349 socket
->type
= data
->type
;
351 DBG3("Consumer socket created (fd: %d) and added to output",
359 * Return the consumer socket from the given consumer output with the right
360 * bitness. On error, returns NULL.
362 * The caller MUST acquire a rcu read side lock and keep it until the socket
363 * object reference is not needed anymore.
365 struct consumer_socket
*consumer_find_socket_by_bitness(int bits
,
366 const struct consumer_output
*consumer
)
369 struct consumer_socket
*socket
= NULL
;
373 consumer_fd
= uatomic_read(&the_ust_consumerd64_fd
);
376 consumer_fd
= uatomic_read(&the_ust_consumerd32_fd
);
383 socket
= consumer_find_socket(consumer_fd
, consumer
);
385 ERR("Consumer socket fd %d not found in consumer obj %p",
386 consumer_fd
, consumer
);
394 * Find a consumer_socket in a consumer_output hashtable. Read side lock must
395 * be acquired before calling this function and across use of the
396 * returned consumer_socket.
398 struct consumer_socket
*consumer_find_socket(int key
,
399 const struct consumer_output
*consumer
)
401 struct lttng_ht_iter iter
;
402 struct lttng_ht_node_ulong
*node
;
403 struct consumer_socket
*socket
= NULL
;
405 /* Negative keys are lookup failures */
406 if (key
< 0 || consumer
== NULL
) {
410 lttng_ht_lookup(consumer
->socks
, (void *)((unsigned long) key
),
412 node
= lttng_ht_iter_get_node_ulong(&iter
);
414 socket
= caa_container_of(node
, struct consumer_socket
, node
);
421 * Allocate a new consumer_socket and return the pointer.
423 struct consumer_socket
*consumer_allocate_socket(int *fd
)
425 struct consumer_socket
*socket
= NULL
;
429 socket
= zmalloc(sizeof(struct consumer_socket
));
430 if (socket
== NULL
) {
431 PERROR("zmalloc consumer socket");
436 lttng_ht_node_init_ulong(&socket
->node
, *fd
);
443 * Add consumer socket to consumer output object. Read side lock must be
444 * acquired before calling this function.
446 void consumer_add_socket(struct consumer_socket
*sock
,
447 struct consumer_output
*consumer
)
452 lttng_ht_add_unique_ulong(consumer
->socks
, &sock
->node
);
456 * Delete consumer socket to consumer output object. Read side lock must be
457 * acquired before calling this function.
459 void consumer_del_socket(struct consumer_socket
*sock
,
460 struct consumer_output
*consumer
)
463 struct lttng_ht_iter iter
;
468 iter
.iter
.node
= &sock
->node
.node
;
469 ret
= lttng_ht_del(consumer
->socks
, &iter
);
474 * RCU destroy call function.
476 static void destroy_socket_rcu(struct rcu_head
*head
)
478 struct lttng_ht_node_ulong
*node
=
479 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
480 struct consumer_socket
*socket
=
481 caa_container_of(node
, struct consumer_socket
, node
);
487 * Destroy and free socket pointer in a call RCU. Read side lock must be
488 * acquired before calling this function.
490 void consumer_destroy_socket(struct consumer_socket
*sock
)
495 * We DO NOT close the file descriptor here since it is global to the
496 * session daemon and is closed only if the consumer dies or a custom
497 * consumer was registered,
499 if (sock
->registered
) {
500 DBG3("Consumer socket was registered. Closing fd %d", *sock
->fd_ptr
);
501 lttcomm_close_unix_sock(*sock
->fd_ptr
);
504 call_rcu(&sock
->node
.head
, destroy_socket_rcu
);
508 * Allocate and assign data to a consumer_output object.
510 * Return pointer to structure.
512 struct consumer_output
*consumer_create_output(enum consumer_dst_type type
)
514 struct consumer_output
*output
= NULL
;
516 output
= zmalloc(sizeof(struct consumer_output
));
517 if (output
== NULL
) {
518 PERROR("zmalloc consumer_output");
522 /* By default, consumer output is enabled */
525 output
->net_seq_index
= (uint64_t) -1ULL;
526 urcu_ref_init(&output
->ref
);
528 output
->socks
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
535 * Iterate over the consumer output socket hash table and destroy them. The
536 * socket file descriptor are only closed if the consumer output was
537 * registered meaning it's an external consumer.
539 void consumer_destroy_output_sockets(struct consumer_output
*obj
)
541 struct lttng_ht_iter iter
;
542 struct consumer_socket
*socket
;
549 cds_lfht_for_each_entry(obj
->socks
->ht
, &iter
.iter
, socket
, node
.node
) {
550 consumer_del_socket(socket
, obj
);
551 consumer_destroy_socket(socket
);
557 * Delete the consumer_output object from the list and free the ptr.
559 * Should *NOT* be called with RCU read-side lock held.
561 static void consumer_release_output(struct urcu_ref
*ref
)
563 struct consumer_output
*obj
=
564 caa_container_of(ref
, struct consumer_output
, ref
);
566 consumer_destroy_output_sockets(obj
);
569 /* Finally destroy HT */
570 ht_cleanup_push(obj
->socks
);
577 * Get the consumer_output object.
579 void consumer_output_get(struct consumer_output
*obj
)
581 urcu_ref_get(&obj
->ref
);
585 * Put the consumer_output object.
587 * Should *NOT* be called with RCU read-side lock held.
589 void consumer_output_put(struct consumer_output
*obj
)
594 urcu_ref_put(&obj
->ref
, consumer_release_output
);
598 * Copy consumer output and returned the newly allocated copy.
600 * Should *NOT* be called with RCU read-side lock held.
602 struct consumer_output
*consumer_copy_output(struct consumer_output
*src
)
605 struct consumer_output
*output
;
609 output
= consumer_create_output(src
->type
);
610 if (output
== NULL
) {
613 output
->enabled
= src
->enabled
;
614 output
->net_seq_index
= src
->net_seq_index
;
615 memcpy(output
->domain_subdir
, src
->domain_subdir
,
616 sizeof(output
->domain_subdir
));
617 output
->snapshot
= src
->snapshot
;
618 output
->relay_major_version
= src
->relay_major_version
;
619 output
->relay_minor_version
= src
->relay_minor_version
;
620 output
->relay_allows_clear
= src
->relay_allows_clear
;
621 memcpy(&output
->dst
, &src
->dst
, sizeof(output
->dst
));
622 ret
= consumer_copy_sockets(output
, src
);
630 consumer_output_put(output
);
635 * Copy consumer sockets from src to dst.
637 * Return 0 on success or else a negative value.
639 int consumer_copy_sockets(struct consumer_output
*dst
,
640 struct consumer_output
*src
)
643 struct lttng_ht_iter iter
;
644 struct consumer_socket
*socket
, *copy_sock
;
650 cds_lfht_for_each_entry(src
->socks
->ht
, &iter
.iter
, socket
, node
.node
) {
651 /* Ignore socket that are already there. */
652 copy_sock
= consumer_find_socket(*socket
->fd_ptr
, dst
);
657 /* Create new socket object. */
658 copy_sock
= consumer_allocate_socket(socket
->fd_ptr
);
659 if (copy_sock
== NULL
) {
665 copy_sock
->registered
= socket
->registered
;
667 * This is valid because this lock is shared accross all consumer
668 * object being the global lock of the consumer data structure of the
671 copy_sock
->lock
= socket
->lock
;
672 consumer_add_socket(copy_sock
, dst
);
681 * Set network URI to the consumer output.
683 * Return 0 on success. Return 1 if the URI were equal. Else, negative value on
686 int consumer_set_network_uri(const struct ltt_session
*session
,
687 struct consumer_output
*output
,
688 struct lttng_uri
*uri
)
691 struct lttng_uri
*dst_uri
= NULL
;
693 /* Code flow error safety net. */
697 switch (uri
->stype
) {
698 case LTTNG_STREAM_CONTROL
:
699 dst_uri
= &output
->dst
.net
.control
;
700 output
->dst
.net
.control_isset
= 1;
701 if (uri
->port
== 0) {
702 /* Assign default port. */
703 uri
->port
= DEFAULT_NETWORK_CONTROL_PORT
;
705 if (output
->dst
.net
.data_isset
&& uri
->port
==
706 output
->dst
.net
.data
.port
) {
707 ret
= -LTTNG_ERR_INVALID
;
711 DBG3("Consumer control URI set with port %d", uri
->port
);
713 case LTTNG_STREAM_DATA
:
714 dst_uri
= &output
->dst
.net
.data
;
715 output
->dst
.net
.data_isset
= 1;
716 if (uri
->port
== 0) {
717 /* Assign default port. */
718 uri
->port
= DEFAULT_NETWORK_DATA_PORT
;
720 if (output
->dst
.net
.control_isset
&& uri
->port
==
721 output
->dst
.net
.control
.port
) {
722 ret
= -LTTNG_ERR_INVALID
;
726 DBG3("Consumer data URI set with port %d", uri
->port
);
729 ERR("Set network uri type unknown %d", uri
->stype
);
730 ret
= -LTTNG_ERR_INVALID
;
734 ret
= uri_compare(dst_uri
, uri
);
736 /* Same URI, don't touch it and return success. */
737 DBG3("URI network compare are the same");
741 /* URIs were not equal, replacing it. */
742 memcpy(dst_uri
, uri
, sizeof(struct lttng_uri
));
743 output
->type
= CONSUMER_DST_NET
;
744 if (dst_uri
->stype
!= LTTNG_STREAM_CONTROL
) {
745 /* Only the control uri needs to contain the path. */
750 * If the user has specified a subdir as part of the control
751 * URL, the session's base output directory is:
752 * /RELAYD_OUTPUT_PATH/HOSTNAME/USER_SPECIFIED_DIR
754 * Hence, the "base_dir" from which all stream files and
755 * session rotation chunks are created takes the form
756 * /HOSTNAME/USER_SPECIFIED_DIR
758 * If the user has not specified an output directory as part of
759 * the control URL, the base output directory has the form:
760 * /RELAYD_OUTPUT_PATH/HOSTNAME/SESSION_NAME-CREATION_TIME
762 * Hence, the "base_dir" from which all stream files and
763 * session rotation chunks are created takes the form
764 * /HOSTNAME/SESSION_NAME-CREATION_TIME
766 * Note that automatically generated session names already
767 * contain the session's creation time. In that case, the
768 * creation time is omitted to prevent it from being duplicated
769 * in the final directory hierarchy.
772 if (strstr(uri
->subdir
, "../")) {
773 ERR("Network URI subdirs are not allowed to walk up the path hierarchy");
774 ret
= -LTTNG_ERR_INVALID
;
777 ret
= snprintf(output
->dst
.net
.base_dir
,
778 sizeof(output
->dst
.net
.base_dir
),
779 "/%s/%s/", session
->hostname
, uri
->subdir
);
781 if (session
->has_auto_generated_name
) {
782 ret
= snprintf(output
->dst
.net
.base_dir
,
783 sizeof(output
->dst
.net
.base_dir
),
784 "/%s/%s/", session
->hostname
,
787 char session_creation_datetime
[16];
791 timeinfo
= localtime(&session
->creation_time
);
793 ret
= -LTTNG_ERR_FATAL
;
796 strftime_ret
= strftime(session_creation_datetime
,
797 sizeof(session_creation_datetime
),
798 "%Y%m%d-%H%M%S", timeinfo
);
799 if (strftime_ret
== 0) {
800 ERR("Failed to format session creation timestamp while setting network URI");
801 ret
= -LTTNG_ERR_FATAL
;
804 ret
= snprintf(output
->dst
.net
.base_dir
,
805 sizeof(output
->dst
.net
.base_dir
),
806 "/%s/%s-%s/", session
->hostname
,
808 session_creation_datetime
);
811 if (ret
>= sizeof(output
->dst
.net
.base_dir
)) {
812 ret
= -LTTNG_ERR_INVALID
;
813 ERR("Truncation occurred while setting network output base directory");
815 } else if (ret
== -1) {
816 ret
= -LTTNG_ERR_INVALID
;
817 PERROR("Error occurred while setting network output base directory");
821 DBG3("Consumer set network uri base_dir path %s",
822 output
->dst
.net
.base_dir
);
833 * Send file descriptor to consumer via sock.
835 * The consumer socket lock must be held by the caller.
837 int consumer_send_fds(struct consumer_socket
*sock
, const int *fds
,
845 assert(pthread_mutex_trylock(sock
->lock
) == EBUSY
);
847 ret
= lttcomm_send_fds_unix_sock(*sock
->fd_ptr
, fds
, nb_fd
);
849 /* The above call will print a PERROR on error. */
850 DBG("Error when sending consumer fds on sock %d", *sock
->fd_ptr
);
854 ret
= consumer_recv_status_reply(sock
);
860 * Consumer send communication message structure to consumer.
862 * The consumer socket lock must be held by the caller.
864 int consumer_send_msg(struct consumer_socket
*sock
,
865 const struct lttcomm_consumer_msg
*msg
)
871 assert(pthread_mutex_trylock(sock
->lock
) == EBUSY
);
873 ret
= consumer_socket_send(sock
, msg
, sizeof(struct lttcomm_consumer_msg
));
878 ret
= consumer_recv_status_reply(sock
);
885 * Consumer send channel communication message structure to consumer.
887 * The consumer socket lock must be held by the caller.
889 int consumer_send_channel(struct consumer_socket
*sock
,
890 struct lttcomm_consumer_msg
*msg
)
897 ret
= consumer_send_msg(sock
, msg
);
907 * Populate the given consumer msg structure with the ask_channel command
910 void consumer_init_ask_channel_comm_msg(struct lttcomm_consumer_msg
*msg
,
911 uint64_t subbuf_size
,
914 unsigned int switch_timer_interval
,
915 unsigned int read_timer_interval
,
916 unsigned int live_timer_interval
,
917 bool is_in_live_session
,
918 unsigned int monitor_timer_interval
,
922 const char *pathname
,
928 uint64_t tracefile_size
,
929 uint64_t tracefile_count
,
930 uint64_t session_id_per_pid
,
931 unsigned int monitor
,
932 uint32_t ust_app_uid
,
933 int64_t blocking_timeout
,
934 const char *root_shm_path
,
935 const char *shm_path
,
936 struct lttng_trace_chunk
*trace_chunk
,
937 const struct lttng_credentials
*buffer_credentials
)
941 /* Zeroed structure */
942 memset(msg
, 0, sizeof(struct lttcomm_consumer_msg
));
943 msg
->u
.ask_channel
.buffer_credentials
.uid
= UINT32_MAX
;
944 msg
->u
.ask_channel
.buffer_credentials
.gid
= UINT32_MAX
;
948 enum lttng_trace_chunk_status chunk_status
;
950 chunk_status
= lttng_trace_chunk_get_id(trace_chunk
, &chunk_id
);
951 assert(chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
);
952 LTTNG_OPTIONAL_SET(&msg
->u
.ask_channel
.chunk_id
, chunk_id
);
954 msg
->u
.ask_channel
.buffer_credentials
.uid
=
955 lttng_credentials_get_uid(buffer_credentials
);
956 msg
->u
.ask_channel
.buffer_credentials
.gid
=
957 lttng_credentials_get_gid(buffer_credentials
);
959 msg
->cmd_type
= LTTNG_CONSUMER_ASK_CHANNEL_CREATION
;
960 msg
->u
.ask_channel
.subbuf_size
= subbuf_size
;
961 msg
->u
.ask_channel
.num_subbuf
= num_subbuf
;
962 msg
->u
.ask_channel
.overwrite
= overwrite
;
963 msg
->u
.ask_channel
.switch_timer_interval
= switch_timer_interval
;
964 msg
->u
.ask_channel
.read_timer_interval
= read_timer_interval
;
965 msg
->u
.ask_channel
.live_timer_interval
= live_timer_interval
;
966 msg
->u
.ask_channel
.is_live
= is_in_live_session
;
967 msg
->u
.ask_channel
.monitor_timer_interval
= monitor_timer_interval
;
968 msg
->u
.ask_channel
.output
= output
;
969 msg
->u
.ask_channel
.type
= type
;
970 msg
->u
.ask_channel
.session_id
= session_id
;
971 msg
->u
.ask_channel
.session_id_per_pid
= session_id_per_pid
;
972 msg
->u
.ask_channel
.relayd_id
= relayd_id
;
973 msg
->u
.ask_channel
.key
= key
;
974 msg
->u
.ask_channel
.chan_id
= chan_id
;
975 msg
->u
.ask_channel
.tracefile_size
= tracefile_size
;
976 msg
->u
.ask_channel
.tracefile_count
= tracefile_count
;
977 msg
->u
.ask_channel
.monitor
= monitor
;
978 msg
->u
.ask_channel
.ust_app_uid
= ust_app_uid
;
979 msg
->u
.ask_channel
.blocking_timeout
= blocking_timeout
;
981 memcpy(msg
->u
.ask_channel
.uuid
, uuid
, sizeof(msg
->u
.ask_channel
.uuid
));
984 strncpy(msg
->u
.ask_channel
.pathname
, pathname
,
985 sizeof(msg
->u
.ask_channel
.pathname
));
986 msg
->u
.ask_channel
.pathname
[sizeof(msg
->u
.ask_channel
.pathname
)-1] = '\0';
989 strncpy(msg
->u
.ask_channel
.name
, name
, sizeof(msg
->u
.ask_channel
.name
));
990 msg
->u
.ask_channel
.name
[sizeof(msg
->u
.ask_channel
.name
) - 1] = '\0';
993 strncpy(msg
->u
.ask_channel
.root_shm_path
, root_shm_path
,
994 sizeof(msg
->u
.ask_channel
.root_shm_path
));
995 msg
->u
.ask_channel
.root_shm_path
[sizeof(msg
->u
.ask_channel
.root_shm_path
) - 1] = '\0';
998 strncpy(msg
->u
.ask_channel
.shm_path
, shm_path
,
999 sizeof(msg
->u
.ask_channel
.shm_path
));
1000 msg
->u
.ask_channel
.shm_path
[sizeof(msg
->u
.ask_channel
.shm_path
) - 1] = '\0';
1005 * Init channel communication message structure.
1007 void consumer_init_add_channel_comm_msg(struct lttcomm_consumer_msg
*msg
,
1008 uint64_t channel_key
,
1009 uint64_t session_id
,
1010 const char *pathname
,
1015 unsigned int nb_init_streams
,
1016 enum lttng_event_output output
,
1018 uint64_t tracefile_size
,
1019 uint64_t tracefile_count
,
1020 unsigned int monitor
,
1021 unsigned int live_timer_interval
,
1022 bool is_in_live_session
,
1023 unsigned int monitor_timer_interval
,
1024 struct lttng_trace_chunk
*trace_chunk
)
1028 /* Zeroed structure */
1029 memset(msg
, 0, sizeof(struct lttcomm_consumer_msg
));
1033 enum lttng_trace_chunk_status chunk_status
;
1035 chunk_status
= lttng_trace_chunk_get_id(trace_chunk
, &chunk_id
);
1036 assert(chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
);
1037 LTTNG_OPTIONAL_SET(&msg
->u
.channel
.chunk_id
, chunk_id
);
1041 msg
->cmd_type
= LTTNG_CONSUMER_ADD_CHANNEL
;
1042 msg
->u
.channel
.channel_key
= channel_key
;
1043 msg
->u
.channel
.session_id
= session_id
;
1044 msg
->u
.channel
.relayd_id
= relayd_id
;
1045 msg
->u
.channel
.nb_init_streams
= nb_init_streams
;
1046 msg
->u
.channel
.output
= output
;
1047 msg
->u
.channel
.type
= type
;
1048 msg
->u
.channel
.tracefile_size
= tracefile_size
;
1049 msg
->u
.channel
.tracefile_count
= tracefile_count
;
1050 msg
->u
.channel
.monitor
= monitor
;
1051 msg
->u
.channel
.live_timer_interval
= live_timer_interval
;
1052 msg
->u
.channel
.is_live
= is_in_live_session
;
1053 msg
->u
.channel
.monitor_timer_interval
= monitor_timer_interval
;
1055 strncpy(msg
->u
.channel
.pathname
, pathname
,
1056 sizeof(msg
->u
.channel
.pathname
));
1057 msg
->u
.channel
.pathname
[sizeof(msg
->u
.channel
.pathname
) - 1] = '\0';
1059 strncpy(msg
->u
.channel
.name
, name
, sizeof(msg
->u
.channel
.name
));
1060 msg
->u
.channel
.name
[sizeof(msg
->u
.channel
.name
) - 1] = '\0';
1064 * Init stream communication message structure.
1066 void consumer_init_add_stream_comm_msg(struct lttcomm_consumer_msg
*msg
,
1067 uint64_t channel_key
,
1068 uint64_t stream_key
,
1073 memset(msg
, 0, sizeof(struct lttcomm_consumer_msg
));
1075 msg
->cmd_type
= LTTNG_CONSUMER_ADD_STREAM
;
1076 msg
->u
.stream
.channel_key
= channel_key
;
1077 msg
->u
.stream
.stream_key
= stream_key
;
1078 msg
->u
.stream
.cpu
= cpu
;
1081 void consumer_init_streams_sent_comm_msg(struct lttcomm_consumer_msg
*msg
,
1082 enum lttng_consumer_command cmd
,
1083 uint64_t channel_key
, uint64_t net_seq_idx
)
1087 memset(msg
, 0, sizeof(struct lttcomm_consumer_msg
));
1089 msg
->cmd_type
= cmd
;
1090 msg
->u
.sent_streams
.channel_key
= channel_key
;
1091 msg
->u
.sent_streams
.net_seq_idx
= net_seq_idx
;
1095 * Send stream communication structure to the consumer.
1097 int consumer_send_stream(struct consumer_socket
*sock
,
1098 struct consumer_output
*dst
, struct lttcomm_consumer_msg
*msg
,
1099 const int *fds
, size_t nb_fd
)
1108 ret
= consumer_send_msg(sock
, msg
);
1113 ret
= consumer_send_fds(sock
, fds
, nb_fd
);
1123 * Send relayd socket to consumer associated with a session name.
1125 * The consumer socket lock must be held by the caller.
1127 * On success return positive value. On error, negative value.
1129 int consumer_send_relayd_socket(struct consumer_socket
*consumer_sock
,
1130 struct lttcomm_relayd_sock
*rsock
, struct consumer_output
*consumer
,
1131 enum lttng_stream_type type
, uint64_t session_id
,
1132 const char *session_name
, const char *hostname
,
1133 const char *base_path
, int session_live_timer
,
1134 const uint64_t *current_chunk_id
, time_t session_creation_time
,
1135 bool session_name_contains_creation_time
)
1138 struct lttcomm_consumer_msg msg
;
1140 /* Code flow error. Safety net. */
1143 assert(consumer_sock
);
1145 memset(&msg
, 0, sizeof(msg
));
1146 /* Bail out if consumer is disabled */
1147 if (!consumer
->enabled
) {
1152 if (type
== LTTNG_STREAM_CONTROL
) {
1153 char output_path
[LTTNG_PATH_MAX
] = {};
1154 uint64_t relayd_session_id
;
1156 ret
= relayd_create_session(rsock
, &relayd_session_id
,
1157 session_name
, hostname
, base_path
,
1158 session_live_timer
, consumer
->snapshot
,
1159 session_id
, the_sessiond_uuid
, current_chunk_id
,
1160 session_creation_time
,
1161 session_name_contains_creation_time
,
1164 /* Close the control socket. */
1165 (void) relayd_close(rsock
);
1168 msg
.u
.relayd_sock
.relayd_session_id
= relayd_session_id
;
1169 DBG("Created session on relay, output path reply: %s",
1173 msg
.cmd_type
= LTTNG_CONSUMER_ADD_RELAYD_SOCKET
;
1175 * Assign network consumer output index using the temporary consumer since
1176 * this call should only be made from within a set_consumer_uri() function
1177 * call in the session daemon.
1179 msg
.u
.relayd_sock
.net_index
= consumer
->net_seq_index
;
1180 msg
.u
.relayd_sock
.type
= type
;
1181 msg
.u
.relayd_sock
.session_id
= session_id
;
1182 memcpy(&msg
.u
.relayd_sock
.sock
, rsock
, sizeof(msg
.u
.relayd_sock
.sock
));
1184 DBG3("Sending relayd sock info to consumer on %d", *consumer_sock
->fd_ptr
);
1185 ret
= consumer_send_msg(consumer_sock
, &msg
);
1190 DBG3("Sending relayd socket file descriptor to consumer");
1191 ret
= consumer_send_fds(consumer_sock
, ALIGNED_CONST_PTR(rsock
->sock
.fd
), 1);
1196 DBG2("Consumer relayd socket sent");
1203 int consumer_send_pipe(struct consumer_socket
*consumer_sock
,
1204 enum lttng_consumer_command cmd
, int pipe
)
1207 struct lttcomm_consumer_msg msg
;
1208 const char *pipe_name
;
1209 const char *command_name
;
1212 case LTTNG_CONSUMER_SET_CHANNEL_MONITOR_PIPE
:
1213 pipe_name
= "channel monitor";
1214 command_name
= "SET_CHANNEL_MONITOR_PIPE";
1217 ERR("Unexpected command received in %s (cmd = %d)", __func__
,
1222 /* Code flow error. Safety net. */
1224 memset(&msg
, 0, sizeof(msg
));
1227 pthread_mutex_lock(consumer_sock
->lock
);
1228 DBG3("Sending %s command to consumer", command_name
);
1229 ret
= consumer_send_msg(consumer_sock
, &msg
);
1234 DBG3("Sending %s pipe %d to consumer on socket %d",
1236 pipe
, *consumer_sock
->fd_ptr
);
1237 ret
= consumer_send_fds(consumer_sock
, &pipe
, 1);
1242 DBG2("%s pipe successfully sent", pipe_name
);
1244 pthread_mutex_unlock(consumer_sock
->lock
);
1248 int consumer_send_channel_monitor_pipe(struct consumer_socket
*consumer_sock
,
1251 return consumer_send_pipe(consumer_sock
,
1252 LTTNG_CONSUMER_SET_CHANNEL_MONITOR_PIPE
, pipe
);
1256 * Ask the consumer if the data is pending for the specific session id.
1257 * Returns 1 if data is pending, 0 otherwise, or < 0 on error.
1259 int consumer_is_data_pending(uint64_t session_id
,
1260 struct consumer_output
*consumer
)
1263 int32_t ret_code
= 0; /* Default is that the data is NOT pending */
1264 struct consumer_socket
*socket
;
1265 struct lttng_ht_iter iter
;
1266 struct lttcomm_consumer_msg msg
;
1270 DBG3("Consumer data pending for id %" PRIu64
, session_id
);
1272 memset(&msg
, 0, sizeof(msg
));
1273 msg
.cmd_type
= LTTNG_CONSUMER_DATA_PENDING
;
1274 msg
.u
.data_pending
.session_id
= session_id
;
1276 /* Send command for each consumer */
1278 cds_lfht_for_each_entry(consumer
->socks
->ht
, &iter
.iter
, socket
,
1280 pthread_mutex_lock(socket
->lock
);
1281 ret
= consumer_socket_send(socket
, &msg
, sizeof(msg
));
1283 pthread_mutex_unlock(socket
->lock
);
1288 * No need for a recv reply status because the answer to the command is
1289 * the reply status message.
1292 ret
= consumer_socket_recv(socket
, &ret_code
, sizeof(ret_code
));
1294 pthread_mutex_unlock(socket
->lock
);
1297 pthread_mutex_unlock(socket
->lock
);
1299 if (ret_code
== 1) {
1305 DBG("Consumer data is %s pending for session id %" PRIu64
,
1306 ret_code
== 1 ? "" : "NOT", session_id
);
1315 * Send a flush command to consumer using the given channel key.
1317 * Return 0 on success else a negative value.
1319 int consumer_flush_channel(struct consumer_socket
*socket
, uint64_t key
)
1322 struct lttcomm_consumer_msg msg
;
1326 DBG2("Consumer flush channel key %" PRIu64
, key
);
1328 memset(&msg
, 0, sizeof(msg
));
1329 msg
.cmd_type
= LTTNG_CONSUMER_FLUSH_CHANNEL
;
1330 msg
.u
.flush_channel
.key
= key
;
1332 pthread_mutex_lock(socket
->lock
);
1333 health_code_update();
1335 ret
= consumer_send_msg(socket
, &msg
);
1341 health_code_update();
1342 pthread_mutex_unlock(socket
->lock
);
1347 * Send a clear quiescent command to consumer using the given channel key.
1349 * Return 0 on success else a negative value.
1351 int consumer_clear_quiescent_channel(struct consumer_socket
*socket
, uint64_t key
)
1354 struct lttcomm_consumer_msg msg
;
1358 DBG2("Consumer clear quiescent channel key %" PRIu64
, key
);
1360 memset(&msg
, 0, sizeof(msg
));
1361 msg
.cmd_type
= LTTNG_CONSUMER_CLEAR_QUIESCENT_CHANNEL
;
1362 msg
.u
.clear_quiescent_channel
.key
= key
;
1364 pthread_mutex_lock(socket
->lock
);
1365 health_code_update();
1367 ret
= consumer_send_msg(socket
, &msg
);
1373 health_code_update();
1374 pthread_mutex_unlock(socket
->lock
);
1379 * Send a close metadata command to consumer using the given channel key.
1380 * Called with registry lock held.
1382 * Return 0 on success else a negative value.
1384 int consumer_close_metadata(struct consumer_socket
*socket
,
1385 uint64_t metadata_key
)
1388 struct lttcomm_consumer_msg msg
;
1392 DBG2("Consumer close metadata channel key %" PRIu64
, metadata_key
);
1394 memset(&msg
, 0, sizeof(msg
));
1395 msg
.cmd_type
= LTTNG_CONSUMER_CLOSE_METADATA
;
1396 msg
.u
.close_metadata
.key
= metadata_key
;
1398 pthread_mutex_lock(socket
->lock
);
1399 health_code_update();
1401 ret
= consumer_send_msg(socket
, &msg
);
1407 health_code_update();
1408 pthread_mutex_unlock(socket
->lock
);
1413 * Send a setup metdata command to consumer using the given channel key.
1415 * Return 0 on success else a negative value.
1417 int consumer_setup_metadata(struct consumer_socket
*socket
,
1418 uint64_t metadata_key
)
1421 struct lttcomm_consumer_msg msg
;
1425 DBG2("Consumer setup metadata channel key %" PRIu64
, metadata_key
);
1427 memset(&msg
, 0, sizeof(msg
));
1428 msg
.cmd_type
= LTTNG_CONSUMER_SETUP_METADATA
;
1429 msg
.u
.setup_metadata
.key
= metadata_key
;
1431 pthread_mutex_lock(socket
->lock
);
1432 health_code_update();
1434 ret
= consumer_send_msg(socket
, &msg
);
1440 health_code_update();
1441 pthread_mutex_unlock(socket
->lock
);
1446 * Send metadata string to consumer.
1447 * RCU read-side lock must be held to guarantee existence of socket.
1449 * Return 0 on success else a negative value.
1451 int consumer_push_metadata(struct consumer_socket
*socket
,
1452 uint64_t metadata_key
, char *metadata_str
, size_t len
,
1453 size_t target_offset
, uint64_t version
)
1456 struct lttcomm_consumer_msg msg
;
1460 DBG2("Consumer push metadata to consumer socket %d", *socket
->fd_ptr
);
1462 pthread_mutex_lock(socket
->lock
);
1464 memset(&msg
, 0, sizeof(msg
));
1465 msg
.cmd_type
= LTTNG_CONSUMER_PUSH_METADATA
;
1466 msg
.u
.push_metadata
.key
= metadata_key
;
1467 msg
.u
.push_metadata
.target_offset
= target_offset
;
1468 msg
.u
.push_metadata
.len
= len
;
1469 msg
.u
.push_metadata
.version
= version
;
1471 health_code_update();
1472 ret
= consumer_send_msg(socket
, &msg
);
1473 if (ret
< 0 || len
== 0) {
1477 DBG3("Consumer pushing metadata on sock %d of len %zu", *socket
->fd_ptr
,
1480 ret
= consumer_socket_send(socket
, metadata_str
, len
);
1485 health_code_update();
1486 ret
= consumer_recv_status_reply(socket
);
1492 pthread_mutex_unlock(socket
->lock
);
1493 health_code_update();
1498 * Ask the consumer to snapshot a specific channel using the key.
1500 * Returns LTTNG_OK on success or else an LTTng error code.
1502 enum lttng_error_code
consumer_snapshot_channel(struct consumer_socket
*socket
,
1503 uint64_t key
, const struct consumer_output
*output
, int metadata
,
1504 uid_t uid
, gid_t gid
, const char *channel_path
, int wait
,
1505 uint64_t nb_packets_per_stream
)
1508 enum lttng_error_code status
= LTTNG_OK
;
1509 struct lttcomm_consumer_msg msg
;
1514 DBG("Consumer snapshot channel key %" PRIu64
, key
);
1516 memset(&msg
, 0, sizeof(msg
));
1517 msg
.cmd_type
= LTTNG_CONSUMER_SNAPSHOT_CHANNEL
;
1518 msg
.u
.snapshot_channel
.key
= key
;
1519 msg
.u
.snapshot_channel
.nb_packets_per_stream
= nb_packets_per_stream
;
1520 msg
.u
.snapshot_channel
.metadata
= metadata
;
1522 if (output
->type
== CONSUMER_DST_NET
) {
1523 msg
.u
.snapshot_channel
.relayd_id
=
1524 output
->net_seq_index
;
1525 msg
.u
.snapshot_channel
.use_relayd
= 1;
1527 msg
.u
.snapshot_channel
.relayd_id
= (uint64_t) -1ULL;
1529 ret
= lttng_strncpy(msg
.u
.snapshot_channel
.pathname
,
1531 sizeof(msg
.u
.snapshot_channel
.pathname
));
1533 ERR("Snapshot path exceeds the maximal allowed length of %zu bytes (%zu bytes required) with path \"%s\"",
1534 sizeof(msg
.u
.snapshot_channel
.pathname
),
1535 strlen(channel_path
),
1537 status
= LTTNG_ERR_SNAPSHOT_FAIL
;
1541 health_code_update();
1542 pthread_mutex_lock(socket
->lock
);
1543 ret
= consumer_send_msg(socket
, &msg
);
1544 pthread_mutex_unlock(socket
->lock
);
1547 case LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
:
1548 status
= LTTNG_ERR_CHAN_NOT_FOUND
;
1551 status
= LTTNG_ERR_SNAPSHOT_FAIL
;
1558 health_code_update();
1563 * Ask the consumer the number of discarded events for a channel.
1565 int consumer_get_discarded_events(uint64_t session_id
, uint64_t channel_key
,
1566 struct consumer_output
*consumer
, uint64_t *discarded
)
1569 struct consumer_socket
*socket
;
1570 struct lttng_ht_iter iter
;
1571 struct lttcomm_consumer_msg msg
;
1575 DBG3("Consumer discarded events id %" PRIu64
, session_id
);
1577 memset(&msg
, 0, sizeof(msg
));
1578 msg
.cmd_type
= LTTNG_CONSUMER_DISCARDED_EVENTS
;
1579 msg
.u
.discarded_events
.session_id
= session_id
;
1580 msg
.u
.discarded_events
.channel_key
= channel_key
;
1584 /* Send command for each consumer */
1586 cds_lfht_for_each_entry(consumer
->socks
->ht
, &iter
.iter
, socket
,
1588 uint64_t consumer_discarded
= 0;
1589 pthread_mutex_lock(socket
->lock
);
1590 ret
= consumer_socket_send(socket
, &msg
, sizeof(msg
));
1592 pthread_mutex_unlock(socket
->lock
);
1597 * No need for a recv reply status because the answer to the
1598 * command is the reply status message.
1600 ret
= consumer_socket_recv(socket
, &consumer_discarded
,
1601 sizeof(consumer_discarded
));
1603 ERR("get discarded events");
1604 pthread_mutex_unlock(socket
->lock
);
1607 pthread_mutex_unlock(socket
->lock
);
1608 *discarded
+= consumer_discarded
;
1611 DBG("Consumer discarded %" PRIu64
" events in session id %" PRIu64
,
1612 *discarded
, session_id
);
1620 * Ask the consumer the number of lost packets for a channel.
1622 int consumer_get_lost_packets(uint64_t session_id
, uint64_t channel_key
,
1623 struct consumer_output
*consumer
, uint64_t *lost
)
1626 struct consumer_socket
*socket
;
1627 struct lttng_ht_iter iter
;
1628 struct lttcomm_consumer_msg msg
;
1632 DBG3("Consumer lost packets id %" PRIu64
, session_id
);
1634 memset(&msg
, 0, sizeof(msg
));
1635 msg
.cmd_type
= LTTNG_CONSUMER_LOST_PACKETS
;
1636 msg
.u
.lost_packets
.session_id
= session_id
;
1637 msg
.u
.lost_packets
.channel_key
= channel_key
;
1641 /* Send command for each consumer */
1643 cds_lfht_for_each_entry(consumer
->socks
->ht
, &iter
.iter
, socket
,
1645 uint64_t consumer_lost
= 0;
1646 pthread_mutex_lock(socket
->lock
);
1647 ret
= consumer_socket_send(socket
, &msg
, sizeof(msg
));
1649 pthread_mutex_unlock(socket
->lock
);
1654 * No need for a recv reply status because the answer to the
1655 * command is the reply status message.
1657 ret
= consumer_socket_recv(socket
, &consumer_lost
,
1658 sizeof(consumer_lost
));
1660 ERR("get lost packets");
1661 pthread_mutex_unlock(socket
->lock
);
1664 pthread_mutex_unlock(socket
->lock
);
1665 *lost
+= consumer_lost
;
1668 DBG("Consumer lost %" PRIu64
" packets in session id %" PRIu64
,
1677 * Ask the consumer to rotate a channel.
1679 * The new_chunk_id is the session->rotate_count that has been incremented
1680 * when the rotation started. On the relay, this allows to keep track in which
1681 * chunk each stream is currently writing to (for the rotate_pending operation).
1683 int consumer_rotate_channel(struct consumer_socket
*socket
, uint64_t key
,
1684 uid_t uid
, gid_t gid
, struct consumer_output
*output
,
1685 bool is_metadata_channel
)
1688 struct lttcomm_consumer_msg msg
;
1692 DBG("Consumer rotate channel key %" PRIu64
, key
);
1694 pthread_mutex_lock(socket
->lock
);
1695 memset(&msg
, 0, sizeof(msg
));
1696 msg
.cmd_type
= LTTNG_CONSUMER_ROTATE_CHANNEL
;
1697 msg
.u
.rotate_channel
.key
= key
;
1698 msg
.u
.rotate_channel
.metadata
= !!is_metadata_channel
;
1700 if (output
->type
== CONSUMER_DST_NET
) {
1701 msg
.u
.rotate_channel
.relayd_id
= output
->net_seq_index
;
1703 msg
.u
.rotate_channel
.relayd_id
= (uint64_t) -1ULL;
1706 health_code_update();
1707 ret
= consumer_send_msg(socket
, &msg
);
1710 case LTTCOMM_CONSUMERD_CHAN_NOT_FOUND
:
1711 ret
= -LTTNG_ERR_CHAN_NOT_FOUND
;
1714 ret
= -LTTNG_ERR_ROTATION_FAIL_CONSUMER
;
1720 pthread_mutex_unlock(socket
->lock
);
1721 health_code_update();
1725 int consumer_open_channel_packets(struct consumer_socket
*socket
, uint64_t key
)
1728 const struct lttcomm_consumer_msg msg
= {
1729 .cmd_type
= LTTNG_CONSUMER_OPEN_CHANNEL_PACKETS
,
1730 .u
.open_channel_packets
.key
= key
,
1735 DBG("Consumer open channel packets: channel key = %" PRIu64
, key
);
1737 health_code_update();
1739 pthread_mutex_lock(socket
->lock
);
1740 ret
= consumer_send_msg(socket
, &msg
);
1741 pthread_mutex_unlock(socket
->lock
);
1747 health_code_update();
1751 int consumer_clear_channel(struct consumer_socket
*socket
, uint64_t key
)
1754 struct lttcomm_consumer_msg msg
;
1758 DBG("Consumer clear channel %" PRIu64
, key
);
1760 memset(&msg
, 0, sizeof(msg
));
1761 msg
.cmd_type
= LTTNG_CONSUMER_CLEAR_CHANNEL
;
1762 msg
.u
.clear_channel
.key
= key
;
1764 health_code_update();
1766 pthread_mutex_lock(socket
->lock
);
1767 ret
= consumer_send_msg(socket
, &msg
);
1773 pthread_mutex_unlock(socket
->lock
);
1775 health_code_update();
1779 int consumer_init(struct consumer_socket
*socket
,
1780 const lttng_uuid sessiond_uuid
)
1783 struct lttcomm_consumer_msg msg
= {
1784 .cmd_type
= LTTNG_CONSUMER_INIT
,
1789 DBG("Sending consumer initialization command");
1790 lttng_uuid_copy(msg
.u
.init
.sessiond_uuid
, sessiond_uuid
);
1792 health_code_update();
1793 ret
= consumer_send_msg(socket
, &msg
);
1799 health_code_update();
1804 * Ask the consumer to create a new chunk for a given session.
1806 * Called with the consumer socket lock held.
1808 int consumer_create_trace_chunk(struct consumer_socket
*socket
,
1809 uint64_t relayd_id
, uint64_t session_id
,
1810 struct lttng_trace_chunk
*chunk
,
1811 const char *domain_subdir
)
1814 enum lttng_trace_chunk_status chunk_status
;
1815 struct lttng_credentials chunk_credentials
;
1816 const struct lttng_directory_handle
*chunk_directory_handle
= NULL
;
1817 struct lttng_directory_handle
*domain_handle
= NULL
;
1819 const char *chunk_name
;
1820 bool chunk_name_overridden
;
1822 time_t creation_timestamp
;
1823 char creation_timestamp_buffer
[ISO8601_STR_LEN
];
1824 const char *creation_timestamp_str
= "(none)";
1825 const bool chunk_has_local_output
= relayd_id
== -1ULL;
1826 enum lttng_trace_chunk_status tc_status
;
1827 struct lttcomm_consumer_msg msg
= {
1828 .cmd_type
= LTTNG_CONSUMER_CREATE_TRACE_CHUNK
,
1829 .u
.create_trace_chunk
.session_id
= session_id
,
1835 if (relayd_id
!= -1ULL) {
1836 LTTNG_OPTIONAL_SET(&msg
.u
.create_trace_chunk
.relayd_id
,
1840 chunk_status
= lttng_trace_chunk_get_name(chunk
, &chunk_name
,
1841 &chunk_name_overridden
);
1842 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
&&
1843 chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_NONE
) {
1844 ERR("Failed to get name of trace chunk");
1845 ret
= -LTTNG_ERR_FATAL
;
1848 if (chunk_name_overridden
) {
1849 ret
= lttng_strncpy(msg
.u
.create_trace_chunk
.override_name
,
1851 sizeof(msg
.u
.create_trace_chunk
.override_name
));
1853 ERR("Trace chunk name \"%s\" exceeds the maximal length allowed by the consumer protocol",
1855 ret
= -LTTNG_ERR_FATAL
;
1860 chunk_status
= lttng_trace_chunk_get_creation_timestamp(chunk
,
1861 &creation_timestamp
);
1862 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
1863 ret
= -LTTNG_ERR_FATAL
;
1866 msg
.u
.create_trace_chunk
.creation_timestamp
=
1867 (uint64_t) creation_timestamp
;
1868 /* Only used for logging purposes. */
1869 ret
= time_to_iso8601_str(creation_timestamp
,
1870 creation_timestamp_buffer
,
1871 sizeof(creation_timestamp_buffer
));
1872 creation_timestamp_str
= !ret
? creation_timestamp_buffer
:
1873 "(formatting error)";
1875 chunk_status
= lttng_trace_chunk_get_id(chunk
, &chunk_id
);
1876 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
1878 * Anonymous trace chunks should never be transmitted
1879 * to remote peers (consumerd and relayd). They are used
1880 * internally for backward-compatibility purposes.
1882 ret
= -LTTNG_ERR_FATAL
;
1885 msg
.u
.create_trace_chunk
.chunk_id
= chunk_id
;
1887 if (chunk_has_local_output
) {
1888 chunk_status
= lttng_trace_chunk_borrow_chunk_directory_handle(
1889 chunk
, &chunk_directory_handle
);
1890 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
1891 ret
= -LTTNG_ERR_FATAL
;
1894 chunk_status
= lttng_trace_chunk_get_credentials(
1895 chunk
, &chunk_credentials
);
1896 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
1898 * Not associating credentials to a sessiond chunk is a
1899 * fatal internal error.
1901 ret
= -LTTNG_ERR_FATAL
;
1904 tc_status
= lttng_trace_chunk_create_subdirectory(
1905 chunk
, domain_subdir
);
1906 if (tc_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
1907 PERROR("Failed to create chunk domain output directory \"%s\"",
1909 ret
= -LTTNG_ERR_FATAL
;
1912 domain_handle
= lttng_directory_handle_create_from_handle(
1914 chunk_directory_handle
);
1915 if (!domain_handle
) {
1916 ret
= -LTTNG_ERR_FATAL
;
1921 * This will only compile on platforms that support
1922 * dirfd (POSIX.2008). This is fine as the session daemon
1923 * is only built for such platforms.
1925 * The ownership of the chunk directory handle's is maintained
1926 * by the trace chunk.
1928 domain_dirfd
= lttng_directory_handle_get_dirfd(
1930 assert(domain_dirfd
>= 0);
1932 msg
.u
.create_trace_chunk
.credentials
.value
.uid
=
1933 lttng_credentials_get_uid(&chunk_credentials
);
1934 msg
.u
.create_trace_chunk
.credentials
.value
.gid
=
1935 lttng_credentials_get_gid(&chunk_credentials
);
1936 msg
.u
.create_trace_chunk
.credentials
.is_set
= 1;
1939 DBG("Sending consumer create trace chunk command: relayd_id = %" PRId64
1940 ", session_id = %" PRIu64
", chunk_id = %" PRIu64
1941 ", creation_timestamp = %s",
1942 relayd_id
, session_id
, chunk_id
,
1943 creation_timestamp_str
);
1944 health_code_update();
1945 ret
= consumer_send_msg(socket
, &msg
);
1946 health_code_update();
1948 ERR("Trace chunk creation error on consumer");
1949 ret
= -LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER
;
1953 if (chunk_has_local_output
) {
1954 DBG("Sending trace chunk domain directory fd to consumer");
1955 health_code_update();
1956 ret
= consumer_send_fds(socket
, &domain_dirfd
, 1);
1957 health_code_update();
1959 ERR("Trace chunk creation error on consumer");
1960 ret
= -LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER
;
1965 lttng_directory_handle_put(domain_handle
);
1970 * Ask the consumer to close a trace chunk for a given session.
1972 * Called with the consumer socket lock held.
1974 int consumer_close_trace_chunk(struct consumer_socket
*socket
,
1975 uint64_t relayd_id
, uint64_t session_id
,
1976 struct lttng_trace_chunk
*chunk
,
1977 char *closed_trace_chunk_path
)
1980 enum lttng_trace_chunk_status chunk_status
;
1981 struct lttcomm_consumer_msg msg
= {
1982 .cmd_type
= LTTNG_CONSUMER_CLOSE_TRACE_CHUNK
,
1983 .u
.close_trace_chunk
.session_id
= session_id
,
1985 struct lttcomm_consumer_close_trace_chunk_reply reply
;
1987 time_t close_timestamp
;
1988 enum lttng_trace_chunk_command_type close_command
;
1989 const char *close_command_name
= "none";
1990 struct lttng_dynamic_buffer path_reception_buffer
;
1993 lttng_dynamic_buffer_init(&path_reception_buffer
);
1995 if (relayd_id
!= -1ULL) {
1997 &msg
.u
.close_trace_chunk
.relayd_id
, relayd_id
);
2000 chunk_status
= lttng_trace_chunk_get_close_command(
2001 chunk
, &close_command
);
2002 switch (chunk_status
) {
2003 case LTTNG_TRACE_CHUNK_STATUS_OK
:
2004 LTTNG_OPTIONAL_SET(&msg
.u
.close_trace_chunk
.close_command
,
2005 (uint32_t) close_command
);
2007 case LTTNG_TRACE_CHUNK_STATUS_NONE
:
2010 ERR("Failed to get trace chunk close command");
2015 chunk_status
= lttng_trace_chunk_get_id(chunk
, &chunk_id
);
2017 * Anonymous trace chunks should never be transmitted to remote peers
2018 * (consumerd and relayd). They are used internally for
2019 * backward-compatibility purposes.
2021 assert(chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
);
2022 msg
.u
.close_trace_chunk
.chunk_id
= chunk_id
;
2024 chunk_status
= lttng_trace_chunk_get_close_timestamp(chunk
,
2027 * A trace chunk should be closed locally before being closed remotely.
2028 * Otherwise, the close timestamp would never be transmitted to the
2031 assert(chunk_status
== LTTNG_TRACE_CHUNK_STATUS_OK
);
2032 msg
.u
.close_trace_chunk
.close_timestamp
= (uint64_t) close_timestamp
;
2034 if (msg
.u
.close_trace_chunk
.close_command
.is_set
) {
2035 close_command_name
= lttng_trace_chunk_command_type_get_name(
2038 DBG("Sending consumer close trace chunk command: relayd_id = %" PRId64
2039 ", session_id = %" PRIu64
", chunk_id = %" PRIu64
2040 ", close command = \"%s\"",
2041 relayd_id
, session_id
, chunk_id
, close_command_name
);
2043 health_code_update();
2044 ret
= consumer_socket_send(socket
, &msg
, sizeof(struct lttcomm_consumer_msg
));
2046 ret
= -LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER
;
2049 ret
= consumer_socket_recv(socket
, &reply
, sizeof(reply
));
2051 ret
= -LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER
;
2054 if (reply
.path_length
>= LTTNG_PATH_MAX
) {
2055 ERR("Invalid path returned by relay daemon: %" PRIu32
"bytes exceeds maximal allowed length of %d bytes",
2056 reply
.path_length
, LTTNG_PATH_MAX
);
2057 ret
= -LTTNG_ERR_INVALID_PROTOCOL
;
2060 ret
= lttng_dynamic_buffer_set_size(&path_reception_buffer
,
2063 ERR("Failed to allocate reception buffer of path returned by the \"close trace chunk\" command");
2064 ret
= -LTTNG_ERR_NOMEM
;
2067 ret
= consumer_socket_recv(socket
, path_reception_buffer
.data
,
2068 path_reception_buffer
.size
);
2070 ERR("Communication error while receiving path of closed trace chunk");
2071 ret
= -LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER
;
2074 if (path_reception_buffer
.data
[path_reception_buffer
.size
- 1] != '\0') {
2075 ERR("Invalid path returned by relay daemon: not null-terminated");
2076 ret
= -LTTNG_ERR_INVALID_PROTOCOL
;
2079 if (closed_trace_chunk_path
) {
2081 * closed_trace_chunk_path is assumed to have a length >=
2084 memcpy(closed_trace_chunk_path
, path_reception_buffer
.data
,
2085 path_reception_buffer
.size
);
2088 lttng_dynamic_buffer_reset(&path_reception_buffer
);
2089 health_code_update();
2094 * Ask the consumer if a trace chunk exists.
2096 * Called with the consumer socket lock held.
2097 * Returns 0 on success, or a negative value on error.
2099 int consumer_trace_chunk_exists(struct consumer_socket
*socket
,
2100 uint64_t relayd_id
, uint64_t session_id
,
2101 struct lttng_trace_chunk
*chunk
,
2102 enum consumer_trace_chunk_exists_status
*result
)
2105 enum lttng_trace_chunk_status chunk_status
;
2106 struct lttcomm_consumer_msg msg
= {
2107 .cmd_type
= LTTNG_CONSUMER_TRACE_CHUNK_EXISTS
,
2108 .u
.trace_chunk_exists
.session_id
= session_id
,
2111 const char *consumer_reply_str
;
2115 if (relayd_id
!= -1ULL) {
2116 LTTNG_OPTIONAL_SET(&msg
.u
.trace_chunk_exists
.relayd_id
,
2120 chunk_status
= lttng_trace_chunk_get_id(chunk
, &chunk_id
);
2121 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
2123 * Anonymous trace chunks should never be transmitted
2124 * to remote peers (consumerd and relayd). They are used
2125 * internally for backward-compatibility purposes.
2127 ret
= -LTTNG_ERR_FATAL
;
2130 msg
.u
.trace_chunk_exists
.chunk_id
= chunk_id
;
2132 DBG("Sending consumer trace chunk exists command: relayd_id = %" PRId64
2133 ", session_id = %" PRIu64
2134 ", chunk_id = %" PRIu64
, relayd_id
, session_id
, chunk_id
);
2136 health_code_update();
2137 ret
= consumer_send_msg(socket
, &msg
);
2139 case LTTCOMM_CONSUMERD_UNKNOWN_TRACE_CHUNK
:
2140 consumer_reply_str
= "unknown trace chunk";
2141 *result
= CONSUMER_TRACE_CHUNK_EXISTS_STATUS_UNKNOWN_CHUNK
;
2143 case LTTCOMM_CONSUMERD_TRACE_CHUNK_EXISTS_LOCAL
:
2144 consumer_reply_str
= "trace chunk exists locally";
2145 *result
= CONSUMER_TRACE_CHUNK_EXISTS_STATUS_EXISTS_LOCAL
;
2147 case LTTCOMM_CONSUMERD_TRACE_CHUNK_EXISTS_REMOTE
:
2148 consumer_reply_str
= "trace chunk exists on remote peer";
2149 *result
= CONSUMER_TRACE_CHUNK_EXISTS_STATUS_EXISTS_REMOTE
;
2152 ERR("Consumer returned an error from TRACE_CHUNK_EXISTS command");
2156 DBG("Consumer reply to TRACE_CHUNK_EXISTS command: %s",
2157 consumer_reply_str
);
2160 health_code_update();