2 * Copyright (C) 2012 - Julien Desfossez <jdesfossez@efficios.com>
3 * David Goulet <dgoulet@efficios.com>
4 * 2013 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * 2015 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License, version 2 only,
9 * as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
31 #include <sys/mount.h>
32 #include <sys/resource.h>
33 #include <sys/socket.h>
35 #include <sys/types.h>
38 #include <urcu/futex.h>
39 #include <urcu/uatomic.h>
43 #include <lttng/lttng.h>
44 #include <common/common.h>
45 #include <common/compat/poll.h>
46 #include <common/compat/socket.h>
47 #include <common/compat/endian.h>
48 #include <common/compat/getenv.h>
49 #include <common/defaults.h>
50 #include <common/daemonize.h>
51 #include <common/futex.h>
52 #include <common/sessiond-comm/sessiond-comm.h>
53 #include <common/sessiond-comm/inet.h>
54 #include <common/sessiond-comm/relayd.h>
55 #include <common/uri.h>
56 #include <common/utils.h>
57 #include <common/align.h>
58 #include <common/config/session-config.h>
59 #include <common/dynamic-buffer.h>
60 #include <common/buffer-view.h>
61 #include <urcu/rculist.h>
64 #include "ctf-trace.h"
67 #include "lttng-relayd.h"
69 #include "health-relayd.h"
70 #include "testpoint.h"
71 #include "viewer-stream.h"
74 #include "connection.h"
75 #include "tracefile-array.h"
76 #include "tcp_keep_alive.h"
78 static const char *help_msg
=
79 #ifdef LTTNG_EMBED_HELP
80 #include <lttng-relayd.8.h>
86 enum relay_connection_status
{
87 RELAY_CONNECTION_STATUS_OK
,
88 /* An error occurred while processing an event on the connection. */
89 RELAY_CONNECTION_STATUS_ERROR
,
90 /* Connection closed/shutdown cleanly. */
91 RELAY_CONNECTION_STATUS_CLOSED
,
94 /* command line options */
95 char *opt_output_path
;
96 static int opt_daemon
, opt_background
;
99 * We need to wait for listener and live listener threads, as well as
100 * health check thread, before being ready to signal readiness.
102 #define NR_LTTNG_RELAY_READY 3
103 static int lttng_relay_ready
= NR_LTTNG_RELAY_READY
;
105 /* Size of receive buffer. */
106 #define RECV_DATA_BUFFER_SIZE 65536
107 #define FILE_COPY_BUFFER_SIZE 65536
109 static int recv_child_signal
; /* Set to 1 when a SIGUSR1 signal is received. */
110 static pid_t child_ppid
; /* Internal parent PID use with daemonize. */
112 static struct lttng_uri
*control_uri
;
113 static struct lttng_uri
*data_uri
;
114 static struct lttng_uri
*live_uri
;
116 const char *progname
;
118 const char *tracing_group_name
= DEFAULT_TRACING_GROUP
;
119 static int tracing_group_name_override
;
121 const char * const config_section_name
= "relayd";
124 * Quit pipe for all threads. This permits a single cancellation point
125 * for all threads when receiving an event on the pipe.
127 int thread_quit_pipe
[2] = { -1, -1 };
130 * This pipe is used to inform the worker thread that a command is queued and
131 * ready to be processed.
133 static int relay_conn_pipe
[2] = { -1, -1 };
135 /* Shared between threads */
136 static int dispatch_thread_exit
;
138 static pthread_t listener_thread
;
139 static pthread_t dispatcher_thread
;
140 static pthread_t worker_thread
;
141 static pthread_t health_thread
;
144 * last_relay_stream_id_lock protects last_relay_stream_id increment
145 * atomicity on 32-bit architectures.
147 static pthread_mutex_t last_relay_stream_id_lock
= PTHREAD_MUTEX_INITIALIZER
;
148 static uint64_t last_relay_stream_id
;
151 * Relay command queue.
153 * The relay_thread_listener and relay_thread_dispatcher communicate with this
156 static struct relay_conn_queue relay_conn_queue
;
158 /* Global relay stream hash table. */
159 struct lttng_ht
*relay_streams_ht
;
161 /* Global relay viewer stream hash table. */
162 struct lttng_ht
*viewer_streams_ht
;
164 /* Global relay sessions hash table. */
165 struct lttng_ht
*sessions_ht
;
167 /* Relayd health monitoring */
168 struct health_app
*health_relayd
;
170 static struct option long_options
[] = {
171 { "control-port", 1, 0, 'C', },
172 { "data-port", 1, 0, 'D', },
173 { "live-port", 1, 0, 'L', },
174 { "daemonize", 0, 0, 'd', },
175 { "background", 0, 0, 'b', },
176 { "group", 1, 0, 'g', },
177 { "help", 0, 0, 'h', },
178 { "output", 1, 0, 'o', },
179 { "verbose", 0, 0, 'v', },
180 { "config", 1, 0, 'f' },
181 { "version", 0, 0, 'V' },
185 static const char *config_ignore_options
[] = { "help", "config", "version" };
188 * Take an option from the getopt output and set it in the right variable to be
191 * Return 0 on success else a negative value.
193 static int set_option(int opt
, const char *arg
, const char *optname
)
199 fprintf(stderr
, "option %s", optname
);
201 fprintf(stderr
, " with arg %s\n", arg
);
205 if (lttng_is_setuid_setgid()) {
206 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
207 "-C, --control-port");
209 ret
= uri_parse(arg
, &control_uri
);
211 ERR("Invalid control URI specified");
214 if (control_uri
->port
== 0) {
215 control_uri
->port
= DEFAULT_NETWORK_CONTROL_PORT
;
220 if (lttng_is_setuid_setgid()) {
221 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
224 ret
= uri_parse(arg
, &data_uri
);
226 ERR("Invalid data URI specified");
229 if (data_uri
->port
== 0) {
230 data_uri
->port
= DEFAULT_NETWORK_DATA_PORT
;
235 if (lttng_is_setuid_setgid()) {
236 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
239 ret
= uri_parse(arg
, &live_uri
);
241 ERR("Invalid live URI specified");
244 if (live_uri
->port
== 0) {
245 live_uri
->port
= DEFAULT_NETWORK_VIEWER_PORT
;
256 if (lttng_is_setuid_setgid()) {
257 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
260 tracing_group_name
= strdup(arg
);
261 if (tracing_group_name
== NULL
) {
266 tracing_group_name_override
= 1;
270 ret
= utils_show_help(8, "lttng-relayd", help_msg
);
272 ERR("Cannot show --help for `lttng-relayd`");
277 fprintf(stdout
, "%s\n", VERSION
);
280 if (lttng_is_setuid_setgid()) {
281 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
284 ret
= asprintf(&opt_output_path
, "%s", arg
);
287 PERROR("asprintf opt_output_path");
293 /* Verbose level can increase using multiple -v */
295 lttng_opt_verbose
= config_parse_value(arg
);
297 /* Only 3 level of verbosity (-vvv). */
298 if (lttng_opt_verbose
< 3) {
299 lttng_opt_verbose
+= 1;
304 /* Unknown option or other error.
305 * Error is printed by getopt, just return */
318 * config_entry_handler_cb used to handle options read from a config file.
319 * See config_entry_handler_cb comment in common/config/session-config.h for the
320 * return value conventions.
322 static int config_entry_handler(const struct config_entry
*entry
, void *unused
)
326 if (!entry
|| !entry
->name
|| !entry
->value
) {
331 /* Check if the option is to be ignored */
332 for (i
= 0; i
< sizeof(config_ignore_options
) / sizeof(char *); i
++) {
333 if (!strcmp(entry
->name
, config_ignore_options
[i
])) {
338 for (i
= 0; i
< (sizeof(long_options
) / sizeof(struct option
)) - 1; i
++) {
339 /* Ignore if entry name is not fully matched. */
340 if (strcmp(entry
->name
, long_options
[i
].name
)) {
345 * If the option takes no argument on the command line,
346 * we have to check if the value is "true". We support
347 * non-zero numeric values, true, on and yes.
349 if (!long_options
[i
].has_arg
) {
350 ret
= config_parse_value(entry
->value
);
353 WARN("Invalid configuration value \"%s\" for option %s",
354 entry
->value
, entry
->name
);
356 /* False, skip boolean config option. */
361 ret
= set_option(long_options
[i
].val
, entry
->value
, entry
->name
);
365 WARN("Unrecognized option \"%s\" in daemon configuration file.",
372 static int set_options(int argc
, char **argv
)
374 int c
, ret
= 0, option_index
= 0, retval
= 0;
375 int orig_optopt
= optopt
, orig_optind
= optind
;
376 char *default_address
, *optstring
;
377 const char *config_path
= NULL
;
379 optstring
= utils_generate_optstring(long_options
,
380 sizeof(long_options
) / sizeof(struct option
));
386 /* Check for the --config option */
388 while ((c
= getopt_long(argc
, argv
, optstring
, long_options
,
389 &option_index
)) != -1) {
393 } else if (c
!= 'f') {
397 if (lttng_is_setuid_setgid()) {
398 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
401 config_path
= utils_expand_path(optarg
);
403 ERR("Failed to resolve path: %s", optarg
);
408 ret
= config_get_section_entries(config_path
, config_section_name
,
409 config_entry_handler
, NULL
);
412 ERR("Invalid configuration option at line %i", ret
);
418 /* Reset getopt's global state */
419 optopt
= orig_optopt
;
420 optind
= orig_optind
;
422 c
= getopt_long(argc
, argv
, optstring
, long_options
, &option_index
);
427 ret
= set_option(c
, optarg
, long_options
[option_index
].name
);
434 /* assign default values */
435 if (control_uri
== NULL
) {
436 ret
= asprintf(&default_address
,
437 "tcp://" DEFAULT_NETWORK_CONTROL_BIND_ADDRESS
":%d",
438 DEFAULT_NETWORK_CONTROL_PORT
);
440 PERROR("asprintf default data address");
445 ret
= uri_parse(default_address
, &control_uri
);
446 free(default_address
);
448 ERR("Invalid control URI specified");
453 if (data_uri
== NULL
) {
454 ret
= asprintf(&default_address
,
455 "tcp://" DEFAULT_NETWORK_DATA_BIND_ADDRESS
":%d",
456 DEFAULT_NETWORK_DATA_PORT
);
458 PERROR("asprintf default data address");
463 ret
= uri_parse(default_address
, &data_uri
);
464 free(default_address
);
466 ERR("Invalid data URI specified");
471 if (live_uri
== NULL
) {
472 ret
= asprintf(&default_address
,
473 "tcp://" DEFAULT_NETWORK_VIEWER_BIND_ADDRESS
":%d",
474 DEFAULT_NETWORK_VIEWER_PORT
);
476 PERROR("asprintf default viewer control address");
481 ret
= uri_parse(default_address
, &live_uri
);
482 free(default_address
);
484 ERR("Invalid viewer control URI specified");
495 static void print_global_objects(void)
497 rcu_register_thread();
499 print_viewer_streams();
500 print_relay_streams();
503 rcu_unregister_thread();
509 static void relayd_cleanup(void)
511 print_global_objects();
515 if (viewer_streams_ht
)
516 lttng_ht_destroy(viewer_streams_ht
);
517 if (relay_streams_ht
)
518 lttng_ht_destroy(relay_streams_ht
);
520 lttng_ht_destroy(sessions_ht
);
522 /* free the dynamically allocated opt_output_path */
523 free(opt_output_path
);
525 /* Close thread quit pipes */
526 utils_close_pipe(thread_quit_pipe
);
528 uri_free(control_uri
);
530 /* Live URI is freed in the live thread. */
532 if (tracing_group_name_override
) {
533 free((void *) tracing_group_name
);
538 * Write to writable pipe used to notify a thread.
540 static int notify_thread_pipe(int wpipe
)
544 ret
= lttng_write(wpipe
, "!", 1);
546 PERROR("write poll pipe");
554 static int notify_health_quit_pipe(int *pipe
)
558 ret
= lttng_write(pipe
[1], "4", 1);
560 PERROR("write relay health quit");
569 * Stop all relayd and relayd-live threads.
571 int lttng_relay_stop_threads(void)
575 /* Stopping all threads */
576 DBG("Terminating all threads");
577 if (notify_thread_pipe(thread_quit_pipe
[1])) {
578 ERR("write error on thread quit pipe");
582 if (notify_health_quit_pipe(health_quit_pipe
)) {
583 ERR("write error on health quit pipe");
586 /* Dispatch thread */
587 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
588 futex_nto1_wake(&relay_conn_queue
.futex
);
590 if (relayd_live_stop()) {
591 ERR("Error stopping live threads");
598 * Signal handler for the daemon
600 * Simply stop all worker threads, leaving main() return gracefully after
601 * joining all threads and calling cleanup().
603 static void sighandler(int sig
)
607 DBG("SIGINT caught");
608 if (lttng_relay_stop_threads()) {
609 ERR("Error stopping threads");
613 DBG("SIGTERM caught");
614 if (lttng_relay_stop_threads()) {
615 ERR("Error stopping threads");
619 CMM_STORE_SHARED(recv_child_signal
, 1);
627 * Setup signal handler for :
628 * SIGINT, SIGTERM, SIGPIPE
630 static int set_signal_handler(void)
636 if ((ret
= sigemptyset(&sigset
)) < 0) {
637 PERROR("sigemptyset");
644 sa
.sa_handler
= sighandler
;
645 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
650 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
655 if ((ret
= sigaction(SIGUSR1
, &sa
, NULL
)) < 0) {
660 sa
.sa_handler
= SIG_IGN
;
661 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
666 DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT");
671 void lttng_relay_notify_ready(void)
673 /* Notify the parent of the fork() process that we are ready. */
674 if (opt_daemon
|| opt_background
) {
675 if (uatomic_sub_return(<tng_relay_ready
, 1) == 0) {
676 kill(child_ppid
, SIGUSR1
);
682 * Init thread quit pipe.
684 * Return -1 on error or 0 if all pipes are created.
686 static int init_thread_quit_pipe(void)
690 ret
= utils_create_pipe_cloexec(thread_quit_pipe
);
696 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
698 static int create_thread_poll_set(struct lttng_poll_event
*events
, int size
)
702 if (events
== NULL
|| size
== 0) {
707 ret
= lttng_poll_create(events
, size
, LTTNG_CLOEXEC
);
713 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
| LPOLLERR
);
725 * Check if the thread quit pipe was triggered.
727 * Return 1 if it was triggered else 0;
729 static int check_thread_quit_pipe(int fd
, uint32_t events
)
731 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
739 * Create and init socket from uri.
741 static struct lttcomm_sock
*relay_socket_create(struct lttng_uri
*uri
)
744 struct lttcomm_sock
*sock
= NULL
;
746 sock
= lttcomm_alloc_sock_from_uri(uri
);
748 ERR("Allocating socket");
752 ret
= lttcomm_create_sock(sock
);
756 DBG("Listening on sock %d", sock
->fd
);
758 ret
= sock
->ops
->bind(sock
);
760 PERROR("Failed to bind socket");
764 ret
= sock
->ops
->listen(sock
, -1);
774 lttcomm_destroy_sock(sock
);
780 * This thread manages the listening for new connections on the network
782 static void *relay_thread_listener(void *data
)
784 int i
, ret
, pollfd
, err
= -1;
785 uint32_t revents
, nb_fd
;
786 struct lttng_poll_event events
;
787 struct lttcomm_sock
*control_sock
, *data_sock
;
789 DBG("[thread] Relay listener started");
791 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LISTENER
);
793 health_code_update();
795 control_sock
= relay_socket_create(control_uri
);
797 goto error_sock_control
;
800 data_sock
= relay_socket_create(data_uri
);
802 goto error_sock_relay
;
806 * Pass 3 as size here for the thread quit pipe, control and
809 ret
= create_thread_poll_set(&events
, 3);
811 goto error_create_poll
;
814 /* Add the control socket */
815 ret
= lttng_poll_add(&events
, control_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
820 /* Add the data socket */
821 ret
= lttng_poll_add(&events
, data_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
826 lttng_relay_notify_ready();
828 if (testpoint(relayd_thread_listener
)) {
829 goto error_testpoint
;
833 health_code_update();
835 DBG("Listener accepting connections");
839 ret
= lttng_poll_wait(&events
, -1);
843 * Restart interrupted system call.
845 if (errno
== EINTR
) {
853 DBG("Relay new connection received");
854 for (i
= 0; i
< nb_fd
; i
++) {
855 health_code_update();
857 /* Fetch once the poll data */
858 revents
= LTTNG_POLL_GETEV(&events
, i
);
859 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
863 * No activity for this FD (poll
869 /* Thread quit pipe has been closed. Killing thread. */
870 ret
= check_thread_quit_pipe(pollfd
, revents
);
876 if (revents
& LPOLLIN
) {
878 * A new connection is requested, therefore a
879 * sessiond/consumerd connection is allocated in
880 * this thread, enqueued to a global queue and
881 * dequeued (and freed) in the worker thread.
884 struct relay_connection
*new_conn
;
885 struct lttcomm_sock
*newsock
;
886 enum connection_type type
;
888 if (pollfd
== data_sock
->fd
) {
890 newsock
= data_sock
->ops
->accept(data_sock
);
891 DBG("Relay data connection accepted, socket %d",
894 assert(pollfd
== control_sock
->fd
);
895 type
= RELAY_CONTROL
;
896 newsock
= control_sock
->ops
->accept(control_sock
);
897 DBG("Relay control connection accepted, socket %d",
901 PERROR("accepting sock");
905 ret
= setsockopt(newsock
->fd
, SOL_SOCKET
, SO_REUSEADDR
, &val
,
908 PERROR("setsockopt inet");
909 lttcomm_destroy_sock(newsock
);
913 ret
= socket_apply_keep_alive_config(newsock
->fd
);
915 ERR("Failed to apply TCP keep-alive configuration on socket (%i)",
917 lttcomm_destroy_sock(newsock
);
921 new_conn
= connection_create(newsock
, type
);
923 lttcomm_destroy_sock(newsock
);
927 /* Enqueue request for the dispatcher thread. */
928 cds_wfcq_enqueue(&relay_conn_queue
.head
, &relay_conn_queue
.tail
,
932 * Wake the dispatch queue futex.
933 * Implicit memory barrier with the
934 * exchange in cds_wfcq_enqueue.
936 futex_nto1_wake(&relay_conn_queue
.futex
);
937 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
938 ERR("socket poll error");
941 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
951 lttng_poll_clean(&events
);
953 if (data_sock
->fd
>= 0) {
954 ret
= data_sock
->ops
->close(data_sock
);
959 lttcomm_destroy_sock(data_sock
);
961 if (control_sock
->fd
>= 0) {
962 ret
= control_sock
->ops
->close(control_sock
);
967 lttcomm_destroy_sock(control_sock
);
971 ERR("Health error occurred in %s", __func__
);
973 health_unregister(health_relayd
);
974 DBG("Relay listener thread cleanup complete");
975 lttng_relay_stop_threads();
980 * This thread manages the dispatching of the requests to worker threads
982 static void *relay_thread_dispatcher(void *data
)
986 struct cds_wfcq_node
*node
;
987 struct relay_connection
*new_conn
= NULL
;
989 DBG("[thread] Relay dispatcher started");
991 health_register(health_relayd
, HEALTH_RELAYD_TYPE_DISPATCHER
);
993 if (testpoint(relayd_thread_dispatcher
)) {
994 goto error_testpoint
;
997 health_code_update();
1000 health_code_update();
1002 /* Atomically prepare the queue futex */
1003 futex_nto1_prepare(&relay_conn_queue
.futex
);
1005 if (CMM_LOAD_SHARED(dispatch_thread_exit
)) {
1010 health_code_update();
1012 /* Dequeue commands */
1013 node
= cds_wfcq_dequeue_blocking(&relay_conn_queue
.head
,
1014 &relay_conn_queue
.tail
);
1016 DBG("Woken up but nothing in the relay command queue");
1017 /* Continue thread execution */
1020 new_conn
= caa_container_of(node
, struct relay_connection
, qnode
);
1022 DBG("Dispatching request waiting on sock %d", new_conn
->sock
->fd
);
1025 * Inform worker thread of the new request. This
1026 * call is blocking so we can be assured that
1027 * the data will be read at some point in time
1028 * or wait to the end of the world :)
1030 ret
= lttng_write(relay_conn_pipe
[1], &new_conn
, sizeof(new_conn
));
1032 PERROR("write connection pipe");
1033 connection_put(new_conn
);
1036 } while (node
!= NULL
);
1038 /* Futex wait on queue. Blocking call on futex() */
1039 health_poll_entry();
1040 futex_nto1_wait(&relay_conn_queue
.futex
);
1044 /* Normal exit, no error */
1051 ERR("Health error occurred in %s", __func__
);
1053 health_unregister(health_relayd
);
1054 DBG("Dispatch thread dying");
1055 lttng_relay_stop_threads();
1060 * Set index data from the control port to a given index object.
1062 static int set_index_control_data(struct relay_index
*index
,
1063 struct lttcomm_relayd_index
*data
,
1064 struct relay_connection
*conn
)
1066 struct ctf_packet_index index_data
;
1069 * The index on disk is encoded in big endian.
1071 index_data
.packet_size
= htobe64(data
->packet_size
);
1072 index_data
.content_size
= htobe64(data
->content_size
);
1073 index_data
.timestamp_begin
= htobe64(data
->timestamp_begin
);
1074 index_data
.timestamp_end
= htobe64(data
->timestamp_end
);
1075 index_data
.events_discarded
= htobe64(data
->events_discarded
);
1076 index_data
.stream_id
= htobe64(data
->stream_id
);
1078 if (conn
->minor
>= 8) {
1079 index
->index_data
.stream_instance_id
= htobe64(data
->stream_instance_id
);
1080 index
->index_data
.packet_seq_num
= htobe64(data
->packet_seq_num
);
1083 return relay_index_set_data(index
, &index_data
);
1086 static bool session_streams_have_index(const struct relay_session
*session
)
1088 return session
->minor
>= 4 && !session
->snapshot
;
1092 * Handle the RELAYD_CREATE_SESSION command.
1094 * On success, send back the session id or else return a negative value.
1096 static int relay_create_session(const struct lttcomm_relayd_hdr
*recv_hdr
,
1097 struct relay_connection
*conn
,
1098 const struct lttng_buffer_view
*payload
)
1102 struct relay_session
*session
;
1103 struct lttcomm_relayd_status_session reply
;
1104 char session_name
[LTTNG_NAME_MAX
];
1105 char hostname
[LTTNG_HOST_NAME_MAX
];
1106 uint32_t live_timer
= 0;
1107 bool snapshot
= false;
1109 memset(session_name
, 0, LTTNG_NAME_MAX
);
1110 memset(hostname
, 0, LTTNG_HOST_NAME_MAX
);
1112 memset(&reply
, 0, sizeof(reply
));
1114 if (conn
->minor
< 4) {
1115 /* From 2.1 to 2.3 */
1117 } else if (conn
->minor
>= 4 && conn
->minor
< 11) {
1118 /* From 2.4 to 2.10 */
1119 ret
= cmd_create_session_2_4(payload
, session_name
,
1120 hostname
, &live_timer
, &snapshot
);
1122 /* From 2.11 to ... */
1123 ret
= cmd_create_session_2_11(payload
, session_name
,
1124 hostname
, &live_timer
, &snapshot
);
1131 session
= session_create(session_name
, hostname
, live_timer
,
1132 snapshot
, conn
->major
, conn
->minor
);
1137 assert(!conn
->session
);
1138 conn
->session
= session
;
1139 DBG("Created session %" PRIu64
, session
->id
);
1141 reply
.session_id
= htobe64(session
->id
);
1145 reply
.ret_code
= htobe32(LTTNG_ERR_FATAL
);
1147 reply
.ret_code
= htobe32(LTTNG_OK
);
1150 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1151 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1152 ERR("Failed to send \"create session\" command reply (ret = %zd)",
1161 * When we have received all the streams and the metadata for a channel,
1162 * we make them visible to the viewer threads.
1164 static void publish_connection_local_streams(struct relay_connection
*conn
)
1166 struct relay_stream
*stream
;
1167 struct relay_session
*session
= conn
->session
;
1170 * We publish all streams belonging to a session atomically wrt
1173 pthread_mutex_lock(&session
->lock
);
1175 cds_list_for_each_entry_rcu(stream
, &session
->recv_list
,
1177 stream_publish(stream
);
1182 * Inform the viewer that there are new streams in the session.
1184 if (session
->viewer_attached
) {
1185 uatomic_set(&session
->new_streams
, 1);
1187 pthread_mutex_unlock(&session
->lock
);
1191 * relay_add_stream: allocate a new stream for a session
1193 static int relay_add_stream(const struct lttcomm_relayd_hdr
*recv_hdr
,
1194 struct relay_connection
*conn
,
1195 const struct lttng_buffer_view
*payload
)
1199 struct relay_session
*session
= conn
->session
;
1200 struct relay_stream
*stream
= NULL
;
1201 struct lttcomm_relayd_status_stream reply
;
1202 struct ctf_trace
*trace
= NULL
;
1203 uint64_t stream_handle
= -1ULL;
1204 char *path_name
= NULL
, *channel_name
= NULL
;
1205 uint64_t tracefile_size
= 0, tracefile_count
= 0;
1206 struct relay_stream_chunk_id stream_chunk_id
= { 0 };
1208 if (!session
|| !conn
->version_check_done
) {
1209 ERR("Trying to add a stream before version check");
1211 goto end_no_session
;
1214 if (session
->minor
== 1) {
1216 ret
= cmd_recv_stream_2_1(payload
, &path_name
,
1218 } else if (session
->minor
> 1 && session
->minor
< 11) {
1219 /* From 2.2 to 2.10 */
1220 ret
= cmd_recv_stream_2_2(payload
, &path_name
,
1221 &channel_name
, &tracefile_size
, &tracefile_count
);
1223 /* From 2.11 to ... */
1224 ret
= cmd_recv_stream_2_11(payload
, &path_name
,
1225 &channel_name
, &tracefile_size
, &tracefile_count
,
1226 &stream_chunk_id
.value
);
1227 stream_chunk_id
.is_set
= true;
1234 trace
= ctf_trace_get_by_path_or_create(session
, path_name
);
1238 /* This stream here has one reference on the trace. */
1240 pthread_mutex_lock(&last_relay_stream_id_lock
);
1241 stream_handle
= ++last_relay_stream_id
;
1242 pthread_mutex_unlock(&last_relay_stream_id_lock
);
1244 /* We pass ownership of path_name and channel_name. */
1245 stream
= stream_create(trace
, stream_handle
, path_name
,
1246 channel_name
, tracefile_size
, tracefile_count
,
1249 channel_name
= NULL
;
1252 * Streams are the owners of their trace. Reference to trace is
1253 * kept within stream_create().
1255 ctf_trace_put(trace
);
1258 memset(&reply
, 0, sizeof(reply
));
1259 reply
.handle
= htobe64(stream_handle
);
1261 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1263 reply
.ret_code
= htobe32(LTTNG_OK
);
1266 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1267 sizeof(struct lttcomm_relayd_status_stream
), 0);
1268 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1269 ERR("Failed to send \"add stream\" command reply (ret = %zd)",
1281 * relay_close_stream: close a specific stream
1283 static int relay_close_stream(const struct lttcomm_relayd_hdr
*recv_hdr
,
1284 struct relay_connection
*conn
,
1285 const struct lttng_buffer_view
*payload
)
1289 struct relay_session
*session
= conn
->session
;
1290 struct lttcomm_relayd_close_stream stream_info
;
1291 struct lttcomm_relayd_generic_reply reply
;
1292 struct relay_stream
*stream
;
1294 DBG("Close stream received");
1296 if (!session
|| !conn
->version_check_done
) {
1297 ERR("Trying to close a stream before version check");
1299 goto end_no_session
;
1302 if (payload
->size
< sizeof(stream_info
)) {
1303 ERR("Unexpected payload size in \"relay_close_stream\": expected >= %zu bytes, got %zu bytes",
1304 sizeof(stream_info
), payload
->size
);
1306 goto end_no_session
;
1308 memcpy(&stream_info
, payload
->data
, sizeof(stream_info
));
1309 stream_info
.stream_id
= be64toh(stream_info
.stream_id
);
1310 stream_info
.last_net_seq_num
= be64toh(stream_info
.last_net_seq_num
);
1312 stream
= stream_get_by_id(stream_info
.stream_id
);
1319 * Set last_net_seq_num before the close flag. Required by data
1322 pthread_mutex_lock(&stream
->lock
);
1323 stream
->last_net_seq_num
= stream_info
.last_net_seq_num
;
1324 pthread_mutex_unlock(&stream
->lock
);
1327 * This is one of the conditions which may trigger a stream close
1328 * with the others being:
1329 * 1) A close command is received for a stream
1330 * 2) The control connection owning the stream is closed
1331 * 3) We have received all of the stream's data _after_ a close
1334 try_stream_close(stream
);
1335 if (stream
->is_metadata
) {
1336 struct relay_viewer_stream
*vstream
;
1338 vstream
= viewer_stream_get_by_id(stream
->stream_handle
);
1340 if (vstream
->metadata_sent
== stream
->metadata_received
) {
1342 * Since all the metadata has been sent to the
1343 * viewer and that we have a request to close
1344 * its stream, we can safely teardown the
1345 * corresponding metadata viewer stream.
1347 viewer_stream_put(vstream
);
1349 /* Put local reference. */
1350 viewer_stream_put(vstream
);
1357 memset(&reply
, 0, sizeof(reply
));
1359 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1361 reply
.ret_code
= htobe32(LTTNG_OK
);
1363 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1364 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1365 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1366 ERR("Failed to send \"close stream\" command reply (ret = %zd)",
1376 * relay_reset_metadata: reset a metadata stream
1379 int relay_reset_metadata(const struct lttcomm_relayd_hdr
*recv_hdr
,
1380 struct relay_connection
*conn
,
1381 const struct lttng_buffer_view
*payload
)
1385 struct relay_session
*session
= conn
->session
;
1386 struct lttcomm_relayd_reset_metadata stream_info
;
1387 struct lttcomm_relayd_generic_reply reply
;
1388 struct relay_stream
*stream
;
1390 DBG("Reset metadata received");
1392 if (!session
|| !conn
->version_check_done
) {
1393 ERR("Trying to reset a metadata stream before version check");
1395 goto end_no_session
;
1398 if (payload
->size
< sizeof(stream_info
)) {
1399 ERR("Unexpected payload size in \"relay_reset_metadata\": expected >= %zu bytes, got %zu bytes",
1400 sizeof(stream_info
), payload
->size
);
1402 goto end_no_session
;
1404 memcpy(&stream_info
, payload
->data
, sizeof(stream_info
));
1405 stream_info
.stream_id
= be64toh(stream_info
.stream_id
);
1406 stream_info
.version
= be64toh(stream_info
.version
);
1408 DBG("Update metadata to version %" PRIu64
, stream_info
.version
);
1410 /* Unsupported for live sessions for now. */
1411 if (session
->live_timer
!= 0) {
1416 stream
= stream_get_by_id(stream_info
.stream_id
);
1421 pthread_mutex_lock(&stream
->lock
);
1422 if (!stream
->is_metadata
) {
1427 ret
= utils_rotate_stream_file(stream
->path_name
, stream
->channel_name
,
1428 0, 0, -1, -1, stream
->stream_fd
->fd
, NULL
,
1429 &stream
->stream_fd
->fd
);
1431 ERR("Failed to rotate metadata file %s of channel %s",
1432 stream
->path_name
, stream
->channel_name
);
1437 pthread_mutex_unlock(&stream
->lock
);
1441 memset(&reply
, 0, sizeof(reply
));
1443 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1445 reply
.ret_code
= htobe32(LTTNG_OK
);
1447 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1448 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1449 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1450 ERR("Failed to send \"reset metadata\" command reply (ret = %zd)",
1460 * relay_unknown_command: send -1 if received unknown command
1462 static void relay_unknown_command(struct relay_connection
*conn
)
1464 struct lttcomm_relayd_generic_reply reply
;
1467 memset(&reply
, 0, sizeof(reply
));
1468 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1469 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1470 if (send_ret
< sizeof(reply
)) {
1471 ERR("Failed to send \"unknown command\" command reply (ret = %zd)", send_ret
);
1476 * relay_start: send an acknowledgment to the client to tell if we are
1477 * ready to receive data. We are ready if a session is established.
1479 static int relay_start(const struct lttcomm_relayd_hdr
*recv_hdr
,
1480 struct relay_connection
*conn
,
1481 const struct lttng_buffer_view
*payload
)
1485 struct lttcomm_relayd_generic_reply reply
;
1486 struct relay_session
*session
= conn
->session
;
1489 DBG("Trying to start the streaming without a session established");
1490 ret
= htobe32(LTTNG_ERR_UNK
);
1493 memset(&reply
, 0, sizeof(reply
));
1494 reply
.ret_code
= htobe32(LTTNG_OK
);
1495 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1497 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1498 ERR("Failed to send \"relay_start\" command reply (ret = %zd)",
1507 * Append padding to the file pointed by the file descriptor fd.
1509 static int write_padding_to_file(int fd
, uint32_t size
)
1518 zeros
= zmalloc(size
);
1519 if (zeros
== NULL
) {
1520 PERROR("zmalloc zeros for padding");
1525 ret
= lttng_write(fd
, zeros
, size
);
1527 PERROR("write padding to file");
1537 * Close the current index file if it is open, and create a new one.
1539 * Return 0 on success, -1 on error.
1542 int create_rotate_index_file(struct relay_stream
*stream
,
1543 const char *stream_path
)
1546 uint32_t major
, minor
;
1548 /* Put ref on previous index_file. */
1549 if (stream
->index_file
) {
1550 lttng_index_file_put(stream
->index_file
);
1551 stream
->index_file
= NULL
;
1553 major
= stream
->trace
->session
->major
;
1554 minor
= stream
->trace
->session
->minor
;
1555 stream
->index_file
= lttng_index_file_create(stream_path
,
1556 stream
->channel_name
,
1557 -1, -1, stream
->tracefile_size
,
1558 tracefile_array_get_file_index_head(stream
->tfa
),
1559 lttng_to_index_major(major
, minor
),
1560 lttng_to_index_minor(major
, minor
));
1561 if (!stream
->index_file
) {
1573 int do_rotate_stream_data(struct relay_stream
*stream
)
1577 DBG("Rotating stream %" PRIu64
" data file",
1578 stream
->stream_handle
);
1579 /* Perform the stream rotation. */
1580 ret
= utils_rotate_stream_file(stream
->path_name
,
1581 stream
->channel_name
, stream
->tracefile_size
,
1582 stream
->tracefile_count
, -1,
1583 -1, stream
->stream_fd
->fd
,
1584 NULL
, &stream
->stream_fd
->fd
);
1586 ERR("Rotating stream output file");
1589 stream
->tracefile_size_current
= 0;
1590 stream
->pos_after_last_complete_data_index
= 0;
1591 stream
->data_rotated
= true;
1593 if (stream
->data_rotated
&& stream
->index_rotated
) {
1594 /* Rotation completed; reset its state. */
1595 DBG("Rotation completed for stream %" PRIu64
,
1596 stream
->stream_handle
);
1597 stream
->rotate_at_seq_num
= -1ULL;
1598 stream
->data_rotated
= false;
1599 stream
->index_rotated
= false;
1606 * If too much data has been written in a tracefile before we received the
1607 * rotation command, we have to move the excess data to the new tracefile and
1608 * perform the rotation. This can happen because the control and data
1609 * connections are separate, the indexes as well as the commands arrive from
1610 * the control connection and we have no control over the order so we could be
1611 * in a situation where too much data has been received on the data connection
1612 * before the rotation command on the control connection arrives.
1615 int rotate_truncate_stream(struct relay_stream
*stream
)
1619 uint64_t diff
, pos
= 0;
1620 char buf
[FILE_COPY_BUFFER_SIZE
];
1622 assert(!stream
->is_metadata
);
1624 assert(stream
->tracefile_size_current
>
1625 stream
->pos_after_last_complete_data_index
);
1626 diff
= stream
->tracefile_size_current
-
1627 stream
->pos_after_last_complete_data_index
;
1629 /* Create the new tracefile. */
1630 new_fd
= utils_create_stream_file(stream
->path_name
,
1631 stream
->channel_name
,
1632 stream
->tracefile_size
, stream
->tracefile_count
,
1633 /* uid */ -1, /* gid */ -1, /* suffix */ NULL
);
1635 ERR("Failed to create new stream file at path %s for channel %s",
1636 stream
->path_name
, stream
->channel_name
);
1642 * Rewind the current tracefile to the position at which the rotation
1643 * should have occurred.
1645 lseek_ret
= lseek(stream
->stream_fd
->fd
,
1646 stream
->pos_after_last_complete_data_index
, SEEK_SET
);
1647 if (lseek_ret
< 0) {
1648 PERROR("seek truncate stream");
1653 /* Move data from the old file to the new file. */
1654 while (pos
< diff
) {
1655 uint64_t count
, bytes_left
;
1658 bytes_left
= diff
- pos
;
1659 count
= bytes_left
> sizeof(buf
) ? sizeof(buf
) : bytes_left
;
1660 assert(count
<= SIZE_MAX
);
1662 io_ret
= lttng_read(stream
->stream_fd
->fd
, buf
, count
);
1663 if (io_ret
< (ssize_t
) count
) {
1664 char error_string
[256];
1666 snprintf(error_string
, sizeof(error_string
),
1667 "Failed to read %" PRIu64
" bytes from fd %i in rotate_truncate_stream(), returned %zi",
1668 count
, stream
->stream_fd
->fd
, io_ret
);
1670 PERROR("%s", error_string
);
1672 ERR("%s", error_string
);
1678 io_ret
= lttng_write(new_fd
, buf
, count
);
1679 if (io_ret
< (ssize_t
) count
) {
1680 char error_string
[256];
1682 snprintf(error_string
, sizeof(error_string
),
1683 "Failed to write %" PRIu64
" bytes from fd %i in rotate_truncate_stream(), returned %zi",
1684 count
, new_fd
, io_ret
);
1686 PERROR("%s", error_string
);
1688 ERR("%s", error_string
);
1697 /* Truncate the file to get rid of the excess data. */
1698 ret
= ftruncate(stream
->stream_fd
->fd
,
1699 stream
->pos_after_last_complete_data_index
);
1701 PERROR("ftruncate");
1705 ret
= close(stream
->stream_fd
->fd
);
1707 PERROR("Closing tracefile");
1712 * Update the offset and FD of all the eventual indexes created by the
1713 * data connection before the rotation command arrived.
1715 ret
= relay_index_switch_all_files(stream
);
1717 ERR("Failed to rotate index file");
1721 stream
->stream_fd
->fd
= new_fd
;
1722 stream
->tracefile_size_current
= diff
;
1723 stream
->pos_after_last_complete_data_index
= 0;
1724 stream
->rotate_at_seq_num
= -1ULL;
1733 * Check if a stream's index file should be rotated (for session rotation).
1734 * Must be called with the stream lock held.
1736 * Return 0 on success, a negative value on error.
1739 int try_rotate_stream_index(struct relay_stream
*stream
)
1743 if (stream
->rotate_at_seq_num
== -1ULL) {
1744 /* No rotation expected. */
1748 if (stream
->index_rotated
) {
1749 /* Rotation of the index has already occurred. */
1753 if (stream
->prev_index_seq
== -1ULL ||
1754 stream
->prev_index_seq
< stream
->rotate_at_seq_num
) {
1755 DBG("Stream %" PRIu64
" index not yet ready for rotation (rotate_at_seq_num = %" PRIu64
", prev_index_seq = %" PRIu64
")",
1756 stream
->stream_handle
,
1757 stream
->rotate_at_seq_num
,
1758 stream
->prev_index_seq
);
1760 } else if (stream
->prev_index_seq
!= stream
->rotate_at_seq_num
) {
1762 * Unexpected, protocol error/bug.
1763 * It could mean that we received a rotation position
1764 * that is in the past.
1766 ERR("Stream %" PRIu64
" index is in an inconsistent state (rotate_at_seq_num = %" PRIu64
", prev_data_seq = %" PRIu64
", prev_index_seq = %" PRIu64
")",
1767 stream
->stream_handle
,
1768 stream
->rotate_at_seq_num
,
1769 stream
->prev_data_seq
,
1770 stream
->prev_index_seq
);
1774 DBG("Rotating stream %" PRIu64
" index file",
1775 stream
->stream_handle
);
1776 ret
= create_rotate_index_file(stream
, stream
->path_name
);
1777 stream
->index_rotated
= true;
1779 if (stream
->data_rotated
&& stream
->index_rotated
) {
1780 /* Rotation completed; reset its state. */
1781 DBG("Rotation completed for stream %" PRIu64
,
1782 stream
->stream_handle
);
1783 stream
->rotate_at_seq_num
= -1ULL;
1784 stream
->data_rotated
= false;
1785 stream
->index_rotated
= false;
1794 * Check if a stream's data file (as opposed to index) should be rotated
1795 * (for session rotation).
1796 * Must be called with the stream lock held.
1798 * Return 0 on success, a negative value on error.
1801 int try_rotate_stream_data(struct relay_stream
*stream
)
1805 if (stream
->rotate_at_seq_num
== -1ULL) {
1806 /* No rotation expected. */
1810 if (stream
->data_rotated
) {
1811 /* Rotation of the data file has already occurred. */
1815 if (stream
->prev_data_seq
== -1ULL ||
1816 stream
->prev_data_seq
< stream
->rotate_at_seq_num
) {
1817 DBG("Stream %" PRIu64
" not yet ready for rotation (rotate_at_seq_num = %" PRIu64
", prev_data_seq = %" PRIu64
")",
1818 stream
->stream_handle
,
1819 stream
->rotate_at_seq_num
,
1820 stream
->prev_data_seq
);
1822 } else if (stream
->prev_data_seq
> stream
->rotate_at_seq_num
) {
1824 * prev_data_seq is checked here since indexes and rotation
1825 * commands are serialized with respect to each other.
1827 DBG("Rotation after too much data has been written in tracefile "
1828 "for stream %" PRIu64
", need to truncate before "
1829 "rotating", stream
->stream_handle
);
1830 ret
= rotate_truncate_stream(stream
);
1832 ERR("Failed to truncate stream");
1835 } else if (stream
->prev_data_seq
!= stream
->rotate_at_seq_num
) {
1837 * Unexpected, protocol error/bug.
1838 * It could mean that we received a rotation position
1839 * that is in the past.
1841 ERR("Stream %" PRIu64
" data is in an inconsistent state (rotate_at_seq_num = %" PRIu64
", prev_data_seq = %" PRIu64
")",
1842 stream
->stream_handle
,
1843 stream
->rotate_at_seq_num
,
1844 stream
->prev_data_seq
);
1848 ret
= do_rotate_stream_data(stream
);
1856 * relay_recv_metadata: receive the metadata for the session.
1858 static int relay_recv_metadata(const struct lttcomm_relayd_hdr
*recv_hdr
,
1859 struct relay_connection
*conn
,
1860 const struct lttng_buffer_view
*payload
)
1864 struct relay_session
*session
= conn
->session
;
1865 struct lttcomm_relayd_metadata_payload metadata_payload_header
;
1866 struct relay_stream
*metadata_stream
;
1867 uint64_t metadata_payload_size
;
1870 ERR("Metadata sent before version check");
1875 if (recv_hdr
->data_size
< sizeof(struct lttcomm_relayd_metadata_payload
)) {
1876 ERR("Incorrect data size");
1880 metadata_payload_size
= recv_hdr
->data_size
-
1881 sizeof(struct lttcomm_relayd_metadata_payload
);
1883 memcpy(&metadata_payload_header
, payload
->data
,
1884 sizeof(metadata_payload_header
));
1885 metadata_payload_header
.stream_id
= be64toh(
1886 metadata_payload_header
.stream_id
);
1887 metadata_payload_header
.padding_size
= be32toh(
1888 metadata_payload_header
.padding_size
);
1890 metadata_stream
= stream_get_by_id(metadata_payload_header
.stream_id
);
1891 if (!metadata_stream
) {
1896 pthread_mutex_lock(&metadata_stream
->lock
);
1898 size_ret
= lttng_write(metadata_stream
->stream_fd
->fd
,
1899 payload
->data
+ sizeof(metadata_payload_header
),
1900 metadata_payload_size
);
1901 if (size_ret
< metadata_payload_size
) {
1902 ERR("Relay error writing metadata on file");
1907 size_ret
= write_padding_to_file(metadata_stream
->stream_fd
->fd
,
1908 metadata_payload_header
.padding_size
);
1909 if (size_ret
< (int64_t) metadata_payload_header
.padding_size
) {
1914 metadata_stream
->metadata_received
+=
1915 metadata_payload_size
+ metadata_payload_header
.padding_size
;
1916 DBG2("Relay metadata written. Updated metadata_received %" PRIu64
,
1917 metadata_stream
->metadata_received
);
1919 ret
= try_rotate_stream_data(metadata_stream
);
1925 pthread_mutex_unlock(&metadata_stream
->lock
);
1926 stream_put(metadata_stream
);
1932 * relay_send_version: send relayd version number
1934 static int relay_send_version(const struct lttcomm_relayd_hdr
*recv_hdr
,
1935 struct relay_connection
*conn
,
1936 const struct lttng_buffer_view
*payload
)
1940 struct lttcomm_relayd_version reply
, msg
;
1941 bool compatible
= true;
1943 conn
->version_check_done
= true;
1945 /* Get version from the other side. */
1946 if (payload
->size
< sizeof(msg
)) {
1947 ERR("Unexpected payload size in \"relay_send_version\": expected >= %zu bytes, got %zu bytes",
1948 sizeof(msg
), payload
->size
);
1953 memcpy(&msg
, payload
->data
, sizeof(msg
));
1954 msg
.major
= be32toh(msg
.major
);
1955 msg
.minor
= be32toh(msg
.minor
);
1957 memset(&reply
, 0, sizeof(reply
));
1958 reply
.major
= RELAYD_VERSION_COMM_MAJOR
;
1959 reply
.minor
= RELAYD_VERSION_COMM_MINOR
;
1961 /* Major versions must be the same */
1962 if (reply
.major
!= msg
.major
) {
1963 DBG("Incompatible major versions (%u vs %u), deleting session",
1964 reply
.major
, msg
.major
);
1968 conn
->major
= reply
.major
;
1969 /* We adapt to the lowest compatible version */
1970 if (reply
.minor
<= msg
.minor
) {
1971 conn
->minor
= reply
.minor
;
1973 conn
->minor
= msg
.minor
;
1976 reply
.major
= htobe32(reply
.major
);
1977 reply
.minor
= htobe32(reply
.minor
);
1978 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1980 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1981 ERR("Failed to send \"send version\" command reply (ret = %zd)",
1994 DBG("Version check done using protocol %u.%u", conn
->major
,
2002 * Check for data pending for a given stream id from the session daemon.
2004 static int relay_data_pending(const struct lttcomm_relayd_hdr
*recv_hdr
,
2005 struct relay_connection
*conn
,
2006 const struct lttng_buffer_view
*payload
)
2008 struct relay_session
*session
= conn
->session
;
2009 struct lttcomm_relayd_data_pending msg
;
2010 struct lttcomm_relayd_generic_reply reply
;
2011 struct relay_stream
*stream
;
2014 uint64_t stream_seq
;
2016 DBG("Data pending command received");
2018 if (!session
|| !conn
->version_check_done
) {
2019 ERR("Trying to check for data before version check");
2021 goto end_no_session
;
2024 if (payload
->size
< sizeof(msg
)) {
2025 ERR("Unexpected payload size in \"relay_data_pending\": expected >= %zu bytes, got %zu bytes",
2026 sizeof(msg
), payload
->size
);
2028 goto end_no_session
;
2030 memcpy(&msg
, payload
->data
, sizeof(msg
));
2031 msg
.stream_id
= be64toh(msg
.stream_id
);
2032 msg
.last_net_seq_num
= be64toh(msg
.last_net_seq_num
);
2034 stream
= stream_get_by_id(msg
.stream_id
);
2035 if (stream
== NULL
) {
2040 pthread_mutex_lock(&stream
->lock
);
2042 if (session_streams_have_index(session
)) {
2044 * Ensure that both the index and stream data have been
2045 * flushed up to the requested point.
2047 stream_seq
= min(stream
->prev_data_seq
, stream
->prev_index_seq
);
2049 stream_seq
= stream
->prev_data_seq
;
2051 DBG("Data pending for stream id %" PRIu64
": prev_data_seq %" PRIu64
2052 ", prev_index_seq %" PRIu64
2053 ", and last_seq %" PRIu64
, msg
.stream_id
,
2054 stream
->prev_data_seq
, stream
->prev_index_seq
,
2055 msg
.last_net_seq_num
);
2057 /* Avoid wrapping issue */
2058 if (((int64_t) (stream_seq
- msg
.last_net_seq_num
)) >= 0) {
2059 /* Data has in fact been written and is NOT pending */
2062 /* Data still being streamed thus pending */
2066 stream
->data_pending_check_done
= true;
2067 pthread_mutex_unlock(&stream
->lock
);
2072 memset(&reply
, 0, sizeof(reply
));
2073 reply
.ret_code
= htobe32(ret
);
2074 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2075 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2076 ERR("Failed to send \"data pending\" command reply (ret = %zd)",
2086 * Wait for the control socket to reach a quiescent state.
2088 * Note that for now, when receiving this command from the session
2089 * daemon, this means that every subsequent commands or data received on
2090 * the control socket has been handled. So, this is why we simply return
2093 static int relay_quiescent_control(const struct lttcomm_relayd_hdr
*recv_hdr
,
2094 struct relay_connection
*conn
,
2095 const struct lttng_buffer_view
*payload
)
2099 struct relay_stream
*stream
;
2100 struct lttcomm_relayd_quiescent_control msg
;
2101 struct lttcomm_relayd_generic_reply reply
;
2103 DBG("Checking quiescent state on control socket");
2105 if (!conn
->session
|| !conn
->version_check_done
) {
2106 ERR("Trying to check for data before version check");
2108 goto end_no_session
;
2111 if (payload
->size
< sizeof(msg
)) {
2112 ERR("Unexpected payload size in \"relay_quiescent_control\": expected >= %zu bytes, got %zu bytes",
2113 sizeof(msg
), payload
->size
);
2115 goto end_no_session
;
2117 memcpy(&msg
, payload
->data
, sizeof(msg
));
2118 msg
.stream_id
= be64toh(msg
.stream_id
);
2120 stream
= stream_get_by_id(msg
.stream_id
);
2124 pthread_mutex_lock(&stream
->lock
);
2125 stream
->data_pending_check_done
= true;
2126 pthread_mutex_unlock(&stream
->lock
);
2128 DBG("Relay quiescent control pending flag set to %" PRIu64
, msg
.stream_id
);
2131 memset(&reply
, 0, sizeof(reply
));
2132 reply
.ret_code
= htobe32(LTTNG_OK
);
2133 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2134 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2135 ERR("Failed to send \"quiescent control\" command reply (ret = %zd)",
2147 * Initialize a data pending command. This means that a consumer is about
2148 * to ask for data pending for each stream it holds. Simply iterate over
2149 * all streams of a session and set the data_pending_check_done flag.
2151 * This command returns to the client a LTTNG_OK code.
2153 static int relay_begin_data_pending(const struct lttcomm_relayd_hdr
*recv_hdr
,
2154 struct relay_connection
*conn
,
2155 const struct lttng_buffer_view
*payload
)
2159 struct lttng_ht_iter iter
;
2160 struct lttcomm_relayd_begin_data_pending msg
;
2161 struct lttcomm_relayd_generic_reply reply
;
2162 struct relay_stream
*stream
;
2167 DBG("Init streams for data pending");
2169 if (!conn
->session
|| !conn
->version_check_done
) {
2170 ERR("Trying to check for data before version check");
2172 goto end_no_session
;
2175 if (payload
->size
< sizeof(msg
)) {
2176 ERR("Unexpected payload size in \"relay_begin_data_pending\": expected >= %zu bytes, got %zu bytes",
2177 sizeof(msg
), payload
->size
);
2179 goto end_no_session
;
2181 memcpy(&msg
, payload
->data
, sizeof(msg
));
2182 msg
.session_id
= be64toh(msg
.session_id
);
2185 * Iterate over all streams to set the begin data pending flag.
2186 * For now, the streams are indexed by stream handle so we have
2187 * to iterate over all streams to find the one associated with
2188 * the right session_id.
2191 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
2193 if (!stream_get(stream
)) {
2196 if (stream
->trace
->session
->id
== msg
.session_id
) {
2197 pthread_mutex_lock(&stream
->lock
);
2198 stream
->data_pending_check_done
= false;
2199 pthread_mutex_unlock(&stream
->lock
);
2200 DBG("Set begin data pending flag to stream %" PRIu64
,
2201 stream
->stream_handle
);
2207 memset(&reply
, 0, sizeof(reply
));
2208 /* All good, send back reply. */
2209 reply
.ret_code
= htobe32(LTTNG_OK
);
2211 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2212 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2213 ERR("Failed to send \"begin data pending\" command reply (ret = %zd)",
2225 * End data pending command. This will check, for a given session id, if
2226 * each stream associated with it has its data_pending_check_done flag
2227 * set. If not, this means that the client lost track of the stream but
2228 * the data is still being streamed on our side. In this case, we inform
2229 * the client that data is in flight.
2231 * Return to the client if there is data in flight or not with a ret_code.
2233 static int relay_end_data_pending(const struct lttcomm_relayd_hdr
*recv_hdr
,
2234 struct relay_connection
*conn
,
2235 const struct lttng_buffer_view
*payload
)
2239 struct lttng_ht_iter iter
;
2240 struct lttcomm_relayd_end_data_pending msg
;
2241 struct lttcomm_relayd_generic_reply reply
;
2242 struct relay_stream
*stream
;
2243 uint32_t is_data_inflight
= 0;
2245 DBG("End data pending command");
2247 if (!conn
->session
|| !conn
->version_check_done
) {
2248 ERR("Trying to check for data before version check");
2250 goto end_no_session
;
2253 if (payload
->size
< sizeof(msg
)) {
2254 ERR("Unexpected payload size in \"relay_end_data_pending\": expected >= %zu bytes, got %zu bytes",
2255 sizeof(msg
), payload
->size
);
2257 goto end_no_session
;
2259 memcpy(&msg
, payload
->data
, sizeof(msg
));
2260 msg
.session_id
= be64toh(msg
.session_id
);
2263 * Iterate over all streams to see if the begin data pending
2267 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
2269 if (!stream_get(stream
)) {
2272 if (stream
->trace
->session
->id
!= msg
.session_id
) {
2276 pthread_mutex_lock(&stream
->lock
);
2277 if (!stream
->data_pending_check_done
) {
2278 uint64_t stream_seq
;
2280 if (session_streams_have_index(conn
->session
)) {
2282 * Ensure that both the index and stream data have been
2283 * flushed up to the requested point.
2285 stream_seq
= min(stream
->prev_data_seq
, stream
->prev_index_seq
);
2287 stream_seq
= stream
->prev_data_seq
;
2289 if (!stream
->closed
|| !(((int64_t) (stream_seq
- stream
->last_net_seq_num
)) >= 0)) {
2290 is_data_inflight
= 1;
2291 DBG("Data is still in flight for stream %" PRIu64
,
2292 stream
->stream_handle
);
2293 pthread_mutex_unlock(&stream
->lock
);
2298 pthread_mutex_unlock(&stream
->lock
);
2303 memset(&reply
, 0, sizeof(reply
));
2304 /* All good, send back reply. */
2305 reply
.ret_code
= htobe32(is_data_inflight
);
2307 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2308 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2309 ERR("Failed to send \"end data pending\" command reply (ret = %zd)",
2321 * Receive an index for a specific stream.
2323 * Return 0 on success else a negative value.
2325 static int relay_recv_index(const struct lttcomm_relayd_hdr
*recv_hdr
,
2326 struct relay_connection
*conn
,
2327 const struct lttng_buffer_view
*payload
)
2331 struct relay_session
*session
= conn
->session
;
2332 struct lttcomm_relayd_index index_info
;
2333 struct relay_index
*index
;
2334 struct lttcomm_relayd_generic_reply reply
;
2335 struct relay_stream
*stream
;
2340 DBG("Relay receiving index");
2342 if (!session
|| !conn
->version_check_done
) {
2343 ERR("Trying to close a stream before version check");
2345 goto end_no_session
;
2348 msg_len
= lttcomm_relayd_index_len(
2349 lttng_to_index_major(conn
->major
, conn
->minor
),
2350 lttng_to_index_minor(conn
->major
, conn
->minor
));
2351 if (payload
->size
< msg_len
) {
2352 ERR("Unexpected payload size in \"relay_recv_index\": expected >= %zu bytes, got %zu bytes",
2353 msg_len
, payload
->size
);
2355 goto end_no_session
;
2357 memcpy(&index_info
, payload
->data
, msg_len
);
2358 index_info
.relay_stream_id
= be64toh(index_info
.relay_stream_id
);
2359 index_info
.net_seq_num
= be64toh(index_info
.net_seq_num
);
2360 index_info
.packet_size
= be64toh(index_info
.packet_size
);
2361 index_info
.content_size
= be64toh(index_info
.content_size
);
2362 index_info
.timestamp_begin
= be64toh(index_info
.timestamp_begin
);
2363 index_info
.timestamp_end
= be64toh(index_info
.timestamp_end
);
2364 index_info
.events_discarded
= be64toh(index_info
.events_discarded
);
2365 index_info
.stream_id
= be64toh(index_info
.stream_id
);
2367 if (conn
->minor
>= 8) {
2368 index_info
.stream_instance_id
=
2369 be64toh(index_info
.stream_instance_id
);
2370 index_info
.packet_seq_num
= be64toh(index_info
.packet_seq_num
);
2373 stream
= stream_get_by_id(index_info
.relay_stream_id
);
2375 ERR("stream_get_by_id not found");
2379 pthread_mutex_lock(&stream
->lock
);
2381 /* Live beacon handling */
2382 if (index_info
.packet_size
== 0) {
2383 DBG("Received live beacon for stream %" PRIu64
,
2384 stream
->stream_handle
);
2387 * Only flag a stream inactive when it has already
2388 * received data and no indexes are in flight.
2390 if (stream
->index_received_seqcount
> 0
2391 && stream
->indexes_in_flight
== 0) {
2392 stream
->beacon_ts_end
= index_info
.timestamp_end
;
2395 goto end_stream_put
;
2397 stream
->beacon_ts_end
= -1ULL;
2400 if (stream
->ctf_stream_id
== -1ULL) {
2401 stream
->ctf_stream_id
= index_info
.stream_id
;
2403 index
= relay_index_get_by_id_or_create(stream
, index_info
.net_seq_num
);
2406 ERR("relay_index_get_by_id_or_create index NULL");
2407 goto end_stream_put
;
2409 if (set_index_control_data(index
, &index_info
, conn
)) {
2410 ERR("set_index_control_data error");
2411 relay_index_put(index
);
2413 goto end_stream_put
;
2415 ret
= relay_index_try_flush(index
);
2417 tracefile_array_commit_seq(stream
->tfa
);
2418 stream
->index_received_seqcount
++;
2419 stream
->pos_after_last_complete_data_index
+= index
->total_size
;
2420 stream
->prev_index_seq
= index_info
.net_seq_num
;
2422 ret
= try_rotate_stream_index(stream
);
2424 goto end_stream_put
;
2426 } else if (ret
> 0) {
2433 * relay_index_try_flush is responsible for the self-reference
2434 * put of the index object on error.
2436 ERR("relay_index_try_flush error %d", ret
);
2441 pthread_mutex_unlock(&stream
->lock
);
2446 memset(&reply
, 0, sizeof(reply
));
2448 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
2450 reply
.ret_code
= htobe32(LTTNG_OK
);
2452 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2453 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2454 ERR("Failed to send \"recv index\" command reply (ret = %zd)", send_ret
);
2463 * Receive the streams_sent message.
2465 * Return 0 on success else a negative value.
2467 static int relay_streams_sent(const struct lttcomm_relayd_hdr
*recv_hdr
,
2468 struct relay_connection
*conn
,
2469 const struct lttng_buffer_view
*payload
)
2473 struct lttcomm_relayd_generic_reply reply
;
2477 DBG("Relay receiving streams_sent");
2479 if (!conn
->session
|| !conn
->version_check_done
) {
2480 ERR("Trying to close a stream before version check");
2482 goto end_no_session
;
2486 * Publish every pending stream in the connection recv list which are
2487 * now ready to be used by the viewer.
2489 publish_connection_local_streams(conn
);
2491 memset(&reply
, 0, sizeof(reply
));
2492 reply
.ret_code
= htobe32(LTTNG_OK
);
2493 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2494 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2495 ERR("Failed to send \"streams sent\" command reply (ret = %zd)",
2508 * relay_rotate_session_stream: rotate a stream to a new tracefile for the session
2509 * rotation feature (not the tracefile rotation feature).
2511 static int relay_rotate_session_stream(const struct lttcomm_relayd_hdr
*recv_hdr
,
2512 struct relay_connection
*conn
,
2513 const struct lttng_buffer_view
*payload
)
2517 struct relay_session
*session
= conn
->session
;
2518 struct lttcomm_relayd_rotate_stream stream_info
;
2519 struct lttcomm_relayd_generic_reply reply
;
2520 struct relay_stream
*stream
;
2523 struct lttng_buffer_view new_path_view
;
2525 DBG("Rotate stream received");
2527 if (!session
|| !conn
->version_check_done
) {
2528 ERR("Trying to rotate a stream before version check");
2533 if (session
->major
== 2 && session
->minor
< 11) {
2534 ERR("Unsupported feature before 2.11");
2539 header_len
= sizeof(struct lttcomm_relayd_rotate_stream
);
2541 if (payload
->size
< header_len
) {
2542 ERR("Unexpected payload size in \"relay_rotate_session_stream\": expected >= %zu bytes, got %zu bytes",
2543 header_len
, payload
->size
);
2548 memcpy(&stream_info
, payload
->data
, header_len
);
2550 /* Convert to host */
2551 stream_info
.pathname_length
= be32toh(stream_info
.pathname_length
);
2552 stream_info
.stream_id
= be64toh(stream_info
.stream_id
);
2553 stream_info
.new_chunk_id
= be64toh(stream_info
.new_chunk_id
);
2554 stream_info
.rotate_at_seq_num
= be64toh(stream_info
.rotate_at_seq_num
);
2556 path_len
= stream_info
.pathname_length
;
2557 if (payload
->size
< header_len
+ path_len
) {
2558 ERR("Unexpected payload size in \"relay_rotate_session_stream\" including path: expected >= %zu bytes, got %zu bytes",
2559 header_len
+ path_len
, payload
->size
);
2564 /* Ensure it fits in local filename length. */
2565 if (path_len
>= LTTNG_PATH_MAX
) {
2566 ret
= -ENAMETOOLONG
;
2567 ERR("Length of relay_rotate_session_stream command's path name (%zu bytes) exceeds the maximal allowed length of %i bytes",
2568 path_len
, LTTNG_PATH_MAX
);
2572 new_path_view
= lttng_buffer_view_from_view(payload
, header_len
,
2573 stream_info
.pathname_length
);
2575 stream
= stream_get_by_id(stream_info
.stream_id
);
2581 pthread_mutex_lock(&stream
->lock
);
2584 * Update the trace path (just the folder, the stream name does not
2587 free(stream
->prev_path_name
);
2588 stream
->prev_path_name
= stream
->path_name
;
2589 stream
->path_name
= create_output_path(new_path_view
.data
);
2590 if (!stream
->path_name
) {
2591 ERR("Failed to create a new output path");
2593 goto end_stream_unlock
;
2595 ret
= utils_mkdir_recursive(stream
->path_name
, S_IRWXU
| S_IRWXG
,
2598 ERR("relay creating output directory");
2600 goto end_stream_unlock
;
2603 assert(stream
->current_chunk_id
.is_set
);
2604 stream
->current_chunk_id
.value
= stream_info
.new_chunk_id
;
2606 if (stream
->is_metadata
) {
2608 * Metadata streams have no index; consider its rotation
2611 stream
->index_rotated
= true;
2613 * The metadata stream is sent only over the control connection
2614 * so we know we have all the data to perform the stream
2617 ret
= do_rotate_stream_data(stream
);
2619 stream
->rotate_at_seq_num
= stream_info
.rotate_at_seq_num
;
2620 ret
= try_rotate_stream_data(stream
);
2622 goto end_stream_unlock
;
2625 ret
= try_rotate_stream_index(stream
);
2627 goto end_stream_unlock
;
2632 pthread_mutex_unlock(&stream
->lock
);
2635 memset(&reply
, 0, sizeof(reply
));
2637 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
2639 reply
.ret_code
= htobe32(LTTNG_OK
);
2641 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
2642 sizeof(struct lttcomm_relayd_generic_reply
), 0);
2643 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2644 ERR("Failed to send \"rotate session stream\" command reply (ret = %zd)",
2654 * relay_mkdir: Create a folder on the disk.
2656 static int relay_mkdir(const struct lttcomm_relayd_hdr
*recv_hdr
,
2657 struct relay_connection
*conn
,
2658 const struct lttng_buffer_view
*payload
)
2661 struct relay_session
*session
= conn
->session
;
2662 struct lttcomm_relayd_mkdir path_info_header
;
2663 struct lttcomm_relayd_generic_reply reply
;
2667 struct lttng_buffer_view path_view
;
2669 if (!session
|| !conn
->version_check_done
) {
2670 ERR("Trying to create a directory before version check");
2672 goto end_no_session
;
2675 if (session
->major
== 2 && session
->minor
< 11) {
2677 * This client is not supposed to use this command since
2678 * it predates its introduction.
2680 ERR("relay_mkdir command is unsupported before LTTng 2.11");
2682 goto end_no_session
;
2685 header_len
= sizeof(path_info_header
);
2686 if (payload
->size
< header_len
) {
2687 ERR("Unexpected payload size in \"relay_mkdir\": expected >= %zu bytes, got %zu bytes",
2688 header_len
, payload
->size
);
2690 goto end_no_session
;
2693 memcpy(&path_info_header
, payload
->data
, header_len
);
2695 path_info_header
.length
= be32toh(path_info_header
.length
);
2697 if (payload
->size
< header_len
+ path_info_header
.length
) {
2698 ERR("Unexpected payload size in \"relay_mkdir\" including path: expected >= %zu bytes, got %zu bytes",
2699 header_len
+ path_info_header
.length
, payload
->size
);
2701 goto end_no_session
;
2704 /* Ensure that it fits in local path length. */
2705 if (path_info_header
.length
>= LTTNG_PATH_MAX
) {
2706 ret
= -ENAMETOOLONG
;
2707 ERR("Path name argument of mkdir command (%" PRIu32
" bytes) exceeds the maximal length allowed (%d bytes)",
2708 path_info_header
.length
, LTTNG_PATH_MAX
);
2712 path_view
= lttng_buffer_view_from_view(payload
, header_len
,
2713 path_info_header
.length
);
2715 path
= create_output_path(path_view
.data
);
2717 ERR("Failed to create output path");
2722 DBG("MKDIR command has path \"%s\", changed to \"%s\"", path_view
.data
, path
);
2723 ret
= utils_mkdir_recursive(path
, S_IRWXU
| S_IRWXG
, -1, -1);
2725 ERR("relay creating output directory");
2732 memset(&reply
, 0, sizeof(reply
));
2734 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
2736 reply
.ret_code
= htobe32(LTTNG_OK
);
2738 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2739 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2740 ERR("Failed to send \"mkdir\" command reply (ret = %zd)", send_ret
);
2749 static int validate_rotate_rename_path_length(const char *path_type
,
2750 uint32_t path_length
)
2754 if (path_length
> LTTNG_PATH_MAX
) {
2755 ret
= -ENAMETOOLONG
;
2756 ERR("rotate rename \"%s\" path name length (%" PRIu32
" bytes) exceeds the allowed size of %i bytes",
2757 path_type
, path_length
, LTTNG_PATH_MAX
);
2758 } else if (path_length
== 0) {
2760 ERR("rotate rename \"%s\" path name has an illegal length of 0", path_type
);
2766 * relay_rotate_rename: rename the trace folder after a rotation is
2767 * completed. We are not closing any fd here, just moving the folder, so it
2768 * works even if data is still in-flight.
2770 static int relay_rotate_rename(const struct lttcomm_relayd_hdr
*recv_hdr
,
2771 struct relay_connection
*conn
,
2772 const struct lttng_buffer_view
*payload
)
2776 struct relay_session
*session
= conn
->session
;
2777 struct lttcomm_relayd_generic_reply reply
;
2778 struct lttcomm_relayd_rotate_rename header
;
2780 size_t received_paths_size
;
2781 char *complete_old_path
= NULL
, *complete_new_path
= NULL
;
2782 struct lttng_buffer_view old_path_view
;
2783 struct lttng_buffer_view new_path_view
;
2785 if (!session
|| !conn
->version_check_done
) {
2786 ERR("Trying to rename a trace folder before version check");
2791 if (session
->major
== 2 && session
->minor
< 11) {
2792 ERR("relay_rotate_rename command is unsupported before LTTng 2.11");
2797 header_len
= sizeof(header
);
2798 if (payload
->size
< header_len
) {
2799 ERR("Unexpected payload size in \"relay_rotate_rename\": expected >= %zu bytes, got %zu bytes",
2800 header_len
, payload
->size
);
2805 memcpy(&header
, payload
->data
, header_len
);
2807 header
.old_path_length
= be32toh(header
.old_path_length
);
2808 header
.new_path_length
= be32toh(header
.new_path_length
);
2809 received_paths_size
= header
.old_path_length
+ header
.new_path_length
;
2811 if (payload
->size
< header_len
+ received_paths_size
) {
2812 ERR("Unexpected payload size in \"relay_rotate_rename\" including paths: expected >= %zu bytes, got %zu bytes",
2813 header_len
, payload
->size
);
2818 /* Ensure the paths don't exceed their allowed size. */
2819 ret
= validate_rotate_rename_path_length("old", header
.old_path_length
);
2823 ret
= validate_rotate_rename_path_length("new", header
.new_path_length
);
2828 old_path_view
= lttng_buffer_view_from_view(payload
, header_len
,
2829 header
.old_path_length
);
2830 new_path_view
= lttng_buffer_view_from_view(payload
,
2831 header_len
+ header
.old_path_length
,
2832 header
.new_path_length
);
2834 /* Validate that both paths received are NULL terminated. */
2835 if (old_path_view
.data
[old_path_view
.size
- 1] != '\0') {
2836 ERR("relay_rotate_rename command's \"old\" path is invalid (not NULL terminated)");
2840 if (new_path_view
.data
[new_path_view
.size
- 1] != '\0') {
2841 ERR("relay_rotate_rename command's \"new\" path is invalid (not NULL terminated)");
2846 DBG("ROTATE_RENAME command has argument old path = \"%s\", new_path = \"%s\"",
2847 old_path_view
.data
, new_path_view
.data
);
2848 complete_old_path
= create_output_path(old_path_view
.data
);
2849 if (!complete_old_path
) {
2850 ERR("Failed to build old output path in rotate_rename command");
2855 complete_new_path
= create_output_path(new_path_view
.data
);
2856 if (!complete_new_path
) {
2857 ERR("Failed to build new output path in rotate_rename command");
2861 DBG("Expanded ROTATE_RENAME arguments to old path = \"%s\", new_path = \"%s\"",
2862 complete_old_path
, complete_new_path
);
2864 ret
= utils_mkdir_recursive(complete_new_path
, S_IRWXU
| S_IRWXG
,
2867 ERR("Failed to mkdir() rotate_rename's \"new\" output directory at \"%s\"",
2873 * If a domain has not yet created its channel, the domain-specific
2874 * folder might not exist, but this is not an error.
2876 ret
= rename(complete_old_path
, complete_new_path
);
2877 if (ret
< 0 && errno
!= ENOENT
) {
2878 PERROR("Renaming chunk in rotate_rename command from \"%s\" to \"%s\"",
2879 complete_old_path
, complete_new_path
);
2885 memset(&reply
, 0, sizeof(reply
));
2887 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
2889 reply
.ret_code
= htobe32(LTTNG_OK
);
2891 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
2893 if (send_ret
< sizeof(reply
)) {
2894 ERR("Failed to send \"rotate rename\" command reply (ret = %zd)",
2900 free(complete_old_path
);
2901 free(complete_new_path
);
2906 * Check if all the streams in the session have completed the last rotation.
2907 * The chunk_id value is used to distinguish the cases where a stream was
2908 * closed on the consumerd before the rotation started but it still active on
2909 * the relayd, and the case where a stream appeared on the consumerd/relayd
2910 * after the last rotation started (in that case, it is already writing in the
2911 * new chunk folder).
2914 int relay_rotate_pending(const struct lttcomm_relayd_hdr
*recv_hdr
,
2915 struct relay_connection
*conn
,
2916 const struct lttng_buffer_view
*payload
)
2918 struct relay_session
*session
= conn
->session
;
2919 struct lttcomm_relayd_rotate_pending msg
;
2920 struct lttcomm_relayd_rotate_pending_reply reply
;
2921 struct lttng_ht_iter iter
;
2922 struct relay_stream
*stream
;
2926 bool rotate_pending
= false;
2928 DBG("Rotate pending command received");
2930 if (!session
|| !conn
->version_check_done
) {
2931 ERR("Trying to check for data before version check");
2936 if (session
->major
== 2 && session
->minor
< 11) {
2937 ERR("Unsupported feature before 2.11");
2942 if (payload
->size
< sizeof(msg
)) {
2943 ERR("Unexpected payload size in \"relay_rotate_pending\": expected >= %zu bytes, got %zu bytes",
2944 sizeof(msg
), payload
->size
);
2949 memcpy(&msg
, payload
->data
, sizeof(msg
));
2951 chunk_id
= be64toh(msg
.chunk_id
);
2953 DBG("Evaluating rotate pending for session \"%s\" and chunk id %" PRIu64
,
2954 session
->session_name
, chunk_id
);
2957 * Iterate over all the streams in the session and check if they are
2958 * still waiting for data to perform their rotation.
2961 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
2963 if (!stream_get(stream
)) {
2966 if (stream
->trace
->session
!= session
) {
2970 pthread_mutex_lock(&stream
->lock
);
2971 if (stream
->rotate_at_seq_num
!= -1ULL) {
2972 /* We have not yet performed the rotation. */
2973 rotate_pending
= true;
2974 DBG("Stream %" PRIu64
" is still rotating",
2975 stream
->stream_handle
);
2976 } else if (stream
->current_chunk_id
.value
< chunk_id
) {
2978 * Stream closed on the consumer but still active on the
2981 rotate_pending
= true;
2982 DBG("Stream %" PRIu64
" did not exist on the consumer "
2983 "when the last rotation started, but is"
2984 "still waiting for data before getting"
2986 stream
->stream_handle
);
2988 pthread_mutex_unlock(&stream
->lock
);
2990 if (rotate_pending
) {
2997 memset(&reply
, 0, sizeof(reply
));
2998 reply
.generic
.ret_code
= htobe32((uint32_t) LTTNG_OK
);
2999 reply
.is_pending
= (uint8_t) !!rotate_pending
;
3000 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
3002 if (send_ret
< (ssize_t
) sizeof(reply
)) {
3003 ERR("Failed to send \"rotate pending\" command reply (ret = %zd)",
3012 #define DBG_CMD(cmd_name, conn) \
3013 DBG3("Processing \"%s\" command for socket %i", cmd_name, conn->sock->fd);
3015 static int relay_process_control_command(struct relay_connection
*conn
,
3016 const struct lttcomm_relayd_hdr
*header
,
3017 const struct lttng_buffer_view
*payload
)
3021 switch (header
->cmd
) {
3022 case RELAYD_CREATE_SESSION
:
3023 DBG_CMD("RELAYD_CREATE_SESSION", conn
);
3024 ret
= relay_create_session(header
, conn
, payload
);
3026 case RELAYD_ADD_STREAM
:
3027 DBG_CMD("RELAYD_ADD_STREAM", conn
);
3028 ret
= relay_add_stream(header
, conn
, payload
);
3030 case RELAYD_START_DATA
:
3031 DBG_CMD("RELAYD_START_DATA", conn
);
3032 ret
= relay_start(header
, conn
, payload
);
3034 case RELAYD_SEND_METADATA
:
3035 DBG_CMD("RELAYD_SEND_METADATA", conn
);
3036 ret
= relay_recv_metadata(header
, conn
, payload
);
3038 case RELAYD_VERSION
:
3039 DBG_CMD("RELAYD_VERSION", conn
);
3040 ret
= relay_send_version(header
, conn
, payload
);
3042 case RELAYD_CLOSE_STREAM
:
3043 DBG_CMD("RELAYD_CLOSE_STREAM", conn
);
3044 ret
= relay_close_stream(header
, conn
, payload
);
3046 case RELAYD_DATA_PENDING
:
3047 DBG_CMD("RELAYD_DATA_PENDING", conn
);
3048 ret
= relay_data_pending(header
, conn
, payload
);
3050 case RELAYD_QUIESCENT_CONTROL
:
3051 DBG_CMD("RELAYD_QUIESCENT_CONTROL", conn
);
3052 ret
= relay_quiescent_control(header
, conn
, payload
);
3054 case RELAYD_BEGIN_DATA_PENDING
:
3055 DBG_CMD("RELAYD_BEGIN_DATA_PENDING", conn
);
3056 ret
= relay_begin_data_pending(header
, conn
, payload
);
3058 case RELAYD_END_DATA_PENDING
:
3059 DBG_CMD("RELAYD_END_DATA_PENDING", conn
);
3060 ret
= relay_end_data_pending(header
, conn
, payload
);
3062 case RELAYD_SEND_INDEX
:
3063 DBG_CMD("RELAYD_SEND_INDEX", conn
);
3064 ret
= relay_recv_index(header
, conn
, payload
);
3066 case RELAYD_STREAMS_SENT
:
3067 DBG_CMD("RELAYD_STREAMS_SENT", conn
);
3068 ret
= relay_streams_sent(header
, conn
, payload
);
3070 case RELAYD_RESET_METADATA
:
3071 DBG_CMD("RELAYD_RESET_METADATA", conn
);
3072 ret
= relay_reset_metadata(header
, conn
, payload
);
3074 case RELAYD_ROTATE_STREAM
:
3075 DBG_CMD("RELAYD_ROTATE_STREAM", conn
);
3076 ret
= relay_rotate_session_stream(header
, conn
, payload
);
3078 case RELAYD_ROTATE_RENAME
:
3079 DBG_CMD("RELAYD_ROTATE_RENAME", conn
);
3080 ret
= relay_rotate_rename(header
, conn
, payload
);
3082 case RELAYD_ROTATE_PENDING
:
3083 DBG_CMD("RELAYD_ROTATE_PENDING", conn
);
3084 ret
= relay_rotate_pending(header
, conn
, payload
);
3087 DBG_CMD("RELAYD_MKDIR", conn
);
3088 ret
= relay_mkdir(header
, conn
, payload
);
3090 case RELAYD_UPDATE_SYNC_INFO
:
3092 ERR("Received unknown command (%u)", header
->cmd
);
3093 relay_unknown_command(conn
);
3102 static enum relay_connection_status
relay_process_control_receive_payload(
3103 struct relay_connection
*conn
)
3106 enum relay_connection_status status
= RELAY_CONNECTION_STATUS_OK
;
3107 struct lttng_dynamic_buffer
*reception_buffer
=
3108 &conn
->protocol
.ctrl
.reception_buffer
;
3109 struct ctrl_connection_state_receive_payload
*state
=
3110 &conn
->protocol
.ctrl
.state
.receive_payload
;
3111 struct lttng_buffer_view payload_view
;
3113 if (state
->left_to_receive
== 0) {
3114 /* Short-circuit for payload-less commands. */
3115 goto reception_complete
;
3118 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
,
3119 reception_buffer
->data
+ state
->received
,
3120 state
->left_to_receive
, MSG_DONTWAIT
);
3122 if (errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
3123 PERROR("Unable to receive command payload on sock %d",
3125 status
= RELAY_CONNECTION_STATUS_ERROR
;
3128 } else if (ret
== 0) {
3129 DBG("Socket %d performed an orderly shutdown (received EOF)", conn
->sock
->fd
);
3130 status
= RELAY_CONNECTION_STATUS_CLOSED
;
3135 assert(ret
<= state
->left_to_receive
);
3137 state
->left_to_receive
-= ret
;
3138 state
->received
+= ret
;
3140 if (state
->left_to_receive
> 0) {
3142 * Can't transition to the protocol's next state, wait to
3143 * receive the rest of the header.
3145 DBG3("Partial reception of control connection protocol payload (received %" PRIu64
" bytes, %" PRIu64
" bytes left to receive, fd = %i)",
3146 state
->received
, state
->left_to_receive
,
3152 DBG("Done receiving control command payload: fd = %i, payload size = %" PRIu64
" bytes",
3153 conn
->sock
->fd
, state
->received
);
3155 * The payload required to process the command has been received.
3156 * A view to the reception buffer is forwarded to the various
3157 * commands and the state of the control is reset on success.
3159 * Commands are responsible for sending their reply to the peer.
3161 payload_view
= lttng_buffer_view_from_dynamic_buffer(reception_buffer
,
3163 ret
= relay_process_control_command(conn
,
3164 &state
->header
, &payload_view
);
3166 status
= RELAY_CONNECTION_STATUS_ERROR
;
3170 ret
= connection_reset_protocol_state(conn
);
3172 status
= RELAY_CONNECTION_STATUS_ERROR
;
3178 static enum relay_connection_status
relay_process_control_receive_header(
3179 struct relay_connection
*conn
)
3182 enum relay_connection_status status
= RELAY_CONNECTION_STATUS_OK
;
3183 struct lttcomm_relayd_hdr header
;
3184 struct lttng_dynamic_buffer
*reception_buffer
=
3185 &conn
->protocol
.ctrl
.reception_buffer
;
3186 struct ctrl_connection_state_receive_header
*state
=
3187 &conn
->protocol
.ctrl
.state
.receive_header
;
3189 assert(state
->left_to_receive
!= 0);
3191 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
,
3192 reception_buffer
->data
+ state
->received
,
3193 state
->left_to_receive
, MSG_DONTWAIT
);
3195 if (errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
3196 PERROR("Unable to receive control command header on sock %d",
3198 status
= RELAY_CONNECTION_STATUS_ERROR
;
3201 } else if (ret
== 0) {
3202 DBG("Socket %d performed an orderly shutdown (received EOF)", conn
->sock
->fd
);
3203 status
= RELAY_CONNECTION_STATUS_CLOSED
;
3208 assert(ret
<= state
->left_to_receive
);
3210 state
->left_to_receive
-= ret
;
3211 state
->received
+= ret
;
3213 if (state
->left_to_receive
> 0) {
3215 * Can't transition to the protocol's next state, wait to
3216 * receive the rest of the header.
3218 DBG3("Partial reception of control connection protocol header (received %" PRIu64
" bytes, %" PRIu64
" bytes left to receive, fd = %i)",
3219 state
->received
, state
->left_to_receive
,
3224 /* Transition to next state: receiving the command's payload. */
3225 conn
->protocol
.ctrl
.state_id
=
3226 CTRL_CONNECTION_STATE_RECEIVE_PAYLOAD
;
3227 memcpy(&header
, reception_buffer
->data
, sizeof(header
));
3228 header
.circuit_id
= be64toh(header
.circuit_id
);
3229 header
.data_size
= be64toh(header
.data_size
);
3230 header
.cmd
= be32toh(header
.cmd
);
3231 header
.cmd_version
= be32toh(header
.cmd_version
);
3232 memcpy(&conn
->protocol
.ctrl
.state
.receive_payload
.header
,
3233 &header
, sizeof(header
));
3235 DBG("Done receiving control command header: fd = %i, cmd = %" PRIu32
", cmd_version = %" PRIu32
", payload size = %" PRIu64
" bytes",
3236 conn
->sock
->fd
, header
.cmd
, header
.cmd_version
,
3239 if (header
.data_size
> DEFAULT_NETWORK_RELAYD_CTRL_MAX_PAYLOAD_SIZE
) {
3240 ERR("Command header indicates a payload (%" PRIu64
" bytes) that exceeds the maximal payload size allowed on a control connection.",
3242 status
= RELAY_CONNECTION_STATUS_ERROR
;
3246 conn
->protocol
.ctrl
.state
.receive_payload
.left_to_receive
=
3248 conn
->protocol
.ctrl
.state
.receive_payload
.received
= 0;
3249 ret
= lttng_dynamic_buffer_set_size(reception_buffer
,
3252 status
= RELAY_CONNECTION_STATUS_ERROR
;
3256 if (header
.data_size
== 0) {
3258 * Manually invoke the next state as the poll loop
3259 * will not wake-up to allow us to proceed further.
3261 status
= relay_process_control_receive_payload(conn
);
3268 * Process the commands received on the control socket
3270 static enum relay_connection_status
relay_process_control(
3271 struct relay_connection
*conn
)
3273 enum relay_connection_status status
;
3275 switch (conn
->protocol
.ctrl
.state_id
) {
3276 case CTRL_CONNECTION_STATE_RECEIVE_HEADER
:
3277 status
= relay_process_control_receive_header(conn
);
3279 case CTRL_CONNECTION_STATE_RECEIVE_PAYLOAD
:
3280 status
= relay_process_control_receive_payload(conn
);
3283 ERR("Unknown control connection protocol state encountered.");
3291 * Handle index for a data stream.
3293 * Called with the stream lock held.
3295 * Return 0 on success else a negative value.
3297 static int handle_index_data(struct relay_stream
*stream
, uint64_t net_seq_num
,
3298 bool rotate_index
, bool *flushed
, uint64_t total_size
)
3301 uint64_t data_offset
;
3302 struct relay_index
*index
;
3304 /* Get data offset because we are about to update the index. */
3305 data_offset
= htobe64(stream
->tracefile_size_current
);
3307 DBG("handle_index_data: stream %" PRIu64
" net_seq_num %" PRIu64
" data offset %" PRIu64
,
3308 stream
->stream_handle
, net_seq_num
, stream
->tracefile_size_current
);
3311 * Lookup for an existing index for that stream id/sequence
3312 * number. If it exists, the control thread has already received the
3313 * data for it, thus we need to write it to disk.
3315 index
= relay_index_get_by_id_or_create(stream
, net_seq_num
);
3321 if (rotate_index
|| !stream
->index_file
) {
3322 const char *stream_path
;
3325 * The data connection creates the stream's first index file.
3327 * This can happen _after_ a ROTATE_STREAM command. In
3328 * other words, the data of the first packet of this stream
3329 * can be received after a ROTATE_STREAM command.
3331 * The ROTATE_STREAM command changes the stream's path_name
3332 * to point to the "next" chunk. If a rotation is pending for
3333 * this stream, as indicated by "rotate_at_seq_num != -1ULL",
3334 * it means that we are still receiving data that belongs in the
3335 * stream's former path.
3337 * In this very specific case, we must ensure that the index
3338 * file is created in the streams's former path,
3341 * All other rotations beyond the first one are not affected
3342 * by this problem since the actual rotation operation creates
3343 * the new chunk's index file.
3345 stream_path
= stream
->rotate_at_seq_num
== -1ULL ?
3347 stream
->prev_path_name
;
3349 ret
= create_rotate_index_file(stream
, stream_path
);
3351 ERR("Failed to rotate index");
3352 /* Put self-ref for this index due to error. */
3353 relay_index_put(index
);
3359 if (relay_index_set_file(index
, stream
->index_file
, data_offset
)) {
3361 /* Put self-ref for this index due to error. */
3362 relay_index_put(index
);
3367 ret
= relay_index_try_flush(index
);
3369 tracefile_array_commit_seq(stream
->tfa
);
3370 stream
->index_received_seqcount
++;
3372 } else if (ret
> 0) {
3373 index
->total_size
= total_size
;
3380 * relay_index_try_flush is responsible for the self-reference
3381 * put of the index object on error.
3383 ERR("relay_index_try_flush error %d", ret
);
3390 static enum relay_connection_status
relay_process_data_receive_header(
3391 struct relay_connection
*conn
)
3394 enum relay_connection_status status
= RELAY_CONNECTION_STATUS_OK
;
3395 struct data_connection_state_receive_header
*state
=
3396 &conn
->protocol
.data
.state
.receive_header
;
3397 struct lttcomm_relayd_data_hdr header
;
3398 struct relay_stream
*stream
;
3400 assert(state
->left_to_receive
!= 0);
3402 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
,
3403 state
->header_reception_buffer
+ state
->received
,
3404 state
->left_to_receive
, MSG_DONTWAIT
);
3406 if (errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
3407 PERROR("Unable to receive data header on sock %d", conn
->sock
->fd
);
3408 status
= RELAY_CONNECTION_STATUS_ERROR
;
3411 } else if (ret
== 0) {
3412 /* Orderly shutdown. Not necessary to print an error. */
3413 DBG("Socket %d performed an orderly shutdown (received EOF)", conn
->sock
->fd
);
3414 status
= RELAY_CONNECTION_STATUS_CLOSED
;
3419 assert(ret
<= state
->left_to_receive
);
3421 state
->left_to_receive
-= ret
;
3422 state
->received
+= ret
;
3424 if (state
->left_to_receive
> 0) {
3426 * Can't transition to the protocol's next state, wait to
3427 * receive the rest of the header.
3429 DBG3("Partial reception of data connection header (received %" PRIu64
" bytes, %" PRIu64
" bytes left to receive, fd = %i)",
3430 state
->received
, state
->left_to_receive
,
3435 /* Transition to next state: receiving the payload. */
3436 conn
->protocol
.data
.state_id
= DATA_CONNECTION_STATE_RECEIVE_PAYLOAD
;
3438 memcpy(&header
, state
->header_reception_buffer
, sizeof(header
));
3439 header
.circuit_id
= be64toh(header
.circuit_id
);
3440 header
.stream_id
= be64toh(header
.stream_id
);
3441 header
.data_size
= be32toh(header
.data_size
);
3442 header
.net_seq_num
= be64toh(header
.net_seq_num
);
3443 header
.padding_size
= be32toh(header
.padding_size
);
3444 memcpy(&conn
->protocol
.data
.state
.receive_payload
.header
, &header
, sizeof(header
));
3446 conn
->protocol
.data
.state
.receive_payload
.left_to_receive
=
3448 conn
->protocol
.data
.state
.receive_payload
.received
= 0;
3449 conn
->protocol
.data
.state
.receive_payload
.rotate_index
= false;
3451 DBG("Received data connection header on fd %i: circuit_id = %" PRIu64
", stream_id = %" PRIu64
", data_size = %" PRIu32
", net_seq_num = %" PRIu64
", padding_size = %" PRIu32
,
3452 conn
->sock
->fd
, header
.circuit_id
,
3453 header
.stream_id
, header
.data_size
,
3454 header
.net_seq_num
, header
.padding_size
);
3456 stream
= stream_get_by_id(header
.stream_id
);
3458 DBG("relay_process_data_receive_payload: Cannot find stream %" PRIu64
,
3460 /* Protocol error. */
3461 status
= RELAY_CONNECTION_STATUS_ERROR
;
3465 pthread_mutex_lock(&stream
->lock
);
3467 /* Check if a rotation is needed. */
3468 if (stream
->tracefile_size
> 0 &&
3469 (stream
->tracefile_size_current
+ header
.data_size
) >
3470 stream
->tracefile_size
) {
3471 uint64_t old_id
, new_id
;
3473 old_id
= tracefile_array_get_file_index_head(stream
->tfa
);
3474 tracefile_array_file_rotate(stream
->tfa
);
3476 /* new_id is updated by utils_rotate_stream_file. */
3479 ret
= utils_rotate_stream_file(stream
->path_name
,
3480 stream
->channel_name
, stream
->tracefile_size
,
3481 stream
->tracefile_count
, -1,
3482 -1, stream
->stream_fd
->fd
,
3483 &new_id
, &stream
->stream_fd
->fd
);
3485 ERR("Failed to rotate stream output file");
3486 status
= RELAY_CONNECTION_STATUS_ERROR
;
3487 goto end_stream_unlock
;
3491 * Reset current size because we just performed a stream
3494 stream
->tracefile_size_current
= 0;
3495 conn
->protocol
.data
.state
.receive_payload
.rotate_index
= true;
3499 pthread_mutex_unlock(&stream
->lock
);
3505 static enum relay_connection_status
relay_process_data_receive_payload(
3506 struct relay_connection
*conn
)
3509 enum relay_connection_status status
= RELAY_CONNECTION_STATUS_OK
;
3510 struct relay_stream
*stream
;
3511 struct data_connection_state_receive_payload
*state
=
3512 &conn
->protocol
.data
.state
.receive_payload
;
3513 const size_t chunk_size
= RECV_DATA_BUFFER_SIZE
;
3514 char data_buffer
[chunk_size
];
3515 bool partial_recv
= false;
3516 bool new_stream
= false, close_requested
= false, index_flushed
= false;
3517 uint64_t left_to_receive
= state
->left_to_receive
;
3518 struct relay_session
*session
;
3520 DBG3("Receiving data for stream id %" PRIu64
" seqnum %" PRIu64
", %" PRIu64
" bytes received, %" PRIu64
" bytes left to receive",
3521 state
->header
.stream_id
, state
->header
.net_seq_num
,
3522 state
->received
, left_to_receive
);
3524 stream
= stream_get_by_id(state
->header
.stream_id
);
3526 /* Protocol error. */
3527 ERR("relay_process_data_receive_payload: cannot find stream %" PRIu64
,
3528 state
->header
.stream_id
);
3529 status
= RELAY_CONNECTION_STATUS_ERROR
;
3533 pthread_mutex_lock(&stream
->lock
);
3534 session
= stream
->trace
->session
;
3535 if (!conn
->session
) {
3536 ret
= connection_set_session(conn
, session
);
3538 status
= RELAY_CONNECTION_STATUS_ERROR
;
3539 goto end_stream_unlock
;
3544 * The size of the "chunk" received on any iteration is bounded by:
3545 * - the data left to receive,
3546 * - the data immediately available on the socket,
3547 * - the on-stack data buffer
3549 while (left_to_receive
> 0 && !partial_recv
) {
3551 size_t recv_size
= min(left_to_receive
, chunk_size
);
3553 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, data_buffer
,
3554 recv_size
, MSG_DONTWAIT
);
3556 if (errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
3557 PERROR("Socket %d error", conn
->sock
->fd
);
3558 status
= RELAY_CONNECTION_STATUS_ERROR
;
3560 goto end_stream_unlock
;
3561 } else if (ret
== 0) {
3562 /* No more data ready to be consumed on socket. */
3563 DBG3("No more data ready for consumption on data socket of stream id %" PRIu64
,
3564 state
->header
.stream_id
);
3565 status
= RELAY_CONNECTION_STATUS_CLOSED
;
3567 } else if (ret
< (int) recv_size
) {
3569 * All the data available on the socket has been
3572 partial_recv
= true;
3577 /* Write data to stream output fd. */
3578 write_ret
= lttng_write(stream
->stream_fd
->fd
, data_buffer
,
3580 if (write_ret
< (ssize_t
) recv_size
) {
3581 ERR("Relay error writing data to file");
3582 status
= RELAY_CONNECTION_STATUS_ERROR
;
3583 goto end_stream_unlock
;
3586 left_to_receive
-= recv_size
;
3587 state
->received
+= recv_size
;
3588 state
->left_to_receive
= left_to_receive
;
3590 DBG2("Relay wrote %zd bytes to tracefile for stream id %" PRIu64
,
3591 write_ret
, stream
->stream_handle
);
3594 if (state
->left_to_receive
> 0) {
3596 * Did not receive all the data expected, wait for more data to
3597 * become available on the socket.
3599 DBG3("Partial receive on data connection of stream id %" PRIu64
", %" PRIu64
" bytes received, %" PRIu64
" bytes left to receive",
3600 state
->header
.stream_id
, state
->received
,
3601 state
->left_to_receive
);
3602 goto end_stream_unlock
;
3605 ret
= write_padding_to_file(stream
->stream_fd
->fd
,
3606 state
->header
.padding_size
);
3607 if ((int64_t) ret
< (int64_t) state
->header
.padding_size
) {
3608 ERR("write_padding_to_file: fail stream %" PRIu64
" net_seq_num %" PRIu64
" ret %d",
3609 stream
->stream_handle
,
3610 state
->header
.net_seq_num
, ret
);
3611 status
= RELAY_CONNECTION_STATUS_ERROR
;
3612 goto end_stream_unlock
;
3616 if (session_streams_have_index(session
)) {
3617 ret
= handle_index_data(stream
, state
->header
.net_seq_num
,
3618 state
->rotate_index
, &index_flushed
, state
->header
.data_size
+ state
->header
.padding_size
);
3620 ERR("handle_index_data: fail stream %" PRIu64
" net_seq_num %" PRIu64
" ret %d",
3621 stream
->stream_handle
,
3622 state
->header
.net_seq_num
, ret
);
3623 status
= RELAY_CONNECTION_STATUS_ERROR
;
3624 goto end_stream_unlock
;
3628 stream
->tracefile_size_current
+= state
->header
.data_size
+
3629 state
->header
.padding_size
;
3631 if (stream
->prev_data_seq
== -1ULL) {
3634 if (index_flushed
) {
3635 stream
->pos_after_last_complete_data_index
=
3636 stream
->tracefile_size_current
;
3637 stream
->prev_index_seq
= state
->header
.net_seq_num
;
3638 ret
= try_rotate_stream_index(stream
);
3640 goto end_stream_unlock
;
3644 stream
->prev_data_seq
= state
->header
.net_seq_num
;
3647 * Resetting the protocol state (to RECEIVE_HEADER) will trash the
3648 * contents of *state which are aliased (union) to the same location as
3649 * the new state. Don't use it beyond this point.
3651 connection_reset_protocol_state(conn
);
3654 ret
= try_rotate_stream_data(stream
);
3656 status
= RELAY_CONNECTION_STATUS_ERROR
;
3657 goto end_stream_unlock
;
3661 close_requested
= stream
->close_requested
;
3662 pthread_mutex_unlock(&stream
->lock
);
3663 if (close_requested
&& left_to_receive
== 0) {
3664 try_stream_close(stream
);
3668 pthread_mutex_lock(&session
->lock
);
3669 uatomic_set(&session
->new_streams
, 1);
3670 pthread_mutex_unlock(&session
->lock
);
3679 * relay_process_data: Process the data received on the data socket
3681 static enum relay_connection_status
relay_process_data(
3682 struct relay_connection
*conn
)
3684 enum relay_connection_status status
;
3686 switch (conn
->protocol
.data
.state_id
) {
3687 case DATA_CONNECTION_STATE_RECEIVE_HEADER
:
3688 status
= relay_process_data_receive_header(conn
);
3690 case DATA_CONNECTION_STATE_RECEIVE_PAYLOAD
:
3691 status
= relay_process_data_receive_payload(conn
);
3694 ERR("Unexpected data connection communication state.");
3701 static void cleanup_connection_pollfd(struct lttng_poll_event
*events
, int pollfd
)
3705 (void) lttng_poll_del(events
, pollfd
);
3707 ret
= close(pollfd
);
3709 ERR("Closing pollfd %d", pollfd
);
3713 static void relay_thread_close_connection(struct lttng_poll_event
*events
,
3714 int pollfd
, struct relay_connection
*conn
)
3716 const char *type_str
;
3718 switch (conn
->type
) {
3723 type_str
= "Control";
3725 case RELAY_VIEWER_COMMAND
:
3726 type_str
= "Viewer Command";
3728 case RELAY_VIEWER_NOTIFICATION
:
3729 type_str
= "Viewer Notification";
3732 type_str
= "Unknown";
3734 cleanup_connection_pollfd(events
, pollfd
);
3735 connection_put(conn
);
3736 DBG("%s connection closed with %d", type_str
, pollfd
);
3740 * This thread does the actual work
3742 static void *relay_thread_worker(void *data
)
3744 int ret
, err
= -1, last_seen_data_fd
= -1;
3746 struct lttng_poll_event events
;
3747 struct lttng_ht
*relay_connections_ht
;
3748 struct lttng_ht_iter iter
;
3749 struct relay_connection
*destroy_conn
= NULL
;
3751 DBG("[thread] Relay worker started");
3753 rcu_register_thread();
3755 health_register(health_relayd
, HEALTH_RELAYD_TYPE_WORKER
);
3757 if (testpoint(relayd_thread_worker
)) {
3758 goto error_testpoint
;
3761 health_code_update();
3763 /* table of connections indexed on socket */
3764 relay_connections_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3765 if (!relay_connections_ht
) {
3766 goto relay_connections_ht_error
;
3769 ret
= create_thread_poll_set(&events
, 2);
3771 goto error_poll_create
;
3774 ret
= lttng_poll_add(&events
, relay_conn_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
3781 int idx
= -1, i
, seen_control
= 0, last_notdel_data_fd
= -1;
3783 health_code_update();
3785 /* Infinite blocking call, waiting for transmission */
3786 DBG3("Relayd worker thread polling...");
3787 health_poll_entry();
3788 ret
= lttng_poll_wait(&events
, -1);
3792 * Restart interrupted system call.
3794 if (errno
== EINTR
) {
3803 * Process control. The control connection is
3804 * prioritized so we don't starve it with high
3805 * throughput tracing data on the data connection.
3807 for (i
= 0; i
< nb_fd
; i
++) {
3808 /* Fetch once the poll data */
3809 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
3810 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3812 health_code_update();
3816 * No activity for this FD (poll
3822 /* Thread quit pipe has been closed. Killing thread. */
3823 ret
= check_thread_quit_pipe(pollfd
, revents
);
3829 /* Inspect the relay conn pipe for new connection */
3830 if (pollfd
== relay_conn_pipe
[0]) {
3831 if (revents
& LPOLLIN
) {
3832 struct relay_connection
*conn
;
3834 ret
= lttng_read(relay_conn_pipe
[0], &conn
, sizeof(conn
));
3838 lttng_poll_add(&events
, conn
->sock
->fd
,
3839 LPOLLIN
| LPOLLRDHUP
);
3840 connection_ht_add(relay_connections_ht
, conn
);
3841 DBG("Connection socket %d added", conn
->sock
->fd
);
3842 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3843 ERR("Relay connection pipe error");
3846 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
3850 struct relay_connection
*ctrl_conn
;
3852 ctrl_conn
= connection_get_by_sock(relay_connections_ht
, pollfd
);
3853 /* If not found, there is a synchronization issue. */
3856 if (ctrl_conn
->type
== RELAY_DATA
) {
3857 if (revents
& LPOLLIN
) {
3859 * Flag the last seen data fd not deleted. It will be
3860 * used as the last seen fd if any fd gets deleted in
3863 last_notdel_data_fd
= pollfd
;
3865 goto put_ctrl_connection
;
3867 assert(ctrl_conn
->type
== RELAY_CONTROL
);
3869 if (revents
& LPOLLIN
) {
3870 enum relay_connection_status status
;
3872 status
= relay_process_control(ctrl_conn
);
3873 if (status
!= RELAY_CONNECTION_STATUS_OK
) {
3875 * On socket error flag the session as aborted to force
3876 * the cleanup of its stream otherwise it can leak
3877 * during the lifetime of the relayd.
3879 * This prevents situations in which streams can be
3880 * left opened because an index was received, the
3881 * control connection is closed, and the data
3882 * connection is closed (uncleanly) before the packet's
3885 * Since the control connection encountered an error,
3886 * it is okay to be conservative and close the
3887 * session right now as we can't rely on the protocol
3888 * being respected anymore.
3890 if (status
== RELAY_CONNECTION_STATUS_ERROR
) {
3891 session_abort(ctrl_conn
->session
);
3894 /* Clear the connection on error or close. */
3895 relay_thread_close_connection(&events
,
3900 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3901 relay_thread_close_connection(&events
,
3903 if (last_seen_data_fd
== pollfd
) {
3904 last_seen_data_fd
= last_notdel_data_fd
;
3907 ERR("Unexpected poll events %u for control sock %d",
3909 connection_put(ctrl_conn
);
3912 put_ctrl_connection
:
3913 connection_put(ctrl_conn
);
3918 * The last loop handled a control request, go back to poll to make
3919 * sure we prioritise the control socket.
3925 if (last_seen_data_fd
>= 0) {
3926 for (i
= 0; i
< nb_fd
; i
++) {
3927 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3929 health_code_update();
3931 if (last_seen_data_fd
== pollfd
) {
3938 /* Process data connection. */
3939 for (i
= idx
+ 1; i
< nb_fd
; i
++) {
3940 /* Fetch the poll data. */
3941 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
3942 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3943 struct relay_connection
*data_conn
;
3945 health_code_update();
3948 /* No activity for this FD (poll implementation). */
3952 /* Skip the command pipe. It's handled in the first loop. */
3953 if (pollfd
== relay_conn_pipe
[0]) {
3957 data_conn
= connection_get_by_sock(relay_connections_ht
, pollfd
);
3959 /* Skip it. Might be removed before. */
3962 if (data_conn
->type
== RELAY_CONTROL
) {
3963 goto put_data_connection
;
3965 assert(data_conn
->type
== RELAY_DATA
);
3967 if (revents
& LPOLLIN
) {
3968 enum relay_connection_status status
;
3970 status
= relay_process_data(data_conn
);
3971 /* Connection closed or error. */
3972 if (status
!= RELAY_CONNECTION_STATUS_OK
) {
3974 * On socket error flag the session as aborted to force
3975 * the cleanup of its stream otherwise it can leak
3976 * during the lifetime of the relayd.
3978 * This prevents situations in which streams can be
3979 * left opened because an index was received, the
3980 * control connection is closed, and the data
3981 * connection is closed (uncleanly) before the packet's
3984 * Since the data connection encountered an error,
3985 * it is okay to be conservative and close the
3986 * session right now as we can't rely on the protocol
3987 * being respected anymore.
3989 if (status
== RELAY_CONNECTION_STATUS_ERROR
) {
3990 session_abort(data_conn
->session
);
3992 relay_thread_close_connection(&events
, pollfd
,
3995 * Every goto restart call sets the last seen fd where
3996 * here we don't really care since we gracefully
3997 * continue the loop after the connection is deleted.
4000 /* Keep last seen port. */
4001 last_seen_data_fd
= pollfd
;
4002 connection_put(data_conn
);
4005 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
4006 relay_thread_close_connection(&events
, pollfd
,
4009 ERR("Unknown poll events %u for data sock %d",
4012 put_data_connection
:
4013 connection_put(data_conn
);
4015 last_seen_data_fd
= -1;
4018 /* Normal exit, no error */
4023 /* Cleanup remaining connection object. */
4025 cds_lfht_for_each_entry(relay_connections_ht
->ht
, &iter
.iter
,
4028 health_code_update();
4030 session_abort(destroy_conn
->session
);
4033 * No need to grab another ref, because we own
4036 relay_thread_close_connection(&events
, destroy_conn
->sock
->fd
,
4041 lttng_poll_clean(&events
);
4043 lttng_ht_destroy(relay_connections_ht
);
4044 relay_connections_ht_error
:
4045 /* Close relay conn pipes */
4046 utils_close_pipe(relay_conn_pipe
);
4048 DBG("Thread exited with error");
4050 DBG("Worker thread cleanup complete");
4054 ERR("Health error occurred in %s", __func__
);
4056 health_unregister(health_relayd
);
4057 rcu_unregister_thread();
4058 lttng_relay_stop_threads();
4063 * Create the relay command pipe to wake thread_manage_apps.
4064 * Closed in cleanup().
4066 static int create_relay_conn_pipe(void)
4070 ret
= utils_create_pipe_cloexec(relay_conn_pipe
);
4078 int main(int argc
, char **argv
)
4080 int ret
= 0, retval
= 0;
4083 /* Parse arguments */
4085 if (set_options(argc
, argv
)) {
4090 if (set_signal_handler()) {
4095 /* Try to create directory if -o, --output is specified. */
4096 if (opt_output_path
) {
4097 if (*opt_output_path
!= '/') {
4098 ERR("Please specify an absolute path for -o, --output PATH");
4103 ret
= utils_mkdir_recursive(opt_output_path
, S_IRWXU
| S_IRWXG
,
4106 ERR("Unable to create %s", opt_output_path
);
4113 if (opt_daemon
|| opt_background
) {
4116 ret
= lttng_daemonize(&child_ppid
, &recv_child_signal
,
4124 * We are in the child. Make sure all other file
4125 * descriptors are closed, in case we are called with
4126 * more opened file descriptors than the standard ones.
4128 for (i
= 3; i
< sysconf(_SC_OPEN_MAX
); i
++) {
4133 /* Initialize thread health monitoring */
4134 health_relayd
= health_app_create(NR_HEALTH_RELAYD_TYPES
);
4135 if (!health_relayd
) {
4136 PERROR("health_app_create error");
4138 goto exit_health_app_create
;
4141 /* Create thread quit pipe */
4142 if (init_thread_quit_pipe()) {
4144 goto exit_init_data
;
4147 /* Setup the thread apps communication pipe. */
4148 if (create_relay_conn_pipe()) {
4150 goto exit_init_data
;
4153 /* Init relay command queue. */
4154 cds_wfcq_init(&relay_conn_queue
.head
, &relay_conn_queue
.tail
);
4156 /* Initialize communication library */
4158 lttcomm_inet_init();
4160 /* tables of sessions indexed by session ID */
4161 sessions_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
4164 goto exit_init_data
;
4167 /* tables of streams indexed by stream ID */
4168 relay_streams_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
4169 if (!relay_streams_ht
) {
4171 goto exit_init_data
;
4174 /* tables of streams indexed by stream ID */
4175 viewer_streams_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
4176 if (!viewer_streams_ht
) {
4178 goto exit_init_data
;
4181 ret
= utils_create_pipe(health_quit_pipe
);
4184 goto exit_health_quit_pipe
;
4187 /* Create thread to manage the client socket */
4188 ret
= pthread_create(&health_thread
, default_pthread_attr(),
4189 thread_manage_health
, (void *) NULL
);
4192 PERROR("pthread_create health");
4194 goto exit_health_thread
;
4197 /* Setup the dispatcher thread */
4198 ret
= pthread_create(&dispatcher_thread
, default_pthread_attr(),
4199 relay_thread_dispatcher
, (void *) NULL
);
4202 PERROR("pthread_create dispatcher");
4204 goto exit_dispatcher_thread
;
4207 /* Setup the worker thread */
4208 ret
= pthread_create(&worker_thread
, default_pthread_attr(),
4209 relay_thread_worker
, NULL
);
4212 PERROR("pthread_create worker");
4214 goto exit_worker_thread
;
4217 /* Setup the listener thread */
4218 ret
= pthread_create(&listener_thread
, default_pthread_attr(),
4219 relay_thread_listener
, (void *) NULL
);
4222 PERROR("pthread_create listener");
4224 goto exit_listener_thread
;
4227 ret
= relayd_live_create(live_uri
);
4229 ERR("Starting live viewer threads");
4235 * This is where we start awaiting program completion (e.g. through
4236 * signal that asks threads to teardown).
4239 ret
= relayd_live_join();
4245 ret
= pthread_join(listener_thread
, &status
);
4248 PERROR("pthread_join listener_thread");
4252 exit_listener_thread
:
4253 ret
= pthread_join(worker_thread
, &status
);
4256 PERROR("pthread_join worker_thread");
4261 ret
= pthread_join(dispatcher_thread
, &status
);
4264 PERROR("pthread_join dispatcher_thread");
4267 exit_dispatcher_thread
:
4269 ret
= pthread_join(health_thread
, &status
);
4272 PERROR("pthread_join health_thread");
4277 utils_close_pipe(health_quit_pipe
);
4278 exit_health_quit_pipe
:
4281 health_app_destroy(health_relayd
);
4282 exit_health_app_create
:
4285 * Wait for all pending call_rcu work to complete before tearing
4286 * down data structures. call_rcu worker may be trying to
4287 * perform lookups in those structures.
4292 /* Ensure all prior call_rcu are done. */