2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include <sys/types.h>
28 #include <common/common.h>
29 #include <common/defaults.h>
30 #include <common/uri.h>
38 * Send a data payload using a given consumer socket of size len.
40 * The consumer socket lock MUST be acquired before calling this since this
41 * function can change the fd value.
43 * Return 0 on success else a negative value on error.
45 int consumer_socket_send(struct consumer_socket
*socket
, void *msg
, size_t len
)
51 assert(socket
->fd_ptr
);
54 /* Consumer socket is invalid. Stopping. */
60 size
= lttcomm_send_unix_sock(fd
, msg
, len
);
62 /* The above call will print a PERROR on error. */
63 DBG("Error when sending data to consumer on sock %d", fd
);
65 * At this point, the socket is not usable anymore thus closing it and
66 * setting the file descriptor to -1 so it is not reused.
69 /* This call will PERROR on error. */
70 (void) lttcomm_close_unix_sock(fd
);
82 * Receive a data payload using a given consumer socket of size len.
84 * The consumer socket lock MUST be acquired before calling this since this
85 * function can change the fd value.
87 * Return 0 on success else a negative value on error.
89 int consumer_socket_recv(struct consumer_socket
*socket
, void *msg
, size_t len
)
95 assert(socket
->fd_ptr
);
98 /* Consumer socket is invalid. Stopping. */
104 size
= lttcomm_recv_unix_sock(fd
, msg
, len
);
106 /* The above call will print a PERROR on error. */
107 DBG("Error when receiving data from the consumer socket %d", fd
);
109 * At this point, the socket is not usable anymore thus closing it and
110 * setting the file descriptor to -1 so it is not reused.
113 /* This call will PERROR on error. */
114 (void) lttcomm_close_unix_sock(fd
);
115 *socket
->fd_ptr
= -1;
126 * Receive a reply command status message from the consumer. Consumer socket
127 * lock MUST be acquired before calling this function.
129 * Return 0 on success, -1 on recv error or a negative lttng error code which
130 * was possibly returned by the consumer.
132 int consumer_recv_status_reply(struct consumer_socket
*sock
)
135 struct lttcomm_consumer_status_msg reply
;
139 ret
= consumer_socket_recv(sock
, &reply
, sizeof(reply
));
144 if (reply
.ret_code
== LTTCOMM_CONSUMERD_SUCCESS
) {
148 ret
= -reply
.ret_code
;
149 DBG("Consumer ret code %d", ret
);
157 * Once the ASK_CHANNEL command is sent to the consumer, the channel
158 * information are sent back. This call receives that data and populates key
161 * On success return 0 and both key and stream_count are set. On error, a
162 * negative value is sent back and both parameters are untouched.
164 int consumer_recv_status_channel(struct consumer_socket
*sock
,
165 uint64_t *key
, unsigned int *stream_count
)
168 struct lttcomm_consumer_status_channel reply
;
171 assert(stream_count
);
174 ret
= consumer_socket_recv(sock
, &reply
, sizeof(reply
));
179 /* An error is possible so don't touch the key and stream_count. */
180 if (reply
.ret_code
!= LTTCOMM_CONSUMERD_SUCCESS
) {
186 *stream_count
= reply
.stream_count
;
194 * Send destroy relayd command to consumer.
196 * On success return positive value. On error, negative value.
198 int consumer_send_destroy_relayd(struct consumer_socket
*sock
,
199 struct consumer_output
*consumer
)
202 struct lttcomm_consumer_msg msg
;
207 DBG2("Sending destroy relayd command to consumer sock %d", *sock
->fd_ptr
);
209 msg
.cmd_type
= LTTNG_CONSUMER_DESTROY_RELAYD
;
210 msg
.u
.destroy_relayd
.net_seq_idx
= consumer
->net_seq_index
;
212 pthread_mutex_lock(sock
->lock
);
213 ret
= consumer_socket_send(sock
, &msg
, sizeof(msg
));
218 /* Don't check the return value. The caller will do it. */
219 ret
= consumer_recv_status_reply(sock
);
221 DBG2("Consumer send destroy relayd command done");
224 pthread_mutex_unlock(sock
->lock
);
229 * For each consumer socket in the consumer output object, send a destroy
232 void consumer_output_send_destroy_relayd(struct consumer_output
*consumer
)
234 struct lttng_ht_iter iter
;
235 struct consumer_socket
*socket
;
239 /* Destroy any relayd connection */
240 if (consumer
->type
== CONSUMER_DST_NET
) {
242 cds_lfht_for_each_entry(consumer
->socks
->ht
, &iter
.iter
, socket
,
246 /* Send destroy relayd command */
247 ret
= consumer_send_destroy_relayd(socket
, consumer
);
249 DBG("Unable to send destroy relayd command to consumer");
250 /* Continue since we MUST delete everything at this point. */
258 * From a consumer_data structure, allocate and add a consumer socket to the
261 * Return 0 on success, else negative value on error
263 int consumer_create_socket(struct consumer_data
*data
,
264 struct consumer_output
*output
)
267 struct consumer_socket
*socket
;
271 if (output
== NULL
|| data
->cmd_sock
< 0) {
273 * Not an error. Possible there is simply not spawned consumer or it's
274 * disabled for the tracing session asking the socket.
280 socket
= consumer_find_socket(data
->cmd_sock
, output
);
282 if (socket
== NULL
) {
283 socket
= consumer_allocate_socket(&data
->cmd_sock
);
284 if (socket
== NULL
) {
289 socket
->registered
= 0;
290 socket
->lock
= &data
->lock
;
292 consumer_add_socket(socket
, output
);
296 socket
->type
= data
->type
;
298 DBG3("Consumer socket created (fd: %d) and added to output",
306 * Return the consumer socket from the given consumer output with the right
307 * bitness. On error, returns NULL.
309 * The caller MUST acquire a rcu read side lock and keep it until the socket
310 * object reference is not needed anymore.
312 struct consumer_socket
*consumer_find_socket_by_bitness(int bits
,
313 struct consumer_output
*consumer
)
316 struct consumer_socket
*socket
= NULL
;
320 consumer_fd
= uatomic_read(&ust_consumerd64_fd
);
323 consumer_fd
= uatomic_read(&ust_consumerd32_fd
);
330 socket
= consumer_find_socket(consumer_fd
, consumer
);
332 ERR("Consumer socket fd %d not found in consumer obj %p",
333 consumer_fd
, consumer
);
341 * Find a consumer_socket in a consumer_output hashtable. Read side lock must
342 * be acquired before calling this function and across use of the
343 * returned consumer_socket.
345 struct consumer_socket
*consumer_find_socket(int key
,
346 struct consumer_output
*consumer
)
348 struct lttng_ht_iter iter
;
349 struct lttng_ht_node_ulong
*node
;
350 struct consumer_socket
*socket
= NULL
;
352 /* Negative keys are lookup failures */
353 if (key
< 0 || consumer
== NULL
) {
357 lttng_ht_lookup(consumer
->socks
, (void *)((unsigned long) key
),
359 node
= lttng_ht_iter_get_node_ulong(&iter
);
361 socket
= caa_container_of(node
, struct consumer_socket
, node
);
368 * Allocate a new consumer_socket and return the pointer.
370 struct consumer_socket
*consumer_allocate_socket(int *fd
)
372 struct consumer_socket
*socket
= NULL
;
376 socket
= zmalloc(sizeof(struct consumer_socket
));
377 if (socket
== NULL
) {
378 PERROR("zmalloc consumer socket");
383 lttng_ht_node_init_ulong(&socket
->node
, *fd
);
390 * Add consumer socket to consumer output object. Read side lock must be
391 * acquired before calling this function.
393 void consumer_add_socket(struct consumer_socket
*sock
,
394 struct consumer_output
*consumer
)
399 lttng_ht_add_unique_ulong(consumer
->socks
, &sock
->node
);
403 * Delte consumer socket to consumer output object. Read side lock must be
404 * acquired before calling this function.
406 void consumer_del_socket(struct consumer_socket
*sock
,
407 struct consumer_output
*consumer
)
410 struct lttng_ht_iter iter
;
415 iter
.iter
.node
= &sock
->node
.node
;
416 ret
= lttng_ht_del(consumer
->socks
, &iter
);
421 * RCU destroy call function.
423 static void destroy_socket_rcu(struct rcu_head
*head
)
425 struct lttng_ht_node_ulong
*node
=
426 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
427 struct consumer_socket
*socket
=
428 caa_container_of(node
, struct consumer_socket
, node
);
434 * Destroy and free socket pointer in a call RCU. Read side lock must be
435 * acquired before calling this function.
437 void consumer_destroy_socket(struct consumer_socket
*sock
)
442 * We DO NOT close the file descriptor here since it is global to the
443 * session daemon and is closed only if the consumer dies or a custom
444 * consumer was registered,
446 if (sock
->registered
) {
447 DBG3("Consumer socket was registered. Closing fd %d", *sock
->fd_ptr
);
448 lttcomm_close_unix_sock(*sock
->fd_ptr
);
451 call_rcu(&sock
->node
.head
, destroy_socket_rcu
);
455 * Allocate and assign data to a consumer_output object.
457 * Return pointer to structure.
459 struct consumer_output
*consumer_create_output(enum consumer_dst_type type
)
461 struct consumer_output
*output
= NULL
;
463 output
= zmalloc(sizeof(struct consumer_output
));
464 if (output
== NULL
) {
465 PERROR("zmalloc consumer_output");
469 /* By default, consumer output is enabled */
472 output
->net_seq_index
= (uint64_t) -1ULL;
474 output
->socks
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
481 * Iterate over the consumer output socket hash table and destroy them. The
482 * socket file descriptor are only closed if the consumer output was
483 * registered meaning it's an external consumer.
485 void consumer_destroy_output_sockets(struct consumer_output
*obj
)
487 struct lttng_ht_iter iter
;
488 struct consumer_socket
*socket
;
495 cds_lfht_for_each_entry(obj
->socks
->ht
, &iter
.iter
, socket
, node
.node
) {
496 consumer_del_socket(socket
, obj
);
497 consumer_destroy_socket(socket
);
503 * Delete the consumer_output object from the list and free the ptr.
505 * Should *NOT* be called with RCU read-side lock held.
507 void consumer_destroy_output(struct consumer_output
*obj
)
513 consumer_destroy_output_sockets(obj
);
516 /* Finally destroy HT */
517 ht_cleanup_push(obj
->socks
);
524 * Copy consumer output and returned the newly allocated copy.
526 * Should *NOT* be called with RCU read-side lock held.
528 struct consumer_output
*consumer_copy_output(struct consumer_output
*obj
)
531 struct lttng_ht
*tmp_ht_ptr
;
532 struct consumer_output
*output
;
536 output
= consumer_create_output(obj
->type
);
537 if (output
== NULL
) {
540 /* Avoid losing the HT reference after the memcpy() */
541 tmp_ht_ptr
= output
->socks
;
543 memcpy(output
, obj
, sizeof(struct consumer_output
));
545 /* Putting back the HT pointer and start copying socket(s). */
546 output
->socks
= tmp_ht_ptr
;
548 ret
= consumer_copy_sockets(output
, obj
);
557 consumer_destroy_output(output
);
562 * Copy consumer sockets from src to dst.
564 * Return 0 on success or else a negative value.
566 int consumer_copy_sockets(struct consumer_output
*dst
,
567 struct consumer_output
*src
)
570 struct lttng_ht_iter iter
;
571 struct consumer_socket
*socket
, *copy_sock
;
577 cds_lfht_for_each_entry(src
->socks
->ht
, &iter
.iter
, socket
, node
.node
) {
578 /* Ignore socket that are already there. */
579 copy_sock
= consumer_find_socket(*socket
->fd_ptr
, dst
);
584 /* Create new socket object. */
585 copy_sock
= consumer_allocate_socket(socket
->fd_ptr
);
586 if (copy_sock
== NULL
) {
592 copy_sock
->registered
= socket
->registered
;
594 * This is valid because this lock is shared accross all consumer
595 * object being the global lock of the consumer data structure of the
598 copy_sock
->lock
= socket
->lock
;
599 consumer_add_socket(copy_sock
, dst
);
608 * Set network URI to the consumer output object.
610 * Return 0 on success. Return 1 if the URI were equal. Else, negative value on
613 int consumer_set_network_uri(struct consumer_output
*obj
,
614 struct lttng_uri
*uri
)
617 char tmp_path
[PATH_MAX
];
618 char hostname
[HOST_NAME_MAX
];
619 struct lttng_uri
*dst_uri
= NULL
;
621 /* Code flow error safety net. */
625 switch (uri
->stype
) {
626 case LTTNG_STREAM_CONTROL
:
627 dst_uri
= &obj
->dst
.net
.control
;
628 obj
->dst
.net
.control_isset
= 1;
629 if (uri
->port
== 0) {
630 /* Assign default port. */
631 uri
->port
= DEFAULT_NETWORK_CONTROL_PORT
;
633 if (obj
->dst
.net
.data_isset
&& uri
->port
==
634 obj
->dst
.net
.data
.port
) {
635 ret
= -LTTNG_ERR_INVALID
;
639 DBG3("Consumer control URI set with port %d", uri
->port
);
641 case LTTNG_STREAM_DATA
:
642 dst_uri
= &obj
->dst
.net
.data
;
643 obj
->dst
.net
.data_isset
= 1;
644 if (uri
->port
== 0) {
645 /* Assign default port. */
646 uri
->port
= DEFAULT_NETWORK_DATA_PORT
;
648 if (obj
->dst
.net
.control_isset
&& uri
->port
==
649 obj
->dst
.net
.control
.port
) {
650 ret
= -LTTNG_ERR_INVALID
;
654 DBG3("Consumer data URI set with port %d", uri
->port
);
657 ERR("Set network uri type unknown %d", uri
->stype
);
658 ret
= -LTTNG_ERR_INVALID
;
662 ret
= uri_compare(dst_uri
, uri
);
664 /* Same URI, don't touch it and return success. */
665 DBG3("URI network compare are the same");
669 /* URIs were not equal, replacing it. */
670 memset(dst_uri
, 0, sizeof(struct lttng_uri
));
671 memcpy(dst_uri
, uri
, sizeof(struct lttng_uri
));
672 obj
->type
= CONSUMER_DST_NET
;
674 /* Handle subdir and add hostname in front. */
675 if (dst_uri
->stype
== LTTNG_STREAM_CONTROL
) {
676 /* Get hostname to append it in the pathname */
677 ret
= gethostname(hostname
, sizeof(hostname
));
679 PERROR("gethostname. Fallback on default localhost");
680 strncpy(hostname
, "localhost", sizeof(hostname
));
682 hostname
[sizeof(hostname
) - 1] = '\0';
684 /* Setup consumer subdir if none present in the control URI */
685 if (strlen(dst_uri
->subdir
) == 0) {
686 ret
= snprintf(tmp_path
, sizeof(tmp_path
), "%s/%s",
687 hostname
, obj
->subdir
);
689 ret
= snprintf(tmp_path
, sizeof(tmp_path
), "%s/%s",
690 hostname
, dst_uri
->subdir
);
693 PERROR("snprintf set consumer uri subdir");
694 ret
= -LTTNG_ERR_NOMEM
;
698 strncpy(obj
->subdir
, tmp_path
, sizeof(obj
->subdir
));
699 DBG3("Consumer set network uri subdir path %s", tmp_path
);
710 * Send file descriptor to consumer via sock.
712 int consumer_send_fds(struct consumer_socket
*sock
, int *fds
, size_t nb_fd
)
720 ret
= lttcomm_send_fds_unix_sock(*sock
->fd_ptr
, fds
, nb_fd
);
722 /* The above call will print a PERROR on error. */
723 DBG("Error when sending consumer fds on sock %d", *sock
->fd_ptr
);
727 ret
= consumer_recv_status_reply(sock
);
734 * Consumer send communication message structure to consumer.
736 int consumer_send_msg(struct consumer_socket
*sock
,
737 struct lttcomm_consumer_msg
*msg
)
744 ret
= consumer_socket_send(sock
, msg
, sizeof(struct lttcomm_consumer_msg
));
749 ret
= consumer_recv_status_reply(sock
);
756 * Consumer send channel communication message structure to consumer.
758 int consumer_send_channel(struct consumer_socket
*sock
,
759 struct lttcomm_consumer_msg
*msg
)
766 ret
= consumer_send_msg(sock
, msg
);
776 * Populate the given consumer msg structure with the ask_channel command
779 void consumer_init_ask_channel_comm_msg(struct lttcomm_consumer_msg
*msg
,
780 uint64_t subbuf_size
,
783 unsigned int switch_timer_interval
,
784 unsigned int read_timer_interval
,
788 const char *pathname
,
796 uint64_t tracefile_size
,
797 uint64_t tracefile_count
,
798 uint64_t session_id_per_pid
,
799 unsigned int monitor
,
800 uint32_t ust_app_uid
)
804 /* Zeroed structure */
805 memset(msg
, 0, sizeof(struct lttcomm_consumer_msg
));
807 msg
->cmd_type
= LTTNG_CONSUMER_ASK_CHANNEL_CREATION
;
808 msg
->u
.ask_channel
.subbuf_size
= subbuf_size
;
809 msg
->u
.ask_channel
.num_subbuf
= num_subbuf
;
810 msg
->u
.ask_channel
.overwrite
= overwrite
;
811 msg
->u
.ask_channel
.switch_timer_interval
= switch_timer_interval
;
812 msg
->u
.ask_channel
.read_timer_interval
= read_timer_interval
;
813 msg
->u
.ask_channel
.output
= output
;
814 msg
->u
.ask_channel
.type
= type
;
815 msg
->u
.ask_channel
.session_id
= session_id
;
816 msg
->u
.ask_channel
.session_id_per_pid
= session_id_per_pid
;
817 msg
->u
.ask_channel
.uid
= uid
;
818 msg
->u
.ask_channel
.gid
= gid
;
819 msg
->u
.ask_channel
.relayd_id
= relayd_id
;
820 msg
->u
.ask_channel
.key
= key
;
821 msg
->u
.ask_channel
.chan_id
= chan_id
;
822 msg
->u
.ask_channel
.tracefile_size
= tracefile_size
;
823 msg
->u
.ask_channel
.tracefile_count
= tracefile_count
;
824 msg
->u
.ask_channel
.monitor
= monitor
;
825 msg
->u
.ask_channel
.ust_app_uid
= ust_app_uid
;
827 memcpy(msg
->u
.ask_channel
.uuid
, uuid
, sizeof(msg
->u
.ask_channel
.uuid
));
830 strncpy(msg
->u
.ask_channel
.pathname
, pathname
,
831 sizeof(msg
->u
.ask_channel
.pathname
));
832 msg
->u
.ask_channel
.pathname
[sizeof(msg
->u
.ask_channel
.pathname
)-1] = '\0';
835 strncpy(msg
->u
.ask_channel
.name
, name
, sizeof(msg
->u
.ask_channel
.name
));
836 msg
->u
.ask_channel
.name
[sizeof(msg
->u
.ask_channel
.name
) - 1] = '\0';
840 * Init channel communication message structure.
842 void consumer_init_channel_comm_msg(struct lttcomm_consumer_msg
*msg
,
843 enum lttng_consumer_command cmd
,
844 uint64_t channel_key
,
846 const char *pathname
,
851 unsigned int nb_init_streams
,
852 enum lttng_event_output output
,
854 uint64_t tracefile_size
,
855 uint64_t tracefile_count
,
856 unsigned int monitor
)
860 /* Zeroed structure */
861 memset(msg
, 0, sizeof(struct lttcomm_consumer_msg
));
865 msg
->u
.channel
.channel_key
= channel_key
;
866 msg
->u
.channel
.session_id
= session_id
;
867 msg
->u
.channel
.uid
= uid
;
868 msg
->u
.channel
.gid
= gid
;
869 msg
->u
.channel
.relayd_id
= relayd_id
;
870 msg
->u
.channel
.nb_init_streams
= nb_init_streams
;
871 msg
->u
.channel
.output
= output
;
872 msg
->u
.channel
.type
= type
;
873 msg
->u
.channel
.tracefile_size
= tracefile_size
;
874 msg
->u
.channel
.tracefile_count
= tracefile_count
;
875 msg
->u
.channel
.monitor
= monitor
;
877 strncpy(msg
->u
.channel
.pathname
, pathname
,
878 sizeof(msg
->u
.channel
.pathname
));
879 msg
->u
.channel
.pathname
[sizeof(msg
->u
.channel
.pathname
) - 1] = '\0';
881 strncpy(msg
->u
.channel
.name
, name
, sizeof(msg
->u
.channel
.name
));
882 msg
->u
.channel
.name
[sizeof(msg
->u
.channel
.name
) - 1] = '\0';
886 * Init stream communication message structure.
888 void consumer_init_stream_comm_msg(struct lttcomm_consumer_msg
*msg
,
889 enum lttng_consumer_command cmd
,
890 uint64_t channel_key
,
896 memset(msg
, 0, sizeof(struct lttcomm_consumer_msg
));
899 msg
->u
.stream
.channel_key
= channel_key
;
900 msg
->u
.stream
.stream_key
= stream_key
;
901 msg
->u
.stream
.cpu
= cpu
;
905 * Send stream communication structure to the consumer.
907 int consumer_send_stream(struct consumer_socket
*sock
,
908 struct consumer_output
*dst
, struct lttcomm_consumer_msg
*msg
,
909 int *fds
, size_t nb_fd
)
918 ret
= consumer_send_msg(sock
, msg
);
923 ret
= consumer_send_fds(sock
, fds
, nb_fd
);
933 * Send relayd socket to consumer associated with a session name.
935 * On success return positive value. On error, negative value.
937 int consumer_send_relayd_socket(struct consumer_socket
*consumer_sock
,
938 struct lttcomm_relayd_sock
*rsock
, struct consumer_output
*consumer
,
939 enum lttng_stream_type type
, uint64_t session_id
)
942 struct lttcomm_consumer_msg msg
;
944 /* Code flow error. Safety net. */
947 assert(consumer_sock
);
949 /* Bail out if consumer is disabled */
950 if (!consumer
->enabled
) {
955 msg
.cmd_type
= LTTNG_CONSUMER_ADD_RELAYD_SOCKET
;
957 * Assign network consumer output index using the temporary consumer since
958 * this call should only be made from within a set_consumer_uri() function
959 * call in the session daemon.
961 msg
.u
.relayd_sock
.net_index
= consumer
->net_seq_index
;
962 msg
.u
.relayd_sock
.type
= type
;
963 msg
.u
.relayd_sock
.session_id
= session_id
;
964 memcpy(&msg
.u
.relayd_sock
.sock
, rsock
, sizeof(msg
.u
.relayd_sock
.sock
));
966 DBG3("Sending relayd sock info to consumer on %d", *consumer_sock
->fd_ptr
);
967 ret
= consumer_send_msg(consumer_sock
, &msg
);
972 DBG3("Sending relayd socket file descriptor to consumer");
973 ret
= consumer_send_fds(consumer_sock
, &rsock
->sock
.fd
, 1);
978 DBG2("Consumer relayd socket sent");
985 * Set consumer subdirectory using the session name and a generated datetime if
986 * needed. This is appended to the current subdirectory.
988 int consumer_set_subdir(struct consumer_output
*consumer
,
989 const char *session_name
)
992 unsigned int have_default_name
= 0;
993 char datetime
[16], tmp_path
[PATH_MAX
];
998 assert(session_name
);
1000 memset(tmp_path
, 0, sizeof(tmp_path
));
1002 /* Flag if we have a default session. */
1003 if (strncmp(session_name
, DEFAULT_SESSION_NAME
"-",
1004 strlen(DEFAULT_SESSION_NAME
) + 1) == 0) {
1005 have_default_name
= 1;
1007 /* Get date and time for session path */
1009 timeinfo
= localtime(&rawtime
);
1010 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
1013 if (have_default_name
) {
1014 ret
= snprintf(tmp_path
, sizeof(tmp_path
),
1015 "%s/%s", consumer
->subdir
, session_name
);
1017 ret
= snprintf(tmp_path
, sizeof(tmp_path
),
1018 "%s/%s-%s/", consumer
->subdir
, session_name
, datetime
);
1021 PERROR("snprintf session name date");
1025 strncpy(consumer
->subdir
, tmp_path
, sizeof(consumer
->subdir
));
1026 DBG2("Consumer subdir set to %s", consumer
->subdir
);
1033 * Ask the consumer if the data is ready to read (NOT pending) for the specific
1036 * This function has a different behavior with the consumer i.e. that it waits
1037 * for a reply from the consumer if yes or no the data is pending.
1039 int consumer_is_data_pending(uint64_t session_id
,
1040 struct consumer_output
*consumer
)
1043 int32_t ret_code
= 0; /* Default is that the data is NOT pending */
1044 struct consumer_socket
*socket
;
1045 struct lttng_ht_iter iter
;
1046 struct lttcomm_consumer_msg msg
;
1050 msg
.cmd_type
= LTTNG_CONSUMER_DATA_PENDING
;
1052 msg
.u
.data_pending
.session_id
= session_id
;
1054 DBG3("Consumer data pending for id %" PRIu64
, session_id
);
1056 /* Send command for each consumer */
1058 cds_lfht_for_each_entry(consumer
->socks
->ht
, &iter
.iter
, socket
,
1060 pthread_mutex_lock(socket
->lock
);
1061 ret
= consumer_socket_send(socket
, &msg
, sizeof(msg
));
1063 pthread_mutex_unlock(socket
->lock
);
1068 * No need for a recv reply status because the answer to the command is
1069 * the reply status message.
1072 ret
= consumer_socket_recv(socket
, &ret_code
, sizeof(ret_code
));
1074 pthread_mutex_unlock(socket
->lock
);
1077 pthread_mutex_unlock(socket
->lock
);
1079 if (ret_code
== 1) {
1085 DBG("Consumer data is %s pending for session id %" PRIu64
,
1086 ret_code
== 1 ? "" : "NOT", session_id
);
1095 * Send a flush command to consumer using the given channel key.
1097 * Return 0 on success else a negative value.
1099 int consumer_flush_channel(struct consumer_socket
*socket
, uint64_t key
)
1102 struct lttcomm_consumer_msg msg
;
1106 DBG2("Consumer flush channel key %" PRIu64
, key
);
1108 msg
.cmd_type
= LTTNG_CONSUMER_FLUSH_CHANNEL
;
1109 msg
.u
.flush_channel
.key
= key
;
1111 pthread_mutex_lock(socket
->lock
);
1112 health_code_update();
1114 ret
= consumer_send_msg(socket
, &msg
);
1120 health_code_update();
1121 pthread_mutex_unlock(socket
->lock
);
1126 * Send a close metdata command to consumer using the given channel key.
1128 * Return 0 on success else a negative value.
1130 int consumer_close_metadata(struct consumer_socket
*socket
,
1131 uint64_t metadata_key
)
1134 struct lttcomm_consumer_msg msg
;
1138 DBG2("Consumer close metadata channel key %" PRIu64
, metadata_key
);
1140 msg
.cmd_type
= LTTNG_CONSUMER_CLOSE_METADATA
;
1141 msg
.u
.close_metadata
.key
= metadata_key
;
1143 pthread_mutex_lock(socket
->lock
);
1144 health_code_update();
1146 ret
= consumer_send_msg(socket
, &msg
);
1152 health_code_update();
1153 pthread_mutex_unlock(socket
->lock
);
1158 * Send a setup metdata command to consumer using the given channel key.
1160 * Return 0 on success else a negative value.
1162 int consumer_setup_metadata(struct consumer_socket
*socket
,
1163 uint64_t metadata_key
)
1166 struct lttcomm_consumer_msg msg
;
1170 DBG2("Consumer setup metadata channel key %" PRIu64
, metadata_key
);
1172 msg
.cmd_type
= LTTNG_CONSUMER_SETUP_METADATA
;
1173 msg
.u
.setup_metadata
.key
= metadata_key
;
1175 pthread_mutex_lock(socket
->lock
);
1176 health_code_update();
1178 ret
= consumer_send_msg(socket
, &msg
);
1184 health_code_update();
1185 pthread_mutex_unlock(socket
->lock
);
1190 * Send metadata string to consumer. Socket lock MUST be acquired.
1192 * Return 0 on success else a negative value.
1194 int consumer_push_metadata(struct consumer_socket
*socket
,
1195 uint64_t metadata_key
, char *metadata_str
, size_t len
,
1196 size_t target_offset
)
1199 struct lttcomm_consumer_msg msg
;
1203 DBG2("Consumer push metadata to consumer socket %d", *socket
->fd_ptr
);
1205 msg
.cmd_type
= LTTNG_CONSUMER_PUSH_METADATA
;
1206 msg
.u
.push_metadata
.key
= metadata_key
;
1207 msg
.u
.push_metadata
.target_offset
= target_offset
;
1208 msg
.u
.push_metadata
.len
= len
;
1210 health_code_update();
1211 ret
= consumer_send_msg(socket
, &msg
);
1212 if (ret
< 0 || len
== 0) {
1216 DBG3("Consumer pushing metadata on sock %d of len %zu", *socket
->fd_ptr
,
1219 ret
= consumer_socket_send(socket
, metadata_str
, len
);
1224 health_code_update();
1225 ret
= consumer_recv_status_reply(socket
);
1231 health_code_update();
1236 * Ask the consumer to snapshot a specific channel using the key.
1238 * Return 0 on success or else a negative error.
1240 int consumer_snapshot_channel(struct consumer_socket
*socket
, uint64_t key
,
1241 struct snapshot_output
*output
, int metadata
, uid_t uid
, gid_t gid
,
1242 const char *session_path
, int wait
, int max_stream_size
)
1245 struct lttcomm_consumer_msg msg
;
1249 assert(output
->consumer
);
1251 DBG("Consumer snapshot channel key %" PRIu64
, key
);
1253 memset(&msg
, 0, sizeof(msg
));
1254 msg
.cmd_type
= LTTNG_CONSUMER_SNAPSHOT_CHANNEL
;
1255 msg
.u
.snapshot_channel
.key
= key
;
1256 msg
.u
.snapshot_channel
.max_stream_size
= max_stream_size
;
1257 msg
.u
.snapshot_channel
.metadata
= metadata
;
1259 if (output
->consumer
->type
== CONSUMER_DST_NET
) {
1260 msg
.u
.snapshot_channel
.relayd_id
= output
->consumer
->net_seq_index
;
1261 msg
.u
.snapshot_channel
.use_relayd
= 1;
1262 ret
= snprintf(msg
.u
.snapshot_channel
.pathname
,
1263 sizeof(msg
.u
.snapshot_channel
.pathname
),
1264 "%s/%s-%s-%" PRIu64
"%s", output
->consumer
->subdir
,
1265 output
->name
, output
->datetime
, output
->nb_snapshot
,
1268 ret
= -LTTNG_ERR_NOMEM
;
1272 ret
= snprintf(msg
.u
.snapshot_channel
.pathname
,
1273 sizeof(msg
.u
.snapshot_channel
.pathname
),
1274 "%s/%s-%s-%" PRIu64
"%s", output
->consumer
->dst
.trace_path
,
1275 output
->name
, output
->datetime
, output
->nb_snapshot
,
1278 ret
= -LTTNG_ERR_NOMEM
;
1281 msg
.u
.snapshot_channel
.relayd_id
= (uint64_t) -1ULL;
1283 /* Create directory. Ignore if exist. */
1284 ret
= run_as_mkdir_recursive(msg
.u
.snapshot_channel
.pathname
,
1285 S_IRWXU
| S_IRWXG
, uid
, gid
);
1287 if (ret
!= -EEXIST
) {
1288 ERR("Trace directory creation error");
1294 health_code_update();
1295 ret
= consumer_send_msg(socket
, &msg
);
1301 health_code_update();