2 * Copyright (C) 2012 Julien Desfossez <jdesfossez@efficios.com>
3 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
4 * Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * Copyright (C) 2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 * SPDX-License-Identifier: GPL-2.0-only
21 #include <sys/mount.h>
22 #include <sys/resource.h>
23 #include <sys/socket.h>
25 #include <sys/types.h>
27 #include <sys/resource.h>
29 #include <urcu/futex.h>
30 #include <urcu/uatomic.h>
31 #include <urcu/rculist.h>
37 #include <lttng/lttng.h>
38 #include <common/common.h>
39 #include <common/compat/poll.h>
40 #include <common/compat/socket.h>
41 #include <common/compat/endian.h>
42 #include <common/compat/getenv.h>
43 #include <common/defaults.h>
44 #include <common/daemonize.h>
45 #include <common/futex.h>
46 #include <common/sessiond-comm/sessiond-comm.h>
47 #include <common/sessiond-comm/inet.h>
48 #include <common/sessiond-comm/relayd.h>
49 #include <common/uri.h>
50 #include <common/utils.h>
51 #include <common/align.h>
52 #include <common/config/session-config.h>
53 #include <common/dynamic-buffer.h>
54 #include <common/buffer-view.h>
55 #include <common/string-utils/format.h>
56 #include <common/fd-tracker/fd-tracker.h>
57 #include <common/fd-tracker/utils.h>
59 #include "backward-compatibility-group-by.h"
61 #include "connection.h"
62 #include "ctf-trace.h"
63 #include "health-relayd.h"
66 #include "lttng-relayd.h"
68 #include "sessiond-trace-chunks.h"
70 #include "tcp_keep_alive.h"
71 #include "testpoint.h"
72 #include "tracefile-array.h"
75 #include "viewer-stream.h"
77 static const char *help_msg
=
78 #ifdef LTTNG_EMBED_HELP
79 #include <lttng-relayd.8.h>
85 enum relay_connection_status
{
86 RELAY_CONNECTION_STATUS_OK
,
87 /* An error occurred while processing an event on the connection. */
88 RELAY_CONNECTION_STATUS_ERROR
,
89 /* Connection closed/shutdown cleanly. */
90 RELAY_CONNECTION_STATUS_CLOSED
,
93 /* command line options */
94 char *opt_output_path
, *opt_working_directory
;
95 static int opt_daemon
, opt_background
, opt_print_version
, opt_allow_clear
= 1;
96 enum relay_group_output_by opt_group_output_by
= RELAYD_GROUP_OUTPUT_BY_UNKNOWN
;
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
108 static int recv_child_signal
; /* Set to 1 when a SIGUSR1 signal is received. */
109 static pid_t child_ppid
; /* Internal parent PID use with daemonize. */
111 static struct lttng_uri
*control_uri
;
112 static struct lttng_uri
*data_uri
;
113 static struct lttng_uri
*live_uri
;
115 const char *progname
;
117 const char *tracing_group_name
= DEFAULT_TRACING_GROUP
;
118 static int tracing_group_name_override
;
120 const char * const config_section_name
= "relayd";
123 * Quit pipe for all threads. This permits a single cancellation point
124 * for all threads when receiving an event on the pipe.
126 int thread_quit_pipe
[2] = { -1, -1 };
129 * This pipe is used to inform the worker thread that a command is queued and
130 * ready to be processed.
132 static int relay_conn_pipe
[2] = { -1, -1 };
134 /* Shared between threads */
135 static int dispatch_thread_exit
;
137 static pthread_t listener_thread
;
138 static pthread_t dispatcher_thread
;
139 static pthread_t worker_thread
;
140 static pthread_t health_thread
;
143 * last_relay_stream_id_lock protects last_relay_stream_id increment
144 * atomicity on 32-bit architectures.
146 static pthread_mutex_t last_relay_stream_id_lock
= PTHREAD_MUTEX_INITIALIZER
;
147 static uint64_t last_relay_stream_id
;
150 * Relay command queue.
152 * The relay_thread_listener and relay_thread_dispatcher communicate with this
155 static struct relay_conn_queue relay_conn_queue
;
157 /* Cap of file desriptors to be in simultaneous use by the relay daemon. */
158 static unsigned int lttng_opt_fd_pool_size
= -1;
160 /* Global relay stream hash table. */
161 struct lttng_ht
*relay_streams_ht
;
163 /* Global relay viewer stream hash table. */
164 struct lttng_ht
*viewer_streams_ht
;
166 /* Global relay sessions hash table. */
167 struct lttng_ht
*sessions_ht
;
169 /* Relayd health monitoring */
170 struct health_app
*health_relayd
;
172 struct sessiond_trace_chunk_registry
*sessiond_trace_chunk_registry
;
174 /* Global fd tracker. */
175 struct fd_tracker
*the_fd_tracker
;
177 static struct option long_options
[] = {
178 { "control-port", 1, 0, 'C', },
179 { "data-port", 1, 0, 'D', },
180 { "live-port", 1, 0, 'L', },
181 { "daemonize", 0, 0, 'd', },
182 { "background", 0, 0, 'b', },
183 { "group", 1, 0, 'g', },
184 { "fd-pool-size", 1, 0, '\0', },
185 { "help", 0, 0, 'h', },
186 { "output", 1, 0, 'o', },
187 { "verbose", 0, 0, 'v', },
188 { "config", 1, 0, 'f' },
189 { "version", 0, 0, 'V' },
190 { "working-directory", 1, 0, 'w', },
191 { "group-output-by-session", 0, 0, 's', },
192 { "group-output-by-host", 0, 0, 'p', },
193 { "disallow-clear", 0, 0, 'x' },
197 static const char *config_ignore_options
[] = { "help", "config", "version" };
199 static void print_version(void) {
200 fprintf(stdout
, "%s\n", VERSION
);
203 static void relayd_config_log(void)
205 DBG("LTTng-relayd " VERSION
" - " VERSION_NAME
"%s%s",
206 GIT_VERSION
[0] == '\0' ? "" : " - " GIT_VERSION
,
207 EXTRA_VERSION_NAME
[0] == '\0' ? "" : " - " EXTRA_VERSION_NAME
);
208 if (EXTRA_VERSION_DESCRIPTION
[0] != '\0') {
209 DBG("LTTng-relayd extra version description:\n\t" EXTRA_VERSION_DESCRIPTION
"\n");
211 if (EXTRA_VERSION_PATCHES
[0] != '\0') {
212 DBG("LTTng-relayd extra patches:\n\t" EXTRA_VERSION_PATCHES
"\n");
217 * Take an option from the getopt output and set it in the right variable to be
220 * Return 0 on success else a negative value.
222 static int set_option(int opt
, const char *arg
, const char *optname
)
228 if (!strcmp(optname
, "fd-pool-size")) {
232 v
= strtoul(arg
, NULL
, 0);
233 if (errno
!= 0 || !isdigit((unsigned char) arg
[0])) {
234 ERR("Wrong value in --fd-pool-size parameter: %s", arg
);
239 ERR("File descriptor cap overflow in --fd-pool-size parameter: %s", arg
);
243 lttng_opt_fd_pool_size
= (unsigned int) v
;
245 fprintf(stderr
, "unknown option %s", optname
);
247 fprintf(stderr
, " with arg %s\n", arg
);
252 if (lttng_is_setuid_setgid()) {
253 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
254 "-C, --control-port");
256 ret
= uri_parse(arg
, &control_uri
);
258 ERR("Invalid control URI specified");
261 if (control_uri
->port
== 0) {
262 control_uri
->port
= DEFAULT_NETWORK_CONTROL_PORT
;
267 if (lttng_is_setuid_setgid()) {
268 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
271 ret
= uri_parse(arg
, &data_uri
);
273 ERR("Invalid data URI specified");
276 if (data_uri
->port
== 0) {
277 data_uri
->port
= DEFAULT_NETWORK_DATA_PORT
;
282 if (lttng_is_setuid_setgid()) {
283 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
286 ret
= uri_parse(arg
, &live_uri
);
288 ERR("Invalid live URI specified");
291 if (live_uri
->port
== 0) {
292 live_uri
->port
= DEFAULT_NETWORK_VIEWER_PORT
;
303 if (lttng_is_setuid_setgid()) {
304 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
307 tracing_group_name
= strdup(arg
);
308 if (tracing_group_name
== NULL
) {
313 tracing_group_name_override
= 1;
317 ret
= utils_show_help(8, "lttng-relayd", help_msg
);
319 ERR("Cannot show --help for `lttng-relayd`");
324 opt_print_version
= 1;
327 if (lttng_is_setuid_setgid()) {
328 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
331 ret
= asprintf(&opt_output_path
, "%s", arg
);
334 PERROR("asprintf opt_output_path");
340 if (lttng_is_setuid_setgid()) {
341 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
342 "-w, --working-directory");
344 ret
= asprintf(&opt_working_directory
, "%s", arg
);
347 PERROR("asprintf opt_working_directory");
354 /* Verbose level can increase using multiple -v */
356 lttng_opt_verbose
= config_parse_value(arg
);
358 /* Only 3 level of verbosity (-vvv). */
359 if (lttng_opt_verbose
< 3) {
360 lttng_opt_verbose
+= 1;
365 if (opt_group_output_by
!= RELAYD_GROUP_OUTPUT_BY_UNKNOWN
) {
366 ERR("Cannot set --group-output-by-session, another --group-output-by argument is present");
369 opt_group_output_by
= RELAYD_GROUP_OUTPUT_BY_SESSION
;
372 if (opt_group_output_by
!= RELAYD_GROUP_OUTPUT_BY_UNKNOWN
) {
373 ERR("Cannot set --group-output-by-host, another --group-output-by argument is present");
376 opt_group_output_by
= RELAYD_GROUP_OUTPUT_BY_HOST
;
383 /* Unknown option or other error.
384 * Error is printed by getopt, just return */
397 * config_entry_handler_cb used to handle options read from a config file.
398 * See config_entry_handler_cb comment in common/config/session-config.h for the
399 * return value conventions.
401 static int config_entry_handler(const struct config_entry
*entry
, void *unused
)
405 if (!entry
|| !entry
->name
|| !entry
->value
) {
410 /* Check if the option is to be ignored */
411 for (i
= 0; i
< sizeof(config_ignore_options
) / sizeof(char *); i
++) {
412 if (!strcmp(entry
->name
, config_ignore_options
[i
])) {
417 for (i
= 0; i
< (sizeof(long_options
) / sizeof(struct option
)) - 1; i
++) {
418 /* Ignore if entry name is not fully matched. */
419 if (strcmp(entry
->name
, long_options
[i
].name
)) {
424 * If the option takes no argument on the command line,
425 * we have to check if the value is "true". We support
426 * non-zero numeric values, true, on and yes.
428 if (!long_options
[i
].has_arg
) {
429 ret
= config_parse_value(entry
->value
);
432 WARN("Invalid configuration value \"%s\" for option %s",
433 entry
->value
, entry
->name
);
435 /* False, skip boolean config option. */
440 ret
= set_option(long_options
[i
].val
, entry
->value
, entry
->name
);
444 WARN("Unrecognized option \"%s\" in daemon configuration file.",
451 static int parse_env_options(void)
456 value
= lttng_secure_getenv(DEFAULT_LTTNG_RELAYD_WORKING_DIRECTORY_ENV
);
458 opt_working_directory
= strdup(value
);
459 if (!opt_working_directory
) {
460 ERR("Failed to allocate working directory string (\"%s\")",
468 static int set_fd_pool_size(void)
471 struct rlimit rlimit
;
473 ret
= getrlimit(RLIMIT_NOFILE
, &rlimit
);
475 PERROR("Failed to get file descriptor limit");
480 DBG("File descriptor count limits are %" PRIu64
" (soft) and %" PRIu64
" (hard)",
481 (uint64_t) rlimit
.rlim_cur
,
482 (uint64_t) rlimit
.rlim_max
);
483 if (lttng_opt_fd_pool_size
== -1) {
484 /* Use default value (soft limit - reserve). */
485 if (rlimit
.rlim_cur
< DEFAULT_RELAYD_MIN_FD_POOL_SIZE
) {
486 ERR("The process' file number limit is too low (%" PRIu64
"). The process' file number limit must be set to at least %i.",
487 (uint64_t) rlimit
.rlim_cur
, DEFAULT_RELAYD_MIN_FD_POOL_SIZE
);
491 lttng_opt_fd_pool_size
= rlimit
.rlim_cur
-
492 DEFAULT_RELAYD_FD_POOL_SIZE_RESERVE
;
496 if (lttng_opt_fd_pool_size
< DEFAULT_RELAYD_MIN_FD_POOL_SIZE
) {
497 ERR("File descriptor pool size must be set to at least %d",
498 DEFAULT_RELAYD_MIN_FD_POOL_SIZE
);
503 if (lttng_opt_fd_pool_size
> rlimit
.rlim_cur
) {
504 ERR("File descriptor pool size argument (%u) exceeds the process' soft limit (%" PRIu64
").",
505 lttng_opt_fd_pool_size
, (uint64_t) rlimit
.rlim_cur
);
510 DBG("File descriptor pool size argument (%u) adjusted to %u to accommodates transient fd uses",
511 lttng_opt_fd_pool_size
,
512 lttng_opt_fd_pool_size
- DEFAULT_RELAYD_FD_POOL_SIZE_RESERVE
);
513 lttng_opt_fd_pool_size
-= DEFAULT_RELAYD_FD_POOL_SIZE_RESERVE
;
518 static int set_options(int argc
, char **argv
)
520 int c
, ret
= 0, option_index
= 0, retval
= 0;
521 int orig_optopt
= optopt
, orig_optind
= optind
;
522 char *default_address
, *optstring
;
523 char *config_path
= NULL
;
525 optstring
= utils_generate_optstring(long_options
,
526 sizeof(long_options
) / sizeof(struct option
));
532 /* Check for the --config option */
534 while ((c
= getopt_long(argc
, argv
, optstring
, long_options
,
535 &option_index
)) != -1) {
539 } else if (c
!= 'f') {
543 if (lttng_is_setuid_setgid()) {
544 WARN("Getting '%s' argument from setuid/setgid binary refused for security reasons.",
548 config_path
= utils_expand_path(optarg
);
550 ERR("Failed to resolve path: %s", optarg
);
555 ret
= config_get_section_entries(config_path
, config_section_name
,
556 config_entry_handler
, NULL
);
559 ERR("Invalid configuration option at line %i", ret
);
565 /* Reset getopt's global state */
566 optopt
= orig_optopt
;
567 optind
= orig_optind
;
569 c
= getopt_long(argc
, argv
, optstring
, long_options
, &option_index
);
574 ret
= set_option(c
, optarg
, long_options
[option_index
].name
);
581 /* assign default values */
582 if (control_uri
== NULL
) {
583 ret
= asprintf(&default_address
,
584 "tcp://" DEFAULT_NETWORK_CONTROL_BIND_ADDRESS
":%d",
585 DEFAULT_NETWORK_CONTROL_PORT
);
587 PERROR("asprintf default data address");
592 ret
= uri_parse(default_address
, &control_uri
);
593 free(default_address
);
595 ERR("Invalid control URI specified");
600 if (data_uri
== NULL
) {
601 ret
= asprintf(&default_address
,
602 "tcp://" DEFAULT_NETWORK_DATA_BIND_ADDRESS
":%d",
603 DEFAULT_NETWORK_DATA_PORT
);
605 PERROR("asprintf default data address");
610 ret
= uri_parse(default_address
, &data_uri
);
611 free(default_address
);
613 ERR("Invalid data URI specified");
618 if (live_uri
== NULL
) {
619 ret
= asprintf(&default_address
,
620 "tcp://" DEFAULT_NETWORK_VIEWER_BIND_ADDRESS
":%d",
621 DEFAULT_NETWORK_VIEWER_PORT
);
623 PERROR("asprintf default viewer control address");
628 ret
= uri_parse(default_address
, &live_uri
);
629 free(default_address
);
631 ERR("Invalid viewer control URI specified");
636 ret
= set_fd_pool_size();
642 if (opt_group_output_by
== RELAYD_GROUP_OUTPUT_BY_UNKNOWN
) {
643 opt_group_output_by
= RELAYD_GROUP_OUTPUT_BY_HOST
;
645 if (opt_allow_clear
) {
646 /* Check if env variable exists. */
647 const char *value
= lttng_secure_getenv(DEFAULT_LTTNG_RELAYD_DISALLOW_CLEAR_ENV
);
649 ret
= config_parse_value(value
);
651 ERR("Invalid value for %s specified", DEFAULT_LTTNG_RELAYD_DISALLOW_CLEAR_ENV
);
655 opt_allow_clear
= !ret
;
665 static void print_global_objects(void)
667 print_viewer_streams();
668 print_relay_streams();
672 static int noop_close(void *data
, int *fds
)
677 static void untrack_stdio(void)
679 int fds
[] = { fileno(stdout
), fileno(stderr
) };
682 * noop_close is used since we don't really want to close
683 * the stdio output fds; we merely want to stop tracking them.
685 (void) fd_tracker_close_unsuspendable_fd(the_fd_tracker
,
686 fds
, 2, noop_close
, NULL
);
692 static void relayd_cleanup(void)
694 print_global_objects();
698 if (viewer_streams_ht
)
699 lttng_ht_destroy(viewer_streams_ht
);
700 if (relay_streams_ht
)
701 lttng_ht_destroy(relay_streams_ht
);
703 lttng_ht_destroy(sessions_ht
);
705 free(opt_output_path
);
706 free(opt_working_directory
);
709 health_app_destroy(health_relayd
);
711 /* Close thread quit pipes */
712 if (health_quit_pipe
[0] != -1) {
713 (void) fd_tracker_util_pipe_close(
714 the_fd_tracker
, health_quit_pipe
);
716 if (thread_quit_pipe
[0] != -1) {
717 (void) fd_tracker_util_pipe_close(
718 the_fd_tracker
, thread_quit_pipe
);
720 if (sessiond_trace_chunk_registry
) {
721 sessiond_trace_chunk_registry_destroy(
722 sessiond_trace_chunk_registry
);
724 if (the_fd_tracker
) {
727 * fd_tracker_destroy() will log the contents of the fd-tracker
728 * if a leak is detected.
730 fd_tracker_destroy(the_fd_tracker
);
733 uri_free(control_uri
);
735 /* Live URI is freed in the live thread. */
737 if (tracing_group_name_override
) {
738 free((void *) tracing_group_name
);
743 * Write to writable pipe used to notify a thread.
745 static int notify_thread_pipe(int wpipe
)
749 ret
= lttng_write(wpipe
, "!", 1);
751 PERROR("write poll pipe");
759 static int notify_health_quit_pipe(int *pipe
)
763 ret
= lttng_write(pipe
[1], "4", 1);
765 PERROR("write relay health quit");
774 * Stop all relayd and relayd-live threads.
776 int lttng_relay_stop_threads(void)
780 /* Stopping all threads */
781 DBG("Terminating all threads");
782 if (notify_thread_pipe(thread_quit_pipe
[1])) {
783 ERR("write error on thread quit pipe");
787 if (notify_health_quit_pipe(health_quit_pipe
)) {
788 ERR("write error on health quit pipe");
791 /* Dispatch thread */
792 CMM_STORE_SHARED(dispatch_thread_exit
, 1);
793 futex_nto1_wake(&relay_conn_queue
.futex
);
795 if (relayd_live_stop()) {
796 ERR("Error stopping live threads");
803 * Signal handler for the daemon
805 * Simply stop all worker threads, leaving main() return gracefully after
806 * joining all threads and calling cleanup().
808 static void sighandler(int sig
)
812 DBG("SIGINT caught");
813 if (lttng_relay_stop_threads()) {
814 ERR("Error stopping threads");
818 DBG("SIGTERM caught");
819 if (lttng_relay_stop_threads()) {
820 ERR("Error stopping threads");
824 CMM_STORE_SHARED(recv_child_signal
, 1);
832 * Setup signal handler for :
833 * SIGINT, SIGTERM, SIGPIPE
835 static int set_signal_handler(void)
841 if ((ret
= sigemptyset(&sigset
)) < 0) {
842 PERROR("sigemptyset");
849 sa
.sa_handler
= sighandler
;
850 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
855 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
860 if ((ret
= sigaction(SIGUSR1
, &sa
, NULL
)) < 0) {
865 sa
.sa_handler
= SIG_IGN
;
866 if ((ret
= sigaction(SIGPIPE
, &sa
, NULL
)) < 0) {
871 DBG("Signal handler set for SIGTERM, SIGUSR1, SIGPIPE and SIGINT");
876 void lttng_relay_notify_ready(void)
878 /* Notify the parent of the fork() process that we are ready. */
879 if (opt_daemon
|| opt_background
) {
880 if (uatomic_sub_return(<tng_relay_ready
, 1) == 0) {
881 kill(child_ppid
, SIGUSR1
);
887 * Init thread quit pipe.
889 * Return -1 on error or 0 if all pipes are created.
891 static int init_thread_quit_pipe(void)
893 return fd_tracker_util_pipe_open_cloexec(
894 the_fd_tracker
, "Quit pipe", thread_quit_pipe
);
898 * Init health quit pipe.
900 * Return -1 on error or 0 if all pipes are created.
902 static int init_health_quit_pipe(void)
904 return fd_tracker_util_pipe_open_cloexec(the_fd_tracker
,
905 "Health quit pipe", health_quit_pipe
);
909 * Create a poll set with O_CLOEXEC and add the thread quit pipe to the set.
911 static int create_named_thread_poll_set(struct lttng_poll_event
*events
,
912 int size
, const char *name
)
916 if (events
== NULL
|| size
== 0) {
921 ret
= fd_tracker_util_poll_create(the_fd_tracker
,
922 name
, events
, 1, LTTNG_CLOEXEC
);
924 PERROR("Failed to create \"%s\" poll file descriptor", name
);
929 ret
= lttng_poll_add(events
, thread_quit_pipe
[0], LPOLLIN
| LPOLLERR
);
941 * Check if the thread quit pipe was triggered.
943 * Return 1 if it was triggered else 0;
945 static int check_thread_quit_pipe(int fd
, uint32_t events
)
947 if (fd
== thread_quit_pipe
[0] && (events
& LPOLLIN
)) {
954 static int create_sock(void *data
, int *out_fd
)
957 struct lttcomm_sock
*sock
= data
;
959 ret
= lttcomm_create_sock(sock
);
969 static int close_sock(void *data
, int *in_fd
)
971 struct lttcomm_sock
*sock
= data
;
973 return sock
->ops
->close(sock
);
976 static int accept_sock(void *data
, int *out_fd
)
979 /* Socks is an array of in_sock, out_sock. */
980 struct lttcomm_sock
**socks
= data
;
981 struct lttcomm_sock
*in_sock
= socks
[0];
983 socks
[1] = in_sock
->ops
->accept(in_sock
);
988 *out_fd
= socks
[1]->fd
;
994 * Create and init socket from uri.
996 static struct lttcomm_sock
*relay_socket_create(struct lttng_uri
*uri
,
1000 struct lttcomm_sock
*sock
= NULL
;
1001 char uri_str
[PATH_MAX
];
1002 char *formated_name
= NULL
;
1004 sock
= lttcomm_alloc_sock_from_uri(uri
);
1006 ERR("Allocating socket");
1011 * Don't fail to create the socket if the name can't be built as it is
1012 * only used for debugging purposes.
1014 ret
= uri_to_str_url(uri
, uri_str
, sizeof(uri_str
));
1015 uri_str
[sizeof(uri_str
) - 1] = '\0';
1017 ret
= asprintf(&formated_name
, "%s socket @ %s", name
,
1020 formated_name
= NULL
;
1024 ret
= fd_tracker_open_unsuspendable_fd(the_fd_tracker
, &sock_fd
,
1025 (const char **) (formated_name
? &formated_name
: NULL
),
1026 1, create_sock
, sock
);
1028 PERROR("Failed to open \"%s\" relay socket",
1029 formated_name
?: "Unknown");
1032 DBG("Listening on %s socket %d", name
, sock
->fd
);
1034 ret
= sock
->ops
->bind(sock
);
1036 PERROR("Failed to bind socket");
1040 ret
= sock
->ops
->listen(sock
, -1);
1046 free(formated_name
);
1051 lttcomm_destroy_sock(sock
);
1053 free(formated_name
);
1058 struct lttcomm_sock
*accept_relayd_sock(struct lttcomm_sock
*listening_sock
,
1062 struct lttcomm_sock
*socks
[2] = { listening_sock
, NULL
};
1063 struct lttcomm_sock
*new_sock
= NULL
;
1065 ret
= fd_tracker_open_unsuspendable_fd(
1066 the_fd_tracker
, &out_fd
,
1067 (const char **) &name
,
1068 1, accept_sock
, &socks
);
1072 new_sock
= socks
[1];
1073 DBG("%s accepted, socket %d", name
, new_sock
->fd
);
1079 * This thread manages the listening for new connections on the network
1081 static void *relay_thread_listener(void *data
)
1083 int i
, ret
, pollfd
, err
= -1;
1084 uint32_t revents
, nb_fd
;
1085 struct lttng_poll_event events
;
1086 struct lttcomm_sock
*control_sock
, *data_sock
;
1088 DBG("[thread] Relay listener started");
1090 rcu_register_thread();
1091 health_register(health_relayd
, HEALTH_RELAYD_TYPE_LISTENER
);
1093 health_code_update();
1095 control_sock
= relay_socket_create(control_uri
, "Control listener");
1096 if (!control_sock
) {
1097 goto error_sock_control
;
1100 data_sock
= relay_socket_create(data_uri
, "Data listener");
1102 goto error_sock_relay
;
1106 * Pass 3 as size here for the thread quit pipe, control and
1109 ret
= create_named_thread_poll_set(&events
, 3, "Listener thread epoll");
1111 goto error_create_poll
;
1114 /* Add the control socket */
1115 ret
= lttng_poll_add(&events
, control_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
1117 goto error_poll_add
;
1120 /* Add the data socket */
1121 ret
= lttng_poll_add(&events
, data_sock
->fd
, LPOLLIN
| LPOLLRDHUP
);
1123 goto error_poll_add
;
1126 lttng_relay_notify_ready();
1128 if (testpoint(relayd_thread_listener
)) {
1129 goto error_testpoint
;
1133 health_code_update();
1135 DBG("Listener accepting connections");
1138 health_poll_entry();
1139 ret
= lttng_poll_wait(&events
, -1);
1143 * Restart interrupted system call.
1145 if (errno
== EINTR
) {
1153 DBG("Relay new connection received");
1154 for (i
= 0; i
< nb_fd
; i
++) {
1155 health_code_update();
1157 /* Fetch once the poll data */
1158 revents
= LTTNG_POLL_GETEV(&events
, i
);
1159 pollfd
= LTTNG_POLL_GETFD(&events
, i
);
1161 /* Thread quit pipe has been closed. Killing thread. */
1162 ret
= check_thread_quit_pipe(pollfd
, revents
);
1168 if (revents
& LPOLLIN
) {
1170 * A new connection is requested, therefore a
1171 * sessiond/consumerd connection is allocated in
1172 * this thread, enqueued to a global queue and
1173 * dequeued (and freed) in the worker thread.
1176 struct relay_connection
*new_conn
;
1177 struct lttcomm_sock
*newsock
= NULL
;
1178 enum connection_type type
;
1180 if (pollfd
== data_sock
->fd
) {
1182 newsock
= accept_relayd_sock(data_sock
,
1183 "Data socket to relayd");
1185 assert(pollfd
== control_sock
->fd
);
1186 type
= RELAY_CONTROL
;
1187 newsock
= accept_relayd_sock(control_sock
,
1188 "Control socket to relayd");
1191 PERROR("accepting sock");
1195 ret
= setsockopt(newsock
->fd
, SOL_SOCKET
, SO_REUSEADDR
, &val
,
1198 PERROR("setsockopt inet");
1199 lttcomm_destroy_sock(newsock
);
1203 ret
= socket_apply_keep_alive_config(newsock
->fd
);
1205 ERR("Failed to apply TCP keep-alive configuration on socket (%i)",
1207 lttcomm_destroy_sock(newsock
);
1211 new_conn
= connection_create(newsock
, type
);
1213 lttcomm_destroy_sock(newsock
);
1217 /* Enqueue request for the dispatcher thread. */
1218 cds_wfcq_enqueue(&relay_conn_queue
.head
, &relay_conn_queue
.tail
,
1222 * Wake the dispatch queue futex.
1223 * Implicit memory barrier with the
1224 * exchange in cds_wfcq_enqueue.
1226 futex_nto1_wake(&relay_conn_queue
.futex
);
1227 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
1228 ERR("socket poll error");
1231 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
1241 (void) fd_tracker_util_poll_clean(the_fd_tracker
, &events
);
1243 if (data_sock
->fd
>= 0) {
1244 int data_sock_fd
= data_sock
->fd
;
1246 ret
= fd_tracker_close_unsuspendable_fd(the_fd_tracker
,
1247 &data_sock_fd
, 1, close_sock
,
1250 PERROR("Failed to close the data listener socket file descriptor");
1254 lttcomm_destroy_sock(data_sock
);
1256 if (control_sock
->fd
>= 0) {
1257 int control_sock_fd
= control_sock
->fd
;
1259 ret
= fd_tracker_close_unsuspendable_fd(the_fd_tracker
,
1260 &control_sock_fd
, 1, close_sock
,
1263 PERROR("Failed to close the control listener socket file descriptor");
1265 control_sock
->fd
= -1;
1267 lttcomm_destroy_sock(control_sock
);
1271 ERR("Health error occurred in %s", __func__
);
1273 health_unregister(health_relayd
);
1274 rcu_unregister_thread();
1275 DBG("Relay listener thread cleanup complete");
1276 lttng_relay_stop_threads();
1281 * This thread manages the dispatching of the requests to worker threads
1283 static void *relay_thread_dispatcher(void *data
)
1287 struct cds_wfcq_node
*node
;
1288 struct relay_connection
*new_conn
= NULL
;
1290 DBG("[thread] Relay dispatcher started");
1292 health_register(health_relayd
, HEALTH_RELAYD_TYPE_DISPATCHER
);
1294 if (testpoint(relayd_thread_dispatcher
)) {
1295 goto error_testpoint
;
1298 health_code_update();
1301 health_code_update();
1303 /* Atomically prepare the queue futex */
1304 futex_nto1_prepare(&relay_conn_queue
.futex
);
1306 if (CMM_LOAD_SHARED(dispatch_thread_exit
)) {
1311 health_code_update();
1313 /* Dequeue commands */
1314 node
= cds_wfcq_dequeue_blocking(&relay_conn_queue
.head
,
1315 &relay_conn_queue
.tail
);
1317 DBG("Woken up but nothing in the relay command queue");
1318 /* Continue thread execution */
1321 new_conn
= caa_container_of(node
, struct relay_connection
, qnode
);
1323 DBG("Dispatching request waiting on sock %d", new_conn
->sock
->fd
);
1326 * Inform worker thread of the new request. This
1327 * call is blocking so we can be assured that
1328 * the data will be read at some point in time
1329 * or wait to the end of the world :)
1331 ret
= lttng_write(relay_conn_pipe
[1], &new_conn
, sizeof(new_conn
));
1333 PERROR("write connection pipe");
1334 connection_put(new_conn
);
1337 } while (node
!= NULL
);
1339 /* Futex wait on queue. Blocking call on futex() */
1340 health_poll_entry();
1341 futex_nto1_wait(&relay_conn_queue
.futex
);
1345 /* Normal exit, no error */
1352 ERR("Health error occurred in %s", __func__
);
1354 health_unregister(health_relayd
);
1355 DBG("Dispatch thread dying");
1356 lttng_relay_stop_threads();
1360 static bool session_streams_have_index(const struct relay_session
*session
)
1362 return session
->minor
>= 4 && !session
->snapshot
;
1366 * Handle the RELAYD_CREATE_SESSION command.
1368 * On success, send back the session id or else return a negative value.
1370 static int relay_create_session(const struct lttcomm_relayd_hdr
*recv_hdr
,
1371 struct relay_connection
*conn
,
1372 const struct lttng_buffer_view
*payload
)
1376 struct relay_session
*session
= NULL
;
1377 struct lttcomm_relayd_create_session_reply_2_11 reply
= {};
1378 char session_name
[LTTNG_NAME_MAX
] = {};
1379 char hostname
[LTTNG_HOST_NAME_MAX
] = {};
1380 uint32_t live_timer
= 0;
1381 bool snapshot
= false;
1382 bool session_name_contains_creation_timestamp
= false;
1383 /* Left nil for peers < 2.11. */
1384 char base_path
[LTTNG_PATH_MAX
] = {};
1385 lttng_uuid sessiond_uuid
= {};
1386 LTTNG_OPTIONAL(uint64_t) id_sessiond
= {};
1387 LTTNG_OPTIONAL(uint64_t) current_chunk_id
= {};
1388 LTTNG_OPTIONAL(time_t) creation_time
= {};
1389 struct lttng_dynamic_buffer reply_payload
;
1391 lttng_dynamic_buffer_init(&reply_payload
);
1393 if (conn
->minor
< 4) {
1394 /* From 2.1 to 2.3 */
1396 } else if (conn
->minor
>= 4 && conn
->minor
< 11) {
1397 /* From 2.4 to 2.10 */
1398 ret
= cmd_create_session_2_4(payload
, session_name
,
1399 hostname
, &live_timer
, &snapshot
);
1401 bool has_current_chunk
;
1402 uint64_t current_chunk_id_value
;
1403 time_t creation_time_value
;
1404 uint64_t id_sessiond_value
;
1406 /* From 2.11 to ... */
1407 ret
= cmd_create_session_2_11(payload
, session_name
, hostname
,
1408 base_path
, &live_timer
, &snapshot
, &id_sessiond_value
,
1409 sessiond_uuid
, &has_current_chunk
,
1410 ¤t_chunk_id_value
, &creation_time_value
,
1411 &session_name_contains_creation_timestamp
);
1412 if (lttng_uuid_is_nil(sessiond_uuid
)) {
1413 /* The nil UUID is reserved for pre-2.11 clients. */
1414 ERR("Illegal nil UUID announced by peer in create session command");
1418 LTTNG_OPTIONAL_SET(&id_sessiond
, id_sessiond_value
);
1419 LTTNG_OPTIONAL_SET(&creation_time
, creation_time_value
);
1420 if (has_current_chunk
) {
1421 LTTNG_OPTIONAL_SET(¤t_chunk_id
,
1422 current_chunk_id_value
);
1430 session
= session_create(session_name
, hostname
, base_path
, live_timer
,
1431 snapshot
, sessiond_uuid
,
1432 id_sessiond
.is_set
? &id_sessiond
.value
: NULL
,
1433 current_chunk_id
.is_set
? ¤t_chunk_id
.value
: NULL
,
1434 creation_time
.is_set
? &creation_time
.value
: NULL
,
1435 conn
->major
, conn
->minor
,
1436 session_name_contains_creation_timestamp
);
1441 assert(!conn
->session
);
1442 conn
->session
= session
;
1443 DBG("Created session %" PRIu64
, session
->id
);
1445 reply
.generic
.session_id
= htobe64(session
->id
);
1449 reply
.generic
.ret_code
= htobe32(LTTNG_ERR_FATAL
);
1451 reply
.generic
.ret_code
= htobe32(LTTNG_OK
);
1454 if (conn
->minor
< 11) {
1455 /* From 2.1 to 2.10 */
1456 ret
= lttng_dynamic_buffer_append(&reply_payload
,
1457 &reply
.generic
, sizeof(reply
.generic
));
1459 ERR("Failed to append \"create session\" command reply header to payload buffer");
1464 const uint32_t output_path_length
=
1465 session
? strlen(session
->output_path
) + 1 : 0;
1467 reply
.output_path_length
= htobe32(output_path_length
);
1468 ret
= lttng_dynamic_buffer_append(
1469 &reply_payload
, &reply
, sizeof(reply
));
1471 ERR("Failed to append \"create session\" command reply header to payload buffer");
1475 if (output_path_length
) {
1476 ret
= lttng_dynamic_buffer_append(&reply_payload
,
1477 session
->output_path
,
1478 output_path_length
);
1480 ERR("Failed to append \"create session\" command reply path to payload buffer");
1486 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, reply_payload
.data
,
1487 reply_payload
.size
, 0);
1488 if (send_ret
< (ssize_t
) reply_payload
.size
) {
1489 ERR("Failed to send \"create session\" command reply of %zu bytes (ret = %zd)",
1490 reply_payload
.size
, send_ret
);
1494 if (ret
< 0 && session
) {
1495 session_put(session
);
1497 lttng_dynamic_buffer_reset(&reply_payload
);
1502 * When we have received all the streams and the metadata for a channel,
1503 * we make them visible to the viewer threads.
1505 static void publish_connection_local_streams(struct relay_connection
*conn
)
1507 struct relay_stream
*stream
;
1508 struct relay_session
*session
= conn
->session
;
1511 * We publish all streams belonging to a session atomically wrt
1514 pthread_mutex_lock(&session
->lock
);
1516 cds_list_for_each_entry_rcu(stream
, &session
->recv_list
,
1518 stream_publish(stream
);
1523 * Inform the viewer that there are new streams in the session.
1525 if (session
->viewer_attached
) {
1526 uatomic_set(&session
->new_streams
, 1);
1528 pthread_mutex_unlock(&session
->lock
);
1531 static int conform_channel_path(char *channel_path
)
1535 if (strstr("../", channel_path
)) {
1536 ERR("Refusing channel path as it walks up the path hierarchy: \"%s\"",
1542 if (*channel_path
== '/') {
1543 const size_t len
= strlen(channel_path
);
1546 * Channel paths from peers prior to 2.11 are expressed as an
1547 * absolute path that is, in reality, relative to the relay
1548 * daemon's output directory. Remove the leading slash so it
1549 * is correctly interpreted as a relative path later on.
1551 * len (and not len - 1) is used to copy the trailing NULL.
1553 bcopy(channel_path
+ 1, channel_path
, len
);
1560 * relay_add_stream: allocate a new stream for a session
1562 static int relay_add_stream(const struct lttcomm_relayd_hdr
*recv_hdr
,
1563 struct relay_connection
*conn
,
1564 const struct lttng_buffer_view
*payload
)
1568 struct relay_session
*session
= conn
->session
;
1569 struct relay_stream
*stream
= NULL
;
1570 struct lttcomm_relayd_status_stream reply
;
1571 struct ctf_trace
*trace
= NULL
;
1572 uint64_t stream_handle
= -1ULL;
1573 char *path_name
= NULL
, *channel_name
= NULL
;
1574 uint64_t tracefile_size
= 0, tracefile_count
= 0;
1575 LTTNG_OPTIONAL(uint64_t) stream_chunk_id
= {};
1577 if (!session
|| !conn
->version_check_done
) {
1578 ERR("Trying to add a stream before version check");
1580 goto end_no_session
;
1583 if (session
->minor
== 1) {
1585 ret
= cmd_recv_stream_2_1(payload
, &path_name
,
1587 } else if (session
->minor
> 1 && session
->minor
< 11) {
1588 /* From 2.2 to 2.10 */
1589 ret
= cmd_recv_stream_2_2(payload
, &path_name
,
1590 &channel_name
, &tracefile_size
, &tracefile_count
);
1592 /* From 2.11 to ... */
1593 ret
= cmd_recv_stream_2_11(payload
, &path_name
,
1594 &channel_name
, &tracefile_size
, &tracefile_count
,
1595 &stream_chunk_id
.value
);
1596 stream_chunk_id
.is_set
= true;
1603 if (conform_channel_path(path_name
)) {
1608 * Backward compatibility for --group-output-by-session.
1609 * Prior to lttng 2.11, the complete path is passed by the stream.
1610 * Starting at 2.11, lttng-relayd uses chunk. When dealing with producer
1611 * >=2.11 the chunk is responsible for the output path. When dealing
1612 * with producer < 2.11 the chunk output_path is the root output path
1613 * and the stream carries the complete path (path_name).
1614 * To support --group-output-by-session with older producer (<2.11), we
1615 * need to craft the path based on the stream path.
1617 if (opt_group_output_by
== RELAYD_GROUP_OUTPUT_BY_SESSION
) {
1618 if (conn
->minor
< 4) {
1620 * From 2.1 to 2.3, the session_name is not passed on
1621 * the RELAYD_CREATE_SESSION command. The session name
1622 * is necessary to detect the presence of a base_path
1623 * inside the stream path. Without it we cannot perform
1624 * a valid group-output-by-session transformation.
1626 WARN("Unable to perform a --group-by-session transformation for session %" PRIu64
1627 " for stream with path \"%s\" as it is produced by a peer using a protocol older than v2.4",
1628 session
->id
, path_name
);
1629 } else if (conn
->minor
>= 4 && conn
->minor
< 11) {
1630 char *group_by_session_path_name
;
1632 assert(session
->session_name
[0] != '\0');
1634 group_by_session_path_name
=
1635 backward_compat_group_by_session(
1637 session
->session_name
,
1638 session
->creation_time
.value
);
1639 if (!group_by_session_path_name
) {
1640 ERR("Failed to apply group by session to stream of session %" PRIu64
,
1645 DBG("Transformed session path from \"%s\" to \"%s\" to honor per-session name grouping",
1646 path_name
, group_by_session_path_name
);
1649 path_name
= group_by_session_path_name
;
1653 trace
= ctf_trace_get_by_path_or_create(session
, path_name
);
1658 /* This stream here has one reference on the trace. */
1659 pthread_mutex_lock(&last_relay_stream_id_lock
);
1660 stream_handle
= ++last_relay_stream_id
;
1661 pthread_mutex_unlock(&last_relay_stream_id_lock
);
1663 /* We pass ownership of path_name and channel_name. */
1664 stream
= stream_create(trace
, stream_handle
, path_name
,
1665 channel_name
, tracefile_size
, tracefile_count
);
1667 channel_name
= NULL
;
1670 * Streams are the owners of their trace. Reference to trace is
1671 * kept within stream_create().
1673 ctf_trace_put(trace
);
1676 memset(&reply
, 0, sizeof(reply
));
1677 reply
.handle
= htobe64(stream_handle
);
1679 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1681 reply
.ret_code
= htobe32(LTTNG_OK
);
1684 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1685 sizeof(struct lttcomm_relayd_status_stream
), 0);
1686 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1687 ERR("Failed to send \"add stream\" command reply (ret = %zd)",
1699 * relay_close_stream: close a specific stream
1701 static int relay_close_stream(const struct lttcomm_relayd_hdr
*recv_hdr
,
1702 struct relay_connection
*conn
,
1703 const struct lttng_buffer_view
*payload
)
1707 struct relay_session
*session
= conn
->session
;
1708 struct lttcomm_relayd_close_stream stream_info
;
1709 struct lttcomm_relayd_generic_reply reply
;
1710 struct relay_stream
*stream
;
1712 DBG("Close stream received");
1714 if (!session
|| !conn
->version_check_done
) {
1715 ERR("Trying to close a stream before version check");
1717 goto end_no_session
;
1720 if (payload
->size
< sizeof(stream_info
)) {
1721 ERR("Unexpected payload size in \"relay_close_stream\": expected >= %zu bytes, got %zu bytes",
1722 sizeof(stream_info
), payload
->size
);
1724 goto end_no_session
;
1726 memcpy(&stream_info
, payload
->data
, sizeof(stream_info
));
1727 stream_info
.stream_id
= be64toh(stream_info
.stream_id
);
1728 stream_info
.last_net_seq_num
= be64toh(stream_info
.last_net_seq_num
);
1730 stream
= stream_get_by_id(stream_info
.stream_id
);
1737 * Set last_net_seq_num before the close flag. Required by data
1740 pthread_mutex_lock(&stream
->lock
);
1741 stream
->last_net_seq_num
= stream_info
.last_net_seq_num
;
1742 pthread_mutex_unlock(&stream
->lock
);
1745 * This is one of the conditions which may trigger a stream close
1746 * with the others being:
1747 * 1) A close command is received for a stream
1748 * 2) The control connection owning the stream is closed
1749 * 3) We have received all of the stream's data _after_ a close
1752 try_stream_close(stream
);
1753 if (stream
->is_metadata
) {
1754 struct relay_viewer_stream
*vstream
;
1756 vstream
= viewer_stream_get_by_id(stream
->stream_handle
);
1758 if (stream
->no_new_metadata_notified
) {
1760 * Since all the metadata has been sent to the
1761 * viewer and that we have a request to close
1762 * its stream, we can safely teardown the
1763 * corresponding metadata viewer stream.
1765 viewer_stream_put(vstream
);
1767 /* Put local reference. */
1768 viewer_stream_put(vstream
);
1775 memset(&reply
, 0, sizeof(reply
));
1777 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1779 reply
.ret_code
= htobe32(LTTNG_OK
);
1781 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1782 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1783 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1784 ERR("Failed to send \"close stream\" command reply (ret = %zd)",
1794 * relay_reset_metadata: reset a metadata stream
1797 int relay_reset_metadata(const struct lttcomm_relayd_hdr
*recv_hdr
,
1798 struct relay_connection
*conn
,
1799 const struct lttng_buffer_view
*payload
)
1803 struct relay_session
*session
= conn
->session
;
1804 struct lttcomm_relayd_reset_metadata stream_info
;
1805 struct lttcomm_relayd_generic_reply reply
;
1806 struct relay_stream
*stream
;
1808 DBG("Reset metadata received");
1810 if (!session
|| !conn
->version_check_done
) {
1811 ERR("Trying to reset a metadata stream before version check");
1813 goto end_no_session
;
1816 if (payload
->size
< sizeof(stream_info
)) {
1817 ERR("Unexpected payload size in \"relay_reset_metadata\": expected >= %zu bytes, got %zu bytes",
1818 sizeof(stream_info
), payload
->size
);
1820 goto end_no_session
;
1822 memcpy(&stream_info
, payload
->data
, sizeof(stream_info
));
1823 stream_info
.stream_id
= be64toh(stream_info
.stream_id
);
1824 stream_info
.version
= be64toh(stream_info
.version
);
1826 DBG("Update metadata to version %" PRIu64
, stream_info
.version
);
1828 /* Unsupported for live sessions for now. */
1829 if (session
->live_timer
!= 0) {
1834 stream
= stream_get_by_id(stream_info
.stream_id
);
1839 pthread_mutex_lock(&stream
->lock
);
1840 if (!stream
->is_metadata
) {
1845 ret
= stream_reset_file(stream
);
1847 ERR("Failed to reset metadata stream %" PRIu64
1848 ": stream_path = %s, channel = %s",
1849 stream
->stream_handle
, stream
->path_name
,
1850 stream
->channel_name
);
1854 pthread_mutex_unlock(&stream
->lock
);
1858 memset(&reply
, 0, sizeof(reply
));
1860 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1862 reply
.ret_code
= htobe32(LTTNG_OK
);
1864 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1865 sizeof(struct lttcomm_relayd_generic_reply
), 0);
1866 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1867 ERR("Failed to send \"reset metadata\" command reply (ret = %zd)",
1877 * relay_unknown_command: send -1 if received unknown command
1879 static void relay_unknown_command(struct relay_connection
*conn
)
1881 struct lttcomm_relayd_generic_reply reply
;
1884 memset(&reply
, 0, sizeof(reply
));
1885 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
1886 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
1887 if (send_ret
< sizeof(reply
)) {
1888 ERR("Failed to send \"unknown command\" command reply (ret = %zd)", send_ret
);
1893 * relay_start: send an acknowledgment to the client to tell if we are
1894 * ready to receive data. We are ready if a session is established.
1896 static int relay_start(const struct lttcomm_relayd_hdr
*recv_hdr
,
1897 struct relay_connection
*conn
,
1898 const struct lttng_buffer_view
*payload
)
1902 struct lttcomm_relayd_generic_reply reply
;
1903 struct relay_session
*session
= conn
->session
;
1906 DBG("Trying to start the streaming without a session established");
1907 ret
= htobe32(LTTNG_ERR_UNK
);
1910 memset(&reply
, 0, sizeof(reply
));
1911 reply
.ret_code
= htobe32(LTTNG_OK
);
1912 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
1914 if (send_ret
< (ssize_t
) sizeof(reply
)) {
1915 ERR("Failed to send \"relay_start\" command reply (ret = %zd)",
1924 * relay_recv_metadata: receive the metadata for the session.
1926 static int relay_recv_metadata(const struct lttcomm_relayd_hdr
*recv_hdr
,
1927 struct relay_connection
*conn
,
1928 const struct lttng_buffer_view
*payload
)
1931 struct relay_session
*session
= conn
->session
;
1932 struct lttcomm_relayd_metadata_payload metadata_payload_header
;
1933 struct relay_stream
*metadata_stream
;
1934 uint64_t metadata_payload_size
;
1935 struct lttng_buffer_view packet_view
;
1938 ERR("Metadata sent before version check");
1943 if (recv_hdr
->data_size
< sizeof(struct lttcomm_relayd_metadata_payload
)) {
1944 ERR("Incorrect data size");
1948 metadata_payload_size
= recv_hdr
->data_size
-
1949 sizeof(struct lttcomm_relayd_metadata_payload
);
1951 memcpy(&metadata_payload_header
, payload
->data
,
1952 sizeof(metadata_payload_header
));
1953 metadata_payload_header
.stream_id
= be64toh(
1954 metadata_payload_header
.stream_id
);
1955 metadata_payload_header
.padding_size
= be32toh(
1956 metadata_payload_header
.padding_size
);
1958 metadata_stream
= stream_get_by_id(metadata_payload_header
.stream_id
);
1959 if (!metadata_stream
) {
1964 packet_view
= lttng_buffer_view_from_view(payload
,
1965 sizeof(metadata_payload_header
), metadata_payload_size
);
1966 if (!lttng_buffer_view_is_valid(&packet_view
)) {
1967 ERR("Invalid metadata packet length announced by header");
1972 pthread_mutex_lock(&metadata_stream
->lock
);
1973 ret
= stream_write(metadata_stream
, &packet_view
,
1974 metadata_payload_header
.padding_size
);
1975 pthread_mutex_unlock(&metadata_stream
->lock
);
1981 stream_put(metadata_stream
);
1987 * relay_send_version: send relayd version number
1989 static int relay_send_version(const struct lttcomm_relayd_hdr
*recv_hdr
,
1990 struct relay_connection
*conn
,
1991 const struct lttng_buffer_view
*payload
)
1995 struct lttcomm_relayd_version reply
, msg
;
1996 bool compatible
= true;
1998 conn
->version_check_done
= true;
2000 /* Get version from the other side. */
2001 if (payload
->size
< sizeof(msg
)) {
2002 ERR("Unexpected payload size in \"relay_send_version\": expected >= %zu bytes, got %zu bytes",
2003 sizeof(msg
), payload
->size
);
2008 memcpy(&msg
, payload
->data
, sizeof(msg
));
2009 msg
.major
= be32toh(msg
.major
);
2010 msg
.minor
= be32toh(msg
.minor
);
2012 memset(&reply
, 0, sizeof(reply
));
2013 reply
.major
= RELAYD_VERSION_COMM_MAJOR
;
2014 reply
.minor
= RELAYD_VERSION_COMM_MINOR
;
2016 /* Major versions must be the same */
2017 if (reply
.major
!= msg
.major
) {
2018 DBG("Incompatible major versions (%u vs %u), deleting session",
2019 reply
.major
, msg
.major
);
2023 conn
->major
= reply
.major
;
2024 /* We adapt to the lowest compatible version */
2025 if (reply
.minor
<= msg
.minor
) {
2026 conn
->minor
= reply
.minor
;
2028 conn
->minor
= msg
.minor
;
2031 reply
.major
= htobe32(reply
.major
);
2032 reply
.minor
= htobe32(reply
.minor
);
2033 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
2035 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2036 ERR("Failed to send \"send version\" command reply (ret = %zd)",
2049 DBG("Version check done using protocol %u.%u", conn
->major
,
2057 * Check for data pending for a given stream id from the session daemon.
2059 static int relay_data_pending(const struct lttcomm_relayd_hdr
*recv_hdr
,
2060 struct relay_connection
*conn
,
2061 const struct lttng_buffer_view
*payload
)
2063 struct relay_session
*session
= conn
->session
;
2064 struct lttcomm_relayd_data_pending msg
;
2065 struct lttcomm_relayd_generic_reply reply
;
2066 struct relay_stream
*stream
;
2069 uint64_t stream_seq
;
2071 DBG("Data pending command received");
2073 if (!session
|| !conn
->version_check_done
) {
2074 ERR("Trying to check for data before version check");
2076 goto end_no_session
;
2079 if (payload
->size
< sizeof(msg
)) {
2080 ERR("Unexpected payload size in \"relay_data_pending\": expected >= %zu bytes, got %zu bytes",
2081 sizeof(msg
), payload
->size
);
2083 goto end_no_session
;
2085 memcpy(&msg
, payload
->data
, sizeof(msg
));
2086 msg
.stream_id
= be64toh(msg
.stream_id
);
2087 msg
.last_net_seq_num
= be64toh(msg
.last_net_seq_num
);
2089 stream
= stream_get_by_id(msg
.stream_id
);
2090 if (stream
== NULL
) {
2095 pthread_mutex_lock(&stream
->lock
);
2097 if (session_streams_have_index(session
)) {
2099 * Ensure that both the index and stream data have been
2100 * flushed up to the requested point.
2102 stream_seq
= min(stream
->prev_data_seq
, stream
->prev_index_seq
);
2104 stream_seq
= stream
->prev_data_seq
;
2106 DBG("Data pending for stream id %" PRIu64
": prev_data_seq %" PRIu64
2107 ", prev_index_seq %" PRIu64
2108 ", and last_seq %" PRIu64
, msg
.stream_id
,
2109 stream
->prev_data_seq
, stream
->prev_index_seq
,
2110 msg
.last_net_seq_num
);
2112 /* Avoid wrapping issue */
2113 if (((int64_t) (stream_seq
- msg
.last_net_seq_num
)) >= 0) {
2114 /* Data has in fact been written and is NOT pending */
2117 /* Data still being streamed thus pending */
2121 stream
->data_pending_check_done
= true;
2122 pthread_mutex_unlock(&stream
->lock
);
2127 memset(&reply
, 0, sizeof(reply
));
2128 reply
.ret_code
= htobe32(ret
);
2129 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2130 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2131 ERR("Failed to send \"data pending\" command reply (ret = %zd)",
2141 * Wait for the control socket to reach a quiescent state.
2143 * Note that for now, when receiving this command from the session
2144 * daemon, this means that every subsequent commands or data received on
2145 * the control socket has been handled. So, this is why we simply return
2148 static int relay_quiescent_control(const struct lttcomm_relayd_hdr
*recv_hdr
,
2149 struct relay_connection
*conn
,
2150 const struct lttng_buffer_view
*payload
)
2154 struct relay_stream
*stream
;
2155 struct lttcomm_relayd_quiescent_control msg
;
2156 struct lttcomm_relayd_generic_reply reply
;
2158 DBG("Checking quiescent state on control socket");
2160 if (!conn
->session
|| !conn
->version_check_done
) {
2161 ERR("Trying to check for data before version check");
2163 goto end_no_session
;
2166 if (payload
->size
< sizeof(msg
)) {
2167 ERR("Unexpected payload size in \"relay_quiescent_control\": expected >= %zu bytes, got %zu bytes",
2168 sizeof(msg
), payload
->size
);
2170 goto end_no_session
;
2172 memcpy(&msg
, payload
->data
, sizeof(msg
));
2173 msg
.stream_id
= be64toh(msg
.stream_id
);
2175 stream
= stream_get_by_id(msg
.stream_id
);
2179 pthread_mutex_lock(&stream
->lock
);
2180 stream
->data_pending_check_done
= true;
2181 pthread_mutex_unlock(&stream
->lock
);
2183 DBG("Relay quiescent control pending flag set to %" PRIu64
, msg
.stream_id
);
2186 memset(&reply
, 0, sizeof(reply
));
2187 reply
.ret_code
= htobe32(LTTNG_OK
);
2188 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2189 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2190 ERR("Failed to send \"quiescent control\" command reply (ret = %zd)",
2202 * Initialize a data pending command. This means that a consumer is about
2203 * to ask for data pending for each stream it holds. Simply iterate over
2204 * all streams of a session and set the data_pending_check_done flag.
2206 * This command returns to the client a LTTNG_OK code.
2208 static int relay_begin_data_pending(const struct lttcomm_relayd_hdr
*recv_hdr
,
2209 struct relay_connection
*conn
,
2210 const struct lttng_buffer_view
*payload
)
2214 struct lttng_ht_iter iter
;
2215 struct lttcomm_relayd_begin_data_pending msg
;
2216 struct lttcomm_relayd_generic_reply reply
;
2217 struct relay_stream
*stream
;
2222 DBG("Init streams for data pending");
2224 if (!conn
->session
|| !conn
->version_check_done
) {
2225 ERR("Trying to check for data before version check");
2227 goto end_no_session
;
2230 if (payload
->size
< sizeof(msg
)) {
2231 ERR("Unexpected payload size in \"relay_begin_data_pending\": expected >= %zu bytes, got %zu bytes",
2232 sizeof(msg
), payload
->size
);
2234 goto end_no_session
;
2236 memcpy(&msg
, payload
->data
, sizeof(msg
));
2237 msg
.session_id
= be64toh(msg
.session_id
);
2240 * Iterate over all streams to set the begin data pending flag.
2241 * For now, the streams are indexed by stream handle so we have
2242 * to iterate over all streams to find the one associated with
2243 * the right session_id.
2246 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
2248 if (!stream_get(stream
)) {
2251 if (stream
->trace
->session
->id
== msg
.session_id
) {
2252 pthread_mutex_lock(&stream
->lock
);
2253 stream
->data_pending_check_done
= false;
2254 pthread_mutex_unlock(&stream
->lock
);
2255 DBG("Set begin data pending flag to stream %" PRIu64
,
2256 stream
->stream_handle
);
2262 memset(&reply
, 0, sizeof(reply
));
2263 /* All good, send back reply. */
2264 reply
.ret_code
= htobe32(LTTNG_OK
);
2266 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2267 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2268 ERR("Failed to send \"begin data pending\" command reply (ret = %zd)",
2280 * End data pending command. This will check, for a given session id, if
2281 * each stream associated with it has its data_pending_check_done flag
2282 * set. If not, this means that the client lost track of the stream but
2283 * the data is still being streamed on our side. In this case, we inform
2284 * the client that data is in flight.
2286 * Return to the client if there is data in flight or not with a ret_code.
2288 static int relay_end_data_pending(const struct lttcomm_relayd_hdr
*recv_hdr
,
2289 struct relay_connection
*conn
,
2290 const struct lttng_buffer_view
*payload
)
2294 struct lttng_ht_iter iter
;
2295 struct lttcomm_relayd_end_data_pending msg
;
2296 struct lttcomm_relayd_generic_reply reply
;
2297 struct relay_stream
*stream
;
2298 uint32_t is_data_inflight
= 0;
2300 DBG("End data pending command");
2302 if (!conn
->session
|| !conn
->version_check_done
) {
2303 ERR("Trying to check for data before version check");
2305 goto end_no_session
;
2308 if (payload
->size
< sizeof(msg
)) {
2309 ERR("Unexpected payload size in \"relay_end_data_pending\": expected >= %zu bytes, got %zu bytes",
2310 sizeof(msg
), payload
->size
);
2312 goto end_no_session
;
2314 memcpy(&msg
, payload
->data
, sizeof(msg
));
2315 msg
.session_id
= be64toh(msg
.session_id
);
2318 * Iterate over all streams to see if the begin data pending
2322 cds_lfht_for_each_entry(relay_streams_ht
->ht
, &iter
.iter
, stream
,
2324 if (!stream_get(stream
)) {
2327 if (stream
->trace
->session
->id
!= msg
.session_id
) {
2331 pthread_mutex_lock(&stream
->lock
);
2332 if (!stream
->data_pending_check_done
) {
2333 uint64_t stream_seq
;
2335 if (session_streams_have_index(conn
->session
)) {
2337 * Ensure that both the index and stream data have been
2338 * flushed up to the requested point.
2340 stream_seq
= min(stream
->prev_data_seq
, stream
->prev_index_seq
);
2342 stream_seq
= stream
->prev_data_seq
;
2344 if (!stream
->closed
|| !(((int64_t) (stream_seq
- stream
->last_net_seq_num
)) >= 0)) {
2345 is_data_inflight
= 1;
2346 DBG("Data is still in flight for stream %" PRIu64
,
2347 stream
->stream_handle
);
2348 pthread_mutex_unlock(&stream
->lock
);
2353 pthread_mutex_unlock(&stream
->lock
);
2358 memset(&reply
, 0, sizeof(reply
));
2359 /* All good, send back reply. */
2360 reply
.ret_code
= htobe32(is_data_inflight
);
2362 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2363 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2364 ERR("Failed to send \"end data pending\" command reply (ret = %zd)",
2376 * Receive an index for a specific stream.
2378 * Return 0 on success else a negative value.
2380 static int relay_recv_index(const struct lttcomm_relayd_hdr
*recv_hdr
,
2381 struct relay_connection
*conn
,
2382 const struct lttng_buffer_view
*payload
)
2386 struct relay_session
*session
= conn
->session
;
2387 struct lttcomm_relayd_index index_info
;
2388 struct lttcomm_relayd_generic_reply reply
;
2389 struct relay_stream
*stream
;
2394 DBG("Relay receiving index");
2396 if (!session
|| !conn
->version_check_done
) {
2397 ERR("Trying to close a stream before version check");
2399 goto end_no_session
;
2402 msg_len
= lttcomm_relayd_index_len(
2403 lttng_to_index_major(conn
->major
, conn
->minor
),
2404 lttng_to_index_minor(conn
->major
, conn
->minor
));
2405 if (payload
->size
< msg_len
) {
2406 ERR("Unexpected payload size in \"relay_recv_index\": expected >= %zu bytes, got %zu bytes",
2407 msg_len
, payload
->size
);
2409 goto end_no_session
;
2411 memcpy(&index_info
, payload
->data
, msg_len
);
2412 index_info
.relay_stream_id
= be64toh(index_info
.relay_stream_id
);
2413 index_info
.net_seq_num
= be64toh(index_info
.net_seq_num
);
2414 index_info
.packet_size
= be64toh(index_info
.packet_size
);
2415 index_info
.content_size
= be64toh(index_info
.content_size
);
2416 index_info
.timestamp_begin
= be64toh(index_info
.timestamp_begin
);
2417 index_info
.timestamp_end
= be64toh(index_info
.timestamp_end
);
2418 index_info
.events_discarded
= be64toh(index_info
.events_discarded
);
2419 index_info
.stream_id
= be64toh(index_info
.stream_id
);
2421 if (conn
->minor
>= 8) {
2422 index_info
.stream_instance_id
=
2423 be64toh(index_info
.stream_instance_id
);
2424 index_info
.packet_seq_num
= be64toh(index_info
.packet_seq_num
);
2426 index_info
.stream_instance_id
= -1ULL;
2427 index_info
.packet_seq_num
= -1ULL;
2430 stream
= stream_get_by_id(index_info
.relay_stream_id
);
2432 ERR("stream_get_by_id not found");
2437 pthread_mutex_lock(&stream
->lock
);
2438 ret
= stream_add_index(stream
, &index_info
);
2439 pthread_mutex_unlock(&stream
->lock
);
2441 goto end_stream_put
;
2447 memset(&reply
, 0, sizeof(reply
));
2449 reply
.ret_code
= htobe32(LTTNG_ERR_UNK
);
2451 reply
.ret_code
= htobe32(LTTNG_OK
);
2453 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2454 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2455 ERR("Failed to send \"recv index\" command reply (ret = %zd)", send_ret
);
2464 * Receive the streams_sent message.
2466 * Return 0 on success else a negative value.
2468 static int relay_streams_sent(const struct lttcomm_relayd_hdr
*recv_hdr
,
2469 struct relay_connection
*conn
,
2470 const struct lttng_buffer_view
*payload
)
2474 struct lttcomm_relayd_generic_reply reply
;
2478 DBG("Relay receiving streams_sent");
2480 if (!conn
->session
|| !conn
->version_check_done
) {
2481 ERR("Trying to close a stream before version check");
2483 goto end_no_session
;
2487 * Publish every pending stream in the connection recv list which are
2488 * now ready to be used by the viewer.
2490 publish_connection_local_streams(conn
);
2492 memset(&reply
, 0, sizeof(reply
));
2493 reply
.ret_code
= htobe32(LTTNG_OK
);
2494 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
, sizeof(reply
), 0);
2495 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2496 ERR("Failed to send \"streams sent\" command reply (ret = %zd)",
2509 * relay_rotate_session_stream: rotate a stream to a new tracefile for the
2510 * session rotation feature (not the tracefile rotation feature).
2512 static int relay_rotate_session_streams(
2513 const struct lttcomm_relayd_hdr
*recv_hdr
,
2514 struct relay_connection
*conn
,
2515 const struct lttng_buffer_view
*payload
)
2520 enum lttng_error_code reply_code
= LTTNG_ERR_UNK
;
2521 struct relay_session
*session
= conn
->session
;
2522 struct lttcomm_relayd_rotate_streams rotate_streams
;
2523 struct lttcomm_relayd_generic_reply reply
= {};
2524 struct relay_stream
*stream
= NULL
;
2525 const size_t header_len
= sizeof(struct lttcomm_relayd_rotate_streams
);
2526 struct lttng_trace_chunk
*next_trace_chunk
= NULL
;
2527 struct lttng_buffer_view stream_positions
;
2528 char chunk_id_buf
[MAX_INT_DEC_LEN(uint64_t)];
2529 const char *chunk_id_str
= "none";
2531 if (!session
|| !conn
->version_check_done
) {
2532 ERR("Trying to rotate a stream before version check");
2537 if (session
->major
== 2 && session
->minor
< 11) {
2538 ERR("Unsupported feature before 2.11");
2543 if (payload
->size
< header_len
) {
2544 ERR("Unexpected payload size in \"relay_rotate_session_stream\": expected >= %zu bytes, got %zu bytes",
2545 header_len
, payload
->size
);
2550 memcpy(&rotate_streams
, payload
->data
, header_len
);
2552 /* Convert header to host endianness. */
2553 rotate_streams
= (typeof(rotate_streams
)) {
2554 .stream_count
= be32toh(rotate_streams
.stream_count
),
2555 .new_chunk_id
= (typeof(rotate_streams
.new_chunk_id
)) {
2556 .is_set
= !!rotate_streams
.new_chunk_id
.is_set
,
2557 .value
= be64toh(rotate_streams
.new_chunk_id
.value
),
2561 if (rotate_streams
.new_chunk_id
.is_set
) {
2563 * Retrieve the trace chunk the stream must transition to. As
2564 * per the protocol, this chunk should have been created
2565 * before this command is received.
2567 next_trace_chunk
= sessiond_trace_chunk_registry_get_chunk(
2568 sessiond_trace_chunk_registry
,
2569 session
->sessiond_uuid
, session
->id
,
2570 rotate_streams
.new_chunk_id
.value
);
2571 if (!next_trace_chunk
) {
2572 char uuid_str
[LTTNG_UUID_STR_LEN
];
2574 lttng_uuid_to_str(session
->sessiond_uuid
, uuid_str
);
2575 ERR("Unknown next trace chunk in ROTATE_STREAMS command: sessiond_uuid = {%s}, session_id = %" PRIu64
2576 ", trace_chunk_id = %" PRIu64
,
2577 uuid_str
, session
->id
,
2578 rotate_streams
.new_chunk_id
.value
);
2579 reply_code
= LTTNG_ERR_INVALID_PROTOCOL
;
2584 ret
= snprintf(chunk_id_buf
, sizeof(chunk_id_buf
), "%" PRIu64
,
2585 rotate_streams
.new_chunk_id
.value
);
2586 if (ret
< 0 || ret
>= sizeof(chunk_id_buf
)) {
2587 chunk_id_str
= "formatting error";
2589 chunk_id_str
= chunk_id_buf
;
2593 DBG("Rotate %" PRIu32
" streams of session \"%s\" to chunk \"%s\"",
2594 rotate_streams
.stream_count
, session
->session_name
,
2597 stream_positions
= lttng_buffer_view_from_view(payload
,
2598 sizeof(rotate_streams
), -1);
2599 if (!stream_positions
.data
||
2600 stream_positions
.size
<
2601 (rotate_streams
.stream_count
*
2602 sizeof(struct lttcomm_relayd_stream_rotation_position
))) {
2603 reply_code
= LTTNG_ERR_INVALID_PROTOCOL
;
2608 for (i
= 0; i
< rotate_streams
.stream_count
; i
++) {
2609 struct lttcomm_relayd_stream_rotation_position
*position_comm
=
2610 &((typeof(position_comm
)) stream_positions
.data
)[i
];
2611 const struct lttcomm_relayd_stream_rotation_position pos
= {
2612 .stream_id
= be64toh(position_comm
->stream_id
),
2613 .rotate_at_seq_num
= be64toh(
2614 position_comm
->rotate_at_seq_num
),
2617 stream
= stream_get_by_id(pos
.stream_id
);
2619 reply_code
= LTTNG_ERR_INVALID
;
2624 pthread_mutex_lock(&stream
->lock
);
2625 ret
= stream_set_pending_rotation(stream
, next_trace_chunk
,
2626 pos
.rotate_at_seq_num
);
2627 pthread_mutex_unlock(&stream
->lock
);
2629 reply_code
= LTTNG_ERR_FILE_CREATION_ERROR
;
2637 reply_code
= LTTNG_OK
;
2644 reply
.ret_code
= htobe32((uint32_t) reply_code
);
2645 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
, &reply
,
2646 sizeof(struct lttcomm_relayd_generic_reply
), 0);
2647 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2648 ERR("Failed to send \"rotate session stream\" command reply (ret = %zd)",
2653 lttng_trace_chunk_put(next_trace_chunk
);
2660 * relay_create_trace_chunk: create a new trace chunk
2662 static int relay_create_trace_chunk(const struct lttcomm_relayd_hdr
*recv_hdr
,
2663 struct relay_connection
*conn
,
2664 const struct lttng_buffer_view
*payload
)
2668 struct relay_session
*session
= conn
->session
;
2669 struct lttcomm_relayd_create_trace_chunk
*msg
;
2670 struct lttcomm_relayd_generic_reply reply
= {};
2671 struct lttng_buffer_view header_view
;
2672 struct lttng_trace_chunk
*chunk
= NULL
, *published_chunk
= NULL
;
2673 enum lttng_error_code reply_code
= LTTNG_OK
;
2674 enum lttng_trace_chunk_status chunk_status
;
2675 const char *new_path
;
2677 if (!session
|| !conn
->version_check_done
) {
2678 ERR("Trying to create a trace chunk before version check");
2683 if (session
->major
== 2 && session
->minor
< 11) {
2684 ERR("Chunk creation command is unsupported before 2.11");
2689 header_view
= lttng_buffer_view_from_view(payload
, 0, sizeof(*msg
));
2690 if (!lttng_buffer_view_is_valid(&header_view
)) {
2691 ERR("Failed to receive payload of chunk creation command");
2696 /* Convert to host endianness. */
2697 msg
= (typeof(msg
)) header_view
.data
;
2698 msg
->chunk_id
= be64toh(msg
->chunk_id
);
2699 msg
->creation_timestamp
= be64toh(msg
->creation_timestamp
);
2700 msg
->override_name_length
= be32toh(msg
->override_name_length
);
2702 if (session
->current_trace_chunk
&&
2703 !lttng_trace_chunk_get_name_overridden(session
->current_trace_chunk
)) {
2704 chunk_status
= lttng_trace_chunk_rename_path(session
->current_trace_chunk
,
2705 DEFAULT_CHUNK_TMP_OLD_DIRECTORY
);
2706 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
2707 ERR("Failed to rename old chunk");
2709 reply_code
= LTTNG_ERR_UNK
;
2713 session
->ongoing_rotation
= true;
2714 if (!session
->current_trace_chunk
) {
2715 if (!session
->has_rotated
) {
2721 new_path
= DEFAULT_CHUNK_TMP_NEW_DIRECTORY
;
2723 chunk
= lttng_trace_chunk_create(
2724 msg
->chunk_id
, msg
->creation_timestamp
, new_path
);
2726 ERR("Failed to create trace chunk in trace chunk creation command");
2728 reply_code
= LTTNG_ERR_NOMEM
;
2731 lttng_trace_chunk_set_fd_tracker(chunk
, the_fd_tracker
);
2733 if (msg
->override_name_length
) {
2735 const struct lttng_buffer_view chunk_name_view
=
2736 lttng_buffer_view_from_view(payload
,
2738 msg
->override_name_length
);
2740 if (!lttng_buffer_view_is_valid(&chunk_name_view
)) {
2741 ERR("Invalid payload of chunk creation command (protocol error): buffer too short for expected name length");
2743 reply_code
= LTTNG_ERR_INVALID
;
2747 name
= chunk_name_view
.data
;
2748 if (name
[msg
->override_name_length
- 1]) {
2749 ERR("Invalid payload of chunk creation command (protocol error): name is not null-terminated");
2751 reply_code
= LTTNG_ERR_INVALID
;
2755 chunk_status
= lttng_trace_chunk_override_name(
2756 chunk
, chunk_name_view
.data
);
2757 switch (chunk_status
) {
2758 case LTTNG_TRACE_CHUNK_STATUS_OK
:
2760 case LTTNG_TRACE_CHUNK_STATUS_INVALID_ARGUMENT
:
2761 ERR("Failed to set the name of new trace chunk in trace chunk creation command (invalid name)");
2762 reply_code
= LTTNG_ERR_INVALID
;
2766 ERR("Failed to set the name of new trace chunk in trace chunk creation command (unknown error)");
2767 reply_code
= LTTNG_ERR_UNK
;
2773 chunk_status
= lttng_trace_chunk_set_credentials_current_user(chunk
);
2774 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
2775 reply_code
= LTTNG_ERR_UNK
;
2780 assert(conn
->session
->output_directory
);
2781 chunk_status
= lttng_trace_chunk_set_as_owner(chunk
,
2782 conn
->session
->output_directory
);
2783 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
2784 reply_code
= LTTNG_ERR_UNK
;
2789 published_chunk
= sessiond_trace_chunk_registry_publish_chunk(
2790 sessiond_trace_chunk_registry
,
2791 conn
->session
->sessiond_uuid
,
2794 if (!published_chunk
) {
2795 char uuid_str
[LTTNG_UUID_STR_LEN
];
2797 lttng_uuid_to_str(conn
->session
->sessiond_uuid
, uuid_str
);
2798 ERR("Failed to publish chunk: sessiond_uuid = %s, session_id = %" PRIu64
", chunk_id = %" PRIu64
,
2803 reply_code
= LTTNG_ERR_NOMEM
;
2807 pthread_mutex_lock(&conn
->session
->lock
);
2808 if (conn
->session
->pending_closure_trace_chunk
) {
2810 * Invalid; this means a second create_trace_chunk command was
2811 * received before a close_trace_chunk.
2813 ERR("Invalid trace chunk close command received; a trace chunk is already waiting for a trace chunk close command");
2814 reply_code
= LTTNG_ERR_INVALID_PROTOCOL
;
2816 goto end_unlock_session
;
2818 conn
->session
->pending_closure_trace_chunk
=
2819 conn
->session
->current_trace_chunk
;
2820 conn
->session
->current_trace_chunk
= published_chunk
;
2821 published_chunk
= NULL
;
2822 if (!conn
->session
->pending_closure_trace_chunk
) {
2823 session
->ongoing_rotation
= false;
2826 pthread_mutex_unlock(&conn
->session
->lock
);
2828 reply
.ret_code
= htobe32((uint32_t) reply_code
);
2829 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
,
2831 sizeof(struct lttcomm_relayd_generic_reply
),
2833 if (send_ret
< (ssize_t
) sizeof(reply
)) {
2834 ERR("Failed to send \"create trace chunk\" command reply (ret = %zd)",
2839 lttng_trace_chunk_put(chunk
);
2840 lttng_trace_chunk_put(published_chunk
);
2845 * relay_close_trace_chunk: close a trace chunk
2847 static int relay_close_trace_chunk(const struct lttcomm_relayd_hdr
*recv_hdr
,
2848 struct relay_connection
*conn
,
2849 const struct lttng_buffer_view
*payload
)
2851 int ret
= 0, buf_ret
;
2853 struct relay_session
*session
= conn
->session
;
2854 struct lttcomm_relayd_close_trace_chunk
*msg
;
2855 struct lttcomm_relayd_close_trace_chunk_reply reply
= {};
2856 struct lttng_buffer_view header_view
;
2857 struct lttng_trace_chunk
*chunk
= NULL
;
2858 enum lttng_error_code reply_code
= LTTNG_OK
;
2859 enum lttng_trace_chunk_status chunk_status
;
2861 LTTNG_OPTIONAL(enum lttng_trace_chunk_command_type
) close_command
= {};
2862 time_t close_timestamp
;
2863 char closed_trace_chunk_path
[LTTNG_PATH_MAX
];
2864 size_t path_length
= 0;
2865 const char *chunk_name
= NULL
;
2866 struct lttng_dynamic_buffer reply_payload
;
2867 const char *new_path
;
2869 lttng_dynamic_buffer_init(&reply_payload
);
2871 if (!session
|| !conn
->version_check_done
) {
2872 ERR("Trying to close a trace chunk before version check");
2877 if (session
->major
== 2 && session
->minor
< 11) {
2878 ERR("Chunk close command is unsupported before 2.11");
2883 header_view
= lttng_buffer_view_from_view(payload
, 0, sizeof(*msg
));
2884 if (!lttng_buffer_view_is_valid(&header_view
)) {
2885 ERR("Failed to receive payload of chunk close command");
2890 /* Convert to host endianness. */
2891 msg
= (typeof(msg
)) header_view
.data
;
2892 chunk_id
= be64toh(msg
->chunk_id
);
2893 close_timestamp
= (time_t) be64toh(msg
->close_timestamp
);
2894 close_command
= (typeof(close_command
)){
2895 .value
= be32toh(msg
->close_command
.value
),
2896 .is_set
= msg
->close_command
.is_set
,
2899 chunk
= sessiond_trace_chunk_registry_get_chunk(
2900 sessiond_trace_chunk_registry
,
2901 conn
->session
->sessiond_uuid
,
2905 char uuid_str
[LTTNG_UUID_STR_LEN
];
2907 lttng_uuid_to_str(conn
->session
->sessiond_uuid
, uuid_str
);
2908 ERR("Failed to find chunk to close: sessiond_uuid = %s, session_id = %" PRIu64
", chunk_id = %" PRIu64
,
2913 reply_code
= LTTNG_ERR_NOMEM
;
2917 pthread_mutex_lock(&session
->lock
);
2918 if (close_command
.is_set
&&
2919 close_command
.value
== LTTNG_TRACE_CHUNK_COMMAND_TYPE_DELETE
) {
2921 * Clear command. It is a protocol error to ask for a
2922 * clear on a relay which does not allow it. Querying
2923 * the configuration allows figuring out whether
2924 * clearing is allowed before doing the clear.
2926 if (!opt_allow_clear
) {
2928 reply_code
= LTTNG_ERR_INVALID_PROTOCOL
;
2929 goto end_unlock_session
;
2932 if (session
->pending_closure_trace_chunk
&&
2933 session
->pending_closure_trace_chunk
!= chunk
) {
2934 ERR("Trace chunk close command for session \"%s\" does not target the trace chunk pending closure",
2935 session
->session_name
);
2936 reply_code
= LTTNG_ERR_INVALID_PROTOCOL
;
2938 goto end_unlock_session
;
2941 if (session
->current_trace_chunk
&& session
->current_trace_chunk
!= chunk
&&
2942 !lttng_trace_chunk_get_name_overridden(session
->current_trace_chunk
)) {
2943 if (close_command
.is_set
&&
2944 close_command
.value
== LTTNG_TRACE_CHUNK_COMMAND_TYPE_DELETE
&&
2945 !session
->has_rotated
) {
2946 /* New chunk stays in session output directory. */
2949 /* Use chunk name for new chunk. */
2952 /* Rename new chunk path. */
2953 chunk_status
= lttng_trace_chunk_rename_path(session
->current_trace_chunk
,
2955 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
2957 goto end_unlock_session
;
2959 session
->ongoing_rotation
= false;
2961 if ((!close_command
.is_set
||
2962 close_command
.value
== LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION
) &&
2963 !lttng_trace_chunk_get_name_overridden(chunk
)) {
2964 const char *old_path
;
2966 if (!session
->has_rotated
) {
2971 /* We need to move back the .tmp_old_chunk to its rightful place. */
2972 chunk_status
= lttng_trace_chunk_rename_path(chunk
, old_path
);
2973 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
2975 goto end_unlock_session
;
2978 chunk_status
= lttng_trace_chunk_set_close_timestamp(
2979 chunk
, close_timestamp
);
2980 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
2981 ERR("Failed to set trace chunk close timestamp");
2983 reply_code
= LTTNG_ERR_UNK
;
2984 goto end_unlock_session
;
2987 if (close_command
.is_set
) {
2988 chunk_status
= lttng_trace_chunk_set_close_command(
2989 chunk
, close_command
.value
);
2990 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
2992 reply_code
= LTTNG_ERR_INVALID
;
2993 goto end_unlock_session
;
2996 chunk_status
= lttng_trace_chunk_get_name(chunk
, &chunk_name
, NULL
);
2997 if (chunk_status
!= LTTNG_TRACE_CHUNK_STATUS_OK
) {
2998 ERR("Failed to get chunk name");
3000 reply_code
= LTTNG_ERR_UNK
;
3001 goto end_unlock_session
;
3003 if (!session
->has_rotated
&& !session
->snapshot
) {
3004 ret
= lttng_strncpy(closed_trace_chunk_path
,
3005 session
->output_path
,
3006 sizeof(closed_trace_chunk_path
));
3008 ERR("Failed to send trace chunk path: path length of %zu bytes exceeds the maximal allowed length of %zu bytes",
3009 strlen(session
->output_path
),
3010 sizeof(closed_trace_chunk_path
));
3011 reply_code
= LTTNG_ERR_NOMEM
;
3013 goto end_unlock_session
;
3016 if (session
->snapshot
) {
3017 ret
= snprintf(closed_trace_chunk_path
,
3018 sizeof(closed_trace_chunk_path
),
3019 "%s/%s", session
->output_path
,
3022 ret
= snprintf(closed_trace_chunk_path
,
3023 sizeof(closed_trace_chunk_path
),
3024 "%s/" DEFAULT_ARCHIVED_TRACE_CHUNKS_DIRECTORY
3026 session
->output_path
, chunk_name
);
3028 if (ret
< 0 || ret
== sizeof(closed_trace_chunk_path
)) {
3029 ERR("Failed to format closed trace chunk resulting path");
3030 reply_code
= ret
< 0 ? LTTNG_ERR_UNK
: LTTNG_ERR_NOMEM
;
3032 goto end_unlock_session
;
3035 if (close_command
.is_set
&&
3036 close_command
.value
== LTTNG_TRACE_CHUNK_COMMAND_TYPE_MOVE_TO_COMPLETED
) {
3037 session
->has_rotated
= true;
3039 DBG("Reply chunk path on close: %s", closed_trace_chunk_path
);
3040 path_length
= strlen(closed_trace_chunk_path
) + 1;
3041 if (path_length
> UINT32_MAX
) {
3042 ERR("Closed trace chunk path exceeds the maximal length allowed by the protocol");
3044 reply_code
= LTTNG_ERR_INVALID_PROTOCOL
;
3045 goto end_unlock_session
;
3048 if (session
->current_trace_chunk
== chunk
) {
3050 * After a trace chunk close command, no new streams
3051 * referencing the chunk may be created. Hence, on the
3052 * event that no new trace chunk have been created for
3053 * the session, the reference to the current trace chunk
3054 * is released in order to allow it to be reclaimed when
3055 * the last stream releases its reference to it.
3057 lttng_trace_chunk_put(session
->current_trace_chunk
);
3058 session
->current_trace_chunk
= NULL
;
3060 lttng_trace_chunk_put(session
->pending_closure_trace_chunk
);
3061 session
->pending_closure_trace_chunk
= NULL
;
3063 pthread_mutex_unlock(&session
->lock
);
3066 reply
.generic
.ret_code
= htobe32((uint32_t) reply_code
);
3067 reply
.path_length
= htobe32((uint32_t) path_length
);
3068 buf_ret
= lttng_dynamic_buffer_append(
3069 &reply_payload
, &reply
, sizeof(reply
));
3071 ERR("Failed to append \"close trace chunk\" command reply header to payload buffer");
3075 if (reply_code
== LTTNG_OK
) {
3076 buf_ret
= lttng_dynamic_buffer_append(&reply_payload
,
3077 closed_trace_chunk_path
, path_length
);
3079 ERR("Failed to append \"close trace chunk\" command reply path to payload buffer");
3084 send_ret
= conn
->sock
->ops
->sendmsg(conn
->sock
,
3088 if (send_ret
< reply_payload
.size
) {
3089 ERR("Failed to send \"close trace chunk\" command reply of %zu bytes (ret = %zd)",
3090 reply_payload
.size
, send_ret
);
3095 lttng_trace_chunk_put(chunk
);
3096 lttng_dynamic_buffer_reset(&reply_payload
);
3101 * relay_trace_chunk_exists: check if a trace chunk exists
3103 static int relay_trace_chunk_exists(const struct lttcomm_relayd_hdr
*recv_hdr
,
3104 struct relay_connection
*conn
,
3105 const struct lttng_buffer_view
*payload
)
3109 struct relay_session
*session
= conn
->session
;
3110 struct lttcomm_relayd_trace_chunk_exists
*msg
;
3111 struct lttcomm_relayd_trace_chunk_exists_reply reply
= {};
3112 struct lttng_buffer_view header_view
;
3116 if (!session
|| !conn
->version_check_done
) {
3117 ERR("Trying to check for the existance of a trace chunk before version check");
3122 if (session
->major
== 2 && session
->minor
< 11) {
3123 ERR("Chunk exists command is unsupported before 2.11");
3128 header_view
= lttng_buffer_view_from_view(payload
, 0, sizeof(*msg
));
3129 if (!lttng_buffer_view_is_valid(&header_view
)) {
3130 ERR("Failed to receive payload of chunk exists command");
3135 /* Convert to host endianness. */
3136 msg
= (typeof(msg
)) header_view
.data
;
3137 chunk_id
= be64toh(msg
->chunk_id
);
3139 ret
= sessiond_trace_chunk_registry_chunk_exists(
3140 sessiond_trace_chunk_registry
,
3141 conn
->session
->sessiond_uuid
,
3143 chunk_id
, &chunk_exists
);
3145 * If ret is not 0, send the reply and report the error to the caller.
3146 * It is a protocol (or internal) error and the session/connection
3147 * should be torn down.
3149 reply
= (typeof(reply
)){
3150 .generic
.ret_code
= htobe32((uint32_t)
3151 (ret
== 0 ? LTTNG_OK
: LTTNG_ERR_INVALID_PROTOCOL
)),
3152 .trace_chunk_exists
= ret
== 0 ? chunk_exists
: 0,
3154 send_ret
= conn
->sock
->ops
->sendmsg(
3155 conn
->sock
, &reply
, sizeof(reply
), 0);
3156 if (send_ret
< (ssize_t
) sizeof(reply
)) {
3157 ERR("Failed to send \"create trace chunk\" command reply (ret = %zd)",
3166 * relay_get_configuration: query whether feature is available
3168 static int relay_get_configuration(const struct lttcomm_relayd_hdr
*recv_hdr
,
3169 struct relay_connection
*conn
,
3170 const struct lttng_buffer_view
*payload
)
3174 struct lttcomm_relayd_get_configuration
*msg
;
3175 struct lttcomm_relayd_get_configuration_reply reply
= {};
3176 struct lttng_buffer_view header_view
;
3177 uint64_t query_flags
= 0;
3178 uint64_t result_flags
= 0;
3180 header_view
= lttng_buffer_view_from_view(payload
, 0, sizeof(*msg
));
3181 if (!lttng_buffer_view_is_valid(&header_view
)) {
3182 ERR("Failed to receive payload of chunk close command");
3187 /* Convert to host endianness. */
3188 msg
= (typeof(msg
)) header_view
.data
;
3189 query_flags
= be64toh(msg
->query_flags
);
3192 ret
= LTTNG_ERR_INVALID_PROTOCOL
;
3195 if (opt_allow_clear
) {
3196 result_flags
|= LTTCOMM_RELAYD_CONFIGURATION_FLAG_CLEAR_ALLOWED
;
3200 reply
= (typeof(reply
)){
3201 .generic
.ret_code
= htobe32((uint32_t)
3202 (ret
== 0 ? LTTNG_OK
: LTTNG_ERR_INVALID_PROTOCOL
)),
3203 .relayd_configuration_flags
= htobe64(result_flags
),
3205 send_ret
= conn
->sock
->ops
->sendmsg(
3206 conn
->sock
, &reply
, sizeof(reply
), 0);
3207 if (send_ret
< (ssize_t
) sizeof(reply
)) {
3208 ERR("Failed to send \"get configuration\" command reply (ret = %zd)",
3216 #define DBG_CMD(cmd_name, conn) \
3217 DBG3("Processing \"%s\" command for socket %i", cmd_name, conn->sock->fd);
3219 static int relay_process_control_command(struct relay_connection
*conn
,
3220 const struct lttcomm_relayd_hdr
*header
,
3221 const struct lttng_buffer_view
*payload
)
3225 switch (header
->cmd
) {
3226 case RELAYD_CREATE_SESSION
:
3227 DBG_CMD("RELAYD_CREATE_SESSION", conn
);
3228 ret
= relay_create_session(header
, conn
, payload
);
3230 case RELAYD_ADD_STREAM
:
3231 DBG_CMD("RELAYD_ADD_STREAM", conn
);
3232 ret
= relay_add_stream(header
, conn
, payload
);
3234 case RELAYD_START_DATA
:
3235 DBG_CMD("RELAYD_START_DATA", conn
);
3236 ret
= relay_start(header
, conn
, payload
);
3238 case RELAYD_SEND_METADATA
:
3239 DBG_CMD("RELAYD_SEND_METADATA", conn
);
3240 ret
= relay_recv_metadata(header
, conn
, payload
);
3242 case RELAYD_VERSION
:
3243 DBG_CMD("RELAYD_VERSION", conn
);
3244 ret
= relay_send_version(header
, conn
, payload
);
3246 case RELAYD_CLOSE_STREAM
:
3247 DBG_CMD("RELAYD_CLOSE_STREAM", conn
);
3248 ret
= relay_close_stream(header
, conn
, payload
);
3250 case RELAYD_DATA_PENDING
:
3251 DBG_CMD("RELAYD_DATA_PENDING", conn
);
3252 ret
= relay_data_pending(header
, conn
, payload
);
3254 case RELAYD_QUIESCENT_CONTROL
:
3255 DBG_CMD("RELAYD_QUIESCENT_CONTROL", conn
);
3256 ret
= relay_quiescent_control(header
, conn
, payload
);
3258 case RELAYD_BEGIN_DATA_PENDING
:
3259 DBG_CMD("RELAYD_BEGIN_DATA_PENDING", conn
);
3260 ret
= relay_begin_data_pending(header
, conn
, payload
);
3262 case RELAYD_END_DATA_PENDING
:
3263 DBG_CMD("RELAYD_END_DATA_PENDING", conn
);
3264 ret
= relay_end_data_pending(header
, conn
, payload
);
3266 case RELAYD_SEND_INDEX
:
3267 DBG_CMD("RELAYD_SEND_INDEX", conn
);
3268 ret
= relay_recv_index(header
, conn
, payload
);
3270 case RELAYD_STREAMS_SENT
:
3271 DBG_CMD("RELAYD_STREAMS_SENT", conn
);
3272 ret
= relay_streams_sent(header
, conn
, payload
);
3274 case RELAYD_RESET_METADATA
:
3275 DBG_CMD("RELAYD_RESET_METADATA", conn
);
3276 ret
= relay_reset_metadata(header
, conn
, payload
);
3278 case RELAYD_ROTATE_STREAMS
:
3279 DBG_CMD("RELAYD_ROTATE_STREAMS", conn
);
3280 ret
= relay_rotate_session_streams(header
, conn
, payload
);
3282 case RELAYD_CREATE_TRACE_CHUNK
:
3283 DBG_CMD("RELAYD_CREATE_TRACE_CHUNK", conn
);
3284 ret
= relay_create_trace_chunk(header
, conn
, payload
);
3286 case RELAYD_CLOSE_TRACE_CHUNK
:
3287 DBG_CMD("RELAYD_CLOSE_TRACE_CHUNK", conn
);
3288 ret
= relay_close_trace_chunk(header
, conn
, payload
);
3290 case RELAYD_TRACE_CHUNK_EXISTS
:
3291 DBG_CMD("RELAYD_TRACE_CHUNK_EXISTS", conn
);
3292 ret
= relay_trace_chunk_exists(header
, conn
, payload
);
3294 case RELAYD_GET_CONFIGURATION
:
3295 DBG_CMD("RELAYD_GET_CONFIGURATION", conn
);
3296 ret
= relay_get_configuration(header
, conn
, payload
);
3298 case RELAYD_UPDATE_SYNC_INFO
:
3300 ERR("Received unknown command (%u)", header
->cmd
);
3301 relay_unknown_command(conn
);
3310 static enum relay_connection_status
relay_process_control_receive_payload(
3311 struct relay_connection
*conn
)
3314 enum relay_connection_status status
= RELAY_CONNECTION_STATUS_OK
;
3315 struct lttng_dynamic_buffer
*reception_buffer
=
3316 &conn
->protocol
.ctrl
.reception_buffer
;
3317 struct ctrl_connection_state_receive_payload
*state
=
3318 &conn
->protocol
.ctrl
.state
.receive_payload
;
3319 struct lttng_buffer_view payload_view
;
3321 if (state
->left_to_receive
== 0) {
3322 /* Short-circuit for payload-less commands. */
3323 goto reception_complete
;
3326 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
,
3327 reception_buffer
->data
+ state
->received
,
3328 state
->left_to_receive
, MSG_DONTWAIT
);
3330 if (errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
3331 PERROR("Unable to receive command payload on sock %d",
3333 status
= RELAY_CONNECTION_STATUS_ERROR
;
3336 } else if (ret
== 0) {
3337 DBG("Socket %d performed an orderly shutdown (received EOF)", conn
->sock
->fd
);
3338 status
= RELAY_CONNECTION_STATUS_CLOSED
;
3343 assert(ret
<= state
->left_to_receive
);
3345 state
->left_to_receive
-= ret
;
3346 state
->received
+= ret
;
3348 if (state
->left_to_receive
> 0) {
3350 * Can't transition to the protocol's next state, wait to
3351 * receive the rest of the header.
3353 DBG3("Partial reception of control connection protocol payload (received %" PRIu64
" bytes, %" PRIu64
" bytes left to receive, fd = %i)",
3354 state
->received
, state
->left_to_receive
,
3360 DBG("Done receiving control command payload: fd = %i, payload size = %" PRIu64
" bytes",
3361 conn
->sock
->fd
, state
->received
);
3363 * The payload required to process the command has been received.
3364 * A view to the reception buffer is forwarded to the various
3365 * commands and the state of the control is reset on success.
3367 * Commands are responsible for sending their reply to the peer.
3369 payload_view
= lttng_buffer_view_from_dynamic_buffer(reception_buffer
,
3371 ret
= relay_process_control_command(conn
,
3372 &state
->header
, &payload_view
);
3374 status
= RELAY_CONNECTION_STATUS_ERROR
;
3378 ret
= connection_reset_protocol_state(conn
);
3380 status
= RELAY_CONNECTION_STATUS_ERROR
;
3386 static enum relay_connection_status
relay_process_control_receive_header(
3387 struct relay_connection
*conn
)
3390 enum relay_connection_status status
= RELAY_CONNECTION_STATUS_OK
;
3391 struct lttcomm_relayd_hdr header
;
3392 struct lttng_dynamic_buffer
*reception_buffer
=
3393 &conn
->protocol
.ctrl
.reception_buffer
;
3394 struct ctrl_connection_state_receive_header
*state
=
3395 &conn
->protocol
.ctrl
.state
.receive_header
;
3397 assert(state
->left_to_receive
!= 0);
3399 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
,
3400 reception_buffer
->data
+ state
->received
,
3401 state
->left_to_receive
, MSG_DONTWAIT
);
3403 if (errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
3404 PERROR("Unable to receive control command header on sock %d",
3406 status
= RELAY_CONNECTION_STATUS_ERROR
;
3409 } else if (ret
== 0) {
3410 DBG("Socket %d performed an orderly shutdown (received EOF)", conn
->sock
->fd
);
3411 status
= RELAY_CONNECTION_STATUS_CLOSED
;
3416 assert(ret
<= state
->left_to_receive
);
3418 state
->left_to_receive
-= ret
;
3419 state
->received
+= ret
;
3421 if (state
->left_to_receive
> 0) {
3423 * Can't transition to the protocol's next state, wait to
3424 * receive the rest of the header.
3426 DBG3("Partial reception of control connection protocol header (received %" PRIu64
" bytes, %" PRIu64
" bytes left to receive, fd = %i)",
3427 state
->received
, state
->left_to_receive
,
3432 /* Transition to next state: receiving the command's payload. */
3433 conn
->protocol
.ctrl
.state_id
=
3434 CTRL_CONNECTION_STATE_RECEIVE_PAYLOAD
;
3435 memcpy(&header
, reception_buffer
->data
, sizeof(header
));
3436 header
.circuit_id
= be64toh(header
.circuit_id
);
3437 header
.data_size
= be64toh(header
.data_size
);
3438 header
.cmd
= be32toh(header
.cmd
);
3439 header
.cmd_version
= be32toh(header
.cmd_version
);
3440 memcpy(&conn
->protocol
.ctrl
.state
.receive_payload
.header
,
3441 &header
, sizeof(header
));
3443 DBG("Done receiving control command header: fd = %i, cmd = %" PRIu32
", cmd_version = %" PRIu32
", payload size = %" PRIu64
" bytes",
3444 conn
->sock
->fd
, header
.cmd
, header
.cmd_version
,
3447 if (header
.data_size
> DEFAULT_NETWORK_RELAYD_CTRL_MAX_PAYLOAD_SIZE
) {
3448 ERR("Command header indicates a payload (%" PRIu64
" bytes) that exceeds the maximal payload size allowed on a control connection.",
3450 status
= RELAY_CONNECTION_STATUS_ERROR
;
3454 conn
->protocol
.ctrl
.state
.receive_payload
.left_to_receive
=
3456 conn
->protocol
.ctrl
.state
.receive_payload
.received
= 0;
3457 ret
= lttng_dynamic_buffer_set_size(reception_buffer
,
3460 status
= RELAY_CONNECTION_STATUS_ERROR
;
3464 if (header
.data_size
== 0) {
3466 * Manually invoke the next state as the poll loop
3467 * will not wake-up to allow us to proceed further.
3469 status
= relay_process_control_receive_payload(conn
);
3476 * Process the commands received on the control socket
3478 static enum relay_connection_status
relay_process_control(
3479 struct relay_connection
*conn
)
3481 enum relay_connection_status status
;
3483 switch (conn
->protocol
.ctrl
.state_id
) {
3484 case CTRL_CONNECTION_STATE_RECEIVE_HEADER
:
3485 status
= relay_process_control_receive_header(conn
);
3487 case CTRL_CONNECTION_STATE_RECEIVE_PAYLOAD
:
3488 status
= relay_process_control_receive_payload(conn
);
3491 ERR("Unknown control connection protocol state encountered.");
3498 static enum relay_connection_status
relay_process_data_receive_header(
3499 struct relay_connection
*conn
)
3502 enum relay_connection_status status
= RELAY_CONNECTION_STATUS_OK
;
3503 struct data_connection_state_receive_header
*state
=
3504 &conn
->protocol
.data
.state
.receive_header
;
3505 struct lttcomm_relayd_data_hdr header
;
3506 struct relay_stream
*stream
;
3508 assert(state
->left_to_receive
!= 0);
3510 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
,
3511 state
->header_reception_buffer
+ state
->received
,
3512 state
->left_to_receive
, MSG_DONTWAIT
);
3514 if (errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
3515 PERROR("Unable to receive data header on sock %d", conn
->sock
->fd
);
3516 status
= RELAY_CONNECTION_STATUS_ERROR
;
3519 } else if (ret
== 0) {
3520 /* Orderly shutdown. Not necessary to print an error. */
3521 DBG("Socket %d performed an orderly shutdown (received EOF)", conn
->sock
->fd
);
3522 status
= RELAY_CONNECTION_STATUS_CLOSED
;
3527 assert(ret
<= state
->left_to_receive
);
3529 state
->left_to_receive
-= ret
;
3530 state
->received
+= ret
;
3532 if (state
->left_to_receive
> 0) {
3534 * Can't transition to the protocol's next state, wait to
3535 * receive the rest of the header.
3537 DBG3("Partial reception of data connection header (received %" PRIu64
" bytes, %" PRIu64
" bytes left to receive, fd = %i)",
3538 state
->received
, state
->left_to_receive
,
3543 /* Transition to next state: receiving the payload. */
3544 conn
->protocol
.data
.state_id
= DATA_CONNECTION_STATE_RECEIVE_PAYLOAD
;
3546 memcpy(&header
, state
->header_reception_buffer
, sizeof(header
));
3547 header
.circuit_id
= be64toh(header
.circuit_id
);
3548 header
.stream_id
= be64toh(header
.stream_id
);
3549 header
.data_size
= be32toh(header
.data_size
);
3550 header
.net_seq_num
= be64toh(header
.net_seq_num
);
3551 header
.padding_size
= be32toh(header
.padding_size
);
3552 memcpy(&conn
->protocol
.data
.state
.receive_payload
.header
, &header
, sizeof(header
));
3554 conn
->protocol
.data
.state
.receive_payload
.left_to_receive
=
3556 conn
->protocol
.data
.state
.receive_payload
.received
= 0;
3557 conn
->protocol
.data
.state
.receive_payload
.rotate_index
= false;
3559 DBG("Received data connection header on fd %i: circuit_id = %" PRIu64
", stream_id = %" PRIu64
", data_size = %" PRIu32
", net_seq_num = %" PRIu64
", padding_size = %" PRIu32
,
3560 conn
->sock
->fd
, header
.circuit_id
,
3561 header
.stream_id
, header
.data_size
,
3562 header
.net_seq_num
, header
.padding_size
);
3564 stream
= stream_get_by_id(header
.stream_id
);
3566 DBG("relay_process_data_receive_payload: Cannot find stream %" PRIu64
,
3568 /* Protocol error. */
3569 status
= RELAY_CONNECTION_STATUS_ERROR
;
3573 pthread_mutex_lock(&stream
->lock
);
3574 /* Prepare stream for the reception of a new packet. */
3575 ret
= stream_init_packet(stream
, header
.data_size
,
3576 &conn
->protocol
.data
.state
.receive_payload
.rotate_index
);
3577 pthread_mutex_unlock(&stream
->lock
);
3579 ERR("Failed to rotate stream output file");
3580 status
= RELAY_CONNECTION_STATUS_ERROR
;
3581 goto end_stream_unlock
;
3590 static enum relay_connection_status
relay_process_data_receive_payload(
3591 struct relay_connection
*conn
)
3594 enum relay_connection_status status
= RELAY_CONNECTION_STATUS_OK
;
3595 struct relay_stream
*stream
;
3596 struct data_connection_state_receive_payload
*state
=
3597 &conn
->protocol
.data
.state
.receive_payload
;
3598 const size_t chunk_size
= RECV_DATA_BUFFER_SIZE
;
3599 char data_buffer
[chunk_size
];
3600 bool partial_recv
= false;
3601 bool new_stream
= false, close_requested
= false, index_flushed
= false;
3602 uint64_t left_to_receive
= state
->left_to_receive
;
3603 struct relay_session
*session
;
3605 DBG3("Receiving data for stream id %" PRIu64
" seqnum %" PRIu64
", %" PRIu64
" bytes received, %" PRIu64
" bytes left to receive",
3606 state
->header
.stream_id
, state
->header
.net_seq_num
,
3607 state
->received
, left_to_receive
);
3609 stream
= stream_get_by_id(state
->header
.stream_id
);
3611 /* Protocol error. */
3612 ERR("relay_process_data_receive_payload: cannot find stream %" PRIu64
,
3613 state
->header
.stream_id
);
3614 status
= RELAY_CONNECTION_STATUS_ERROR
;
3618 pthread_mutex_lock(&stream
->lock
);
3619 session
= stream
->trace
->session
;
3620 if (!conn
->session
) {
3621 ret
= connection_set_session(conn
, session
);
3623 status
= RELAY_CONNECTION_STATUS_ERROR
;
3624 goto end_stream_unlock
;
3629 * The size of the "chunk" received on any iteration is bounded by:
3630 * - the data left to receive,
3631 * - the data immediately available on the socket,
3632 * - the on-stack data buffer
3634 while (left_to_receive
> 0 && !partial_recv
) {
3635 size_t recv_size
= min(left_to_receive
, chunk_size
);
3636 struct lttng_buffer_view packet_chunk
;
3638 ret
= conn
->sock
->ops
->recvmsg(conn
->sock
, data_buffer
,
3639 recv_size
, MSG_DONTWAIT
);
3641 if (errno
!= EAGAIN
&& errno
!= EWOULDBLOCK
) {
3642 PERROR("Socket %d error", conn
->sock
->fd
);
3643 status
= RELAY_CONNECTION_STATUS_ERROR
;
3645 goto end_stream_unlock
;
3646 } else if (ret
== 0) {
3647 /* No more data ready to be consumed on socket. */
3648 DBG3("No more data ready for consumption on data socket of stream id %" PRIu64
,
3649 state
->header
.stream_id
);
3650 status
= RELAY_CONNECTION_STATUS_CLOSED
;
3652 } else if (ret
< (int) recv_size
) {
3654 * All the data available on the socket has been
3657 partial_recv
= true;
3661 packet_chunk
= lttng_buffer_view_init(data_buffer
,
3663 assert(packet_chunk
.data
);
3665 ret
= stream_write(stream
, &packet_chunk
, 0);
3667 ERR("Relay error writing data to file");
3668 status
= RELAY_CONNECTION_STATUS_ERROR
;
3669 goto end_stream_unlock
;
3672 left_to_receive
-= recv_size
;
3673 state
->received
+= recv_size
;
3674 state
->left_to_receive
= left_to_receive
;
3677 if (state
->left_to_receive
> 0) {
3679 * Did not receive all the data expected, wait for more data to
3680 * become available on the socket.
3682 DBG3("Partial receive on data connection of stream id %" PRIu64
", %" PRIu64
" bytes received, %" PRIu64
" bytes left to receive",
3683 state
->header
.stream_id
, state
->received
,
3684 state
->left_to_receive
);
3685 goto end_stream_unlock
;
3688 ret
= stream_write(stream
, NULL
, state
->header
.padding_size
);
3690 status
= RELAY_CONNECTION_STATUS_ERROR
;
3691 goto end_stream_unlock
;
3694 if (session_streams_have_index(session
)) {
3695 ret
= stream_update_index(stream
, state
->header
.net_seq_num
,
3696 state
->rotate_index
, &index_flushed
,
3697 state
->header
.data_size
+ state
->header
.padding_size
);
3699 ERR("Failed to update index: stream %" PRIu64
" net_seq_num %" PRIu64
" ret %d",
3700 stream
->stream_handle
,
3701 state
->header
.net_seq_num
, ret
);
3702 status
= RELAY_CONNECTION_STATUS_ERROR
;
3703 goto end_stream_unlock
;
3707 if (stream
->prev_data_seq
== -1ULL) {
3711 ret
= stream_complete_packet(stream
, state
->header
.data_size
+
3712 state
->header
.padding_size
, state
->header
.net_seq_num
,
3715 status
= RELAY_CONNECTION_STATUS_ERROR
;
3716 goto end_stream_unlock
;
3720 * Resetting the protocol state (to RECEIVE_HEADER) will trash the
3721 * contents of *state which are aliased (union) to the same location as
3722 * the new state. Don't use it beyond this point.
3724 connection_reset_protocol_state(conn
);
3728 close_requested
= stream
->close_requested
;
3729 pthread_mutex_unlock(&stream
->lock
);
3730 if (close_requested
&& left_to_receive
== 0) {
3731 try_stream_close(stream
);
3735 pthread_mutex_lock(&session
->lock
);
3736 uatomic_set(&session
->new_streams
, 1);
3737 pthread_mutex_unlock(&session
->lock
);
3746 * relay_process_data: Process the data received on the data socket
3748 static enum relay_connection_status
relay_process_data(
3749 struct relay_connection
*conn
)
3751 enum relay_connection_status status
;
3753 switch (conn
->protocol
.data
.state_id
) {
3754 case DATA_CONNECTION_STATE_RECEIVE_HEADER
:
3755 status
= relay_process_data_receive_header(conn
);
3757 case DATA_CONNECTION_STATE_RECEIVE_PAYLOAD
:
3758 status
= relay_process_data_receive_payload(conn
);
3761 ERR("Unexpected data connection communication state.");
3768 static void cleanup_connection_pollfd(struct lttng_poll_event
*events
, int pollfd
)
3772 (void) lttng_poll_del(events
, pollfd
);
3774 ret
= fd_tracker_close_unsuspendable_fd(the_fd_tracker
, &pollfd
, 1,
3775 fd_tracker_util_close_fd
, NULL
);
3777 ERR("Closing pollfd %d", pollfd
);
3781 static void relay_thread_close_connection(struct lttng_poll_event
*events
,
3782 int pollfd
, struct relay_connection
*conn
)
3784 const char *type_str
;
3786 switch (conn
->type
) {
3791 type_str
= "Control";
3793 case RELAY_VIEWER_COMMAND
:
3794 type_str
= "Viewer Command";
3796 case RELAY_VIEWER_NOTIFICATION
:
3797 type_str
= "Viewer Notification";
3800 type_str
= "Unknown";
3802 cleanup_connection_pollfd(events
, pollfd
);
3803 connection_put(conn
);
3804 DBG("%s connection closed with %d", type_str
, pollfd
);
3808 * This thread does the actual work
3810 static void *relay_thread_worker(void *data
)
3812 int ret
, err
= -1, last_seen_data_fd
= -1;
3814 struct lttng_poll_event events
;
3815 struct lttng_ht
*relay_connections_ht
;
3816 struct lttng_ht_iter iter
;
3817 struct relay_connection
*destroy_conn
= NULL
;
3819 DBG("[thread] Relay worker started");
3821 rcu_register_thread();
3823 health_register(health_relayd
, HEALTH_RELAYD_TYPE_WORKER
);
3825 if (testpoint(relayd_thread_worker
)) {
3826 goto error_testpoint
;
3829 health_code_update();
3831 /* table of connections indexed on socket */
3832 relay_connections_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3833 if (!relay_connections_ht
) {
3834 goto relay_connections_ht_error
;
3837 ret
= create_named_thread_poll_set(&events
, 2, "Worker thread epoll");
3839 goto error_poll_create
;
3842 ret
= lttng_poll_add(&events
, relay_conn_pipe
[0], LPOLLIN
| LPOLLRDHUP
);
3849 int idx
= -1, i
, seen_control
= 0, last_notdel_data_fd
= -1;
3851 health_code_update();
3853 /* Infinite blocking call, waiting for transmission */
3854 DBG3("Relayd worker thread polling...");
3855 health_poll_entry();
3856 ret
= lttng_poll_wait(&events
, -1);
3860 * Restart interrupted system call.
3862 if (errno
== EINTR
) {
3871 * Process control. The control connection is
3872 * prioritized so we don't starve it with high
3873 * throughput tracing data on the data connection.
3875 for (i
= 0; i
< nb_fd
; i
++) {
3876 /* Fetch once the poll data */
3877 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
3878 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3880 health_code_update();
3882 /* Thread quit pipe has been closed. Killing thread. */
3883 ret
= check_thread_quit_pipe(pollfd
, revents
);
3889 /* Inspect the relay conn pipe for new connection */
3890 if (pollfd
== relay_conn_pipe
[0]) {
3891 if (revents
& LPOLLIN
) {
3892 struct relay_connection
*conn
;
3894 ret
= lttng_read(relay_conn_pipe
[0], &conn
, sizeof(conn
));
3898 ret
= lttng_poll_add(&events
,
3900 LPOLLIN
| LPOLLRDHUP
);
3902 ERR("Failed to add new connection file descriptor to poll set");
3905 connection_ht_add(relay_connections_ht
, conn
);
3906 DBG("Connection socket %d added", conn
->sock
->fd
);
3907 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3908 ERR("Relay connection pipe error");
3911 ERR("Unexpected poll events %u for sock %d", revents
, pollfd
);
3915 struct relay_connection
*ctrl_conn
;
3917 ctrl_conn
= connection_get_by_sock(relay_connections_ht
, pollfd
);
3918 /* If not found, there is a synchronization issue. */
3921 if (ctrl_conn
->type
== RELAY_DATA
) {
3922 if (revents
& LPOLLIN
) {
3924 * Flag the last seen data fd not deleted. It will be
3925 * used as the last seen fd if any fd gets deleted in
3928 last_notdel_data_fd
= pollfd
;
3930 goto put_ctrl_connection
;
3932 assert(ctrl_conn
->type
== RELAY_CONTROL
);
3934 if (revents
& LPOLLIN
) {
3935 enum relay_connection_status status
;
3937 status
= relay_process_control(ctrl_conn
);
3938 if (status
!= RELAY_CONNECTION_STATUS_OK
) {
3940 * On socket error flag the session as aborted to force
3941 * the cleanup of its stream otherwise it can leak
3942 * during the lifetime of the relayd.
3944 * This prevents situations in which streams can be
3945 * left opened because an index was received, the
3946 * control connection is closed, and the data
3947 * connection is closed (uncleanly) before the packet's
3950 * Since the control connection encountered an error,
3951 * it is okay to be conservative and close the
3952 * session right now as we can't rely on the protocol
3953 * being respected anymore.
3955 if (status
== RELAY_CONNECTION_STATUS_ERROR
) {
3956 session_abort(ctrl_conn
->session
);
3959 /* Clear the connection on error or close. */
3960 relay_thread_close_connection(&events
,
3965 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
3966 relay_thread_close_connection(&events
,
3968 if (last_seen_data_fd
== pollfd
) {
3969 last_seen_data_fd
= last_notdel_data_fd
;
3972 ERR("Unexpected poll events %u for control sock %d",
3974 connection_put(ctrl_conn
);
3977 put_ctrl_connection
:
3978 connection_put(ctrl_conn
);
3983 * The last loop handled a control request, go back to poll to make
3984 * sure we prioritise the control socket.
3990 if (last_seen_data_fd
>= 0) {
3991 for (i
= 0; i
< nb_fd
; i
++) {
3992 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
3994 health_code_update();
3996 if (last_seen_data_fd
== pollfd
) {
4003 /* Process data connection. */
4004 for (i
= idx
+ 1; i
< nb_fd
; i
++) {
4005 /* Fetch the poll data. */
4006 uint32_t revents
= LTTNG_POLL_GETEV(&events
, i
);
4007 int pollfd
= LTTNG_POLL_GETFD(&events
, i
);
4008 struct relay_connection
*data_conn
;
4010 health_code_update();
4013 /* No activity for this FD (poll implementation). */
4017 /* Skip the command pipe. It's handled in the first loop. */
4018 if (pollfd
== relay_conn_pipe
[0]) {
4022 data_conn
= connection_get_by_sock(relay_connections_ht
, pollfd
);
4024 /* Skip it. Might be removed before. */
4027 if (data_conn
->type
== RELAY_CONTROL
) {
4028 goto put_data_connection
;
4030 assert(data_conn
->type
== RELAY_DATA
);
4032 if (revents
& LPOLLIN
) {
4033 enum relay_connection_status status
;
4035 status
= relay_process_data(data_conn
);
4036 /* Connection closed or error. */
4037 if (status
!= RELAY_CONNECTION_STATUS_OK
) {
4039 * On socket error flag the session as aborted to force
4040 * the cleanup of its stream otherwise it can leak
4041 * during the lifetime of the relayd.
4043 * This prevents situations in which streams can be
4044 * left opened because an index was received, the
4045 * control connection is closed, and the data
4046 * connection is closed (uncleanly) before the packet's
4049 * Since the data connection encountered an error,
4050 * it is okay to be conservative and close the
4051 * session right now as we can't rely on the protocol
4052 * being respected anymore.
4054 if (status
== RELAY_CONNECTION_STATUS_ERROR
) {
4055 session_abort(data_conn
->session
);
4057 relay_thread_close_connection(&events
, pollfd
,
4060 * Every goto restart call sets the last seen fd where
4061 * here we don't really care since we gracefully
4062 * continue the loop after the connection is deleted.
4065 /* Keep last seen port. */
4066 last_seen_data_fd
= pollfd
;
4067 connection_put(data_conn
);
4070 } else if (revents
& (LPOLLERR
| LPOLLHUP
| LPOLLRDHUP
)) {
4071 relay_thread_close_connection(&events
, pollfd
,
4074 ERR("Unknown poll events %u for data sock %d",
4077 put_data_connection
:
4078 connection_put(data_conn
);
4080 last_seen_data_fd
= -1;
4083 /* Normal exit, no error */
4088 /* Cleanup remaining connection object. */
4090 cds_lfht_for_each_entry(relay_connections_ht
->ht
, &iter
.iter
,
4093 health_code_update();
4095 session_abort(destroy_conn
->session
);
4098 * No need to grab another ref, because we own
4101 relay_thread_close_connection(&events
, destroy_conn
->sock
->fd
,
4106 (void) fd_tracker_util_poll_clean(the_fd_tracker
, &events
);
4108 lttng_ht_destroy(relay_connections_ht
);
4109 relay_connections_ht_error
:
4110 /* Close relay conn pipes */
4111 (void) fd_tracker_util_pipe_close(the_fd_tracker
,
4114 DBG("Thread exited with error");
4116 DBG("Worker thread cleanup complete");
4120 ERR("Health error occurred in %s", __func__
);
4122 health_unregister(health_relayd
);
4123 rcu_unregister_thread();
4124 lttng_relay_stop_threads();
4129 * Create the relay command pipe to wake thread_manage_apps.
4130 * Closed in cleanup().
4132 static int create_relay_conn_pipe(void)
4134 return fd_tracker_util_pipe_open_cloexec(the_fd_tracker
,
4135 "Relayd connection pipe", relay_conn_pipe
);
4138 static int stdio_open(void *data
, int *fds
)
4140 fds
[0] = fileno(stdout
);
4141 fds
[1] = fileno(stderr
);
4145 static int track_stdio(void)
4148 const char *names
[] = { "stdout", "stderr" };
4150 return fd_tracker_open_unsuspendable_fd(the_fd_tracker
, fds
,
4151 names
, 2, stdio_open
, NULL
);
4157 int main(int argc
, char **argv
)
4159 bool thread_is_rcu_registered
= false;
4160 int ret
= 0, retval
= 0;
4162 char *unlinked_file_directory_path
= NULL
, *output_path
= NULL
;
4164 /* Parse environment variables */
4165 ret
= parse_env_options();
4173 * Command line arguments overwrite environment.
4176 if (set_options(argc
, argv
)) {
4181 if (set_signal_handler()) {
4186 relayd_config_log();
4188 if (opt_print_version
) {
4194 ret
= fclose(stdin
);
4196 PERROR("Failed to close stdin");
4200 DBG("Clear command %s", opt_allow_clear
? "allowed" : "disallowed");
4202 /* Try to create directory if -o, --output is specified. */
4203 if (opt_output_path
) {
4204 if (*opt_output_path
!= '/') {
4205 ERR("Please specify an absolute path for -o, --output PATH");
4210 ret
= utils_mkdir_recursive(opt_output_path
, S_IRWXU
| S_IRWXG
,
4213 ERR("Unable to create %s", opt_output_path
);
4220 if (opt_daemon
|| opt_background
) {
4221 ret
= lttng_daemonize(&child_ppid
, &recv_child_signal
,
4229 if (opt_working_directory
) {
4230 ret
= utils_change_working_directory(opt_working_directory
);
4232 /* All errors are already logged. */
4237 sessiond_trace_chunk_registry
= sessiond_trace_chunk_registry_create();
4238 if (!sessiond_trace_chunk_registry
) {
4239 ERR("Failed to initialize session daemon trace chunk registry");
4245 * The RCU thread registration (and use, through the fd-tracker's
4246 * creation) is done after the daemonization to allow us to not
4247 * deal with liburcu's fork() management as the call RCU needs to
4250 rcu_register_thread();
4251 thread_is_rcu_registered
= true;
4253 output_path
= create_output_path("");
4255 ERR("Failed to get output path");
4259 ret
= asprintf(&unlinked_file_directory_path
, "%s/%s", output_path
,
4260 DEFAULT_UNLINKED_FILES_DIRECTORY
);
4263 ERR("Failed to format unlinked file directory path");
4267 the_fd_tracker
= fd_tracker_create(
4268 unlinked_file_directory_path
, lttng_opt_fd_pool_size
);
4269 free(unlinked_file_directory_path
);
4270 if (!the_fd_tracker
) {
4275 ret
= track_stdio();
4281 /* Initialize thread health monitoring */
4282 health_relayd
= health_app_create(NR_HEALTH_RELAYD_TYPES
);
4283 if (!health_relayd
) {
4284 PERROR("health_app_create error");
4289 /* Create thread quit pipe */
4290 if (init_thread_quit_pipe()) {
4295 /* Setup the thread apps communication pipe. */
4296 if (create_relay_conn_pipe()) {
4301 /* Init relay command queue. */
4302 cds_wfcq_init(&relay_conn_queue
.head
, &relay_conn_queue
.tail
);
4304 /* Initialize communication library */
4306 lttcomm_inet_init();
4308 /* tables of sessions indexed by session ID */
4309 sessions_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
4315 /* tables of streams indexed by stream ID */
4316 relay_streams_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
4317 if (!relay_streams_ht
) {
4322 /* tables of streams indexed by stream ID */
4323 viewer_streams_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
4324 if (!viewer_streams_ht
) {
4329 ret
= init_health_quit_pipe();
4335 /* Create thread to manage the client socket */
4336 ret
= pthread_create(&health_thread
, default_pthread_attr(),
4337 thread_manage_health
, (void *) NULL
);
4340 PERROR("pthread_create health");
4345 /* Setup the dispatcher thread */
4346 ret
= pthread_create(&dispatcher_thread
, default_pthread_attr(),
4347 relay_thread_dispatcher
, (void *) NULL
);
4350 PERROR("pthread_create dispatcher");
4352 goto exit_dispatcher_thread
;
4355 /* Setup the worker thread */
4356 ret
= pthread_create(&worker_thread
, default_pthread_attr(),
4357 relay_thread_worker
, NULL
);
4360 PERROR("pthread_create worker");
4362 goto exit_worker_thread
;
4365 /* Setup the listener thread */
4366 ret
= pthread_create(&listener_thread
, default_pthread_attr(),
4367 relay_thread_listener
, (void *) NULL
);
4370 PERROR("pthread_create listener");
4372 goto exit_listener_thread
;
4375 ret
= relayd_live_create(live_uri
);
4377 ERR("Starting live viewer threads");
4383 * This is where we start awaiting program completion (e.g. through
4384 * signal that asks threads to teardown).
4387 ret
= relayd_live_join();
4393 ret
= pthread_join(listener_thread
, &status
);
4396 PERROR("pthread_join listener_thread");
4400 exit_listener_thread
:
4401 ret
= pthread_join(worker_thread
, &status
);
4404 PERROR("pthread_join worker_thread");
4409 ret
= pthread_join(dispatcher_thread
, &status
);
4412 PERROR("pthread_join dispatcher_thread");
4415 exit_dispatcher_thread
:
4417 ret
= pthread_join(health_thread
, &status
);
4420 PERROR("pthread_join health_thread");
4425 * Wait for all pending call_rcu work to complete before tearing
4426 * down data structures. call_rcu worker may be trying to
4427 * perform lookups in those structures.
4432 /* Ensure all prior call_rcu are done. */
4435 if (thread_is_rcu_registered
) {
4436 rcu_unregister_thread();